@nova-design-system/nova-base 3.0.0-beta.35 → 3.0.0-beta.37
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/dist/{lib/cjs → cjs}/generated/nova-tailwind-components.js +128 -17
- package/dist/{lib/cjs/lib → cjs/plugin}/nova-plugin.js +4 -0
- package/dist/{lib/cjs/lib → cjs/plugin}/nova-theme.js +1 -0
- package/dist/css/mccs.css +44 -23
- package/dist/css/nova-utils.css +153 -100
- package/dist/css/ocean.css +68 -47
- package/dist/css/spark.css +70 -49
- package/dist/{lib/generated → generated}/nova-tailwind-components.d.ts +112 -1
- package/dist/{lib/generated → generated}/nova-tailwind-components.js +128 -17
- package/dist/js/mccs_dark.d.ts +15 -9
- package/dist/js/mccs_dark.js +18 -12
- package/dist/js/mccs_light.d.ts +15 -9
- package/dist/js/mccs_light.js +18 -12
- package/dist/js/ocean_dark.d.ts +27 -21
- package/dist/js/ocean_dark.js +30 -24
- package/dist/js/ocean_light.d.ts +27 -21
- package/dist/js/ocean_light.js +30 -24
- package/dist/js/spacings.d.ts +9 -0
- package/dist/js/spacings.js +11 -2
- package/dist/js/spark_dark.d.ts +27 -21
- package/dist/js/spark_dark.js +30 -24
- package/dist/js/spark_light.d.ts +27 -21
- package/dist/js/spark_light.js +32 -26
- package/dist/{lib/lib → plugin}/nova-plugin.d.ts +1 -0
- package/dist/{lib/lib → plugin}/nova-plugin.js +4 -0
- package/dist/{lib/lib → plugin}/nova-theme.d.ts +1 -0
- package/dist/{lib/lib → plugin}/nova-theme.js +1 -0
- package/package.json +12 -7
- /package/dist/{lib/cjs → cjs}/generated/nova-tailwind-tokens.js +0 -0
- /package/dist/{lib/cjs/lib → cjs/plugin}/index.js +0 -0
- /package/dist/{lib/cjs/lib → cjs/plugin}/nova-safelist.js +0 -0
- /package/dist/{lib/generated → generated}/nova-tailwind-tokens.d.ts +0 -0
- /package/dist/{lib/generated → generated}/nova-tailwind-tokens.js +0 -0
- /package/dist/{lib/lib → plugin}/index.d.ts +0 -0
- /package/dist/{lib/lib → plugin}/index.js +0 -0
- /package/dist/{lib/lib → plugin}/nova-safelist.d.ts +0 -0
- /package/dist/{lib/lib → plugin}/nova-safelist.js +0 -0
|
@@ -39,11 +39,16 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
39
39
|
'border': '1px solid var(--components-button-medium-border)',
|
|
40
40
|
'color': 'var(--components-button-medium-text-hover)'
|
|
41
41
|
},
|
|
42
|
+
'.nv-button:active': {
|
|
43
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
44
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
45
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
46
|
+
},
|
|
42
47
|
'.nv-button:focus, .nv-button:focus-within': {
|
|
43
48
|
'outline': 'none'
|
|
44
49
|
},
|
|
45
50
|
'.nv-button:focus-visible, .nv-button:has(:focus-visible)': {
|
|
46
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
51
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
47
52
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
48
53
|
},
|
|
49
54
|
'.nv-button:disabled:not([disabled=false])': {
|
|
@@ -51,21 +56,26 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
51
56
|
'cursor': 'not-allowed',
|
|
52
57
|
'boxShadow': 'none'
|
|
53
58
|
},
|
|
59
|
+
'.nv-button.active': {
|
|
60
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
61
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
62
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
63
|
+
},
|
|
54
64
|
'.nv-button.danger': {
|
|
55
65
|
'background': 'var(--components-button-destructive-high-background)',
|
|
56
|
-
'border': '1px solid
|
|
66
|
+
'border': '1px solid transparent',
|
|
57
67
|
'color': 'var(--components-button-destructive-high-text)'
|
|
58
68
|
},
|
|
59
69
|
'.nv-button.danger:hover': {
|
|
60
70
|
'background': 'var(--components-button-destructive-high-background-hover)',
|
|
61
|
-
'border': '1px solid
|
|
71
|
+
'border': '1px solid transparent',
|
|
62
72
|
'color': 'var(--components-button-destructive-high-text-hover)'
|
|
63
73
|
},
|
|
64
74
|
'.nv-button.danger:focus, .nv-button.danger:focus-within': {
|
|
65
75
|
'outline': 'none'
|
|
66
76
|
},
|
|
67
77
|
'.nv-button.danger:focus-visible, .nv-button.danger:has(:focus-visible)': {
|
|
68
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
78
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
69
79
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
70
80
|
},
|
|
71
81
|
'.nv-button.size-xs': {
|
|
@@ -126,11 +136,16 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
126
136
|
'border': '1px solid var(--components-button-high-border)',
|
|
127
137
|
'color': 'var(--components-button-high-text-hover)'
|
|
128
138
|
},
|
|
139
|
+
'.nv-button.emphasis-high:active': {
|
|
140
|
+
'background': 'var(--components-button-high-background-active)',
|
|
141
|
+
'border': '1px solid var(--components-button-high-border-active)',
|
|
142
|
+
'color': 'var(--components-button-high-text-active)'
|
|
143
|
+
},
|
|
129
144
|
'.nv-button.emphasis-high:focus, .nv-button.emphasis-high:focus-within': {
|
|
130
145
|
'outline': 'none'
|
|
131
146
|
},
|
|
132
147
|
'.nv-button.emphasis-high:focus-visible, .nv-button.emphasis-high:has(:focus-visible)': {
|
|
133
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
148
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
134
149
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
135
150
|
},
|
|
136
151
|
'.nv-button.emphasis-high:disabled:not([disabled=false])': {
|
|
@@ -138,21 +153,26 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
138
153
|
'cursor': 'not-allowed',
|
|
139
154
|
'boxShadow': 'none'
|
|
140
155
|
},
|
|
156
|
+
'.nv-button.emphasis-high.active': {
|
|
157
|
+
'background': 'var(--components-button-high-background-active)',
|
|
158
|
+
'border': '1px solid var(--components-button-high-border-active)',
|
|
159
|
+
'color': 'var(--components-button-high-text-active)'
|
|
160
|
+
},
|
|
141
161
|
'.nv-button.emphasis-high.danger': {
|
|
142
162
|
'background': 'var(--components-button-destructive-high-background)',
|
|
143
|
-
'border': '1px solid
|
|
163
|
+
'border': '1px solid transparent',
|
|
144
164
|
'color': 'var(--components-button-destructive-high-text)'
|
|
145
165
|
},
|
|
146
166
|
'.nv-button.emphasis-high.danger:hover': {
|
|
147
167
|
'background': 'var(--components-button-destructive-high-background-hover)',
|
|
148
|
-
'border': '1px solid
|
|
168
|
+
'border': '1px solid transparent',
|
|
149
169
|
'color': 'var(--components-button-destructive-high-text-hover)'
|
|
150
170
|
},
|
|
151
171
|
'.nv-button.emphasis-high.danger:focus, .nv-button.emphasis-high.danger:focus-within': {
|
|
152
172
|
'outline': 'none'
|
|
153
173
|
},
|
|
154
174
|
'.nv-button.emphasis-high.danger:focus-visible, .nv-button.emphasis-high.danger:has(:focus-visible)': {
|
|
155
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
175
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
156
176
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
157
177
|
},
|
|
158
178
|
'.nv-button.emphasis-medium': {
|
|
@@ -165,11 +185,16 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
165
185
|
'border': '1px solid var(--components-button-medium-border)',
|
|
166
186
|
'color': 'var(--components-button-medium-text-hover)'
|
|
167
187
|
},
|
|
188
|
+
'.nv-button.emphasis-medium:active': {
|
|
189
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
190
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
191
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
192
|
+
},
|
|
168
193
|
'.nv-button.emphasis-medium:focus, .nv-button.emphasis-medium:focus-within': {
|
|
169
194
|
'outline': 'none'
|
|
170
195
|
},
|
|
171
196
|
'.nv-button.emphasis-medium:focus-visible, .nv-button.emphasis-medium:has(:focus-visible)': {
|
|
172
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
197
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
173
198
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
174
199
|
},
|
|
175
200
|
'.nv-button.emphasis-medium:disabled:not([disabled=false])': {
|
|
@@ -177,6 +202,11 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
177
202
|
'cursor': 'not-allowed',
|
|
178
203
|
'boxShadow': 'none'
|
|
179
204
|
},
|
|
205
|
+
'.nv-button.emphasis-medium.active': {
|
|
206
|
+
'background': 'var(--components-button-medium-background-active)',
|
|
207
|
+
'border': '1px solid var(--components-button-medium-border-active)',
|
|
208
|
+
'color': 'var(--components-button-medium-text-active)'
|
|
209
|
+
},
|
|
180
210
|
'.nv-button.emphasis-medium.danger': {
|
|
181
211
|
'background': 'var(--components-button-destructive-medium-background)',
|
|
182
212
|
'border': '1px solid var(--components-button-destructive-medium-border)',
|
|
@@ -191,7 +221,7 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
191
221
|
'outline': 'none'
|
|
192
222
|
},
|
|
193
223
|
'.nv-button.emphasis-medium.danger:focus-visible, .nv-button.emphasis-medium.danger:has(:focus-visible)': {
|
|
194
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
224
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
195
225
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
196
226
|
},
|
|
197
227
|
'.nv-button.emphasis-low': {
|
|
@@ -204,11 +234,16 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
204
234
|
'border': '1px solid var(--components-button-low-border)',
|
|
205
235
|
'color': 'var(--components-button-low-text-hover)'
|
|
206
236
|
},
|
|
237
|
+
'.nv-button.emphasis-low:active': {
|
|
238
|
+
'background': 'var(--components-button-low-background-active)',
|
|
239
|
+
'border': '1px solid var(--components-button-low-border-active)',
|
|
240
|
+
'color': 'var(--components-button-low-text-active)'
|
|
241
|
+
},
|
|
207
242
|
'.nv-button.emphasis-low:focus, .nv-button.emphasis-low:focus-within': {
|
|
208
243
|
'outline': 'none'
|
|
209
244
|
},
|
|
210
245
|
'.nv-button.emphasis-low:focus-visible, .nv-button.emphasis-low:has(:focus-visible)': {
|
|
211
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
246
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
212
247
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
213
248
|
},
|
|
214
249
|
'.nv-button.emphasis-low:disabled:not([disabled=false])': {
|
|
@@ -216,6 +251,11 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
216
251
|
'cursor': 'not-allowed',
|
|
217
252
|
'boxShadow': 'none'
|
|
218
253
|
},
|
|
254
|
+
'.nv-button.emphasis-low.active': {
|
|
255
|
+
'background': 'var(--components-button-low-background-active)',
|
|
256
|
+
'border': '1px solid var(--components-button-low-border-active)',
|
|
257
|
+
'color': 'var(--components-button-low-text-active)'
|
|
258
|
+
},
|
|
219
259
|
'.nv-button.emphasis-low.danger': {
|
|
220
260
|
'background': 'var(--components-button-destructive-low-background)',
|
|
221
261
|
'border': '1px solid var(--components-button-destructive-low-border)',
|
|
@@ -230,7 +270,7 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
230
270
|
'outline': 'none'
|
|
231
271
|
},
|
|
232
272
|
'.nv-button.emphasis-low.danger:focus-visible, .nv-button.emphasis-low.danger:has(:focus-visible)': {
|
|
233
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
273
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
234
274
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
235
275
|
},
|
|
236
276
|
'.nv-button.emphasis-lower': {
|
|
@@ -243,11 +283,16 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
243
283
|
'border': '1px solid var(--components-button-lower-border)',
|
|
244
284
|
'color': 'var(--components-button-lower-text-hover)'
|
|
245
285
|
},
|
|
286
|
+
'.nv-button.emphasis-lower:active': {
|
|
287
|
+
'background': 'var(--components-button-lower-background-active)',
|
|
288
|
+
'border': '1px solid var(--components-button-lower-border-active)',
|
|
289
|
+
'color': 'var(--components-button-lower-text-active)'
|
|
290
|
+
},
|
|
246
291
|
'.nv-button.emphasis-lower:focus, .nv-button.emphasis-lower:focus-within': {
|
|
247
292
|
'outline': 'none'
|
|
248
293
|
},
|
|
249
294
|
'.nv-button.emphasis-lower:focus-visible, .nv-button.emphasis-lower:has(:focus-visible)': {
|
|
250
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-brand)',
|
|
295
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-brand)',
|
|
251
296
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
252
297
|
},
|
|
253
298
|
'.nv-button.emphasis-lower:disabled:not([disabled=false])': {
|
|
@@ -255,6 +300,11 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
255
300
|
'cursor': 'not-allowed',
|
|
256
301
|
'boxShadow': 'none'
|
|
257
302
|
},
|
|
303
|
+
'.nv-button.emphasis-lower.active': {
|
|
304
|
+
'background': 'var(--components-button-lower-background-active)',
|
|
305
|
+
'border': '1px solid var(--components-button-lower-border-active)',
|
|
306
|
+
'color': 'var(--components-button-lower-text-active)'
|
|
307
|
+
},
|
|
258
308
|
'.nv-button.emphasis-lower.danger': {
|
|
259
309
|
'background': 'var(--components-button-destructive-lower-background)',
|
|
260
310
|
'border': '1px solid var(--components-button-destructive-lower-border)',
|
|
@@ -269,7 +319,7 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
269
319
|
'outline': 'none'
|
|
270
320
|
},
|
|
271
321
|
'.nv-button.emphasis-lower.danger:focus-visible, .nv-button.emphasis-lower.danger:has(:focus-visible)': {
|
|
272
|
-
'outline': 'var(--focus-outline-stroke) solid var(--color-focus-destructive)',
|
|
322
|
+
'outline': 'calc(var(--focus-outline-stroke) * 1) solid var(--color-focus-destructive)',
|
|
273
323
|
'outlineOffset': 'calc(var(--focus-outline-offset) * 1)'
|
|
274
324
|
},
|
|
275
325
|
'.nv-button.fluid': {
|
|
@@ -283,10 +333,71 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
283
333
|
'.nv-link:hover': {
|
|
284
334
|
'color': 'var(--color-interaction-link-high-text-hover)'
|
|
285
335
|
},
|
|
336
|
+
'.nv-sidenav .nv-link, .nv-navbar .nv-link, .nv-tabs .nv-link': {
|
|
337
|
+
'display': 'flex',
|
|
338
|
+
'alignItems': 'center',
|
|
339
|
+
'color': 'var(--color-interaction-container-neutral-text)',
|
|
340
|
+
'backgroundColor': 'var(--color-interaction-container-neutral-background)',
|
|
341
|
+
'textDecoration': 'none',
|
|
342
|
+
'fontWeight': '500',
|
|
343
|
+
'padding': 'var(--spacing-2) var(--spacing-3)',
|
|
344
|
+
'columnGap': 'var(--spacing-2)'
|
|
345
|
+
},
|
|
346
|
+
'.nv-tabs': {
|
|
347
|
+
'display': 'flex',
|
|
348
|
+
'flex': '1 1 0%',
|
|
349
|
+
'alignItems': 'center',
|
|
350
|
+
'borderBottom': '1px solid var(--color-content-low-border)',
|
|
351
|
+
'columnGap': 'var(--spacing-0-5)'
|
|
352
|
+
},
|
|
286
353
|
'.nv-tabs .nv-link': {
|
|
287
|
-
'
|
|
354
|
+
'borderStyle': 'solid',
|
|
355
|
+
'borderColor': 'transparent',
|
|
356
|
+
'borderWidth': '0 0 2px 0'
|
|
357
|
+
},
|
|
358
|
+
'.nv-tabs .nv-link:hover': {
|
|
359
|
+
'color': 'var(--color-interaction-container-branded-low-text-hover)',
|
|
360
|
+
'borderColor': 'transparent',
|
|
361
|
+
'backgroundColor': 'transparent'
|
|
362
|
+
},
|
|
363
|
+
'.nv-tabs .nv-link.active': {
|
|
364
|
+
'color': 'var(--color-interaction-container-branded-low-text-active)',
|
|
365
|
+
'borderColor': 'var(--color-interaction-container-branded-low-border-active)',
|
|
366
|
+
'backgroundColor': 'transparent'
|
|
367
|
+
},
|
|
368
|
+
'.nv-navbar .nv-link, .nv-sidenav .nv-link': {
|
|
369
|
+
'border': 'solid 0 transparent',
|
|
370
|
+
'borderRadius': 'var(--radius-rounded-md)'
|
|
371
|
+
},
|
|
372
|
+
'.nv-navbar .nv-link:hover, .nv-sidenav .nv-link:hover': {
|
|
373
|
+
'color': 'var(--color-interaction-container-neutral-text-hover)',
|
|
374
|
+
'borderColor': 'var(--color-interaction-container-neutral-border-hover)',
|
|
375
|
+
'backgroundColor': 'var(--color-interaction-container-neutral-background-hover)'
|
|
376
|
+
},
|
|
377
|
+
'.nv-navbar .nv-link.active, .nv-navbar .nv-link.router-link-active, .nv-sidenav .nv-link.active, .nv-sidenav .nv-link.router-link-active': {
|
|
378
|
+
'color': 'var(--color-interaction-container-neutral-text-active)',
|
|
379
|
+
'borderColor': 'var(--color-interaction-container-neutral-text-active)',
|
|
380
|
+
'backgroundColor': 'var(--color-interaction-container-neutral-background-active)'
|
|
381
|
+
},
|
|
382
|
+
'.nv-sidenav .collapsible .nv-link': {
|
|
383
|
+
'justifyContent': 'space-between'
|
|
384
|
+
},
|
|
385
|
+
'.nv-sidenav .collapsible .nv-link .nv-iconbutton': {
|
|
386
|
+
'width': '20px !important',
|
|
387
|
+
'height': '20px !important'
|
|
388
|
+
},
|
|
389
|
+
'.nv-link .nv-badge': {
|
|
390
|
+
'borderRadius': 'var(--radius-rounded-full)',
|
|
391
|
+
'width': 'var(--spacing-5)',
|
|
392
|
+
'display': 'flex',
|
|
393
|
+
'alignItems': 'center',
|
|
394
|
+
'justifyContent': 'center',
|
|
395
|
+
'fontSize': 'var(--font-size-xs)',
|
|
396
|
+
'color': 'var(--color-feedback-neutral-high-icon)',
|
|
397
|
+
'backgroundColor': 'var(--color-feedback-neutral-high-background)'
|
|
288
398
|
},
|
|
289
|
-
'.nv-
|
|
290
|
-
'
|
|
399
|
+
'.nv-link.disabled': {
|
|
400
|
+
'opacity': '0.5',
|
|
401
|
+
'cursor': 'not-allowed'
|
|
291
402
|
}
|
|
292
403
|
};
|
|
@@ -47,6 +47,9 @@ exports.novaTailwindPlugin = (0, plugin_js_1.default)(function (_a) {
|
|
|
47
47
|
'a:hover': {
|
|
48
48
|
color: 'var(--color-interaction-link-high-text-hover)',
|
|
49
49
|
},
|
|
50
|
+
'no-underline': {
|
|
51
|
+
'text-decoration': 'none',
|
|
52
|
+
},
|
|
50
53
|
h1: {
|
|
51
54
|
fontSize: 'var(--global-typography-h1-font-size)',
|
|
52
55
|
lineHeight: 'var(--global-typography-h1-line-height)',
|
|
@@ -109,3 +112,4 @@ exports.novaTailwindPlugin = (0, plugin_js_1.default)(function (_a) {
|
|
|
109
112
|
width: 'unset',
|
|
110
113
|
} }));
|
|
111
114
|
});
|
|
115
|
+
exports.default = exports.novaTailwindPlugin;
|
package/dist/css/mccs.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
.dark:root {
|
|
6
|
-
--components-overlay-opacity:
|
|
6
|
+
--components-overlay-opacity: 75%;
|
|
7
7
|
--components-button-destructive-low-border-hover: rgba(255, 255, 255, 0);
|
|
8
8
|
--components-button-destructive-low-border: rgba(255, 255, 255, 0);
|
|
9
9
|
--components-button-destructive-low-background-hover: rgba(255, 255, 255, 0.12);
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
--components-list-native-separator: #838086;
|
|
21
21
|
--components-list-native-item-title-content: rgba(255, 255, 255, 0.5);
|
|
22
22
|
--components-list-native-background: #565558;
|
|
23
|
-
--components-form-opacity-disabled:
|
|
24
|
-
--components-form-opacity-default:
|
|
23
|
+
--components-form-opacity-disabled: 50%;
|
|
24
|
+
--components-form-opacity-default: 100%;
|
|
25
25
|
--components-button-gr-as-complementary-border-hover: rgba(255, 255, 255, 0);
|
|
26
26
|
--components-button-gr-as-complementary-border: rgba(255, 255, 255, 0);
|
|
27
27
|
--components-button-lower-border-hover-2: rgba(255, 255, 255, 0);
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
--components-button-high-border-active: rgba(255, 255, 255, 0);
|
|
34
34
|
--components-button-high-border-hover: rgba(255, 255, 255, 0);
|
|
35
35
|
--components-button-high-border: rgba(255, 255, 255, 0);
|
|
36
|
-
--components-wpf-components-2: #ffffff;
|
|
37
36
|
--shadow-y-axis-2xl: 25px;
|
|
38
37
|
--shadow-y-axis-xl-2: 20px;
|
|
39
38
|
--shadow-y-axis-xl-1: 10px;
|
|
@@ -60,6 +59,10 @@
|
|
|
60
59
|
--shadow-color-opacity-2: rgba(11, 15, 17, 0.14);
|
|
61
60
|
--shadow-color-opacity-1: rgba(11, 15, 17, 0.09);
|
|
62
61
|
--shadow-color-opacity-0: rgba(11, 15, 17, 0.09);
|
|
62
|
+
--opacity-disabled-2: 0%;
|
|
63
|
+
--opacity-disabled: 50%;
|
|
64
|
+
--color-transparent: rgba(255, 255, 255, 0);
|
|
65
|
+
--color-white: #ffffff;
|
|
63
66
|
--color-black: #000000;
|
|
64
67
|
--color-interaction-container-neutral-background-active: rgba(255, 255, 255, 0.1);
|
|
65
68
|
--color-interaction-container-neutral-background-hover: rgba(255, 255, 255, 0.1);
|
|
@@ -67,11 +70,11 @@
|
|
|
67
70
|
--color-interaction-container-branded-low-background-hover: rgba(255, 255, 255, 0.12);
|
|
68
71
|
--color-interaction-container-branded-low-background-active: rgba(255, 255, 255, 0.12);
|
|
69
72
|
--color-interaction-container-branded-low-background: rgba(255, 255, 255, 0);
|
|
70
|
-
--components-menu-contextual-item-background-hover: var(--color-interaction-container-neutral-background-hover);
|
|
71
|
-
--components-menu-contextual-item-background: var(--color-interaction-container-neutral-background);
|
|
72
73
|
--components-tooltip-border: var(--color-gray-ocean-50);
|
|
73
74
|
--components-tooltip-background: var(--color-gray-ocean-50);
|
|
74
75
|
--components-popover-background: var(--color-gray-ocean-900);
|
|
76
|
+
--components-menu-contextual-item-background-hover: var(--color-interaction-container-neutral-background-hover);
|
|
77
|
+
--components-menu-contextual-item-background: var(--color-interaction-container-neutral-background);
|
|
75
78
|
--components-overlay-background: var(--color-gray-ocean-650);
|
|
76
79
|
--components-button-destructive-high-icon-hover: var(--color-base-black);
|
|
77
80
|
--components-button-destructive-high-icon: var(--color-base-black);
|
|
@@ -283,15 +286,15 @@
|
|
|
283
286
|
--color-interaction-container-branded-low-border-hover: var(--color-petrol-300);
|
|
284
287
|
--color-interaction-container-branded-low-border-active: var(--color-petrol-300);
|
|
285
288
|
--color-interaction-container-branded-low-border: var(--color-petrol-400);
|
|
286
|
-
--components-menu-contextual-item-content-disabled: var(--color-content-lower-text);
|
|
287
|
-
--components-menu-contextual-item-shortcut: var(--color-content-lower-text);
|
|
288
|
-
--components-menu-contextual-border: var(--color-content-low-border);
|
|
289
|
-
--components-menu-contextual-background: var(--color-level-00-background);
|
|
290
289
|
--components-tooltip-supporting-text: var(--color-content-inverted-medium-text);
|
|
291
290
|
--components-tooltip-text: var(--color-content-inverted-high-text);
|
|
292
291
|
--components-popover-supporting-text: var(--color-content-low-text);
|
|
293
292
|
--components-popover-text: var(--color-content-inverted-medium-text);
|
|
294
293
|
--components-popover-border: var(--color-content-low-border);
|
|
294
|
+
--components-menu-contextual-item-content-disabled: var(--color-content-lower-text);
|
|
295
|
+
--components-menu-contextual-item-shortcut: var(--color-content-lower-text);
|
|
296
|
+
--components-menu-contextual-border: var(--color-content-low-border);
|
|
297
|
+
--components-menu-contextual-background: var(--color-level-00-background);
|
|
295
298
|
--components-notification-neutral-icon: var(--color-feedback-neutral-low-icon);
|
|
296
299
|
--components-notification-neutral-border: var(--color-feedback-neutral-low-border);
|
|
297
300
|
--components-notification-neutral-background: var(--color-level-20-background);
|
|
@@ -309,6 +312,9 @@
|
|
|
309
312
|
--components-notification-information-border: var(--color-feedback-information-low-border);
|
|
310
313
|
--components-notification-information-icon: var(--color-feedback-information-low-icon);
|
|
311
314
|
--components-notification-information-background: var(--color-level-20-background);
|
|
315
|
+
--components-breadcrumb-text-hover: var(--color-interaction-link-low-text-hover);
|
|
316
|
+
--components-breadcrumb-text-active: var(--color-content-medium-text);
|
|
317
|
+
--components-breadcrumb-text: var(--color-content-low-text);
|
|
312
318
|
--components-avatar-content-10: var(--color-rainbow-10-icon);
|
|
313
319
|
--components-avatar-content-9: var(--color-rainbow-9-text);
|
|
314
320
|
--components-avatar-content-8: var(--color-rainbow-8-text);
|
|
@@ -467,7 +473,7 @@
|
|
|
467
473
|
*/
|
|
468
474
|
|
|
469
475
|
:root {
|
|
470
|
-
--components-overlay-opacity:
|
|
476
|
+
--components-overlay-opacity: 55%;
|
|
471
477
|
--components-button-destructive-low-border-hover: rgba(255, 255, 255, 0);
|
|
472
478
|
--components-button-destructive-low-border: rgba(255, 255, 255, 0);
|
|
473
479
|
--components-button-destructive-low-background-hover: rgba(11, 15, 17, 0.08);
|
|
@@ -484,8 +490,8 @@
|
|
|
484
490
|
--components-list-native-separator: #838086;
|
|
485
491
|
--components-list-native-item-title-content: rgba(255, 255, 255, 0.5);
|
|
486
492
|
--components-list-native-background: #565558;
|
|
487
|
-
--components-form-opacity-disabled:
|
|
488
|
-
--components-form-opacity-default:
|
|
493
|
+
--components-form-opacity-disabled: 50%;
|
|
494
|
+
--components-form-opacity-default: 100%;
|
|
489
495
|
--components-button-gr-as-complementary-border-hover: rgba(255, 255, 255, 0);
|
|
490
496
|
--components-button-gr-as-complementary-border: rgba(255, 255, 255, 0);
|
|
491
497
|
--components-button-lower-border-hover-2: rgba(255, 255, 255, 0);
|
|
@@ -497,7 +503,6 @@
|
|
|
497
503
|
--components-button-high-border-active: rgba(255, 255, 255, 0);
|
|
498
504
|
--components-button-high-border-hover: rgba(255, 255, 255, 0);
|
|
499
505
|
--components-button-high-border: rgba(255, 255, 255, 0);
|
|
500
|
-
--components-wpf-components-2: #ffffff;
|
|
501
506
|
--shadow-y-axis-2xl: 25px;
|
|
502
507
|
--shadow-y-axis-xl-2: 20px;
|
|
503
508
|
--shadow-y-axis-xl-1: 10px;
|
|
@@ -524,6 +529,10 @@
|
|
|
524
529
|
--shadow-color-opacity-2: rgba(11, 15, 17, 0.1);
|
|
525
530
|
--shadow-color-opacity-1: rgba(11, 15, 17, 0.06);
|
|
526
531
|
--shadow-color-opacity-0: rgba(255, 255, 255, 0.06);
|
|
532
|
+
--opacity-disabled-2: 0%;
|
|
533
|
+
--opacity-disabled: 50%;
|
|
534
|
+
--color-transparent: rgba(255, 255, 255, 0);
|
|
535
|
+
--color-white: #ffffff;
|
|
527
536
|
--color-black: #000000;
|
|
528
537
|
--color-interaction-container-neutral-background-active: rgba(165, 166, 167, 0.12);
|
|
529
538
|
--color-interaction-container-neutral-background-hover: rgba(165, 166, 167, 0.12);
|
|
@@ -531,11 +540,11 @@
|
|
|
531
540
|
--color-interaction-container-branded-low-background-hover: rgba(11, 15, 17, 0.08);
|
|
532
541
|
--color-interaction-container-branded-low-background-active: rgba(11, 15, 17, 0.08);
|
|
533
542
|
--color-interaction-container-branded-low-background: rgba(255, 255, 255, 0);
|
|
534
|
-
--components-menu-contextual-item-background-hover: var(--color-interaction-container-neutral-background-hover);
|
|
535
|
-
--components-menu-contextual-item-background: var(--color-interaction-container-neutral-background);
|
|
536
543
|
--components-tooltip-border: var(--color-gray-ocean-900);
|
|
537
544
|
--components-tooltip-background: var(--color-gray-ocean-900);
|
|
538
|
-
--components-popover-background: var(--color-gray-ocean-
|
|
545
|
+
--components-popover-background: var(--color-gray-ocean-00);
|
|
546
|
+
--components-menu-contextual-item-background-hover: var(--color-interaction-container-neutral-background-hover);
|
|
547
|
+
--components-menu-contextual-item-background: var(--color-interaction-container-neutral-background);
|
|
539
548
|
--components-overlay-background: var(--color-gray-ocean-850);
|
|
540
549
|
--components-button-destructive-high-icon-hover: var(--color-base-black);
|
|
541
550
|
--components-button-destructive-high-icon: var(--color-base-black);
|
|
@@ -747,15 +756,15 @@
|
|
|
747
756
|
--color-interaction-container-branded-low-border-hover: var(--color-petrol-700);
|
|
748
757
|
--color-interaction-container-branded-low-border-active: var(--color-petrol-700);
|
|
749
758
|
--color-interaction-container-branded-low-border: var(--color-petrol-600);
|
|
750
|
-
--components-menu-contextual-item-content-disabled: var(--color-content-lower-text);
|
|
751
|
-
--components-menu-contextual-item-shortcut: var(--color-content-lower-text);
|
|
752
|
-
--components-menu-contextual-border: var(--color-content-low-border);
|
|
753
|
-
--components-menu-contextual-background: var(--color-level-00-background);
|
|
754
759
|
--components-tooltip-supporting-text: var(--color-content-inverted-medium-text);
|
|
755
760
|
--components-tooltip-text: var(--color-content-inverted-high-text);
|
|
756
761
|
--components-popover-supporting-text: var(--color-content-low-text);
|
|
757
762
|
--components-popover-text: var(--color-content-medium-text);
|
|
758
763
|
--components-popover-border: var(--color-content-low-border);
|
|
764
|
+
--components-menu-contextual-item-content-disabled: var(--color-content-lower-text);
|
|
765
|
+
--components-menu-contextual-item-shortcut: var(--color-content-lower-text);
|
|
766
|
+
--components-menu-contextual-border: var(--color-content-low-border);
|
|
767
|
+
--components-menu-contextual-background: var(--color-level-00-background);
|
|
759
768
|
--components-notification-neutral-icon: var(--color-feedback-neutral-low-icon);
|
|
760
769
|
--components-notification-neutral-border: var(--color-feedback-neutral-low-border);
|
|
761
770
|
--components-notification-neutral-background: var(--color-level-00-background);
|
|
@@ -773,6 +782,9 @@
|
|
|
773
782
|
--components-notification-information-border: var(--color-feedback-information-low-border);
|
|
774
783
|
--components-notification-information-icon: var(--color-feedback-information-low-icon);
|
|
775
784
|
--components-notification-information-background: var(--color-level-00-background);
|
|
785
|
+
--components-breadcrumb-text-hover: var(--color-interaction-link-low-text-hover);
|
|
786
|
+
--components-breadcrumb-text-active: var(--color-content-medium-text);
|
|
787
|
+
--components-breadcrumb-text: var(--color-content-low-text);
|
|
776
788
|
--components-avatar-content-10: var(--color-rainbow-10-icon);
|
|
777
789
|
--components-avatar-content-9: var(--color-rainbow-9-text);
|
|
778
790
|
--components-avatar-content-8: var(--color-rainbow-8-text);
|
|
@@ -1248,6 +1260,14 @@
|
|
|
1248
1260
|
--notification-gap-x-title: var(--spacing-2);
|
|
1249
1261
|
--notification-gap-x: var(--spacing-3);
|
|
1250
1262
|
--notification-icon-size: var(--spacing-5);
|
|
1263
|
+
--navigation-primary-item-bullet-size: var(--spacing-5);
|
|
1264
|
+
--navigation-primary-item-bullet-font-size: var(--font-size-xs);
|
|
1265
|
+
--navigation-primary-item-radius: var(--radius-rounded-md);
|
|
1266
|
+
--navigation-primary-item-icon-size: var(--spacing-5);
|
|
1267
|
+
--navigation-primary-item-font-size: var(--font-size-md);
|
|
1268
|
+
--navigation-primary-item-padding-y: var(--spacing-2);
|
|
1269
|
+
--navigation-primary-item-padding-x: var(--spacing-3);
|
|
1270
|
+
--navigation-primary-item-gap-x: var(--spacing-2);
|
|
1251
1271
|
--icon-xl: var(--spacing-7);
|
|
1252
1272
|
--icon-lg: var(--spacing-6);
|
|
1253
1273
|
--icon-md: var(--spacing-5);
|
|
@@ -1320,6 +1340,7 @@
|
|
|
1320
1340
|
--dialog-header-gap-y: var(--spacing-0);
|
|
1321
1341
|
--dialog-dismissible-position-right: var(--spacing-3);
|
|
1322
1342
|
--dialog-dismissible-position-top: var(--spacing-5);
|
|
1343
|
+
--breadcrumb-padding-y: var(--spacing-1);
|
|
1323
1344
|
--badge-radius: var(--radius-rounded-full);
|
|
1324
1345
|
--badge-padding-y: var(--spacing-1);
|
|
1325
1346
|
--badge-padding-x: var(--spacing-2);
|
|
@@ -1388,8 +1409,8 @@
|
|
|
1388
1409
|
--tooltip-padding-x: var(--spacing-3);
|
|
1389
1410
|
--tooltip-font-size: var(--font-size-sm);
|
|
1390
1411
|
--popover-radius: var(--radius-rounded-md);
|
|
1391
|
-
--popover-padding-y: var(--spacing-
|
|
1392
|
-
--popover-padding-x: var(--spacing-
|
|
1412
|
+
--popover-padding-y: var(--spacing-2);
|
|
1413
|
+
--popover-padding-x: var(--spacing-2);
|
|
1393
1414
|
--popover-gap-y: var(--spacing-1);
|
|
1394
1415
|
--popover-font-size: var(--font-size-sm);
|
|
1395
1416
|
--popover-shadow-2-opacity: var(--shadow-color-opacity-2);
|