Title: [172530] trunk/Source/WebInspectorUI
Revision
172530
Author
commit-qu...@webkit.org
Date
2014-08-13 12:12:07 -0700 (Wed, 13 Aug 2014)

Log Message

Web Inspector: Incorrect border colors in event listeners sections in details sidebar
https://bugs.webkit.org/show_bug.cgi?id=135891

Patch by Joseph Pecoraro <pecor...@apple.com> on 2014-08-13
Reviewed by Timothy Hatcher.

* UserInterface/Views/DetailsSection.css:
(.details-section .details-section > .header):
(.details-section .details-section:not(.collapsed) > .header):
Remove box-shadow and replace with a bottom border.

(body.mac-platform.legacy .details-section .details-section.collapsed > .header):
(.details-section .details-section.collaspsed > .header): Deleted.
Collapsed was spelled incorrectly so this was not applying properly before.
But correct this for legacy because legacy still uses a box-shadow.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172529 => 172530)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-13 19:05:21 UTC (rev 172529)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-13 19:12:07 UTC (rev 172530)
@@ -1,5 +1,22 @@
 2014-08-13  Joseph Pecoraro  <pecor...@apple.com>
 
+        Web Inspector: Incorrect border colors in event listeners sections in details sidebar
+        https://bugs.webkit.org/show_bug.cgi?id=135891
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/DetailsSection.css:
+        (.details-section .details-section > .header):
+        (.details-section .details-section:not(.collapsed) > .header):
+        Remove box-shadow and replace with a bottom border.
+
+        (body.mac-platform.legacy .details-section .details-section.collapsed > .header):
+        (.details-section .details-section.collaspsed > .header): Deleted.
+        Collapsed was spelled incorrectly so this was not applying properly before.
+        But correct this for legacy because legacy still uses a box-shadow.
+
+2014-08-13  Joseph Pecoraro  <pecor...@apple.com>
+
         Web Inspector: Timeline Close buttons can use polish for new and legacy styles
         https://bugs.webkit.org/show_bug.cgi?id=135870
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css (172529 => 172530)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2014-08-13 19:05:21 UTC (rev 172529)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2014-08-13 19:12:07 UTC (rev 172530)
@@ -89,11 +89,12 @@
     top: 21px;
     background-color: rgb(255, 255, 255);
 
-    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0;
-
     /* Ensure these headers are displayed below the parent header but above scrollbars. */
     z-index: 100;
+}
 
+.details-section .details-section:not(.collapsed) > .header {
+    border-bottom: 1px solid rgb(222, 222, 222);
 }
 
 body.mac-platform.legacy .details-section .details-section > .header {
@@ -102,7 +103,7 @@
     box-shadow: none;
 }
 
-.details-section .details-section.collaspsed > .header {
+body.mac-platform.legacy .details-section .details-section.collapsed > .header {
     box-shadow: none;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to