mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 12:30:24 +00:00
fix: colors from settings
This commit is contained in:
parent
cc43f3cbff
commit
6663b95260
2 changed files with 817 additions and 803 deletions
49
styles.css
49
styles.css
|
|
@ -126,31 +126,33 @@
|
|||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
/* Status Bar */
|
||||
.note-status-bar {
|
||||
display: flex;
|
||||
justify-content: flex-end; /* Default, will be overridden by settings */
|
||||
}
|
||||
|
||||
.note-status-bar.left {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.note-status-bar.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.note-status-bar.auto-hide {
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s ease;
|
||||
}
|
||||
|
||||
.note-status-bar.auto-hide.visible {
|
||||
opacity: 1;
|
||||
}
|
||||
/* Status Bar */
|
||||
.note-status-bar {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.note-status-bar.left {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.note-status-bar.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.note-status-bar.auto-hide {
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s ease;
|
||||
}
|
||||
|
||||
.note-status-bar.auto-hide.visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Los colores de estado se manejan dinámicamente en JS, no aquí */
|
||||
|
||||
|
||||
/* Colores de los estados */
|
||||
/* Colores de los estados
|
||||
.status-active {
|
||||
color: var(--text-success);
|
||||
}
|
||||
|
|
@ -166,6 +168,7 @@
|
|||
.status-unknown {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
*/
|
||||
|
||||
/* Aplicar colores a los íconos y textos en el status bar y explorador */
|
||||
.note-status-bar .note-status-active,
|
||||
|
|
|
|||
Loading…
Reference in a new issue