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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 width: 100%; | 131 width: 100%; |
132 max-width: 800px; | |
133 text-indent: 0; | 132 text-indent: 0; |
134 box-sizing: border-box; | 133 box-sizing: border-box; |
135 overflow: hidden; | 134 overflow: hidden; |
136 } | 135 } |
137 | 136 |
138 video::-webkit-media-controls-overlay-play-button { | 137 video::-webkit-media-controls-overlay-play-button { |
139 -webkit-appearance: media-overlay-play-button; | 138 -webkit-appearance: media-overlay-play-button; |
140 display: flex; | 139 display: flex; |
141 position: absolute; | 140 position: absolute; |
142 top: 50%; | 141 top: 50%; |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 font-weight: bold; | 411 font-weight: bold; |
413 } | 412 } |
414 | 413 |
415 video::-webkit-media-text-track-container u { | 414 video::-webkit-media-text-track-container u { |
416 text-decoration: underline; | 415 text-decoration: underline; |
417 } | 416 } |
418 | 417 |
419 video::-webkit-media-text-track-container i { | 418 video::-webkit-media-text-track-container i { |
420 font-style: italic; | 419 font-style: italic; |
421 } | 420 } |
OLD | NEW |