mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-02-06 07:21:08 -08:00
14 lines
515 B
SCSS
14 lines
515 B
SCSS
#tabs-newtab-button > .toolbarbutton-icon {
|
|
// Not like tab, as button
|
|
--tab-border-radius: var(--toolbarbutton-border-radius);
|
|
margin-left: 1px;
|
|
|
|
/* Original: calc((var(--tab-min-height) - 16px) / 2) = 10px */
|
|
--toolbarbutton-inner-padding: 6px;
|
|
}
|
|
:root[uidensity="compact"] #tabs-newtab-button > .toolbarbutton-icon {
|
|
--toolbarbutton-inner-padding: 4px; /* Photon: 6px */
|
|
}
|
|
:root[uidensity="touch"] #tabs-newtab-button > .toolbarbutton-icon {
|
|
--toolbarbutton-inner-padding: 9px; /* Photon: 9px */
|
|
}
|