Fix: FullScreen - Overlap's background color at linux

This commit is contained in:
alstjr7375 2022-05-05 14:31:54 +09:00
parent 0ad35b4ec1
commit 295a2cd62c
2 changed files with 14 additions and 0 deletions

View file

@ -5133,6 +5133,13 @@
visibility: unset !important;
/* Makes the bookmarks toolbar visible if enabled */
}
@media (-moz-gtk-csd-available) {
/* Fix transparent backgorund */
:root[tabsintitlebar][sizemode="fullscreen"] #TabsToolbar:not(:-moz-lwtheme) {
appearance: auto !important;
}
}
}
}
/** Library - Icons Replace ***************************************************/

View file

@ -11,3 +11,10 @@
:root[sizemode="fullscreen"] #PersonalToolbar[initialized="true"] {
visibility: unset !important; /* Makes the bookmarks toolbar visible if enabled */
}
@include OS($linux) {
/* Fix transparent backgorund */
:root[tabsintitlebar][sizemode="fullscreen"] #TabsToolbar:not(:-moz-lwtheme) {
appearance: auto !important;
}
}