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

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

Issue 2108833002: Remove Simplify Page option from Print Preview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mark histogram entries as unused Created 4 years, 5 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 font-weight: 700; 270 font-weight: 700;
271 line-height: 14px; 271 line-height: 14px;
272 padding: 24px 16px; 272 padding: 24px 16px;
273 font-size: 14px; 273 font-size: 14px;
274 text-align: right; 274 text-align: right;
275 text-decoration: none; 275 text-decoration: none;
276 text-transform: uppercase; 276 text-transform: uppercase;
277 width: 100%; 277 width: 100%;
278 } 278 }
279 279
280 @media print {
281 #closeReaderView {
282 display: none;
283 }
284 #feedbackContainer {
285 display: none;
286 }
287
288 /* Remove backgrounds and custom colors. */
289 .light, .dark, .sepia {
290 color: #000 !important;
291 background-color: #fff !important;
292 font-family: sans-serif !important;
293 }
294
295 /* If the transition duration is unchanged, the above color changes
296 happen after the document is ready for print. */
297 body {
298 transition-duration: unset !important;
299 }
300 }
301
302 #content { 280 #content {
303 margin: 24px 16px 24px 16px; 281 margin: 24px 16px 24px 16px;
304 } 282 }
305 283
306 #mainContent { 284 #mainContent {
307 flex: 1 1 auto; 285 flex: 1 1 auto;
308 margin: 0px auto; 286 margin: 0px auto;
309 width: 100%; 287 width: 100%;
310 } 288 }
311 289
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 } 471 }
494 472
495 .youtubeIframe { 473 .youtubeIframe {
496 height: 100%; 474 height: 100%;
497 left: 0px; 475 left: 0px;
498 position: absolute; 476 position: absolute;
499 top: 0px; 477 top: 0px;
500 width: 100%; 478 width: 100%;
501 } 479 }
502 480
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | components/dom_distiller/core/javascript/dom_distiller_viewer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698