@globalbrain/sefirot 2.9.0 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/SAvatar.vue +15 -8
- package/lib/components/SButton.vue +363 -576
- package/lib/components/SInputBase.vue +4 -4
- package/lib/components/SInputCheckboxes.vue +0 -1
- package/lib/components/SInputDate.vue +1 -1
- package/lib/components/SInputDropdown.vue +2 -2
- package/lib/components/SInputSelect.vue +92 -106
- package/lib/components/SPill.vue +199 -0
- package/lib/components/SSnackbar.vue +0 -1
- package/lib/components/STable.vue +5 -2
- package/lib/components/STableCell.vue +40 -26
- package/lib/components/STableCellDay.vue +2 -2
- package/lib/components/STableCellPill.vue +13 -45
- package/lib/components/STableCellPills.vue +42 -0
- package/lib/components/STableCellText.vue +2 -2
- package/lib/composables/Table.ts +14 -3
- package/lib/composables/Tooltip.ts +1 -2
- package/lib/composables/Utils.ts +9 -0
- package/lib/styles/variables.css +433 -160
- package/lib/support/Day/plugins/RelativeTime.ts +1 -2
- package/lib/support/Time.ts +3 -1
- package/package.json +26 -27
package/lib/styles/variables.css
CHANGED
|
@@ -37,55 +37,69 @@
|
|
|
37
37
|
--c-gray-light-4: #e5e5ea;
|
|
38
38
|
--c-gray-light-5: #f2f2f7;
|
|
39
39
|
|
|
40
|
-
--c-divider-light-1: rgba(60, 60, 67, .29);
|
|
41
|
-
--c-divider-light-2: rgba(60, 60, 67, .12);
|
|
42
|
-
|
|
43
|
-
--c-divider-dark-1: rgba(84, 84, 88, .65);
|
|
44
|
-
--c-divider-dark-2: rgba(84, 84, 84, .48);
|
|
45
|
-
|
|
46
|
-
--c-
|
|
47
|
-
--c-
|
|
48
|
-
--c-
|
|
49
|
-
--c-
|
|
50
|
-
|
|
51
|
-
--c-
|
|
52
|
-
|
|
53
|
-
--c-
|
|
54
|
-
--c-
|
|
55
|
-
|
|
56
|
-
--c-
|
|
57
|
-
--c-
|
|
58
|
-
--c-
|
|
59
|
-
|
|
60
|
-
--c-
|
|
61
|
-
--c-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
--c-
|
|
65
|
-
--c-
|
|
66
|
-
--c-
|
|
67
|
-
|
|
68
|
-
--c-
|
|
69
|
-
|
|
70
|
-
--c-
|
|
71
|
-
--c-
|
|
72
|
-
--c-
|
|
73
|
-
--c-
|
|
74
|
-
--c-
|
|
75
|
-
--c-
|
|
76
|
-
|
|
77
|
-
--c-
|
|
78
|
-
--c-
|
|
79
|
-
--c-
|
|
80
|
-
--c-
|
|
81
|
-
--c-
|
|
82
|
-
--c-
|
|
83
|
-
|
|
84
|
-
--c-
|
|
85
|
-
|
|
86
|
-
--c-
|
|
87
|
-
--c-
|
|
88
|
-
--c-
|
|
40
|
+
--c-divider-light-1: rgba(60, 60, 67, 0.29);
|
|
41
|
+
--c-divider-light-2: rgba(60, 60, 67, 0.12);
|
|
42
|
+
|
|
43
|
+
--c-divider-dark-1: rgba(84, 84, 88, 0.65);
|
|
44
|
+
--c-divider-dark-2: rgba(84, 84, 84, 0.48);
|
|
45
|
+
|
|
46
|
+
--c-neutral-light-1: #000000;
|
|
47
|
+
--c-neutral-light-2: #333333;
|
|
48
|
+
--c-neutral-light-3: #525252;
|
|
49
|
+
--c-neutral-light-dimm-1: rgba(0, 0, 0, 0.06);
|
|
50
|
+
--c-neutral-light-dimm-2: rgba(0, 0, 0, 0.12);
|
|
51
|
+
--c-neutral-light-dimm-2: rgba(0, 0, 0, 0.20);
|
|
52
|
+
|
|
53
|
+
--c-neutral-dark-1: #ffffff;
|
|
54
|
+
--c-neutral-dark-2: #cccccc;
|
|
55
|
+
--c-neutral-dark-3: #adadad;
|
|
56
|
+
--c-neutral-dark-dimm-1: rgba(255, 255, 255, 0.08);
|
|
57
|
+
--c-neutral-dark-dimm-2: rgba(255, 255, 255, 0.16);
|
|
58
|
+
--c-neutral-dark-dimm-2: rgba(255, 255, 255, 0.24);
|
|
59
|
+
|
|
60
|
+
--c-text-light-1: #1f1f1f;
|
|
61
|
+
--c-text-light-2: rgba(60, 60, 67, 0.6);
|
|
62
|
+
--c-text-light-3: rgba(60, 60, 67, 0.3);
|
|
63
|
+
|
|
64
|
+
--c-text-dark-1: rgba(235, 235, 245, 0.98);
|
|
65
|
+
--c-text-dark-2: rgba(235, 235, 245, 0.6);
|
|
66
|
+
--c-text-dark-3: rgba(235, 235, 245, 0.3);
|
|
67
|
+
|
|
68
|
+
--c-info: #0284c7;
|
|
69
|
+
--c-info-light: #0ea5e9;
|
|
70
|
+
--c-info-lighter: #38bdf8;
|
|
71
|
+
--c-info-dark: #0369a1;
|
|
72
|
+
--c-info-darker: #075985;
|
|
73
|
+
--c-info-dimm-1: rgba(2, 132, 199, 0.12);
|
|
74
|
+
--c-info-dimm-2: rgba(2, 132, 199, 0.2);
|
|
75
|
+
--c-info-dimm-3: rgba(2, 132, 199, 0.28);
|
|
76
|
+
|
|
77
|
+
--c-success: #059669;
|
|
78
|
+
--c-success-light: #10b981;
|
|
79
|
+
--c-success-lighter: #34d399;
|
|
80
|
+
--c-success-dark: #047857;
|
|
81
|
+
--c-success-darker: #065f46;
|
|
82
|
+
--c-success-dimm-1: rgba(5, 150, 105, 0.12);
|
|
83
|
+
--c-success-dimm-2: rgba(5, 150, 105, 0.2);
|
|
84
|
+
--c-success-dimm-3: rgba(5, 150, 105, 0.28);
|
|
85
|
+
|
|
86
|
+
--c-warning: #ca8a04;
|
|
87
|
+
--c-warning-light: #eab308;
|
|
88
|
+
--c-warning-lighter: #facc15;
|
|
89
|
+
--c-warning-dark: #a16207;
|
|
90
|
+
--c-warning-darker: #854d0e;
|
|
91
|
+
--c-warning-dimm-1: rgba(202, 138, 4, 0.12);
|
|
92
|
+
--c-warning-dimm-2: rgba(202, 138, 4, 0.2);
|
|
93
|
+
--c-warning-dimm-3: rgba(202, 138, 4, 0.28);
|
|
94
|
+
|
|
95
|
+
--c-danger: #e11d48;
|
|
96
|
+
--c-danger-light: #f43f5e;
|
|
97
|
+
--c-danger-lighter: #fb7185;
|
|
98
|
+
--c-danger-dark: #be123c;
|
|
99
|
+
--c-danger-darker: #9f1239;
|
|
100
|
+
--c-danger-dimm-1: rgba(225, 29, 72, 0.12);
|
|
101
|
+
--c-danger-dimm-2: rgba(225, 29, 72, 0.2);
|
|
102
|
+
--c-danger-dimm-3: rgba(225, 29, 72, 0.28);
|
|
89
103
|
}
|
|
90
104
|
|
|
91
105
|
/**
|
|
@@ -97,22 +111,52 @@
|
|
|
97
111
|
--c-bg-soft: var(--c-white-soft);
|
|
98
112
|
--c-bg-mute: var(--c-white-mute);
|
|
99
113
|
|
|
114
|
+
--c-bg-elv-1: #ffffff;
|
|
115
|
+
--c-bg-elv-2: #f9f9f9;
|
|
116
|
+
--c-bg-elv-3: #ffffff;
|
|
117
|
+
|
|
118
|
+
/* DEPRECATED: Use `--c-bg-elv-x`. */
|
|
100
119
|
--c-bg-elv: var(--c-white-elv);
|
|
101
120
|
--c-bg-elv-up: var(--c-white-elv-up);
|
|
102
121
|
--c-bg-elv-down: var(--c-white-elv-down);
|
|
103
122
|
|
|
123
|
+
--c-bg-lift-1: var(--c-white-soft);
|
|
124
|
+
--c-bg-lift-2: var(--c-white-mute);
|
|
125
|
+
|
|
126
|
+
--c-divider-1: var(--c-divider-light-1);
|
|
127
|
+
--c-divider-2: var(--c-divider-light-2);
|
|
128
|
+
|
|
129
|
+
/* DEPRECATED: Use `--c-divider-x`. */
|
|
104
130
|
--c-divider: var(--c-divider-light-1);
|
|
105
131
|
--c-divider-light: var(--c-divider-light-2);
|
|
106
132
|
|
|
133
|
+
--c-neutral-1: var(--c-neutral-light-1);
|
|
134
|
+
--c-neutral-2: var(--c-neutral-light-2);
|
|
135
|
+
--c-neutral-3: var(--c-neutral-light-3);
|
|
136
|
+
--c-neutral-dimm-1: var(--c-neutral-light-dimm-1);
|
|
137
|
+
--c-neutral-dimm-2: var(--c-neutral-light-dimm-2);
|
|
138
|
+
|
|
139
|
+
--c-neutral-inverse-1: var(--c-neutral-dark-1);
|
|
140
|
+
--c-neutral-inverse-2: var(--c-neutral-dark-2);
|
|
141
|
+
--c-neutral-inverse-3: var(--c-neutral-dark-3);
|
|
142
|
+
--c-neutral-inverse-dimm-1: var(--c-neutral-dark-dimm-1);
|
|
143
|
+
--c-neutral-inverse-dimm-2: var(--c-neutral-dark-dimm-2);
|
|
144
|
+
|
|
107
145
|
--c-text-1: var(--c-text-light-1);
|
|
108
146
|
--c-text-2: var(--c-text-light-2);
|
|
109
147
|
--c-text-3: var(--c-text-light-3);
|
|
110
|
-
--c-text-4: var(--c-text-light-4);
|
|
111
148
|
|
|
112
149
|
--c-text-inverse-1: var(--c-text-dark-1);
|
|
113
150
|
--c-text-inverse-2: var(--c-text-dark-2);
|
|
114
151
|
--c-text-inverse-3: var(--c-text-dark-3);
|
|
115
|
-
|
|
152
|
+
|
|
153
|
+
--c-mute: #f1f1f1;
|
|
154
|
+
--c-mute-light: #f9f9f9;
|
|
155
|
+
--c-mute-lighter: #ffffff;
|
|
156
|
+
--c-mute-dark: #e3e3e3;
|
|
157
|
+
--c-mute-darker: #d1d1d1;
|
|
158
|
+
--c-mute-dimm-1: #f1f1f1;
|
|
159
|
+
--c-mute-dimm-2: #e3e3e3;
|
|
116
160
|
}
|
|
117
161
|
|
|
118
162
|
.dark {
|
|
@@ -120,22 +164,52 @@
|
|
|
120
164
|
--c-bg-soft: var(--c-black-soft);
|
|
121
165
|
--c-bg-mute: var(--c-black-mute);
|
|
122
166
|
|
|
167
|
+
--c-bg-elv-1: #000000;
|
|
168
|
+
--c-bg-elv-2: #171717;
|
|
169
|
+
--c-bg-elv-3: #1c1c1e;
|
|
170
|
+
|
|
171
|
+
/* DEPRECATED: Use `--c-bg-elv-x`. */
|
|
123
172
|
--c-bg-elv: var(--c-black-elv);
|
|
124
173
|
--c-bg-elv-up: var(--c-black-elv-up);
|
|
125
174
|
--c-bg-elv-down: var(--c-black-elv-down);
|
|
126
175
|
|
|
176
|
+
--c-bg-lift-1: #222226;
|
|
177
|
+
--c-bg-lift-2: #2c2c2e;
|
|
178
|
+
|
|
179
|
+
--c-divider-1: var(--c-divider-dark-1);
|
|
180
|
+
--c-divider-2: var(--c-divider-dark-2);
|
|
181
|
+
|
|
182
|
+
/* DEPRECATED: Use `--c-divider-1` and `--c-divider-2` instead. */
|
|
127
183
|
--c-divider: var(--c-divider-dark-1);
|
|
128
184
|
--c-divider-light: var(--c-divider-dark-2);
|
|
129
185
|
|
|
186
|
+
--c-neutral-1: var(--c-neutral-dark-1);
|
|
187
|
+
--c-neutral-2: var(--c-neutral-dark-2);
|
|
188
|
+
--c-neutral-3: var(--c-neutral-dark-3);
|
|
189
|
+
--c-neutral-dimm-1: var(--c-neutral-dark-dimm-1);
|
|
190
|
+
--c-neutral-dimm-2: var(--c-neutral-dark-dimm-2);
|
|
191
|
+
|
|
192
|
+
--c-neutral-inverse-1: var(--c-neutral-light-1);
|
|
193
|
+
--c-neutral-inverse-2: var(--c-neutral-light-2);
|
|
194
|
+
--c-neutral-inverse-3: var(--c-neutral-light-3);
|
|
195
|
+
--c-neutral-inverse-dimm-1: var(--c-neutral-light-dimm-1);
|
|
196
|
+
--c-neutral-inverse-dimm-2: var(--c-neutral-light-dimm-2);
|
|
197
|
+
|
|
130
198
|
--c-text-1: var(--c-text-dark-1);
|
|
131
199
|
--c-text-2: var(--c-text-dark-2);
|
|
132
200
|
--c-text-3: var(--c-text-dark-3);
|
|
133
|
-
--c-text-4: var(--c-text-dark-4);
|
|
134
201
|
|
|
135
202
|
--c-text-inverse-1: var(--c-text-light-1);
|
|
136
203
|
--c-text-inverse-2: var(--c-text-light-2);
|
|
137
204
|
--c-text-inverse-3: var(--c-text-light-3);
|
|
138
|
-
|
|
205
|
+
|
|
206
|
+
--c-mute: #2c2c2e;
|
|
207
|
+
--c-mute-light: #3a3a3c;
|
|
208
|
+
--c-mute-lighter: #505053;
|
|
209
|
+
--c-mute-dark: #222226;
|
|
210
|
+
--c-mute-darker: #1c1c1e;
|
|
211
|
+
--c-mute-dimm-1: #222226;
|
|
212
|
+
--c-mute-dimm-2: #2c2c2e;
|
|
139
213
|
}
|
|
140
214
|
|
|
141
215
|
/**
|
|
@@ -203,115 +277,273 @@
|
|
|
203
277
|
* -------------------------------------------------------------------------- */
|
|
204
278
|
|
|
205
279
|
:root {
|
|
206
|
-
--button-
|
|
207
|
-
--button-
|
|
208
|
-
--button-
|
|
209
|
-
--button-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
--button-
|
|
213
|
-
--button-
|
|
214
|
-
--button-
|
|
215
|
-
|
|
216
|
-
--button-
|
|
217
|
-
--button-
|
|
218
|
-
--button-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
--button-
|
|
223
|
-
--button-
|
|
224
|
-
--button-
|
|
225
|
-
--button-
|
|
226
|
-
--button-
|
|
227
|
-
--button-
|
|
228
|
-
--button-
|
|
229
|
-
|
|
230
|
-
--button-
|
|
231
|
-
|
|
232
|
-
--button-
|
|
233
|
-
--button-
|
|
234
|
-
--button-
|
|
235
|
-
--button-
|
|
236
|
-
--button-
|
|
237
|
-
--button-
|
|
238
|
-
|
|
239
|
-
--button-
|
|
240
|
-
--button-
|
|
241
|
-
|
|
242
|
-
--button-
|
|
243
|
-
--button-
|
|
244
|
-
--button-
|
|
245
|
-
--button-
|
|
246
|
-
--button-
|
|
247
|
-
|
|
248
|
-
--button-
|
|
249
|
-
--button-text-
|
|
250
|
-
--button-
|
|
251
|
-
|
|
252
|
-
--button-
|
|
253
|
-
--button-
|
|
254
|
-
--button-
|
|
255
|
-
|
|
256
|
-
--button-
|
|
257
|
-
--button-
|
|
258
|
-
--button-
|
|
259
|
-
--button-
|
|
260
|
-
--button-
|
|
261
|
-
|
|
262
|
-
--button-
|
|
263
|
-
--button-
|
|
280
|
+
--button-mini-font-size: 12px;
|
|
281
|
+
--button-small-font-size: 14px;
|
|
282
|
+
--button-medium-font-size: 14px;
|
|
283
|
+
--button-large-font-size: 14px;
|
|
284
|
+
--button-jumbo-font-size: 16px;
|
|
285
|
+
|
|
286
|
+
--button-fill-neutral-border-color: transparent;
|
|
287
|
+
--button-fill-neutral-text-color: var(--c-text-inverse-1);
|
|
288
|
+
--button-fill-neutral-bg-color: var(--c-neutral-1);
|
|
289
|
+
--button-fill-neutral-loader-color: var(--c-neutral-inverse-1);
|
|
290
|
+
--button-fill-neutral-hover-bg-color: var(--c-neutral-2);
|
|
291
|
+
--button-fill-neutral-active-bg-color: var(--c-neutral-3);
|
|
292
|
+
--button-fill-neutral-disabled-border-color: transparent;
|
|
293
|
+
--button-fill-neutral-disabled-text-color: var(--c-text-inverse-2);
|
|
294
|
+
--button-fill-neutral-disabled-bg-color: var(--c-neutral-2);
|
|
295
|
+
|
|
296
|
+
--button-fill-white-border-color: transparent;
|
|
297
|
+
--button-fill-white-text-color: var(--c-text-light-1);
|
|
298
|
+
--button-fill-white-bg-color: var(--c-neutral-dark-1);
|
|
299
|
+
--button-fill-white-loader-color: var(--c-neutral-light-1);
|
|
300
|
+
--button-fill-white-hover-bg-color: var(--c-neutral-dark-2);
|
|
301
|
+
--button-fill-white-active-bg-color: var(--c-neutral-dark-3);
|
|
302
|
+
--button-fill-white-disabled-border-color: transparent;
|
|
303
|
+
--button-fill-white-disabled-text-color: var(--c-text-light-2);
|
|
304
|
+
--button-fill-white-disabled-bg-color: var(--c-neutral-dark-2);
|
|
305
|
+
|
|
306
|
+
--button-fill-black-border-color: transparent;
|
|
307
|
+
--button-fill-black-text-color: var(--c-text-dark-1);
|
|
308
|
+
--button-fill-black-bg-color: var(--c-neutral-light-1);
|
|
309
|
+
--button-fill-black-loader-color: var(--c-neutral-dark-1);
|
|
310
|
+
--button-fill-black-hover-bg-color: var(--c-neutral-light-2);
|
|
311
|
+
--button-fill-black-active-bg-color: var(--c-neutral-light-3);
|
|
312
|
+
--button-fill-black-disabled-border-color: transparent;
|
|
313
|
+
--button-fill-black-disabled-text-color: var(--c-text-dark-2);
|
|
314
|
+
--button-fill-black-disabled-bg-color: var(--c-neutral-light-2);
|
|
315
|
+
|
|
316
|
+
--button-fill-mute-border-color: var(--c-divider-1);
|
|
317
|
+
--button-fill-mute-text-color: var(--c-text-1);
|
|
318
|
+
--button-fill-mute-bg-color: var(--c-mute);
|
|
319
|
+
--button-fill-mute-loader-color: var(--c-neutral);
|
|
320
|
+
--button-fill-mute-hover-bg-color: var(--c-mute-dark);
|
|
321
|
+
--button-fill-mute-active-bg-color: var(--c-mute-darker);
|
|
322
|
+
--button-fill-mute-disabled-border-color: var(--c-divider-2);
|
|
323
|
+
--button-fill-mute-disabled-text-color: var(--c-text-2);
|
|
324
|
+
--button-fill-mute-disabled-bg-color: var(--c-mute-dark);
|
|
325
|
+
|
|
326
|
+
--button-fill-info-border-color: var(--c-info-light);
|
|
327
|
+
--button-fill-info-text-color: var(--c-text-dark-1);
|
|
328
|
+
--button-fill-info-bg-color: var(--c-info);
|
|
329
|
+
--button-fill-info-loader-color: var(--c-white);
|
|
330
|
+
--button-fill-info-hover-bg-color: var(--c-info-dark);
|
|
331
|
+
--button-fill-info-active-bg-color: var(--c-info-darker);
|
|
332
|
+
--button-fill-info-disabled-border-color: var(--c-info);
|
|
333
|
+
--button-fill-info-disabled-text-color: var(--c-text-dark-2);
|
|
334
|
+
--button-fill-info-disabled-bg-color: var(--c-info-dark);
|
|
335
|
+
|
|
336
|
+
--button-fill-success-border-color: var(--c-success-light);
|
|
337
|
+
--button-fill-success-text-color: var(--c-text-dark-1);
|
|
338
|
+
--button-fill-success-bg-color: var(--c-success);
|
|
339
|
+
--button-fill-success-loader-color: var(--c-white);
|
|
340
|
+
--button-fill-success-hover-bg-color: var(--c-success-dark);
|
|
341
|
+
--button-fill-success-active-bg-color: var(--c-success-darker);
|
|
342
|
+
--button-fill-success-disabled-border-color: var(--c-success);
|
|
343
|
+
--button-fill-success-disabled-text-color: var(--c-text-dark-2);
|
|
344
|
+
--button-fill-success-disabled-bg-color: var(--c-success-dark);
|
|
345
|
+
|
|
346
|
+
--button-fill-warning-border-color: var(--c-warning-light);
|
|
347
|
+
--button-fill-warning-text-color: var(--c-text-dark-1);
|
|
348
|
+
--button-fill-warning-bg-color: var(--c-warning);
|
|
349
|
+
--button-fill-warning-loader-color: var(--c-white);
|
|
350
|
+
--button-fill-warning-hover-bg-color: var(--c-warning-dark);
|
|
351
|
+
--button-fill-warning-active-bg-color: var(--c-warning-darker);
|
|
352
|
+
--button-fill-warning-disabled-border-color: var(--c-warning);
|
|
353
|
+
--button-fill-warning-disabled-text-color: var(--c-text-dark-2);
|
|
354
|
+
--button-fill-warning-disabled-bg-color: var(--c-warning-dark);
|
|
355
|
+
|
|
356
|
+
--button-fill-danger-border-color: var(--c-danger-light);
|
|
357
|
+
--button-fill-danger-text-color: var(--c-text-dark-1);
|
|
358
|
+
--button-fill-danger-bg-color: var(--c-danger);
|
|
359
|
+
--button-fill-danger-loader-color: var(--c-white);
|
|
360
|
+
--button-fill-danger-hover-bg-color: var(--c-danger-dark);
|
|
361
|
+
--button-fill-danger-active-bg-color: var(--c-danger-darker);
|
|
362
|
+
--button-fill-danger-disabled-border-color: var(--c-danger);
|
|
363
|
+
--button-fill-danger-disabled-text-color: var(--c-text-dark-2);
|
|
364
|
+
--button-fill-danger-disabled-bg-color: var(--c-danger-dark);
|
|
365
|
+
|
|
366
|
+
--button-outline-neutral-border-color: var(--c-neutral-1);
|
|
367
|
+
--button-outline-neutral-text-color: var(--c-text-1);
|
|
368
|
+
--button-outline-neutral-loader-color: var(--c-neutral-1);
|
|
369
|
+
--button-outline-neutral-hover-bg-color: var(--c-neutral-dimm-1);
|
|
370
|
+
--button-outline-neutral-active-bg-color: var(--c-neutral-dimm-2);
|
|
371
|
+
--button-outline-neutral-disabled-border-color: var(--c-neutral-3);
|
|
372
|
+
--button-outline-neutral-disabled-text-color: var(--c-text-2);
|
|
373
|
+
|
|
374
|
+
--button-outline-white-border-color: var(--c-neutral-dark-1);
|
|
375
|
+
--button-outline-white-text-color: var(--c-text-dark-1);
|
|
376
|
+
--button-outline-white-loader-color: var(--c-neutral-dark-1);
|
|
377
|
+
--button-outline-white-hover-bg-color: var(--c-neutral-dark-dimm-1);
|
|
378
|
+
--button-outline-white-active-bg-color: var(--c-neutral-dark-dimm-2);
|
|
379
|
+
--button-outline-white-disabled-border-color: var(--c-neutral-dark-3);
|
|
380
|
+
--button-outline-white-disabled-text-color: var(--c-text-dark-2);
|
|
381
|
+
|
|
382
|
+
--button-outline-black-border-color: var(--c-neutral-light-1);
|
|
383
|
+
--button-outline-black-text-color: var(--c-text-light-1);
|
|
384
|
+
--button-outline-black-loader-color: var(--c-neutral-light-1);
|
|
385
|
+
--button-outline-black-hover-bg-color: var(--c-neutral-light-dimm-1);
|
|
386
|
+
--button-outline-black-active-bg-color: var(--c-neutral-light-dimm-2);
|
|
387
|
+
--button-outline-black-disabled-border-color: var(--c-neutral-light-3);
|
|
388
|
+
--button-outline-black-disabled-text-color: var(--c-text-light-2);
|
|
389
|
+
|
|
390
|
+
--button-outline-mute-border-color: var(--c-divider-1);
|
|
391
|
+
--button-outline-mute-text-color: var(--c-text-2);
|
|
392
|
+
--button-outline-mute-loader-color: var(--c-neutral-1);
|
|
393
|
+
--button-outline-mute-hover-bg-color: var(--c-mute-dimm-1);
|
|
394
|
+
--button-outline-mute-active-bg-color: var(--c-mute-dimm-2);
|
|
395
|
+
--button-outline-mute-disabled-border-color: var(--c-divider-2);
|
|
396
|
+
--button-outline-mute-disabled-text-color: var(--c-text-3);
|
|
397
|
+
|
|
398
|
+
--button-outline-info-border-color: var(--c-info-light);
|
|
399
|
+
--button-outline-info-text-color: var(--c-info-light);
|
|
400
|
+
--button-outline-info-loader-color: var(--c-neutral-1);
|
|
401
|
+
--button-outline-info-hover-bg-color: var(--c-info-dimm-1);
|
|
402
|
+
--button-outline-info-active-bg-color: var(--c-info-dimm-2);
|
|
403
|
+
--button-outline-info-disabled-border-color: var(--c-info-dark);
|
|
404
|
+
--button-outline-info-disabled-text-color: var(--c-info-dark);
|
|
405
|
+
|
|
406
|
+
--button-outline-success-border-color: var(--c-success-light);
|
|
407
|
+
--button-outline-success-text-color: var(--c-success-light);
|
|
408
|
+
--button-outline-success-loader-color: var(--c-neutral-1);
|
|
409
|
+
--button-outline-success-hover-bg-color: var(--c-success-dimm-1);
|
|
410
|
+
--button-outline-success-active-bg-color: var(--c-success-dimm-2);
|
|
411
|
+
--button-outline-success-disabled-border-color: var(--c-success-dark);
|
|
412
|
+
--button-outline-success-disabled-text-color: var(--c-success-dark);
|
|
413
|
+
|
|
414
|
+
--button-outline-warning-border-color: var(--c-warning-light);
|
|
415
|
+
--button-outline-warning-text-color: var(--c-warning-light);
|
|
416
|
+
--button-outline-warning-loader-color: var(--c-neutral-1);
|
|
417
|
+
--button-outline-warning-hover-bg-color: var(--c-warning-dimm-1);
|
|
418
|
+
--button-outline-warning-active-bg-color: var(--c-warning-dimm-2);
|
|
419
|
+
--button-outline-warning-disabled-border-color: var(--c-warning-dark);
|
|
420
|
+
--button-outline-warning-disabled-text-color: var(--c-warning-dark);
|
|
421
|
+
|
|
422
|
+
--button-outline-danger-border-color: var(--c-danger-light);
|
|
423
|
+
--button-outline-danger-text-color: var(--c-danger-light);
|
|
424
|
+
--button-outline-danger-loader-color: var(--c-neutral-1);
|
|
425
|
+
--button-outline-danger-hover-bg-color: var(--c-danger-dimm-1);
|
|
426
|
+
--button-outline-danger-active-bg-color: var(--c-danger-dimm-2);
|
|
427
|
+
--button-outline-danger-disabled-border-color: var(--c-danger-dark);
|
|
428
|
+
--button-outline-danger-disabled-text-color: var(--c-danger-dark);
|
|
429
|
+
|
|
430
|
+
--button-text-neutral-text-color: var(--c-text-1);
|
|
431
|
+
--button-text-neutral-hover-bg-color: var(--c-neutral-dimm-1);
|
|
432
|
+
--button-text-neutral-active-bg-color: var(--c-neutral-dimm-2);
|
|
433
|
+
--button-text-neutral-disabled-text-color: var(--c-text-2);
|
|
434
|
+
|
|
435
|
+
--button-text-white-text-color: var(--c-text-dark-1);
|
|
436
|
+
--button-text-white-hover-bg-color: var(--c-neutral-dark-dimm-1);
|
|
437
|
+
--button-text-white-active-bg-color: var(--c-neutral-dark-dimm-2);
|
|
438
|
+
--button-text-white-disabled-text-color: var(--c-text-dark-2);
|
|
439
|
+
|
|
440
|
+
--button-text-black-text-color: var(--c-text-light-1);
|
|
441
|
+
--button-text-black-hover-bg-color: var(--c-neutral-light-dimm-1);
|
|
442
|
+
--button-text-black-active-bg-color: var(--c-neutral-light-dimm-2);
|
|
443
|
+
--button-text-black-disabled-text-color: var(--c-text-light-2);
|
|
444
|
+
|
|
445
|
+
--button-text-mute-text-color: var(--c-text-2);
|
|
446
|
+
--button-text-mute-hover-bg-color: var(--c-mute-dimm-1);
|
|
447
|
+
--button-text-mute-active-bg-color: var(--c-mute-dimm-2);
|
|
448
|
+
--button-text-mute-disabled-text-color: var(--c-text-3);
|
|
449
|
+
|
|
450
|
+
--button-text-info-text-color: var(--c-info-light);
|
|
451
|
+
--button-text-info-hover-bg-color: var(--c-info-dimm-1);
|
|
452
|
+
--button-text-info-active-bg-color: var(--c-info-dimm-2);
|
|
453
|
+
--button-text-info-disabled-text-color: var(--c-info-dark);
|
|
454
|
+
|
|
455
|
+
--button-text-success-text-color: var(--c-success-light);
|
|
456
|
+
--button-text-success-hover-bg-color: var(--c-success-dimm-1);
|
|
457
|
+
--button-text-success-active-bg-color: var(--c-success-dimm-2);
|
|
458
|
+
--button-text-success-disabled-text-color: var(--c-success-dark);
|
|
459
|
+
|
|
460
|
+
--button-text-warning-text-color: var(--c-warning-light);
|
|
461
|
+
--button-text-warning-hover-bg-color: var(--c-warning-dimm-1);
|
|
462
|
+
--button-text-warning-active-bg-color: var(--c-warning-dimm-2);
|
|
463
|
+
--button-text-warning-disabled-text-color: var(--c-warning-dark);
|
|
464
|
+
|
|
465
|
+
--button-text-danger-text-color: var(--c-danger-light);
|
|
466
|
+
--button-text-danger-hover-bg-color: var(--c-danger-dimm-1);
|
|
467
|
+
--button-text-danger-active-bg-color: var(--c-danger-dimm-2);
|
|
468
|
+
--button-text-danger-disabled-text-color: var(--c-danger-dark);
|
|
264
469
|
}
|
|
265
470
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
--
|
|
273
|
-
--
|
|
274
|
-
--
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
--
|
|
278
|
-
--
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
--
|
|
282
|
-
|
|
283
|
-
--
|
|
284
|
-
--
|
|
285
|
-
--
|
|
286
|
-
--
|
|
287
|
-
--
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
--
|
|
291
|
-
--
|
|
292
|
-
--
|
|
293
|
-
--
|
|
294
|
-
|
|
295
|
-
--
|
|
296
|
-
--
|
|
297
|
-
|
|
298
|
-
--
|
|
299
|
-
--
|
|
300
|
-
|
|
301
|
-
--
|
|
302
|
-
--
|
|
303
|
-
--
|
|
304
|
-
--
|
|
305
|
-
--
|
|
306
|
-
|
|
307
|
-
--
|
|
308
|
-
--
|
|
309
|
-
--
|
|
310
|
-
--
|
|
311
|
-
--
|
|
312
|
-
|
|
313
|
-
--
|
|
314
|
-
--
|
|
471
|
+
/**
|
|
472
|
+
* Component: Pill
|
|
473
|
+
* -------------------------------------------------------------------------- */
|
|
474
|
+
|
|
475
|
+
:root {
|
|
476
|
+
--pill-dimm-neutral-border-color: var(--c-divider-1);
|
|
477
|
+
--pill-dimm-neutral-text-color: var(--c-text-1);
|
|
478
|
+
--pill-dimm-neutral-bg-color: var(--c-mute);
|
|
479
|
+
--pill-dimm-neutral-hover-bg-color: var(--c-mute-dimm-1);
|
|
480
|
+
--pill-dimm-neutral-active-bg-color: var(--c-mute-dimm-2);
|
|
481
|
+
|
|
482
|
+
--pill-dimm-mute-border-color: var(--c-divider-1);
|
|
483
|
+
--pill-dimm-mute-text-color: var(--c-text-2);
|
|
484
|
+
--pill-dimm-mute-bg-color: var(--c-mute);
|
|
485
|
+
--pill-dimm-mute-hover-bg-color: var(--c-mute-dimm-1);
|
|
486
|
+
--pill-dimm-mute-active-bg-color: var(--c-mute-dimm-2);
|
|
487
|
+
|
|
488
|
+
--pill-dimm-info-border-color: var(--c-info-light);
|
|
489
|
+
--pill-dimm-info-text-color: var(--c-info-light);
|
|
490
|
+
--pill-dimm-info-bg-color: var(--c-info-dimm-1);
|
|
491
|
+
--pill-dimm-info-hover-bg-color: var(--c-info-dimm-2);
|
|
492
|
+
--pill-dimm-info-active-bg-color: var(--c-info-dimm-3);
|
|
493
|
+
|
|
494
|
+
--pill-dimm-success-border-color: var(--c-success-light);
|
|
495
|
+
--pill-dimm-success-text-color: var(--c-success-light);
|
|
496
|
+
--pill-dimm-success-bg-color: var(--c-success-dimm-1);
|
|
497
|
+
--pill-dimm-success-hover-bg-color: var(--c-success-dimm-2);
|
|
498
|
+
--pill-dimm-success-active-bg-color: var(--c-success-dimm-3);
|
|
499
|
+
|
|
500
|
+
--pill-dimm-warning-border-color: var(--c-warning-light);
|
|
501
|
+
--pill-dimm-warning-text-color: var(--c-warning-light);
|
|
502
|
+
--pill-dimm-warning-bg-color: var(--c-warning-dimm-1);
|
|
503
|
+
--pill-dimm-warning-hover-bg-color: var(--c-warning-dimm-2);
|
|
504
|
+
--pill-dimm-warning-active-bg-color: var(--c-warning-dimm-3);
|
|
505
|
+
|
|
506
|
+
--pill-dimm-danger-border-color: var(--c-danger-light);
|
|
507
|
+
--pill-dimm-danger-text-color: var(--c-danger-light);
|
|
508
|
+
--pill-dimm-danger-bg-color: var(--c-danger-dimm-1);
|
|
509
|
+
--pill-dimm-danger-hover-bg-color: var(--c-danger-dimm-2);
|
|
510
|
+
--pill-dimm-danger-active-bg-color: var(--c-danger-dimm-3);
|
|
511
|
+
|
|
512
|
+
--pill-fill-neutral-border-color: transparent;
|
|
513
|
+
--pill-fill-neutral-text-color: var(--c-text-inverse-1);
|
|
514
|
+
--pill-fill-neutral-bg-color: var(--c-neutral-1);
|
|
515
|
+
--pill-fill-neutral-hover-bg-color: var(--c-neutral-2);
|
|
516
|
+
--pill-fill-neutral-active-bg-color: var(--c-neutral-3);
|
|
517
|
+
|
|
518
|
+
--pill-fill-mute-border-color: transparent;
|
|
519
|
+
--pill-fill-mute-text-color: var(--c-text-1);
|
|
520
|
+
--pill-fill-mute-bg-color: var(--c-mute);
|
|
521
|
+
--pill-fill-mute-hover-bg-color: var(--c-mute-dimm-1);
|
|
522
|
+
--pill-fill-mute-active-bg-color: var(--c-mute-dimm-2);
|
|
523
|
+
|
|
524
|
+
--pill-fill-info-border-color: transparent;
|
|
525
|
+
--pill-fill-info-text-color: var(--c-text-dark-1);
|
|
526
|
+
--pill-fill-info-bg-color: var(--c-info);
|
|
527
|
+
--pill-fill-info-hover-bg-color: var(--c-info-dark);
|
|
528
|
+
--pill-fill-info-active-bg-color: var(--c-info-darker);
|
|
529
|
+
|
|
530
|
+
--pill-fill-success-border-color: transparent;
|
|
531
|
+
--pill-fill-success-text-color: var(--c-text-dark-1);
|
|
532
|
+
--pill-fill-success-bg-color: var(--c-success);
|
|
533
|
+
--pill-fill-success-hover-bg-color: var(--c-success-dark);
|
|
534
|
+
--pill-fill-success-active-bg-color: var(--c-success-darker);
|
|
535
|
+
|
|
536
|
+
--pill-fill-warning-border-color: transparent;
|
|
537
|
+
--pill-fill-warning-text-color: var(--c-text-dark-1);
|
|
538
|
+
--pill-fill-warning-bg-color: var(--c-warning);
|
|
539
|
+
--pill-fill-warning-hover-bg-color: var(--c-warning-dark);
|
|
540
|
+
--pill-fill-warning-active-bg-color: var(--c-warning-darker);
|
|
541
|
+
|
|
542
|
+
--pill-fill-danger-border-color: transparent;
|
|
543
|
+
--pill-fill-danger-text-color: var(--c-text-dark-1);
|
|
544
|
+
--pill-fill-danger-bg-color: var(--c-danger);
|
|
545
|
+
--pill-fill-danger-hover-bg-color: var(--c-danger-dark);
|
|
546
|
+
--pill-fill-danger-active-bg-color: var(--c-danger-darker);
|
|
315
547
|
}
|
|
316
548
|
|
|
317
549
|
/**
|
|
@@ -325,3 +557,44 @@
|
|
|
325
557
|
.dark {
|
|
326
558
|
--dropdown-item-hover-bg: var(--c-black);
|
|
327
559
|
}
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* Component: Table
|
|
563
|
+
* -------------------------------------------------------------------------- */
|
|
564
|
+
|
|
565
|
+
:root {
|
|
566
|
+
--table-border: 1px solid var(--c-divider-light);
|
|
567
|
+
--table-border-top: var(--table-border);
|
|
568
|
+
--table-border-right: var(--table-border);
|
|
569
|
+
--table-border-bottom: var(--table-border);
|
|
570
|
+
--table-border-left: var(--table-border);
|
|
571
|
+
--table-border-radius: 6px;
|
|
572
|
+
|
|
573
|
+
--table-padding-right: 0;
|
|
574
|
+
--table-padding-left: 0;
|
|
575
|
+
|
|
576
|
+
--table-cell-font-size: 14px;
|
|
577
|
+
--table-cell-font-weight: 400;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* Component: Input
|
|
582
|
+
* -------------------------------------------------------------------------- */
|
|
583
|
+
|
|
584
|
+
:root {
|
|
585
|
+
--input-label-color: var(--c-text-1);
|
|
586
|
+
--input-border-color: var(--c-divider-1);
|
|
587
|
+
--input-value-color: var(--c-text-1);
|
|
588
|
+
--input-placeholder-color: var(--c-text-3);
|
|
589
|
+
--input-bg-color: var(--c-bg-elv-1);
|
|
590
|
+
--input-hover-border-color: var(--c-gray);
|
|
591
|
+
--input-focus-border-color: var(--c-info-light);
|
|
592
|
+
--input-error-text-color: var(--c-danger-light);
|
|
593
|
+
--input-error-border-color: var(--c-danger-light);
|
|
594
|
+
--input-disabled-value-color: var(--c-text-1);
|
|
595
|
+
--input-disabled-bg-color: var(--c-mute);
|
|
596
|
+
|
|
597
|
+
--input-mini-font-size: 14px;
|
|
598
|
+
--input-small-font-size: 16px;
|
|
599
|
+
--input-medium-font-size: 16px;
|
|
600
|
+
}
|