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

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

Issue 1555043005: Use standard font for print preview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 display: none; 278 display: none;
279 } 279 }
280 #feedbackContainer { 280 #feedbackContainer {
281 display: none; 281 display: none;
282 } 282 }
283 283
284 /* Remove backgrounds and custom colors. */ 284 /* Remove backgrounds and custom colors. */
285 .light, .dark, .sepia { 285 .light, .dark, .sepia {
286 color: #000 !important; 286 color: #000 !important;
287 background-color: #fff !important; 287 background-color: #fff !important;
288 font-family: sans-serif !important;
288 } 289 }
289 290
290 /* If the transition duration is unchanged, the above color changes 291 /* If the transition duration is unchanged, the above color changes
291 happen after the document is ready for print. */ 292 happen after the document is ready for print. */
292 body { 293 body {
293 transition-duration: unset !important; 294 transition-duration: unset !important;
294 } 295 }
295 } 296 }
296 297
297 #content { 298 #content {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 } 489 }
489 490
490 .youtubeIframe { 491 .youtubeIframe {
491 height: 100%; 492 height: 100%;
492 left: 0px; 493 left: 0px;
493 position: absolute; 494 position: absolute;
494 top: 0px; 495 top: 0px;
495 width: 100%; 496 width: 100%;
496 } 497 }
497 498
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698