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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 width: 32px; | 426 width: 32px; |
427 height: 32px; | 427 height: 32px; |
428 padding: 0px; | 428 padding: 0px; |
429 border-width: 0px; | 429 border-width: 0px; |
430 margin-left: 0px; | 430 margin-left: 0px; |
431 margin-right: 0px; | 431 margin-right: 0px; |
432 background-color: initial; | 432 background-color: initial; |
433 color: inherit; | 433 color: inherit; |
434 } | 434 } |
435 | 435 |
| 436 video::-internal-download-button, audio::-internal-download-button { |
| 437 -webkit-appearance: -internal-media-download-icon; |
| 438 display: flex; |
| 439 flex: none; |
| 440 box-sizing: border-box; |
| 441 width: 32px; |
| 442 height: 32px; |
| 443 padding: 0px; |
| 444 border-width: 0px; |
| 445 margin-left: 0px; |
| 446 margin-right: 0px; |
| 447 background-color: initial; |
| 448 color: inherit; |
| 449 } |
| 450 |
436 video::-internal-media-controls-overflow-menu-list-item, audio::-internal-media-
controls-overflow-menu-list-item { | 451 video::-internal-media-controls-overflow-menu-list-item, audio::-internal-media-
controls-overflow-menu-list-item { |
437 display: block; | 452 display: block; |
438 color: #424242; | 453 color: #424242; |
439 line-height: 40px; | 454 line-height: 40px; |
440 padding-left: 28px; | 455 padding-left: 28px; |
441 } | 456 } |
442 | 457 |
443 video::-webkit-media-text-track-container { | 458 video::-webkit-media-text-track-container { |
444 position: relative; | 459 position: relative; |
445 width: inherit; | 460 width: inherit; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 font-weight: bold; | 522 font-weight: bold; |
508 } | 523 } |
509 | 524 |
510 video::cue(u) { | 525 video::cue(u) { |
511 text-decoration: underline; | 526 text-decoration: underline; |
512 } | 527 } |
513 | 528 |
514 video::cue(i) { | 529 video::cue(i) { |
515 font-style: italic; | 530 font-style: italic; |
516 } | 531 } |
OLD | NEW |