generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 1.17 KB
/
styles.css
File metadata and controls
57 lines (49 loc) · 1.17 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
/* Metadata Auto Classifier Styles */
/* Grid Container for Popular Models */
.mac-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 8px;
margin-top: 10px;
margin-bottom: 20px;
}
/* Model Option (Radio Button) */
.mac-model-option {
display: flex;
align-items: center;
padding: 8px 12px;
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
cursor: pointer;
}
.mac-model-option input[type="radio"] {
margin-right: 8px;
}
.mac-model-option.selected {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border-color: var(--interactive-accent);
}
/* Button Container for Modals */
.mac-button-container {
display: flex;
justify-content: flex-end;
gap: 8px;
margin-top: 20px;
}
/* Custom Prompt Container */
.mac-custom-prompt-container {
width: 100%;
margin-top: 8px;
margin-bottom: 16px;
}
/* Provider/Model Section Headings */
.mac-section-heading {
margin-top: 16px;
margin-bottom: 8px;
}
/* API Key Link Styling */
.mac-api-key-link {
color: var(--interactive-accent);
margin-left: 4px;
}