Title: [223323] trunk/Source/WebInspectorUI
Revision
223323
Author
nvasil...@apple.com
Date
2017-10-14 12:18:15 -0700 (Sat, 14 Oct 2017)

Log Message

REGRESSION (r223310): Web Inspector: Class list container is transparent and unreadable
https://bugs.webkit.org/show_bug.cgi?id=178311

Reviewed by Devin Rousso.

* UserInterface/Views/CSSStyleDetailsSidebarPanel.css:
(.sidebar > .panel.details.css-style > .content ~ .class-list-container):
Fix 1px hole below the class container.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (223322 => 223323)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-10-14 19:05:16 UTC (rev 223322)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-10-14 19:18:15 UTC (rev 223323)
@@ -1,3 +1,14 @@
+2017-10-14  Nikita Vasilyev  <nvasil...@apple.com>
+
+        REGRESSION (r223310): Web Inspector: Class list container is transparent and unreadable
+        https://bugs.webkit.org/show_bug.cgi?id=178311
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Views/CSSStyleDetailsSidebarPanel.css:
+        (.sidebar > .panel.details.css-style > .content ~ .class-list-container):
+        Fix 1px hole below the class container.
+
 2017-10-14  Matt Baker  <mattba...@apple.com>
 
         Web Inspector: Canvas tab: recordings should have a unique name

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDetailsSidebarPanel.css (223322 => 223323)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDetailsSidebarPanel.css	2017-10-14 19:05:16 UTC (rev 223322)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDetailsSidebarPanel.css	2017-10-14 19:18:15 UTC (rev 223323)
@@ -142,9 +142,10 @@
 
 .sidebar > .panel.details.css-style > .content ~ .class-list-container {
     flex-wrap: wrap;
-    bottom: var(--console-prompt-min-height);
+    bottom: calc(var(--console-prompt-min-height) - 1px);
     max-height: 75px;
     padding: 3px 2px;
+    background-color: var(--panel-background-color);
     overflow-y: scroll;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to