2026-04-19 23:48:18 +05:30
|
|
|
/*
|
2026-04-20 23:13:49 +05:30
|
|
|
* SurfSense Obsidian plugin styles. Status-bar widget only — the settings
|
|
|
|
|
* tab uses Obsidian's stock Setting rows, no custom CSS needed.
|
2026-04-20 04:04:19 +05:30
|
|
|
*/
|
2026-04-19 23:48:18 +05:30
|
|
|
|
2026-04-20 04:04:19 +05:30
|
|
|
.surfsense-status {
|
|
|
|
|
gap: 6px;
|
2026-04-20 23:13:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-status--clickable {
|
|
|
|
|
cursor: pointer;
|
2026-04-20 04:04:19 +05:30
|
|
|
}
|
2026-04-19 23:48:18 +05:30
|
|
|
|
2026-04-20 04:04:19 +05:30
|
|
|
.surfsense-status__icon {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
2026-04-19 23:48:18 +05:30
|
|
|
|
2026-04-20 04:04:19 +05:30
|
|
|
.surfsense-status__icon svg {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-status--ok .surfsense-status__icon {
|
|
|
|
|
color: var(--color-green);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-status--syncing .surfsense-status__icon {
|
|
|
|
|
color: var(--color-blue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-status--warn .surfsense-status__icon {
|
|
|
|
|
color: var(--color-yellow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-status--err .surfsense-status__icon {
|
|
|
|
|
color: var(--color-red);
|
|
|
|
|
}
|
2026-04-22 06:13:01 +05:30
|
|
|
|
|
|
|
|
.surfsense-connection-indicator {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-22 06:26:49 +05:30
|
|
|
.surfsense-connection-heading {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-22 06:13:01 +05:30
|
|
|
.surfsense-connection-indicator svg {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-connection-indicator--ok {
|
|
|
|
|
color: var(--color-green);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-connection-indicator--syncing {
|
|
|
|
|
color: var(--color-blue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-connection-indicator--warn {
|
|
|
|
|
color: var(--color-yellow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-connection-indicator--err {
|
|
|
|
|
color: var(--color-red);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.surfsense-connection-indicator--muted {
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
}
|