Changes to QC tweaks

This commit is contained in:
Stian Lund
2023-06-07 21:25:40 +02:00
parent bb07058bcb
commit 2630c1d9bc
10 changed files with 105 additions and 53 deletions
+18 -4
View File
@@ -7,9 +7,23 @@
/*#window-panel .tree-row .title.active, #window-panel .tree-row .title.unread {padding: 0 5px;}*/
/* Active tab */
#window-panel .tree-row .title.active:before {content: '\2B24';position: absolute; margin-left: -40px;}
#window-panel .tree-row .title.active {background-color: var(--colorAccentBorder); border-radius: var(--radius);}
#window-panel .tree-row .title.active:before {
content: '\2B24';
position: absolute;
margin-left: -40px;
}
#window-panel .tree-row .title.active {
background-color: var(--colorAccentBorder);
border-radius: var(--radius);
}
/* Unread tabs */
#window-panel .tree-row .title.unread:before {content: '\25CB'; position: absolute; margin-left: -40px}
#window-panel .tree-row .title.unread {background-color: var(--colorHighlightBgAlpha); border-radius: var(--radius);}
#window-panel .tree-row .title.unread:before {
content: '\25CB';
position: absolute;
margin-left: -40px;
}
#window-panel .tree-row .title.unread {
background-color: var(--colorHighlightBgAlpha);
border-radius: var(--radius);
}