Bug 1650843 - fix the opacity of the profiler toolbar down arrow when a light weight theme is in use, r=julienw.

Differential Revision: https://phabricator.services.mozilla.com/D82404
This commit is contained in:
Florian Quèze 2020-07-08 17:24:10 +00:00
parent 45831de74e
commit 70dffcbae3

View file

@ -264,12 +264,9 @@ toolbar[brighttext] {
transform: scaleX(-1);
}
#profiler-button.profiler-active {
#profiler-button.profiler-active > image {
fill: #0060df;
fill-opacity: 1;
}
#profiler-button.profiler-active > image {
background-color: #0060df33;
}
@ -282,7 +279,11 @@ toolbar[brighttext] {
}
#profiler-button > .toolbarbutton-menu-dropmarker {
/* Inherit the fill and fill-opacity values from the toolbarbutton
instead of using the values from .toolbarbutton-menu-dropmarker */
-moz-context-properties: fill, fill-opacity;
fill: inherit;
fill-opacity: inherit;
}
.widget-overflow-list #profiler-button > .toolbarbutton-menu-dropmarker,