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

Side by Side Diff: Source/core/css/fullscreen.css

Issue 14612004: Remove CURSOR_VISIBILITY, it's always off (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix UseCounter Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/StyleResolver.cpp ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 :-webkit-full-screen { 1 :-webkit-full-screen {
2 background-color: white; 2 background-color: white;
3 z-index: 2147483647 !important; 3 z-index: 2147483647 !important;
4 } 4 }
5 5
6 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full -screen-ancestor { 6 :root:-webkit-full-screen-document:not(:-webkit-full-screen), :root:-webkit-full -screen-ancestor {
7 overflow: hidden !important; 7 overflow: hidden !important;
8 } 8 }
9 9
10 :-webkit-full-screen-ancestor:not(iframe) { 10 :-webkit-full-screen-ancestor:not(iframe) {
(...skipping 13 matching lines...) Expand all
24 video:-webkit-full-screen, audio:-webkit-full-screen { 24 video:-webkit-full-screen, audio:-webkit-full-screen {
25 background-color: transparent !important; 25 background-color: transparent !important;
26 position: static !important; 26 position: static !important;
27 margin: 0 !important; 27 margin: 0 !important;
28 height: 100% !important; 28 height: 100% !important;
29 width: 100% !important; 29 width: 100% !important;
30 -webkit-flex: 1 !important; 30 -webkit-flex: 1 !important;
31 display: block !important; 31 display: block !important;
32 } 32 }
33 33
34 :-webkit-full-screen video:hover {
35 -webkit-cursor-visibility:auto-hide;
36 }
37
38 img:-webkit-full-screen { 34 img:-webkit-full-screen {
39 width: auto; 35 width: auto;
40 height: 100%; 36 height: 100%;
41 max-width: 100%; 37 max-width: 100%;
42 } 38 }
43 39
44 iframe:-webkit-full-screen { 40 iframe:-webkit-full-screen {
45 margin: 0 !important; 41 margin: 0 !important;
46 padding: 0 !important; 42 padding: 0 !important;
47 border: 0 !important; 43 border: 0 !important;
48 position: fixed !important; 44 position: fixed !important;
49 height: 100% !important; 45 height: 100% !important;
50 width: 100% !important; 46 width: 100% !important;
51 left: 0 !important; 47 left: 0 !important;
52 top: 0 !important; 48 top: 0 !important;
53 } 49 }
OLDNEW
« no previous file with comments | « Source/core/css/StyleResolver.cpp ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698