Title: [172569] branches/safari-600.1-branch/Source/WebInspectorUI
- Revision
- 172569
- Author
- lforsch...@apple.com
- Date
- 2014-08-13 21:13:30 -0700 (Wed, 13 Aug 2014)
Log Message
Merged r172530. <rdar://problem/18008584>
Modified Paths
Diff
Modified: branches/safari-600.1-branch/Source/WebInspectorUI/ChangeLog (172568 => 172569)
--- branches/safari-600.1-branch/Source/WebInspectorUI/ChangeLog 2014-08-14 04:11:52 UTC (rev 172568)
+++ branches/safari-600.1-branch/Source/WebInspectorUI/ChangeLog 2014-08-14 04:13:30 UTC (rev 172569)
@@ -1,5 +1,26 @@
2014-08-13 Lucas Forschler <lforsch...@apple.com>
+ Merge r172530
+
+ 2014-08-13 Joseph Pecoraro <pecor...@apple.com>
+
+ Web Inspector: Incorrect border colors in event listeners sections in details sidebar
+ https://bugs.webkit.org/show_bug.cgi?id=135891
+
+ 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.
+
+2014-08-13 Lucas Forschler <lforsch...@apple.com>
+
Merge r172527
2014-08-13 Joseph Pecoraro <pecor...@apple.com>
Modified: branches/safari-600.1-branch/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css (172568 => 172569)
--- branches/safari-600.1-branch/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css 2014-08-14 04:11:52 UTC (rev 172568)
+++ branches/safari-600.1-branch/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css 2014-08-14 04:13:30 UTC (rev 172569)
@@ -89,11 +89,12 @@
top: 21px;
background-color: rgb(255, 255, 255);
- box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0;
-
/* Ensure these headers are displayed below the parent header but above scrollbars. */
z-index: 100;
+}
+.details-section .details-section:not(.collapsed) > .header {
+ border-bottom: 1px solid rgb(222, 222, 222);
}
body.mac-platform.legacy .details-section .details-section > .header {
@@ -102,7 +103,7 @@
box-shadow: none;
}
-.details-section .details-section.collaspsed > .header {
+body.mac-platform.legacy .details-section .details-section.collapsed > .header {
box-shadow: none;
}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes