Fix: Tab - Bottom rounded corner like new tabbutton overlap #678

This commit is contained in:
alstjr7375 2023-04-16 21:59:12 +09:00
parent 7a7081d658
commit 2c70deaea4
2 changed files with 13 additions and 0 deletions

6
css/leptonChrome.css generated
View file

@ -7073,6 +7073,12 @@
background-color: transparent !important;
}
}
/* Fix tab overlap #678 */
@supports -moz-bool-pref("userChrome.tab.bottom_rounded_corner") {
tab:where([visuallyselected="true"]) {
z-index: 1;
}
}
}
/*= New tab button - Smaller button ==========================================*/
@supports -moz-bool-pref("userChrome.tab.newtab_button_smaller") {

View file

@ -143,3 +143,10 @@
// background-position: center;
}
}
/* Fix tab overlap #678 */
@include Option("userChrome.tab.bottom_rounded_corner") {
tab:where([visuallyselected="true"]) {
z-index: 1;
}
}