Changeset 172530 in webkit
- Timestamp:
- Aug 13, 2014, 12:12:07 PM (11 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r172527 r172530 1 2014-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 1 18 2014-08-13 Joseph Pecoraro <pecoraro@apple.com> 2 19 -
trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css
r172399 r172530 90 90 background-color: rgb(255, 255, 255); 91 91 92 box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0;93 94 92 /* Ensure these headers are displayed below the parent header but above scrollbars. */ 95 93 z-index: 100; 96 94 } 95 96 .details-section .details-section:not(.collapsed) > .header { 97 border-bottom: 1px solid rgb(222, 222, 222); 97 98 } 98 99 … … 103 104 } 104 105 105 .details-section .details-section.collaspsed > .header {106 body.mac-platform.legacy .details-section .details-section.collapsed > .header { 106 107 box-shadow: none; 107 108 }
Note:
See TracChangeset
for help on using the changeset viewer.