client/status bar panes: extract colors as CSS variables

This commit is contained in:
Adorian Doran 2025-12-22 23:36:35 +02:00
parent d407c72fae
commit 0c965bfdf4
3 changed files with 8 additions and 2 deletions

View File

@ -234,6 +234,9 @@
--right-pane-item-hover-background: #ffffff26;
--right-pane-item-hover-color: white;
--bottom-panel-background-color: #181818;
--bottom-panel-title-bar-background-color: #272727;
--scrollbar-thumb-color: #fdfdfd5c;
--scrollbar-thumb-hover-color: #ffffff7d;
--scrollbar-background-color: transparent;

View File

@ -232,6 +232,9 @@
--right-pane-item-hover-background: #00000013;
--right-pane-item-hover-color: inherit;
--bottom-panel-background-color: #181818;
--bottom-panel-title-bar-background-color: #272727;
--scrollbar-thumb-color: #0000005c;
--scrollbar-thumb-hover-color: #00000066;
--scrollbar-background-color: transparent;

View File

@ -301,7 +301,7 @@
.status-bar-pane-title-bar {
display: flex;
padding: 6px 12px;
background: #272727;
background: var(--bottom-panel-title-bar-background-color);
justify-content: space-between;
align-items: center;
@ -315,7 +315,7 @@
.status-bar-pane-content {
border-bottom: 1px solid var(--main-border-color);
background: #181818;
background: var(--bottom-panel-background-color);
padding: 8px 12px;
max-height: 40vh;
overflow-y: auto;