OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2015 Google Inc. | 3 * Copyright (C) 2015 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 background-color: #fafafa; | 79 background-color: #fafafa; |
80 /* The duration is also specified in MediaControlElements.cpp and LayoutTest
s/media/media-controls.js */ | 80 /* The duration is also specified in MediaControlElements.cpp and LayoutTest
s/media/media-controls.js */ |
81 transition: opacity 0.3s; | 81 transition: opacity 0.3s; |
82 | 82 |
83 font-family: Segoe, "Helvetica Neue", Roboto, Arial, Helvetica, sans-serif ; | 83 font-family: Segoe, "Helvetica Neue", Roboto, Arial, Helvetica, sans-serif ; |
84 font-size: 14px; | 84 font-size: 14px; |
85 font-weight: normal; /* Make sure that we don't inherit non-defaults. */ | 85 font-weight: normal; /* Make sure that we don't inherit non-defaults. */ |
86 font-style: normal; | 86 font-style: normal; |
87 } | 87 } |
88 | 88 |
89 video:-webkit-full-page-media { | |
90 margin: auto; | |
91 position: absolute; | |
92 top: 0; | |
93 right: 0; | |
94 bottom: 0; | |
95 left: 0; | |
96 } | |
97 | |
98 audio:-webkit-full-page-media, video:-webkit-full-page-media { | 89 audio:-webkit-full-page-media, video:-webkit-full-page-media { |
99 max-height: 100%; | 90 max-height: 100%; |
100 max-width: 100%; | 91 max-width: 100%; |
101 } | 92 } |
102 | 93 |
103 audio:-webkit-full-page-media::-webkit-media-controls-panel, | 94 audio:-webkit-full-page-media::-webkit-media-controls-panel, |
104 video:-webkit-full-page-media::-webkit-media-controls-panel { | 95 video:-webkit-full-page-media::-webkit-media-controls-panel { |
105 bottom: 0px; | 96 bottom: 0px; |
106 } | 97 } |
107 | 98 |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 font-weight: bold; | 426 font-weight: bold; |
436 } | 427 } |
437 | 428 |
438 video::cue(u) { | 429 video::cue(u) { |
439 text-decoration: underline; | 430 text-decoration: underline; |
440 } | 431 } |
441 | 432 |
442 video::cue(i) { | 433 video::cue(i) { |
443 font-style: italic; | 434 font-style: italic; |
444 } | 435 } |
OLD | NEW |