mirror of
https://github.com/zadam/trilium.git
synced 2026-01-07 15:14:24 +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-background: #ffffff26;
|
||||||
--right-pane-item-hover-color: white;
|
--right-pane-item-hover-color: white;
|
||||||
|
|
||||||
|
--bottom-panel-background-color: #181818;
|
||||||
|
--bottom-panel-title-bar-background-color: #272727;
|
||||||
|
|
||||||
--scrollbar-thumb-color: #fdfdfd5c;
|
--scrollbar-thumb-color: #fdfdfd5c;
|
||||||
--scrollbar-thumb-hover-color: #ffffff7d;
|
--scrollbar-thumb-hover-color: #ffffff7d;
|
||||||
--scrollbar-background-color: transparent;
|
--scrollbar-background-color: transparent;
|
||||||
|
|||||||
@ -232,6 +232,9 @@
|
|||||||
--right-pane-item-hover-background: #00000013;
|
--right-pane-item-hover-background: #00000013;
|
||||||
--right-pane-item-hover-color: inherit;
|
--right-pane-item-hover-color: inherit;
|
||||||
|
|
||||||
|
--bottom-panel-background-color: #181818;
|
||||||
|
--bottom-panel-title-bar-background-color: #272727;
|
||||||
|
|
||||||
--scrollbar-thumb-color: #0000005c;
|
--scrollbar-thumb-color: #0000005c;
|
||||||
--scrollbar-thumb-hover-color: #00000066;
|
--scrollbar-thumb-hover-color: #00000066;
|
||||||
--scrollbar-background-color: transparent;
|
--scrollbar-background-color: transparent;
|
||||||
|
|||||||
@ -301,7 +301,7 @@
|
|||||||
.status-bar-pane-title-bar {
|
.status-bar-pane-title-bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
background: #272727;
|
background: var(--bottom-panel-title-bar-background-color);
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
@ -315,7 +315,7 @@
|
|||||||
|
|
||||||
.status-bar-pane-content {
|
.status-bar-pane-content {
|
||||||
border-bottom: 1px solid var(--main-border-color);
|
border-bottom: 1px solid var(--main-border-color);
|
||||||
background: #181818;
|
background: var(--bottom-panel-background-color);
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
max-height: 40vh;
|
max-height: 40vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user