|
.titlebar-close { |
|
/* background: hsl(355, 86%, 49%) url(chrome://browser/skin/window-controls/close.svg) no-repeat center !important; */ |
|
&:hover > image { |
|
background: #fc5753 !important; |
|
} |
|
padding-right: calc(var(--shimmer-winctr-gap) + var(--shimmer-winctr-margin)) !important; |
|
padding-left: var(--shimmer-winctr-gap) !important; |
|
} |
|
.titlebar-min { |
|
&:hover > image { |
|
background: #fdbc40 !important; |
|
} |
|
padding-left: calc(var(--shimmer-winctr-gap) + var(--shimmer-winctr-margin)) !important; |
|
padding-right: var(--shimmer-winctr-gap) !important; |
|
} |
Here the padding is hardcoded so that --shimmer-winctr-margin can only be on the right side of max button, or left side of the min button. But when the close button is on the most left side, like:
Adjusting --shimmer-winctr-margin no longer does what it supposed to do.
Probably related to #3
shimmer/userChrome.css
Lines 1245 to 1259 in 5c4c286
Here the padding is hardcoded so that
--shimmer-winctr-margincan only be on the right side of max button, or left side of the min button. But when the close button is on the most left side, like:Adjusting
--shimmer-winctr-marginno longer does what it supposed to do.Probably related to #3