forked from mirrors/gecko-dev
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:
parent
45831de74e
commit
70dffcbae3
1 changed files with 5 additions and 4 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue