Title: [184564] trunk/Source/WebCore
Revision
184564
Author
jon...@apple.com
Date
2015-05-19 09:24:08 -0700 (Tue, 19 May 2015)

Log Message

[iOS] Current time display should be right-aligned
https://bugs.webkit.org/show_bug.cgi?id=145163
rdar://problem/21014339

Reviewed by Eric Carlson.

* Modules/mediacontrols/mediaControlsiOS.css: Use flex-start and flex-end
instead of right and left, similar to the Mac controls.
(video::-webkit-media-controls-current-time-display):
(video::-webkit-media-controls-time-remaining-display):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (184563 => 184564)


--- trunk/Source/WebCore/ChangeLog	2015-05-19 15:48:17 UTC (rev 184563)
+++ trunk/Source/WebCore/ChangeLog	2015-05-19 16:24:08 UTC (rev 184564)
@@ -1,3 +1,16 @@
+2015-05-19  Jon Lee  <jon...@apple.com>
+
+        [iOS] Current time display should be right-aligned
+        https://bugs.webkit.org/show_bug.cgi?id=145163
+        rdar://problem/21014339
+
+        Reviewed by Eric Carlson.
+
+        * Modules/mediacontrols/mediaControlsiOS.css: Use flex-start and flex-end
+        instead of right and left, similar to the Mac controls.
+        (video::-webkit-media-controls-current-time-display):
+        (video::-webkit-media-controls-time-remaining-display):
+
 2015-05-14  Chris Fleizach  <cfleiz...@apple.com>
 
         AX: Select text mechanism returns results outside of text control regions

Modified: trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css (184563 => 184564)


--- trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css	2015-05-19 15:48:17 UTC (rev 184563)
+++ trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css	2015-05-19 16:24:08 UTC (rev 184564)
@@ -413,14 +413,14 @@
 audio::-webkit-media-controls-current-time-display,
 video::-webkit-media-controls-current-time-display {
     min-width: 32px;
-    -webkit-justify-content: right;
+    -webkit-justify-content: flex-end;
     padding-right: 6px;
 }
 
 audio::-webkit-media-controls-time-remaining-display,
 video::-webkit-media-controls-time-remaining-display {
     min-width: 38px;
-    -webkit-justify-content: left;
+    -webkit-justify-content: flex-start;
     padding-left: 6px;
     margin-right: 6px;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to