summaryrefslogtreecommitdiffhomepage
path: root/styles.css
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-03-24 17:19:52 +0900
committerAdam Malczewski <[email protected]>2026-03-24 17:19:52 +0900
commit3690c97ceaf8a20bb2c6d38bd600e5ae8bc2dac6 (patch)
tree6f3c792e74505045ec73009b988c30614e43dcc0 /styles.css
parentdfe26f42be0c37591246d4a26e607d9fbecfef33 (diff)
downloadai-pulse-obsidian-plugin-3690c97ceaf8a20bb2c6d38bd600e5ae8bc2dac6.tar.gz
ai-pulse-obsidian-plugin-3690c97ceaf8a20bb2c6d38bd600e5ae8bc2dac6.zip
Add new tools, wiki-links, system prompt file, model badge
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/styles.css b/styles.css
index 7ab52d2..9503bca 100644
--- a/styles.css
+++ b/styles.css
@@ -606,3 +606,41 @@
.ai-organizer-approval-declined {
border-left-color: var(--text-error);
}
+
+/* ===== Disabled Setting ===== */
+
+.ai-organizer-setting-disabled {
+ opacity: 0.5;
+ pointer-events: none;
+}
+
+/* ===== Model Badge ===== */
+
+.ai-organizer-model-badge {
+ position: absolute;
+ top: 8px;
+ left: 12px;
+ z-index: 10;
+ height: 40px;
+ padding: 0 14px;
+ border-radius: 20px;
+ background-color: var(--background-primary);
+ color: var(--text-normal);
+ border: 1px solid var(--background-modifier-border);
+ font-size: 0.8em;
+ font-weight: 500;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
+ max-width: calc(100% - 80px);
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ user-select: none;
+}
+
+.ai-organizer-model-badge-empty {
+ color: var(--text-muted);
+ font-style: italic;
+}