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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
341 audio::-webkit-media-controls-fullscreen-volume-max-button, video::-webkit-media -controls-fullscreen-volume-max-button { | 341 audio::-webkit-media-controls-fullscreen-volume-max-button, video::-webkit-media -controls-fullscreen-volume-max-button { |
342 display: none; | 342 display: none; |
343 } | 343 } |
344 | 344 |
345 video::-webkit-media-text-track-container { | 345 video::-webkit-media-text-track-container { |
346 position: relative; | 346 position: relative; |
347 width: 100%; | 347 width: 100%; |
348 overflow: hidden; | 348 overflow: hidden; |
349 padding-bottom: 5px; | 349 padding-bottom: 5px; |
350 | 350 |
351 font: 22px sans-serif; | 351 font-family: sans-serif; |
srivats
2015/03/26 01:36:02
I reverted this back because this change broke the
| |
352 text-align: center; | 352 text-align: center; |
353 color: rgba(255, 255, 255, 1); | 353 color: rgba(255, 255, 255, 1); |
354 | 354 |
355 letter-spacing: normal; | 355 letter-spacing: normal; |
356 word-spacing: normal; | 356 word-spacing: normal; |
357 text-transform: none; | 357 text-transform: none; |
358 text-indent: 0; | 358 text-indent: 0; |
359 text-decoration: none; | 359 text-decoration: none; |
360 pointer-events: none; | 360 pointer-events: none; |
361 -webkit-user-select: none; | 361 -webkit-user-select: none; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
411 font-weight: bold; | 411 font-weight: bold; |
412 } | 412 } |
413 | 413 |
414 video::-webkit-media-text-track-container u { | 414 video::-webkit-media-text-track-container u { |
415 text-decoration: underline; | 415 text-decoration: underline; |
416 } | 416 } |
417 | 417 |
418 video::-webkit-media-text-track-container i { | 418 video::-webkit-media-text-track-container i { |
419 font-style: italic; | 419 font-style: italic; |
420 } | 420 } |
OLD | NEW |