mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-07 17:54:27 -08:00
Add: Option - Selected tab
This commit is contained in:
parent
a46a11166f
commit
23d753e3d9
3 changed files with 22 additions and 9 deletions
|
|
@ -1,22 +1,24 @@
|
|||
/*= Selected Tab - Color like toolbar ========================================*/
|
||||
@include Option("userChrome.tab.connect_to_window") {
|
||||
@include Option($tabConnectToWindow) {
|
||||
@import "selected_tab/color_like_toolbar";
|
||||
}
|
||||
|
||||
/*= Multi Selected Color - More Contrast =====================================*/
|
||||
@import "selected_tab/multi_selected";
|
||||
@include Option($tabMultiSelected) {
|
||||
@import "selected_tab/multi_selected";
|
||||
}
|
||||
|
||||
/*= Selected Tab - Box Shadow ================================================*/
|
||||
@include Option("userChrome.tab.original") {
|
||||
@include Option($tabBoxShadow) {
|
||||
@import "selected_tab/box_shadow";
|
||||
}
|
||||
|
||||
/*= Selected Tab - Bottom Rounded Corner =====================================*/
|
||||
@include Option("userChrome.tab.original") {
|
||||
@include Option($tabBottomRoundedCorner) {
|
||||
@import "selected_tab/bottom_rounded_corner";
|
||||
}
|
||||
|
||||
/*= Selected Tab - Photon like contextline ===================================*/
|
||||
@include Option("userChrome.tab.photon") {
|
||||
@include Option($tabPhotonLikeContextLine) {
|
||||
@import "selected_tab/photon_like_contextline";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
$tabProton: "userChrome.tab.proton";
|
||||
$tabConnectToWindow: "userChrome.tab.connect_to_window";
|
||||
$tabBoxShadow: "userChrome.tab.box_shadow";
|
||||
$tabBottomRoundedCorner: "userChrome.tab.bottom_rounded_corner"
|
||||
$tabPhotonLikeContextLine: "userChrome.tab.photon_like_contextline";
|
||||
|
||||
$compatibilityTheme: "userChrome.compatibility.theme";
|
||||
$compatibilityOS: "userChrome.compatibility.os";
|
||||
|
|
@ -14,6 +18,8 @@ $fieldBorder: "userChrome.decoration.field_border";
|
|||
$downloadPanel: "userChrome.decoration.download_panel";
|
||||
$animate: "userChrome.decoration.animate";
|
||||
|
||||
$tabMultiSelected: "userChrome.tab.multi_selected";
|
||||
|
||||
@mixin Option($optionName) {
|
||||
@supports -moz-bool-pref("#{$optionName}") {
|
||||
@content;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue