Fix toolbar styling in non-Australis toolkit themes

This resolves #713
This commit is contained in:
wolfbeast 2018-08-21 00:03:07 +02:00 committed by Roy Tam
commit 4db9b4b2bb
3 changed files with 30 additions and 1 deletions

View file

@ -16,12 +16,21 @@ toolbar {
-moz-appearance: toolbar;
}
%ifdef MOZ_AUSTRALIS
menubar:-moz-lwtheme,
toolbar:-moz-lwtheme {
-moz-appearance: none;
background: none;
border-color: transparent;
}
%else
menubar:-moz-lwtheme,
toolbar:-moz-lwtheme {
-moz-appearance: none;
background: none;
border-style: none;
}
%endif
menubar {
-moz-appearance: dialog; /* For content menubars, "toolbar" is too dark, so we use "dialog". */