@umbraco-cms/backoffice 14.0.0--preview004-be05880a → 14.0.0--preview004-37a447e4
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-cms/css/uui-css.css +100 -13
- package/dist-cms/external/uui/index.js +278 -294
- package/dist-cms/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist-cms/css/uui-css.css
CHANGED
|
@@ -129,13 +129,11 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
|
|
|
129
129
|
--uui-palette-maroon-flush: #d42054;
|
|
130
130
|
--uui-palette-maroon-flush-light: rgb(226, 60, 107);
|
|
131
131
|
--uui-palette-maroon-flush-dark: rgb(191, 33, 78);
|
|
132
|
-
--uui-palette-maroon-flush-dimmed: rgb(133, 107, 114);
|
|
133
|
-
--uui-palette-jungle-green: #
|
|
134
|
-
--uui-palette-jungle-green-light: rgb(
|
|
135
|
-
--uui-palette-jungle-green-dark: rgb(
|
|
136
|
-
--uui-palette-jungle-green-dimmed: rgb(
|
|
137
|
-
|
|
138
|
-
/*TODO: color needs proper name*/
|
|
132
|
+
--uui-palette-maroon-flush-dimmed: rgb(133, 107, 114);
|
|
133
|
+
--uui-palette-jungle-green: #2bc37c;
|
|
134
|
+
--uui-palette-jungle-green-light: rgb(58, 212, 140);
|
|
135
|
+
--uui-palette-jungle-green-dark: rgb(43, 179, 115);
|
|
136
|
+
--uui-palette-jungle-green-dimmed: rgb(102, 135, 120);
|
|
139
137
|
--uui-palette-forest-green: #0b8152;
|
|
140
138
|
--uui-palette-forest-green-light: rgb(13, 155, 98);
|
|
141
139
|
--uui-palette-forest-green-dark: rgb(10, 115, 73);
|
|
@@ -255,13 +253,10 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
|
|
|
255
253
|
--uui-color-danger-standalone: var(--uui-palette-maroon-flush-dark,rgb(191, 33, 78));
|
|
256
254
|
--uui-color-danger-contrast: white;
|
|
257
255
|
|
|
258
|
-
--uui-color-positive:
|
|
259
|
-
--uui-color-positive-emphasis:
|
|
260
|
-
--uui-color-positive-standalone:
|
|
256
|
+
--uui-color-positive: var(--uui-palette-forest-green,#0b8152);
|
|
257
|
+
--uui-color-positive-emphasis: var(--uui-palette-forest-green-light,rgb(13, 155, 98));
|
|
258
|
+
--uui-color-positive-standalone: var(--uui-palette-forest-green-dark,rgb(10, 115, 73));
|
|
261
259
|
--uui-color-positive-contrast: #fff;
|
|
262
|
-
/* --uui-color-positive: var(--uui-palette-jungle-green); Contrast not high enough */
|
|
263
|
-
/* --uui-color-positive-emphasis: var(--uui-palette-jungle-green-light); Contrast not high enough */
|
|
264
|
-
/* --uui-color-positive-standalone: var(--uui-palette-jungle-green-dark); Contrast not high enough */
|
|
265
260
|
}
|
|
266
261
|
:root[data-theme='dark'] {
|
|
267
262
|
/* ----- STATES ----- */
|
|
@@ -332,6 +327,98 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
|
|
|
332
327
|
Bold: font-weight: bold;
|
|
333
328
|
Black: font-weight: 900;
|
|
334
329
|
|
|
330
|
+
*/
|
|
331
|
+
/* Webfont: LatoLatin-Black */
|
|
332
|
+
@font-face {
|
|
333
|
+
font-family: 'Lato';
|
|
334
|
+
src: local('LatoLatin Black'), local('LatoLatin-Black'),
|
|
335
|
+
url('../assets/fonts/lato/LatoLatin-Black.woff2') format('woff2');
|
|
336
|
+
font-style: normal;
|
|
337
|
+
font-display: swap;
|
|
338
|
+
font-weight: 900;
|
|
339
|
+
text-rendering: optimizeLegibility;
|
|
340
|
+
}
|
|
341
|
+
/* Webfont: LatoLatin-BlackItalic */
|
|
342
|
+
@font-face {
|
|
343
|
+
font-family: 'Lato';
|
|
344
|
+
src: local('LatoLatin BlackItalic'), local('LatoLatin-BlackItalic'),
|
|
345
|
+
url('../assets/fonts/lato/LatoLatin-BlackItalic.woff2') format('woff2');
|
|
346
|
+
font-style: italic;
|
|
347
|
+
font-weight: 900;
|
|
348
|
+
font-display: swap;
|
|
349
|
+
text-rendering: optimizeLegibility;
|
|
350
|
+
}
|
|
351
|
+
/* Webfont: LatoLatin-Bold */
|
|
352
|
+
@font-face {
|
|
353
|
+
font-family: 'Lato';
|
|
354
|
+
src: local('LatoLatin Bold'), local('LatoLatin-Bold'),
|
|
355
|
+
url('../assets/fonts/lato/LatoLatin-Bold.woff2') format('woff2');
|
|
356
|
+
font-style: normal;
|
|
357
|
+
font-weight: 700;
|
|
358
|
+
font-display: swap;
|
|
359
|
+
text-rendering: optimizeLegibility;
|
|
360
|
+
}
|
|
361
|
+
/* Webfont: LatoLatin-BoldItalic */
|
|
362
|
+
@font-face {
|
|
363
|
+
font-family: 'Lato';
|
|
364
|
+
src: local('LatoLatin BoldItalic'), local('LatoLatin-BoldItalic'),
|
|
365
|
+
url('../assets/fonts/lato/LatoLatin-BoldItalic.woff2') format('woff2');
|
|
366
|
+
font-style: italic;
|
|
367
|
+
font-weight: 700;
|
|
368
|
+
font-display: swap;
|
|
369
|
+
text-rendering: optimizeLegibility;
|
|
370
|
+
}
|
|
371
|
+
/* Webfont: LatoLatin-Italic */
|
|
372
|
+
@font-face {
|
|
373
|
+
font-family: 'Lato';
|
|
374
|
+
src: local('LatoLatin Italic'), local('LatoLatin-Italic'),
|
|
375
|
+
url('../assets/fonts/lato/LatoLatin-Italic.woff2') format('woff2');
|
|
376
|
+
font-style: italic;
|
|
377
|
+
font-weight: 400;
|
|
378
|
+
font-display: swap;
|
|
379
|
+
text-rendering: optimizeLegibility;
|
|
380
|
+
}
|
|
381
|
+
/* Webfont: LatoLatin-Regular */
|
|
382
|
+
@font-face {
|
|
383
|
+
font-family: 'Lato';
|
|
384
|
+
src: local('LatoLatin Regular'), local('LatoLatin-Regular'),
|
|
385
|
+
url('../assets/fonts/lato/LatoLatin-Regular.woff2') format('woff2');
|
|
386
|
+
font-style: normal;
|
|
387
|
+
font-weight: 400;
|
|
388
|
+
font-display: swap;
|
|
389
|
+
text-rendering: optimizeLegibility;
|
|
390
|
+
}
|
|
391
|
+
/* Webfont: LatoLatin-Light */
|
|
392
|
+
@font-face {
|
|
393
|
+
font-family: 'Lato';
|
|
394
|
+
src: local('LatoLatin Light'), local('LatoLatin-Light'),
|
|
395
|
+
url('../assets/fonts/lato/LatoLatin-Light.woff2') format('woff2');
|
|
396
|
+
font-style: normal;
|
|
397
|
+
font-weight: 300;
|
|
398
|
+
font-display: swap;
|
|
399
|
+
text-rendering: optimizeLegibility;
|
|
400
|
+
}
|
|
401
|
+
/* Webfont: LatoLatin-LightItalic */
|
|
402
|
+
@font-face {
|
|
403
|
+
font-family: 'Lato';
|
|
404
|
+
src: local('LatoLatin LightItalic'), local('LatoLatin-LightItalic'),
|
|
405
|
+
url('../assets/fonts/lato/LatoLatin-LightItalic.woff2') format('woff2');
|
|
406
|
+
font-style: italic;
|
|
407
|
+
font-weight: 300;
|
|
408
|
+
font-display: swap;
|
|
409
|
+
text-rendering: optimizeLegibility;
|
|
410
|
+
}
|
|
411
|
+
:root {
|
|
412
|
+
--uui-font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
413
|
+
}
|
|
414
|
+
/*
|
|
415
|
+
Lato
|
|
416
|
+
|
|
417
|
+
Light: font-weight: 300;
|
|
418
|
+
Regular: font-weight: normal;
|
|
419
|
+
Bold: font-weight: bold;
|
|
420
|
+
Black: font-weight: 900;
|
|
421
|
+
|
|
335
422
|
*/
|
|
336
423
|
/* Webfont: LatoLatin-Black */
|
|
337
424
|
@font-face {
|