Auto tagging obsidian notes w/ AI
1/*
2AI Tagger Plugin Styles
3*/
4
5/* Modal button styling */
6.ai-tagger-modal-buttons {
7 display: flex;
8 justify-content: flex-end;
9 gap: 10px;
10 margin-top: 20px;
11}
12
13.ai-tagger-modal-buttons button {
14 padding: 6px 12px;
15 border-radius: 4px;
16 font-size: 14px;
17 cursor: pointer;
18}
19
20/* Settings styling */
21.ai-tagger-wide-setting textarea {
22 width: 100%;
23 min-height: 120px;
24 font-family: var(--font-monospace);
25 resize: vertical;
26}
27
28/* Styling for disabled textarea */
29.ai-tagger-wide-setting textarea:disabled {
30 opacity: 0.75;
31 background-color: var(--background-secondary);
32}
33
34/* Add a subtle highlight for successfully tagged notes if needed */
35.ai-tagged {
36 border-left: 2px solid var(--interactive-accent);
37}
38
39/* Error message styling */
40.ai-tagger-error-message {
41 color: var(--text-error);
42 font-weight: 500;
43 margin-top: 10px;
44 padding: 8px 12px;
45 background-color: var(--background-modifier-error);
46 border-radius: 4px;
47}