add -1px margin for multiselected tab-background
This makes the tabs to draw 1px on top of each other which should make multiselected tabs look better with and without tab separators
This commit is contained in:
parent
9ad96bb6f3
commit
7801318d78
1 changed files with 4 additions and 1 deletions
|
@ -66,7 +66,10 @@ See the above repository for updates as well as full license text. */
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-background:not([selected])[multiselected]{ background: color-mix(in srgb, currentColor 11%, transparent) !important; }
|
.tab-background:not([selected])[multiselected]{
|
||||||
|
background: color-mix(in srgb, currentColor 11%, transparent) !important;
|
||||||
|
margin-inline-start: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Line to mark selected tab */
|
/* Line to mark selected tab */
|
||||||
.tab-background[selected]::before,
|
.tab-background[selected]::before,
|
||||||
|
|
Loading…
Reference in a new issue