Title: [139413] trunk/Source/WebKit/chromium
Revision
139413
Author
[email protected]
Date
2013-01-11 00:33:06 -0800 (Fri, 11 Jan 2013)

Log Message

Web Inspector [chromium]: toolbar border is missing on non-Mac in docked-to-bottom mode
https://bugs.webkit.org/show_bug.cgi?id=106560

Reviewed by Vsevolod Vlasov.

* src/js/devTools.css:
(body.dock-to-bottom.platform-mac #toolbar):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (139412 => 139413)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-01-11 07:54:11 UTC (rev 139412)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-01-11 08:33:06 UTC (rev 139413)
@@ -1,3 +1,13 @@
+2013-01-11  Pavel Feldman  <[email protected]>
+
+        Web Inspector [chromium]: toolbar border is missing on non-Mac in docked-to-bottom mode
+        https://bugs.webkit.org/show_bug.cgi?id=106560
+
+        Reviewed by Vsevolod Vlasov.
+
+        * src/js/devTools.css:
+        (body.dock-to-bottom.platform-mac #toolbar):
+
 2013-01-10  Noel Gordon  <[email protected]>
 
         [chromium] Disable PNG and ICO image webkit-unit-tests after r139347

Modified: trunk/Source/WebKit/chromium/src/js/devTools.css (139412 => 139413)


--- trunk/Source/WebKit/chromium/src/js/devTools.css	2013-01-11 07:54:11 UTC (rev 139412)
+++ trunk/Source/WebKit/chromium/src/js/devTools.css	2013-01-11 08:33:06 UTC (rev 139413)
@@ -3,10 +3,13 @@
 }
 
 body.dock-to-bottom #toolbar {
-    border-top-color: white;
     cursor: default; /* overriden */
 }
 
+body.dock-to-bottom.platform-mac #toolbar {
+    border-top-color: white;
+}
+
 /* Chrome theme overrides */
 
 body.platform-windows #toolbar, body.platform-windows.inactive #toolbar {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to