OLD | NEW |
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 .dark #closeReaderView { | 248 .dark #closeReaderView { |
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 video::-webkit-media-controls-fullscreen-button { |
| 259 display: none; |
| 260 } |
| 261 |
258 #closeReaderView { | 262 #closeReaderView { |
259 /* | 263 /* |
260 TODO(mdjones): Remove the "display: none;" style when the Reader Mode bar | 264 TODO(mdjones): Remove the "display: none;" style when the Reader Mode bar |
261 behaves like the toolbar when scrolling. | 265 behaves like the toolbar when scrolling. |
262 */ | 266 */ |
263 display: none; | 267 display: none; |
264 flex: 0 0 auto; | 268 flex: 0 0 auto; |
265 font-family: 'Roboto', sans-serif; | 269 font-family: 'Roboto', sans-serif; |
266 font-weight: 700; | 270 font-weight: 700; |
267 line-height: 14px; | 271 line-height: 14px; |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 } | 493 } |
490 | 494 |
491 .youtubeIframe { | 495 .youtubeIframe { |
492 height: 100%; | 496 height: 100%; |
493 left: 0px; | 497 left: 0px; |
494 position: absolute; | 498 position: absolute; |
495 top: 0px; | 499 top: 0px; |
496 width: 100%; | 500 width: 100%; |
497 } | 501 } |
498 | 502 |
OLD | NEW |