Title: [188732] trunk/Source/WebInspectorUI
- Revision
- 188732
- Author
- [email protected]
- Date
- 2015-08-20 18:40:56 -0700 (Thu, 20 Aug 2015)
Log Message
Web Inspector: Labels in the computed panel are shifted when a filter is applieds
https://bugs.webkit.org/show_bug.cgi?id=148250
Reviewed by Timothy Hatcher.
Added to the selectors for filtering to ensure they only apply to the rules panel.
* UserInterface/Views/RulesStyleDetailsPanel.css:
(.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label):
(.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label:not(.filter-section-non-matching) ~ .label):
(.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label.filter-matching-label):
(.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label:not(.filter-section-non-matching) + .label.filter-matching-label:not(.filter-section-non-matching)):
(.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .new-rule):
(.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .style-declaration-section:not(.filter-section-non-matching) ~ .label:not(.filter-section-non-matching)):
(@media (-webkit-min-device-pixel-ratio: 2)):
(.sidebar > .panel.details.css-style > .content.filter-in-progress .label): Deleted.
(.sidebar > .panel.details.css-style > .content.filter-in-progress .label:not(.filter-section-non-matching) ~ .label): Deleted.
(.sidebar > .panel.details.css-style > .content.filter-in-progress .label.filter-matching-label): Deleted.
(.sidebar > .panel.details.css-style > .content.filter-in-progress .label:not(.filter-section-non-matching) + .label.filter-matching-label:not(.filter-section-non-matching)): Deleted.
(.sidebar > .panel.details.css-style > .content.filter-in-progress .new-rule): Deleted.
(.sidebar > .panel.details.css-style > .content.filter-in-progress .style-declaration-section:not(.filter-section-non-matching) ~ .label:not(.filter-section-non-matching)): Deleted.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (188731 => 188732)
--- trunk/Source/WebInspectorUI/ChangeLog 2015-08-21 01:38:56 UTC (rev 188731)
+++ trunk/Source/WebInspectorUI/ChangeLog 2015-08-21 01:40:56 UTC (rev 188732)
@@ -1,5 +1,29 @@
2015-08-20 Devin Rousso <[email protected]>
+ Web Inspector: Labels in the computed panel are shifted when a filter is applieds
+ https://bugs.webkit.org/show_bug.cgi?id=148250
+
+ Reviewed by Timothy Hatcher.
+
+ Added to the selectors for filtering to ensure they only apply to the rules panel.
+
+ * UserInterface/Views/RulesStyleDetailsPanel.css:
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label):
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label:not(.filter-section-non-matching) ~ .label):
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label.filter-matching-label):
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label:not(.filter-section-non-matching) + .label.filter-matching-label:not(.filter-section-non-matching)):
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .new-rule):
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .style-declaration-section:not(.filter-section-non-matching) ~ .label:not(.filter-section-non-matching)):
+ (@media (-webkit-min-device-pixel-ratio: 2)):
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress .label): Deleted.
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress .label:not(.filter-section-non-matching) ~ .label): Deleted.
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress .label.filter-matching-label): Deleted.
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress .label:not(.filter-section-non-matching) + .label.filter-matching-label:not(.filter-section-non-matching)): Deleted.
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress .new-rule): Deleted.
+ (.sidebar > .panel.details.css-style > .content.filter-in-progress .style-declaration-section:not(.filter-section-non-matching) ~ .label:not(.filter-section-non-matching)): Deleted.
+
+2015-08-20 Devin Rousso <[email protected]>
+
Web Inspector: Fix "attempted to assign to readonly property" in Visual editor links
https://bugs.webkit.org/show_bug.cgi?id=148264
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/RulesStyleDetailsPanel.css (188731 => 188732)
--- trunk/Source/WebInspectorUI/UserInterface/Views/RulesStyleDetailsPanel.css 2015-08-21 01:38:56 UTC (rev 188731)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/RulesStyleDetailsPanel.css 2015-08-21 01:40:56 UTC (rev 188732)
@@ -59,28 +59,28 @@
margin-top: 8px;
}
-.sidebar > .panel.details.css-style > .content.filter-in-progress .label {
+.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label {
padding-top: 15px;
}
-.sidebar > .panel.details.css-style > .content.filter-in-progress .label:not(.filter-section-non-matching) ~ .label {
+.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label:not(.filter-section-non-matching) ~ .label {
padding-top: 0;
}
-.sidebar > .panel.details.css-style > .content.filter-in-progress .label.filter-matching-label {
+.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label.filter-matching-label {
padding-bottom: 5px;
border-bottom: 1px solid hsla(0, 0%, 0%, 0.3);
}
-.sidebar > .panel.details.css-style > .content.filter-in-progress .label:not(.filter-section-non-matching) + .label.filter-matching-label:not(.filter-section-non-matching) {
+.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label:not(.filter-section-non-matching) + .label.filter-matching-label:not(.filter-section-non-matching) {
padding-top: 0;
}
-.sidebar > .panel.details.css-style > .content.filter-in-progress .new-rule {
+.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .new-rule {
display: none;
}
-.sidebar > .panel.details.css-style > .content.filter-in-progress .style-declaration-section:not(.filter-section-non-matching) ~ .label:not(.filter-section-non-matching) {
+.sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .style-declaration-section:not(.filter-section-non-matching) ~ .label:not(.filter-section-non-matching) {
padding-top: 15px;
}
@@ -139,7 +139,7 @@
@media (-webkit-min-device-pixel-ratio: 2) {
.sidebar > .panel.details.css-style > .content:not(.filter-in-progress) > .rules > .new-rule + .label,
- .sidebar > .panel.details.css-style > .content.filter-in-progress .label.filter-matching-label,
+ .sidebar > .panel.details.css-style > .content.filter-in-progress > .rules .label.filter-matching-label,
.no-filter-results-message {
border-width: 0.5px !important;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes