mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-05 18:20:44 -08:00
This commit is contained in:
parent
2bcd91f8b8
commit
38507b733b
3 changed files with 20 additions and 0 deletions
10
css/leptonChrome.css
generated
10
css/leptonChrome.css
generated
|
|
@ -3965,6 +3965,11 @@
|
|||
--tab-border-radius: 0 !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@media not -moz-pref("userChrome.rounding.square_tab") {
|
||||
:root {
|
||||
--tab-border-radius: 4px !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@media -moz-pref("userChrome.rounding.square_button") {
|
||||
:root {
|
||||
--urlbar-icon-border-radius: 0 !important; /* Original: calc(var(--toolbarbutton-border-radius) - 1px); */
|
||||
|
|
@ -18458,6 +18463,11 @@
|
|||
--tab-border-radius: 0 !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@media not (-moz-bool-pref: "userChrome.rounding.square_tab") {
|
||||
:root {
|
||||
--tab-border-radius: 4px !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@media (-moz-bool-pref: "userChrome.rounding.square_button") {
|
||||
:root {
|
||||
--urlbar-icon-border-radius: 0 !important; /* Original: calc(var(--toolbarbutton-border-radius) - 1px); */
|
||||
|
|
|
|||
5
css/leptonChromeESR.css
generated
5
css/leptonChromeESR.css
generated
|
|
@ -4286,6 +4286,11 @@
|
|||
--tab-border-radius: 0 !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@supports not -moz-bool-pref("userChrome.rounding.square_tab") {
|
||||
:root {
|
||||
--tab-border-radius: 4px !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@supports -moz-bool-pref("userChrome.rounding.square_button") {
|
||||
:root {
|
||||
--urlbar-icon-border-radius: 0 !important; /* Original: calc(var(--toolbarbutton-border-radius) - 1px); */
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@
|
|||
--tab-border-radius: 0 !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@include NotOption("userChrome.rounding.square_tab") {
|
||||
:root {
|
||||
--tab-border-radius: 4px !important; /* Original: 4px */
|
||||
}
|
||||
}
|
||||
@include Option("userChrome.rounding.square_button") {
|
||||
:root {
|
||||
--urlbar-icon-border-radius: 0 !important; /* Original: calc(var(--toolbarbutton-border-radius) - 1px); */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue