theme-store/themes/4c2bec61-7f6c-4e5c-bdc6-c9ad1aba1827/chrome.css
2025-05-16 17:59:56 +02:00

33 lines
701 B
CSS

tab-group[split-view-group] {
flex-direction: column;
padding: 2px 2px !important;
position: relative;
&::after {
content: '';
width: 3px;
height: calc(100% - 8px);
background-color: var(--tab-selected-bgcolor);
position: absolute;
left: 2px;
top: 50%;
transform: translateY(-50%);
border-radius: 2px
}
&:hover, &:has(> tab:is([visuallyselected], [multiselected])){
&::after{
width: 0;
}
}
}
tab-group[split-view-group] {
& > .tabbrowser-tab {
&:not(:last-child)::after {
width: 0 !important;
height: 0 !important;
}
}
}