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:
MrOtherGuy 2021-10-13 16:14:06 +03:00
parent 9ad96bb6f3
commit 7801318d78

View file

@ -66,7 +66,10 @@ See the above repository for updates as well as full license text. */
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 */
.tab-background[selected]::before,