Changeset 196166 in webkit


Ignore:
Timestamp:
Feb 4, 2016 9:57:37 PM (8 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: console.table background stripes are misaligned
https://bugs.webkit.org/show_bug.cgi?id=152954
<rdar://problem/24197735>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/LogContentView.css:

(.console-item .data-grid table.data):
(.console-item .data-grid table.data tr:nth-child(even)):
Replace CSS gradient that produces fixed height stripes with
a rule that sets background only on even table rows.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r196163 r196166  
     12016-02-04  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: console.table background stripes are misaligned
     4        https://bugs.webkit.org/show_bug.cgi?id=152954
     5        <rdar://problem/24197735>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        * UserInterface/Views/LogContentView.css:
     10        (.console-item .data-grid table.data):
     11        (.console-item .data-grid table.data tr:nth-child(even)):
     12        Replace CSS gradient that produces fixed height stripes with
     13        a rule that sets background only on even table rows.
     14
    1152016-02-04  Joseph Pecoraro  <pecoraro@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css

    r191488 r196166  
    118118}
    119119
     120.console-item .data-grid table.data {
     121    background-image: none;
     122    background-color: white;
     123}
     124
     125.console-item .data-grid table.data tr:nth-child(even) {
     126    background-color: hsl(214, 41%, 96%);
     127}
     128
    120129.console-item .data-grid tr.selected {
    121130    background-color: hsl(210, 0%, 90%) !important;
Note: See TracChangeset for help on using the changeset viewer.