Changeset 90797 in webkit
- Timestamp:
- Jul 11, 2011, 5:30:54 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r90791 r90797 1 2011-07-11 Jer Noble <jer.noble@apple.com> 2 3 HTML5 video controller in fullscreen is partly off-screen (at least on youtube) using ClickToFlash 4 https://bugs.webkit.org/show_bug.cgi?id=64327 5 6 Reviewed by Darin Adler. 7 8 No new tests; no change in functionality, so covered by existing tests. 9 10 Make the rules from fullscreenQuickTime.css !important so they are not overridden 11 by page authors. 12 13 * css/fullscreenQuickTime.css: 14 (video:-webkit-full-screen::-webkit-media-controls-panel): 15 1 16 2011-07-11 Levi Weintraub <leviw@chromium.org> 2 17 -
trunk/Source/WebCore/css/fullscreenQuickTime.css
r88948 r90797 26 26 27 27 video:-webkit-full-screen::-webkit-media-controls-panel { 28 -webkit-box-align: start ;29 -webkit-box-pack: end ;30 -webkit-appearance: none ;28 -webkit-box-align: start !important; 29 -webkit-box-pack: end !important; 30 -webkit-appearance: none !important; 31 31 32 bottom: 50px ;33 left: 50% ;34 margin-left: -220px ;35 padding: 12px 0 0 10px ;36 width: 430px ;37 height: 48px ;32 bottom: 50px !important; 33 left: 50% !important; 34 margin-left: -220px !important; 35 padding: 12px 0 0 10px !important; 36 width: 430px !important; 37 height: 48px !important; 38 38 39 39 background-image: -webkit-gradient( … … 47 47 color-stop(0.366, rgba(12, 12, 12, .97)), 48 48 color-stop(1, rgba(19, 19, 19, .97)) 49 ) ;49 ) !important; 50 50 51 51 -webkit-box-shadow: … … 54 54 inset 0 -1px 0 0px rgba(202, 202, 202, 0.09), 55 55 0 0 0 1px rgba(0, 0, 0, 0.5); 56 -webkit-border-radius: 8px ;56 -webkit-border-radius: 8px !important; 57 57 58 -webkit-transition: opacity 0.3s linear ;58 -webkit-transition: opacity 0.3s linear !important; 59 59 } 60 60
Note:
See TracChangeset
for help on using the changeset viewer.