Fix: Rounding - Unified extensions menu button #735

This commit is contained in:
2641a40fd44383320adde4b027a1d0b03bd550 2023-09-24 09:42:31 +00:00
parent d5c11dff4f
commit 558b5cacd7
4 changed files with 13 additions and 0 deletions

4
css/leptonChrome.css generated
View file

@ -3735,6 +3735,10 @@
}
/** Rounding ******************************************************************/
/** Rounding ******************************************************************/
.unified-extensions-item-menu-button.subviewbutton {
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
}
@supports -moz-bool-pref("userChrome.rounding.square_tab") {
:root {
--tab-border-radius: 0 !important; /* Original: 4px */

View file

@ -4055,6 +4055,10 @@
}
/** Rounding ******************************************************************/
/** Rounding ******************************************************************/
.unified-extensions-item-menu-button.subviewbutton {
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
}
@supports -moz-bool-pref("userChrome.rounding.square_tab") {
:root {
--tab-border-radius: 0 !important; /* Original: 4px */

View file

@ -1,4 +1,5 @@
/** Rounding ******************************************************************/
@import "round";
@import "square";
@import "dialog";
@import "library";

4
src/rounding/_round.scss Normal file
View file

@ -0,0 +1,4 @@
// #735
.unified-extensions-item-menu-button.subviewbutton {
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
}