Title: [217265] trunk/Source/WebInspectorUI
Revision
217265
Author
commit-qu...@webkit.org
Date
2017-05-22 20:50:13 -0700 (Mon, 22 May 2017)

Log Message

Web Inspector: New Tab contents not centered vertically
https://bugs.webkit.org/show_bug.cgi?id=172486

Patch by Joseph Pecoraro <pecor...@apple.com> on 2017-05-22
Reviewed by Devin Rousso.

* UserInterface/Views/NewTabContentView.css:
(.new-tab.tab.content-view):
Use align-items instead of align-content.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (217264 => 217265)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-05-23 02:15:28 UTC (rev 217264)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-05-23 03:50:13 UTC (rev 217265)
@@ -1,3 +1,14 @@
+2017-05-22  Joseph Pecoraro  <pecor...@apple.com>
+
+        Web Inspector: New Tab contents not centered vertically
+        https://bugs.webkit.org/show_bug.cgi?id=172486
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Views/NewTabContentView.css:
+        (.new-tab.tab.content-view):
+        Use align-items instead of align-content.
+
 2017-05-22  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: New CSS Rules should go into a new Stylesheet Resource that can be viewed/edited/saved

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NewTabContentView.css (217264 => 217265)


--- trunk/Source/WebInspectorUI/UserInterface/Views/NewTabContentView.css	2017-05-23 02:15:28 UTC (rev 217264)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NewTabContentView.css	2017-05-23 03:50:13 UTC (rev 217265)
@@ -27,7 +27,7 @@
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
-    align-content: center;
+    align-items: center;
 
     background-color: hsl(0, 0%, 96%);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to