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

Log Message

Web Inspector: Inline DataGrid inside details sidebar has double thick top border with legacy styles
https://bugs.webkit.org/show_bug.cgi?id=135894

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

* UserInterface/Views/DetailsSection.css:
(body.mac-platform.legacy .details-section:not(.collapsed) .data-grid.inline):
In legacy styles the details-section header always has a 1px bottom border.
In all styles, an inline data grid had a 1px border everywhere. So, handle
this specific case by removing the top border of an inline data grid
that is inside an expanded details section.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172532 => 172533)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-13 19:43:25 UTC (rev 172532)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-13 20:14:47 UTC (rev 172533)
@@ -1,5 +1,19 @@
 2014-08-13  Joseph Pecoraro  <pecor...@apple.com>
 
+        Web Inspector: Inline DataGrid inside details sidebar has double thick top border with legacy styles
+        https://bugs.webkit.org/show_bug.cgi?id=135894
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/DetailsSection.css:
+        (body.mac-platform.legacy .details-section:not(.collapsed) .data-grid.inline):
+        In legacy styles the details-section header always has a 1px bottom border.
+        In all styles, an inline data grid had a 1px border everywhere. So, handle
+        this specific case by removing the top border of an inline data grid
+        that is inside an expanded details section.
+
+2014-08-13  Joseph Pecoraro  <pecor...@apple.com>
+
         Web Inspector: "No Filter Results" view only shows once, does not show again
         https://bugs.webkit.org/show_bug.cgi?id=135892
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css (172532 => 172533)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2014-08-13 19:43:25 UTC (rev 172532)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2014-08-13 20:14:47 UTC (rev 172533)
@@ -107,6 +107,10 @@
     box-shadow: none;
 }
 
+body.mac-platform.legacy .details-section:not(.collapsed) .data-grid.inline {
+    border-top: none;
+}
+
 .details-section.computed-style-properties:not(.collapsed) > .header {
     background-color: rgb(255, 255, 255);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to