Title: [192134] trunk/Source/WebInspectorUI
Revision
192134
Author
nvasil...@apple.com
Date
2015-11-07 17:29:22 -0800 (Sat, 07 Nov 2015)

Log Message

Web Inspector: [Regression] [Mavericks] Toolbar is too dark while docked
https://bugs.webkit.org/show_bug.cgi?id=150977

Set the toolbar color of the docked inspector to be the same as on OS X 10.10+.
Undocked toolbar color on Mavericks is unnaffected.

Reviewed by Timothy Hatcher.

* UserInterface/Views/Toolbar.css:
(body.mavericks.docked .toolbar):
(body:not(.mavericks) .toolbar): Added.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (192133 => 192134)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-11-08 00:50:44 UTC (rev 192133)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-11-08 01:29:22 UTC (rev 192134)
@@ -1,3 +1,17 @@
+2015-11-07  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: [Regression] [Mavericks] Toolbar is too dark while docked
+        https://bugs.webkit.org/show_bug.cgi?id=150977
+
+        Set the toolbar color of the docked inspector to be the same as on OS X 10.10+.
+        Undocked toolbar color on Mavericks is unnaffected.
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/Toolbar.css:
+        (body.mavericks.docked .toolbar):
+        (body:not(.mavericks) .toolbar): Added.
+
 2015-11-06  Timothy Hatcher  <timo...@apple.com>
 
         Web Inspector: Search Results tab causes jump to Resources tab on reload

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Toolbar.css (192133 => 192134)


--- trunk/Source/WebInspectorUI/UserInterface/Views/Toolbar.css	2015-11-08 00:50:44 UTC (rev 192133)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Toolbar.css	2015-11-08 01:29:22 UTC (rev 192134)
@@ -36,7 +36,8 @@
     height: 36px;
 }
 
-body:not(.mavericks) .toolbar {
+body:not(.mavericks) .toolbar,
+body.mavericks.docked .toolbar {
     background-image: linear-gradient(to bottom, hsl(0, 0%, 92%), hsl(0, 0%, 87%));
     box-shadow: inset hsla(0, 0%, 100%, 0.5) 0 1px 1px;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to