From d8d980430ef7c8d194c00b78973027807653d239 Mon Sep 17 00:00:00 2001 From: Tim Nguyen Date: Sat, 30 Jul 2016 06:59:45 -0700 Subject: [PATCH] Bug 1288888 - Followup: fix rule filter icon to be visible on all themes. r=me MozReview-Commit-ID: GpXdjJC16KC --- devtools/client/themes/rules.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/devtools/client/themes/rules.css b/devtools/client/themes/rules.css index e2f1e29ce7f3..5d594e3db6e8 100644 --- a/devtools/client/themes/rules.css +++ b/devtools/client/themes/rules.css @@ -5,17 +5,14 @@ /* CSS Variables specific to this panel that aren't defined by the themes */ .theme-light { --rule-highlight-background-color: #ffee99; - --rule-filter-icon: url(images/filter.svg); } .theme-dark { --rule-highlight-background-color: #594724; - --rule-filter-icon: url(images/filter.svg); } .theme-firebug { --rule-highlight-background-color: #ffee99; - --rule-filter-icon: url(images/filter.svg); --rule-property-name: darkgreen; --rule-property-value: darkblue; } @@ -296,7 +293,7 @@ } .ruleview-overridden-rule-filter { - background-image: var(--rule-filter-icon); + background-image: url(images/filter.svg#filterinput); background-size: 11px 11px; margin-inline-start: 5px; display: inline-block;