Changeset 243352 in webkit


Ignore:
Timestamp:
Mar 21, 2019 6:22:47 PM (5 years ago)
Author:
Nikita Vasilyev
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):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r243301 r243352  
     12019-03-21  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Use CSS variables for text color in Computed panel
     4        https://bugs.webkit.org/show_bug.cgi?id=196117
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/ComputedStyleSection.css:
     9        (.computed-style-section):
     10        (.computed-style-section .computed-property-item .property-trace-item .selector):
     11        (.computed-style-section .computed-property-item .go-to-link):
     12
    1132019-03-21  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/ComputedStyleSection.css

    r239760 r243352  
    2626.computed-style-section {
    2727    padding-bottom: 3px;
    28     color: hsl(0, 0%, 70%);
     28    color: var(--text-color-tertiary);
    2929    -webkit-user-select: text;
    3030}
     
    133133
    134134.computed-style-section .computed-property-item .property-trace-item .selector {
    135     color: hsl(0, 0%, 50%);
     135    color: var(--text-color-secondary);
    136136}
    137137
     
    144144
    145145.computed-style-section .computed-property-item .go-to-link {
    146     color: hsl(0, 0%, 50%);
     146    color: var(--text-color-secondary);
    147147}
    148148
Note: See TracChangeset for help on using the changeset viewer.