mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-06 02:30:54 -08:00
Fix: Rounding - Unified extensions menu button #735
This commit is contained in:
parent
d5c11dff4f
commit
558b5cacd7
4 changed files with 13 additions and 0 deletions
4
css/leptonChrome.css
generated
4
css/leptonChrome.css
generated
|
|
@ -3735,6 +3735,10 @@
|
||||||
}
|
}
|
||||||
/** Rounding ******************************************************************/
|
/** Rounding ******************************************************************/
|
||||||
/** Rounding ******************************************************************/
|
/** Rounding ******************************************************************/
|
||||||
|
.unified-extensions-item-menu-button.subviewbutton {
|
||||||
|
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
|
||||||
|
}
|
||||||
|
|
||||||
@supports -moz-bool-pref("userChrome.rounding.square_tab") {
|
@supports -moz-bool-pref("userChrome.rounding.square_tab") {
|
||||||
:root {
|
:root {
|
||||||
--tab-border-radius: 0 !important; /* Original: 4px */
|
--tab-border-radius: 0 !important; /* Original: 4px */
|
||||||
|
|
|
||||||
4
css/leptonChromeESR.css
generated
4
css/leptonChromeESR.css
generated
|
|
@ -4055,6 +4055,10 @@
|
||||||
}
|
}
|
||||||
/** Rounding ******************************************************************/
|
/** Rounding ******************************************************************/
|
||||||
/** Rounding ******************************************************************/
|
/** Rounding ******************************************************************/
|
||||||
|
.unified-extensions-item-menu-button.subviewbutton {
|
||||||
|
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
|
||||||
|
}
|
||||||
|
|
||||||
@supports -moz-bool-pref("userChrome.rounding.square_tab") {
|
@supports -moz-bool-pref("userChrome.rounding.square_tab") {
|
||||||
:root {
|
:root {
|
||||||
--tab-border-radius: 0 !important; /* Original: 4px */
|
--tab-border-radius: 0 !important; /* Original: 4px */
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
/** Rounding ******************************************************************/
|
/** Rounding ******************************************************************/
|
||||||
|
@import "round";
|
||||||
@import "square";
|
@import "square";
|
||||||
@import "dialog";
|
@import "dialog";
|
||||||
@import "library";
|
@import "library";
|
||||||
|
|
|
||||||
4
src/rounding/_round.scss
Normal file
4
src/rounding/_round.scss
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
// #735
|
||||||
|
.unified-extensions-item-menu-button.subviewbutton {
|
||||||
|
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue