mirror of
https://github.com/zadam/trilium.git
synced 2025-12-24 08:14:25 +01:00
client/status bar panes: extract colors as CSS variables
This commit is contained in:
parent
d407c72fae
commit
0c965bfdf4
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user