-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (101 loc) · 2.17 KB
/
styles.css
File metadata and controls
118 lines (101 loc) · 2.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
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
/* 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;
}
/* Plugin notice styles */
.plugin-notice {
display: flex;
flex-direction: column;
gap: 6px;
min-width: 260px;
color: inherit;
}
.plugin-notice-head {
margin: 0;
font-size: var(--font-smallest, 11px);
font-weight: 600;
color: inherit;
opacity: 0.6;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.plugin-notice-content {
margin: 0;
font-size: var(--font-ui-small, 13px);
color: inherit;
white-space: pre-wrap;
}
.plugin-notice-actions {
display: flex;
align-items: center;
gap: 6px;
}
.plugin-notice-btn {
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: var(--radius-s, 6px);
background: rgba(255, 255, 255, 0.1);
color: inherit;
font-size: var(--font-smallest, 11px);
padding: 2px 8px;
cursor: pointer;
}
.plugin-notice-btn:hover {
background: rgba(255, 255, 255, 0.2);
}
.plugin-notice-btn--mute {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
padding: 0;
}
.plugin-notice-btn--mute svg {
width: 14px;
height: 14px;
}