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) 2009 Google Inc. | 3 * Copyright (C) 2009 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 display: none; | 121 display: none; |
122 } | 122 } |
123 | 123 |
124 video::-webkit-media-controls-overlay-enclosure { | 124 video::-webkit-media-controls-overlay-enclosure { |
125 display: flex; | 125 display: flex; |
126 position: relative; | 126 position: relative; |
127 flex-direction: column; | 127 flex-direction: column; |
128 justify-content: flex-end; | 128 justify-content: flex-end; |
129 align-items: center; | 129 align-items: center; |
130 flex: 1 1; | 130 flex: 1 1; |
| 131 min-height: 0; |
131 width: 100%; | 132 width: 100%; |
132 text-indent: 0; | 133 text-indent: 0; |
133 box-sizing: border-box; | 134 box-sizing: border-box; |
134 overflow: hidden; | 135 overflow: hidden; |
135 } | 136 } |
136 | 137 |
137 video::-webkit-media-controls-overlay-play-button { | 138 video::-webkit-media-controls-overlay-play-button { |
138 -webkit-appearance: media-overlay-play-button; | 139 -webkit-appearance: media-overlay-play-button; |
139 display: flex; | 140 display: flex; |
140 position: absolute; | 141 position: absolute; |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 font-weight: bold; | 410 font-weight: bold; |
410 } | 411 } |
411 | 412 |
412 video::-webkit-media-text-track-container u { | 413 video::-webkit-media-text-track-container u { |
413 text-decoration: underline; | 414 text-decoration: underline; |
414 } | 415 } |
415 | 416 |
416 video::-webkit-media-text-track-container i { | 417 video::-webkit-media-text-track-container i { |
417 font-style: italic; | 418 font-style: italic; |
418 } | 419 } |
OLD | NEW |