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

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

Issue 1538563003: Disable HTML close button in Reader Mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2564
Patch Set: Created 5 years 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 border-top: 1px solid #555; 249 border-top: 1px solid #555;
250 color: #3adaff; 250 color: #3adaff;
251 } 251 }
252 252
253 .sepia #closeReaderView { 253 .sepia #closeReaderView {
254 border-top: 1px solid rgb(147, 125, 102); 254 border-top: 1px solid rgb(147, 125, 102);
255 color: #55F; 255 color: #55F;
256 } 256 }
257 257
258 #closeReaderView { 258 #closeReaderView {
259 /*
260 TODO(mdjones): Remove the "display: none;" style when the Reader Mode bar
261 behaves like the toolbar when scrolling.
262 */
263 display: none;
259 flex: 0 0 auto; 264 flex: 0 0 auto;
260 font-family: 'Roboto', sans-serif; 265 font-family: 'Roboto', sans-serif;
261 font-weight: 700; 266 font-weight: 700;
262 line-height: 14px; 267 line-height: 14px;
263 padding: 24px 16px; 268 padding: 24px 16px;
264 font-size: 14px; 269 font-size: 14px;
265 text-align: right; 270 text-align: right;
266 text-decoration: none; 271 text-decoration: none;
267 text-transform: uppercase; 272 text-transform: uppercase;
268 width: 100%; 273 width: 100%;
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 } 488 }
484 489
485 .youtubeIframe { 490 .youtubeIframe {
486 height: 100%; 491 height: 100%;
487 left: 0px; 492 left: 0px;
488 position: absolute; 493 position: absolute;
489 top: 0px; 494 top: 0px;
490 width: 100%; 495 width: 100%;
491 } 496 }
492 497
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