mirror of
https://github.com/ankit-kapur/obsidian-kanban-status-updater-plugin.git
synced 2026-07-22 05:42:29 +00:00
48 lines
939 B
CSS
48 lines
939 B
CSS
/* styles.css */
|
|
/* Status Bar */
|
|
.status-bar-item.plugin-kanban-status-updater {
|
|
color: var(--text-accent);
|
|
font-weight: bold;
|
|
background-color: rgba(var(--accent-rgb), 0.1);
|
|
padding: 0 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Hide data attribute used for tracking observed boards */
|
|
[data-ksu-observed] {
|
|
/* No visible style changes */
|
|
}
|
|
|
|
/* Notification Banners */
|
|
.status-updated-banner-title {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
margin-bottom: 4px;
|
|
color: var(--text-accent);
|
|
}
|
|
|
|
.status-updated-banner-details {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.status-updated-filename {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.status-updated-old-value {
|
|
font-style: italic;
|
|
text-decoration: line-through;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.status-updated-new-value {
|
|
font-weight: bold;
|
|
color: var(--text-accent);
|
|
}
|
|
|
|
/* Debug mode indicator */
|
|
.plugin-kanban-status-updater.debug-mode:after {
|
|
content: " [DEBUG]";
|
|
color: var(--text-error-hover);
|
|
}
|