Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: components/dom_distiller/core/css/distilledpage.css

Issue 1008993007: Fix style on iOS for distilled content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 /* Set the global 'box-sizing' state to 'border-box'. 5 /* Set the global 'box-sizing' state to 'border-box'.
6 * *::after and *::before used to select pseudo-elements not selectable by *. */ 6 * *::after and *::before used to select pseudo-elements not selectable by *. */
7 7
8 *, 8 *,
9 *::after, 9 *::after,
10 *::before { 10 *::before {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 73
74 /* Base typography. */ 74 /* Base typography. */
75 75
76 body, 76 body,
77 html { 77 html {
78 font-size: 14px; 78 font-size: 14px;
79 line-height: 1.4; 79 line-height: 1.4;
80 text-rendering: optimizeLegibility; 80 text-rendering: optimizeLegibility;
81 overflow-x: hidden; 81 overflow-x: hidden;
82 -webkit-overflow-scrolling: touch;
82 } 83 }
83 84
84 /* Classes for light, dark and sepia themes. 85 /* Classes for light, dark and sepia themes.
85 * Must agree with classes returned by useTheme() in dom_distiller_viewer.js 86 * Must agree with classes returned by useTheme() in dom_distiller_viewer.js
86 * and with CSS class constants in viewer.cc */ 87 * and with CSS class constants in viewer.cc */
87 88
88 .light { 89 .light {
89 color: #333; 90 color: #333;
90 background-color: #FFF; 91 background-color: #FFF;
91 } 92 }
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 border-color: rgb(250,36,36); 673 border-color: rgb(250,36,36);
673 } 674 }
674 675
675 #loader.red .circle.red .mask.first .mover { 676 #loader.red .circle.red .mask.first .mover {
676 background-color: rgb(33,89,189); 677 background-color: rgb(33,89,189);
677 } 678 }
678 679
679 #loader.red .circle.red .mask.second .mover { 680 #loader.red .circle.red .mask.second .mover {
680 background-color: rgb(250,36,36); 681 background-color: rgb(250,36,36);
681 } 682 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698