Changeset 180725 in webkit


Ignore:
Timestamp:
Feb 26, 2015 9:32:07 PM (9 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Add a subtle blue background for selected console messages
https://bugs.webkit.org/show_bug.cgi?id=142073

Reviewed by Timothy Hatcher.

  • UserInterface/Views/LogContentView.css:

(.console-item.selected::after):
(.console-messages:focus .console-item.selected):
(.console-messages:focus .console-item.selected + .console-item):
(.console-error-level + .console-item):
(.console-error-level .section .header .title):
(.console-warning-level):
(.console-warning-level + .console-item):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r180722 r180725  
     12015-02-26  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Add a subtle blue background for selected console messages
     4        https://bugs.webkit.org/show_bug.cgi?id=142073
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/LogContentView.css:
     9        (.console-item.selected::after):
     10        (.console-messages:focus .console-item.selected):
     11        (.console-messages:focus .console-item.selected + .console-item):
     12        (.console-error-level + .console-item):
     13        (.console-error-level .section .header .title):
     14        (.console-warning-level):
     15        (.console-warning-level + .console-item):
     16
    1172015-02-26  Joseph Pecoraro  <pecoraro@apple.com>
    218
  • trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css

    r180715 r180725  
    6464    content: "";
    6565    left: 0;
    66     top: 0;
    67     bottom: 0;
     66    top: -1px;
     67    bottom: -1px;
    6868    background: hsl(0, 0%, 60%);
    6969    width: 2px;
     70    z-index: 10;
    7071}
    7172
     
    7677.console-item .data-grid tr.selected {
    7778    background-color: hsl(210, 0%, 90%) !important;
     79}
     80
     81.console-messages:focus .console-item.selected {
     82    background-color: hsl(210, 98%, 96%);
     83    border-color: hsl(210, 90%, 93%);
     84}
     85
     86.console-messages:focus .console-item.selected + .console-item {
     87    border-top-color: hsl(210, 90%, 93%);
    7888}
    7989
     
    171181}
    172182
     183.console-error-level + .console-item {
     184    border-top-color: hsl(0, 100%, 92%);
     185}
     186
    173187.console-error-level .console-message-text,
    174188.console-error-level .section .header .title {
    175     color: hsl(0, 75%, 50%);
     189    color: hsl(0, 75%, 45%);
    176190}
    177191
     
    190204.console-warning-level {
    191205    background-color: hsl(50, 100%, 94%);
    192     border-color: hsl(50, 100%, 86%);
     206    border-color: hsl(40, 100%, 90%);
     207}
     208
     209.console-warning-level + .console-item {
     210    border-top-color: hsl(40, 100%, 90%);
    193211}
    194212
Note: See TracChangeset for help on using the changeset viewer.