Changeset 172530 in webkit


Ignore:
Timestamp:
Aug 13, 2014, 12:12:07 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Incorrect border colors in event listeners sections in details sidebar
https://bugs.webkit.org/show_bug.cgi?id=135891

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-08-13
Reviewed by Timothy Hatcher.

  • UserInterface/Views/DetailsSection.css:

(.details-section .details-section > .header):
(.details-section .details-section:not(.collapsed) > .header):
Remove box-shadow and replace with a bottom border.

(body.mac-platform.legacy .details-section .details-section.collapsed > .header):
(.details-section .details-section.collaspsed > .header): Deleted.
Collapsed was spelled incorrectly so this was not applying properly before.
But correct this for legacy because legacy still uses a box-shadow.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r172527 r172530  
     12014-08-13  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Incorrect border colors in event listeners sections in details sidebar
     4        https://bugs.webkit.org/show_bug.cgi?id=135891
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/DetailsSection.css:
     9        (.details-section .details-section > .header):
     10        (.details-section .details-section:not(.collapsed) > .header):
     11        Remove box-shadow and replace with a bottom border.
     12
     13        (body.mac-platform.legacy .details-section .details-section.collapsed > .header):
     14        (.details-section .details-section.collaspsed > .header): Deleted.
     15        Collapsed was spelled incorrectly so this was not applying properly before.
     16        But correct this for legacy because legacy still uses a box-shadow.
     17
    1182014-08-13  Joseph Pecoraro  <pecoraro@apple.com>
    219
  • trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css

    r172399 r172530  
    9090    background-color: rgb(255, 255, 255);
    9191
    92     box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0;
    93 
    9492    /* Ensure these headers are displayed below the parent header but above scrollbars. */
    9593    z-index: 100;
    96 
     94}
     95
     96.details-section .details-section:not(.collapsed) > .header {
     97    border-bottom: 1px solid rgb(222, 222, 222);
    9798}
    9899
     
    103104}
    104105
    105 .details-section .details-section.collaspsed > .header {
     106body.mac-platform.legacy .details-section .details-section.collapsed > .header {
    106107    box-shadow: none;
    107108}
Note: See TracChangeset for help on using the changeset viewer.