40 lines
916 B
CSS
40 lines
916 B
CSS
|
|
* {
|
|
/* --tab-background-active: var(--color-base-30); */
|
|
}
|
|
|
|
|
|
/* --------------compact tabs--------------------*/
|
|
.workspace .mod-root .workspace-tab-header {
|
|
width: unset;
|
|
max-width: var(--tab-width);
|
|
border: 1px solid var(--color-base-50);
|
|
}
|
|
|
|
/*.workspace-tab-header-inner {
|
|
width: unset;
|
|
}*/
|
|
|
|
.workspace .mod-root .workspace-tab-header-inner::after {
|
|
width: 0px;
|
|
}
|
|
|
|
body {
|
|
--tab-outline-color: unset;
|
|
}
|
|
|
|
/* highlight active tab */
|
|
.workspace .mod-root .workspace-tab-header.is-active {
|
|
filter: brightness(1.5) saturate(1) contrast(1.2);
|
|
border-width: 2px;
|
|
/* background-color: red; */
|
|
}
|
|
.workspace .mod-root .workspace-tab-header:not(.is-active) {
|
|
/* filter: brightness(1.5) saturate(1) contrast(1.2); */
|
|
/* background-color: green; */
|
|
}
|
|
|
|
.workspace .mod-root .workspace-tab-header.is-active .workspace-tab-header-inner-title {
|
|
/* filter: brightness(0.5); */
|
|
}
|