| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 audio::-webkit-media-controls-fullscreen-volume-min-button, video::-webkit-media
-controls-fullscreen-volume-min-button { | 354 audio::-webkit-media-controls-fullscreen-volume-min-button, video::-webkit-media
-controls-fullscreen-volume-min-button { |
| 355 display: none; | 355 display: none; |
| 356 } | 356 } |
| 357 | 357 |
| 358 audio::-webkit-media-controls-fullscreen-volume-max-button, video::-webkit-media
-controls-fullscreen-volume-max-button { | 358 audio::-webkit-media-controls-fullscreen-volume-max-button, video::-webkit-media
-controls-fullscreen-volume-max-button { |
| 359 display: none; | 359 display: none; |
| 360 } | 360 } |
| 361 | 361 |
| 362 video::-internal-media-controls-text-track-list, video::-internal-media-controls
-overflow-menu-list, audio::-internal-media-controls-overflow-menu-list { | 362 video::-internal-media-controls-text-track-list, video::-internal-media-controls
-overflow-menu-list, audio::-internal-media-controls-overflow-menu-list { |
| 363 position: absolute; | 363 position: absolute; |
| 364 bottom: 48px; | 364 bottom: 4px; |
| 365 right: 0px; | 365 right: 4px; |
| 366 background-color: #fafafa; | 366 background-color: #fafafa; |
| 367 max-width: 50%; | 367 max-width: 50%; |
| 368 max-height: 250px; | 368 max-height: 250px; |
| 369 min-width: 150px; | 369 min-width: 150px; |
| 370 overflow-x: hidden; | 370 overflow-x: hidden; |
| 371 overflow-y: auto; | 371 overflow-y: auto; |
| 372 white-space: nowrap; | 372 white-space: nowrap; |
| 373 font-size: 14px; | 373 font-size: 14px; |
| 374 padding: 8px 0px; | 374 border-radius: 3px; |
| 375 box-shadow: 0px 0px 3px black; |
| 375 } | 376 } |
| 376 | 377 |
| 377 video::-internal-media-controls-text-track-list-item { | 378 video::-internal-media-controls-text-track-list-item { |
| 378 display: block; | 379 display: block; |
| 379 color: #424242; | 380 color: #424242; |
| 380 text-align: start; | 381 text-align: start; |
| 381 line-height: 40px; | 382 line-height: 40px; |
| 382 padding-right: 16px; | 383 padding-right: 16px; |
| 383 text-overflow: ellipsis; | 384 text-overflow: ellipsis; |
| 384 } | 385 } |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 font-weight: bold; | 523 font-weight: bold; |
| 523 } | 524 } |
| 524 | 525 |
| 525 video::cue(u) { | 526 video::cue(u) { |
| 526 text-decoration: underline; | 527 text-decoration: underline; |
| 527 } | 528 } |
| 528 | 529 |
| 529 video::cue(i) { | 530 video::cue(i) { |
| 530 font-style: italic; | 531 font-style: italic; |
| 531 } | 532 } |
| OLD | NEW |