Title: [243352] trunk/Source/WebInspectorUI
Revision
243352
Author
[email protected]
Date
2019-03-21 18:22:47 -0700 (Thu, 21 Mar 2019)

Log Message

Web Inspector: Use CSS variables for text color in Computed panel
https://bugs.webkit.org/show_bug.cgi?id=196117

Reviewed by Timothy Hatcher.

* UserInterface/Views/ComputedStyleSection.css:
(.computed-style-section):
(.computed-style-section .computed-property-item .property-trace-item .selector):
(.computed-style-section .computed-property-item .go-to-link):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (243351 => 243352)


--- trunk/Source/WebInspectorUI/ChangeLog	2019-03-22 01:03:18 UTC (rev 243351)
+++ trunk/Source/WebInspectorUI/ChangeLog	2019-03-22 01:22:47 UTC (rev 243352)
@@ -1,3 +1,15 @@
+2019-03-21  Nikita Vasilyev  <[email protected]>
+
+        Web Inspector: Use CSS variables for text color in Computed panel
+        https://bugs.webkit.org/show_bug.cgi?id=196117
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/ComputedStyleSection.css:
+        (.computed-style-section):
+        (.computed-style-section .computed-property-item .property-trace-item .selector):
+        (.computed-style-section .computed-property-item .go-to-link):
+
 2019-03-21  Devin Rousso  <[email protected]>
 
         Web Inspector: Timelines: flatten the overview to show all records, one per line

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ComputedStyleSection.css (243351 => 243352)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ComputedStyleSection.css	2019-03-22 01:03:18 UTC (rev 243351)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ComputedStyleSection.css	2019-03-22 01:22:47 UTC (rev 243352)
@@ -25,7 +25,7 @@
 
 .computed-style-section {
     padding-bottom: 3px;
-    color: hsl(0, 0%, 70%);
+    color: var(--text-color-tertiary);
     -webkit-user-select: text;
 }
 
@@ -132,7 +132,7 @@
 }
 
 .computed-style-section .computed-property-item .property-trace-item .selector {
-    color: hsl(0, 0%, 50%);
+    color: var(--text-color-secondary);
 }
 
 .computed-style-section .computed-property-item .origin {
@@ -143,7 +143,7 @@
 }
 
 .computed-style-section .computed-property-item .go-to-link {
-    color: hsl(0, 0%, 50%);
+    color: var(--text-color-secondary);
 }
 
 .computed-style-section .property-trace-item .property .name,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to