Changeset 182924 in webkit
- Timestamp:
- Apr 16, 2015, 4:45:22 PM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r182923 r182924 1 2015-04-16 Roger Fong <roger_fong@apple.com> 2 3 Media element time displays shouldn't wrap. 4 https://bugs.webkit.org/show_bug.cgi?id=143854. 5 <rdar://problem/20284766> 6 7 Reviewed by Brent Fulgham. 8 9 * Modules/mediacontrols/mediaControlsApple.css: 10 (::-webkit-media-controls): Don't wrap any text. 11 (audio::-webkit-media-controls-time-remaining-display): Also increase remaining time display width by 1. 12 (audio::-webkit-media-controls-time-remaining-display.five-digit-time): Ditto. 13 (audio::-webkit-media-controls-time-remaining-display.six-digit-time): Ditto. 14 1 15 2015-04-16 Chris Dumez <cdumez@apple.com> 2 16 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.css
r182900 r182924 58 58 -webkit-flex-direction: column; 59 59 font: -webkit-small-control; 60 white-space: nowrap; 60 61 -webkit-font-smoothing: subpixel-antialiased; 61 62 } … … 486 487 bottom: 0.5px; 487 488 font-family: -apple-system-font-monospaced-numbers; 489 -webkit-text-size-adjust:none; 488 490 mix-blend-mode: plus-lighter; 489 491 } … … 501 503 margin-left: 8px; 502 504 margin-right: 16px; 503 width: 3 6px;504 min-width: 3 6px;505 width: 37px; 506 min-width: 37px; 505 507 } 506 508 507 509 video::-webkit-media-controls-time-remaining-display.five-digit-time, 508 510 audio::-webkit-media-controls-time-remaining-display.five-digit-time { 509 min-width: 4 6px;511 min-width: 47px; 510 512 } 511 513 … … 517 519 video::-webkit-media-controls-time-remaining-display.six-digit-time, 518 520 audio::-webkit-media-controls-time-remaining-display.six-digit-time { 519 min-width: 5 3px;521 min-width: 54px; 520 522 } 521 523
Note:
See TracChangeset
for help on using the changeset viewer.