| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 width: 32px; | 341 width: 32px; |
| 342 height: 32px; | 342 height: 32px; |
| 343 padding: 0px; | 343 padding: 0px; |
| 344 border-width: 0px; | 344 border-width: 0px; |
| 345 margin-left: 0px; | 345 margin-left: 0px; |
| 346 margin-right: 0px; | 346 margin-right: 0px; |
| 347 background-color: initial; | 347 background-color: initial; |
| 348 color: inherit; | 348 color: inherit; |
| 349 } | 349 } |
| 350 | 350 |
| 351 audio::-webkit-media-controls-fullscreen-volume-slider, video::-webkit-media-con
trols-fullscreen-volume-slider { | |
| 352 display: none; | |
| 353 } | |
| 354 | |
| 355 audio::-webkit-media-controls-fullscreen-volume-min-button, video::-webkit-media
-controls-fullscreen-volume-min-button { | |
| 356 display: none; | |
| 357 } | |
| 358 | |
| 359 audio::-webkit-media-controls-fullscreen-volume-max-button, video::-webkit-media
-controls-fullscreen-volume-max-button { | |
| 360 display: none; | |
| 361 } | |
| 362 | |
| 363 video::-internal-media-controls-text-track-list, video::-internal-media-controls
-overflow-menu-list, audio::-internal-media-controls-overflow-menu-list { | 351 video::-internal-media-controls-text-track-list, video::-internal-media-controls
-overflow-menu-list, audio::-internal-media-controls-overflow-menu-list { |
| 364 position: absolute; | 352 position: absolute; |
| 365 bottom: 4px; | 353 bottom: 4px; |
| 366 right: 4px; | 354 right: 4px; |
| 367 background-color: #fafafa; | 355 background-color: #fafafa; |
| 368 max-width: 50%; | 356 max-width: 50%; |
| 369 max-height: 250px; | 357 max-height: 250px; |
| 370 min-width: 150px; | 358 min-width: 150px; |
| 371 overflow-x: hidden; | 359 overflow-x: hidden; |
| 372 overflow-y: auto; | 360 overflow-y: auto; |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 font-weight: bold; | 514 font-weight: bold; |
| 527 } | 515 } |
| 528 | 516 |
| 529 video::cue(u) { | 517 video::cue(u) { |
| 530 text-decoration: underline; | 518 text-decoration: underline; |
| 531 } | 519 } |
| 532 | 520 |
| 533 video::cue(i) { | 521 video::cue(i) { |
| 534 font-style: italic; | 522 font-style: italic; |
| 535 } | 523 } |
| OLD | NEW |