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 1674753002: Disable fullscreen video in OverlayPanels (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add todo Created 4 years, 10 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 | « chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/OverlayPanel.java ('k') | 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/OverlayPanel.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698