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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 width: inherit; | 150 width: inherit; |
151 height: inherit; | 151 height: inherit; |
152 position: relative; | 152 position: relative; |
153 direction: ltr; | 153 direction: ltr; |
154 display: flex; | 154 display: flex; |
155 flex-direction: column; | 155 flex-direction: column; |
156 justify-content: flex-end; | 156 justify-content: flex-end; |
157 align-items: center; | 157 align-items: center; |
158 font-size: 16px; | 158 font-size: 16px; |
159 background-color: black; | 159 background-color: black; |
160 transition: opacity .2s ease-in-out; | 160 opacity: 0; |
| 161 transition: opacity .3s ease-in-out; |
161 } | 162 } |
162 | 163 |
163 video::-internal-media-remoting-background-image { | 164 video::-internal-media-remoting-background-image { |
164 display: flex; | 165 display: flex; |
165 position: absolute; | 166 position: absolute; |
166 margin: 0; | 167 margin: 0; |
167 top: 0px; | 168 top: 0px; |
168 left: 0px; | 169 left: 0px; |
169 width: 100%; | 170 width: 100%; |
170 height: 100%; | 171 height: 100%; |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 font-weight: bold; | 602 font-weight: bold; |
602 } | 603 } |
603 | 604 |
604 video::cue(u) { | 605 video::cue(u) { |
605 text-decoration: underline; | 606 text-decoration: underline; |
606 } | 607 } |
607 | 608 |
608 video::cue(i) { | 609 video::cue(i) { |
609 font-style: italic; | 610 font-style: italic; |
610 } | 611 } |
OLD | NEW |