43 lines
888 B
CSS
43 lines
888 B
CSS
/* Show title of unread tabs with red and italic font */
|
|
:root.sidebar tab-item.unread .label-content {
|
|
color: red !important;
|
|
font-style: italic !important;
|
|
}
|
|
|
|
/* Change styling of pending (unloaded) tabs */
|
|
tab-item.discarded {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
tab-item.discarded .label-content {
|
|
color: gray;
|
|
}
|
|
|
|
tab-item.discarded:hover .label-content {
|
|
color: #bbbbbb !important;
|
|
}
|
|
|
|
/* Less visible tab dividers. */
|
|
tab-item {
|
|
border-color: #666666; /* #666666 */
|
|
}
|
|
|
|
/* Change tab height */
|
|
tab-item {
|
|
--tab-size: 30px !important;
|
|
height: var(--tab-size);
|
|
font-size: 11pt;
|
|
}
|
|
|
|
/* As little space before the tab name as possible.
|
|
The fold/unfold icon is not affected. */
|
|
tab-item:not(.pinned) {
|
|
/* !important is required when there are enough tabs to cause a scrollbar */
|
|
padding-left: 0px !important;
|
|
}
|
|
|
|
/* Hide tab close button */
|
|
tab-item tab-closebox {
|
|
display: none;
|
|
}
|