-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
146 lines (124 loc) · 2.9 KB
/
Copy pathstyles.css
File metadata and controls
146 lines (124 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* AI Auto Tagger Plugin Styles */
/* Modal Styling */
.ai-auto-tagger-modal {
max-width: 500px;
width: 100%;
border-radius: 8px;
padding: 20px;
background-color: var(--background-primary);
color: var(--text-normal);
}
.ai-auto-tagger-modal h2 {
margin-top: 0;
color: var(--text-normal);
border-bottom: 1px solid var(--background-modifier-border);
padding-bottom: 10px;
margin-bottom: 15px;
}
.ai-auto-tagger-modal p {
margin-bottom: 16px;
color: var(--text-muted);
line-height: 1.5;
font-size: 0.9em;
}
/* Tags Container */
.tags-container {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 20px;
}
/* Tag Pills */
.ai-tag-suggestion {
display: inline-block;
border-radius: 14px;
padding: 4px 12px;
font-size: 0.9em;
cursor: pointer;
user-select: none;
transition: all 0.15s ease;
}
.ai-tag-suggestion.ai-tag-selected {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
}
.ai-tag-suggestion.ai-tag-selected:hover {
background-color: var(--interactive-accent-hover);
transform: translateY(-1px);
}
.ai-tag-suggestion.ai-tag-deselected {
background-color: var(--background-modifier-border);
color: var(--text-muted);
opacity: 0.6;
}
.ai-tag-suggestion.ai-tag-deselected:hover {
opacity: 0.8;
}
/* Button Container */
.modal-button-container {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 20px;
padding-top: 12px;
border-top: 1px solid var(--background-modifier-border);
}
/* Buttons */
.ai-auto-tagger-modal button {
padding: 8px 16px;
border-radius: 4px;
font-weight: 500;
cursor: pointer;
transition: all 0.15s ease;
background-color: var(--interactive-normal);
color: var(--text-normal);
border: 1px solid var(--background-modifier-border);
}
.ai-auto-tagger-modal button:hover {
background-color: var(--interactive-hover);
}
.ai-auto-tagger-modal button.mod-cta {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border: 1px solid var(--interactive-accent);
}
.ai-auto-tagger-modal button.mod-cta:hover {
background-color: var(--interactive-accent-hover);
}
.ai-auto-tagger-modal button:disabled,
.ai-auto-tagger-modal button.ai-btn-disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* Settings Tab */
.ai-auto-tagger-settings h3 {
margin-top: 24px;
color: var(--text-normal);
border-bottom: 1px solid var(--background-modifier-border);
padding-bottom: 8px;
}
.ai-auto-tagger-settings h3:first-child {
margin-top: 0;
}
.ai-auto-tagger-settings ol {
padding-left: 25px;
color: var(--text-normal);
line-height: 1.6;
}
.ai-auto-tagger-settings li {
margin-bottom: 6px;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
.ai-auto-tagger-modal {
max-width: 90%;
padding: 15px;
}
.modal-button-container {
flex-direction: column;
gap: 8px;
}
.ai-auto-tagger-modal button {
width: 100%;
}
}