@syncfusion/ej2-base 20.2.48 → 20.3.48
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/CHANGELOG.md +6 -24
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +10 -0
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +3 -3
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +3 -3
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +36 -17
- package/src/validate-lic.js +3 -3
- package/styles/_all.scss +1 -2
- package/styles/_bootstrap4-definition.scss +0 -1
- package/styles/_highcontrast-light-definition.scss +0 -1
- package/styles/_material-dark-definition.scss +1 -1
- package/styles/_material-definition.scss +1 -1
- package/styles/_tailwind-dark-definition.scss +1 -1
- package/styles/_tailwind-definition.scss +1 -1
- package/styles/animation/_all.scss +31 -30
- package/styles/bootstrap-dark.css +87 -3
- package/styles/bootstrap.css +87 -3
- package/styles/bootstrap4.css +87 -3
- package/styles/bootstrap5-dark.css +87 -3
- package/styles/bootstrap5.css +87 -3
- package/styles/common/_core.scss +5 -8
- package/styles/definition/_bootstrap-dark.scss +114 -0
- package/styles/definition/_bootstrap.scss +115 -1
- package/styles/definition/_bootstrap4.scss +114 -0
- package/styles/definition/_bootstrap5-dark.scss +123 -24
- package/styles/definition/_bootstrap5.scss +115 -14
- package/styles/definition/_fabric-dark.scss +114 -0
- package/styles/definition/_fabric.scss +114 -0
- package/styles/definition/_fluent-dark.scss +130 -17
- package/styles/definition/_fluent.scss +126 -14
- package/styles/definition/_fusionnew-dark.scss +26 -24
- package/styles/definition/_fusionnew.scss +18 -14
- package/styles/definition/_highcontrast-light.scss +112 -0
- package/styles/definition/_highcontrast.scss +114 -0
- package/styles/definition/_material-dark.scss +114 -0
- package/styles/definition/_material.scss +114 -0
- package/styles/definition/_material3-dark.scss +30 -17
- package/styles/definition/_material3.scss +18 -14
- package/styles/definition/_tailwind-dark.scss +119 -17
- package/styles/definition/_tailwind.scss +120 -18
- package/styles/fabric-dark.css +87 -3
- package/styles/fabric.css +87 -3
- package/styles/fluent-dark.css +87 -3
- package/styles/fluent.css +87 -3
- package/styles/highcontrast-light.css +87 -3
- package/styles/highcontrast.css +87 -3
- package/styles/material-dark.css +87 -3
- package/styles/material.css +87 -3
- package/styles/offline-theme/material-dark.css +2595 -0
- package/styles/offline-theme/material.css +2595 -0
- package/styles/offline-theme/tailwind-dark.css +1869 -0
- package/styles/offline-theme/tailwind.css +1869 -0
- package/styles/tailwind-dark.css +87 -3
- package/styles/tailwind.css +87 -3
|
@@ -20,28 +20,37 @@ $transparent: transparent;
|
|
|
20
20
|
//Neutrals
|
|
21
21
|
//not used
|
|
22
22
|
$gray220: #11100f !default;
|
|
23
|
+
|
|
23
24
|
//not used
|
|
24
25
|
$gray210: #161514 !default;
|
|
26
|
+
|
|
25
27
|
//not used
|
|
26
28
|
$gray200: #1b1a19 !default;
|
|
27
29
|
$gray190: #201f1e !default;
|
|
30
|
+
|
|
28
31
|
//not used
|
|
29
32
|
$gray180: #252423 !default;
|
|
33
|
+
|
|
30
34
|
//not used
|
|
31
35
|
$gray170: #292827 !default;
|
|
32
36
|
$gray160: #323130 !default;
|
|
33
37
|
$gray150: #3b3a39 !default;
|
|
38
|
+
|
|
34
39
|
//not used
|
|
35
40
|
$gray140: #484644 !default;
|
|
36
41
|
$gray130: #605e5c !default;
|
|
42
|
+
|
|
37
43
|
//not used
|
|
38
44
|
$gray120: #797775 !default;
|
|
39
45
|
$gray110: #8a8886 !default;
|
|
46
|
+
|
|
40
47
|
//not used
|
|
41
48
|
$gray100: #979593 !default;
|
|
42
49
|
$gray90: #a19f9d !default;
|
|
50
|
+
|
|
43
51
|
//not used
|
|
44
52
|
$gray80: #b3b0ad !default;
|
|
53
|
+
|
|
45
54
|
//not used
|
|
46
55
|
$gray70: #bebbb8 !default;
|
|
47
56
|
$gray60: #c8c6c4 !default;
|
|
@@ -57,6 +66,8 @@ $red10: #d13438 !default;
|
|
|
57
66
|
$orange20: #ca5010 !default;
|
|
58
67
|
$green20: #0b6a0b !default;
|
|
59
68
|
$cyan20: #038387 !default;
|
|
69
|
+
$yellow10: #fce100 !default;
|
|
70
|
+
$orangeyellow10: #c19c00 !default;
|
|
60
71
|
|
|
61
72
|
// Primary palette
|
|
62
73
|
$theme-primary: $cyanblue10 !default;
|
|
@@ -68,7 +79,6 @@ $theme-dark-alt: #106ebe !default;
|
|
|
68
79
|
$theme-dark: #005a9e !default;
|
|
69
80
|
$theme-darker: #004578 !default;
|
|
70
81
|
|
|
71
|
-
|
|
72
82
|
$primary: $theme-primary !default;
|
|
73
83
|
$primary-text-color: $white !default;
|
|
74
84
|
$primary-light: $theme-light !default;
|
|
@@ -92,8 +102,6 @@ $info-light-alt: $info-light !default;
|
|
|
92
102
|
$warning-light-alt: $warning-light !default;
|
|
93
103
|
$danger-light-alt: $danger-light !default;
|
|
94
104
|
|
|
95
|
-
|
|
96
|
-
|
|
97
105
|
// backgroundcolor
|
|
98
106
|
$content-bg-color: $white !default;
|
|
99
107
|
$content-bg-color-alt1: $gray10 !default;
|
|
@@ -133,7 +141,6 @@ $spreadsheet-selection-4: #4caf51;
|
|
|
133
141
|
$spreadsheet-selection-5: #fe9800;
|
|
134
142
|
$spreadsheet-selection-6: #3f52b5;
|
|
135
143
|
|
|
136
|
-
|
|
137
144
|
// text-color
|
|
138
145
|
$content-text-color: $gray190 !default;
|
|
139
146
|
$content-text-color-alt1: $gray160 !default;
|
|
@@ -145,7 +152,7 @@ $content-text-color-focus: $gray190 !default;
|
|
|
145
152
|
$content-text-color-selected: $gray190 !default;
|
|
146
153
|
$content-text-color-dragged: $gray190 !default;
|
|
147
154
|
$content-text-color-disabled: $gray90 !default;
|
|
148
|
-
$placeholder-text-color: $gray130
|
|
155
|
+
$placeholder-text-color: $gray130 !default;
|
|
149
156
|
$flyout-text-color: $gray190 !default;
|
|
150
157
|
$flyout-text-color-hover: $gray190 !default;
|
|
151
158
|
$flyout-text-color-pressed: $gray190 !default;
|
|
@@ -184,8 +191,6 @@ $tooltip-bg-color: $white !default;
|
|
|
184
191
|
$tooltip-border: $tooltip-bg-color;
|
|
185
192
|
$toooltip-text-color: $gray160 !default;
|
|
186
193
|
|
|
187
|
-
|
|
188
|
-
|
|
189
194
|
// shadow
|
|
190
195
|
$shadow: 0 .8px 16px rgba($black, .15) !default;
|
|
191
196
|
$shadow-sm: 0 1.6px 3.6px 0 rgba($black, .132), 0 .3px .9px 0 rgba($black, .108) !default;
|
|
@@ -205,11 +210,9 @@ $danger-shadow-focus: 0 0 0 4px rgba(tint-color($danger, 15%), .5) !default;
|
|
|
205
210
|
$info-shadow-focus: 0 0 0 4px rgba(tint-color($info, 15%), .5) !default;
|
|
206
211
|
$warning-shadow-focus: 0 0 0 4px rgba(tint-color($warning, 15%), .5) !default;
|
|
207
212
|
|
|
208
|
-
|
|
209
213
|
// fontfamily
|
|
210
214
|
$font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
|
|
211
215
|
|
|
212
|
-
|
|
213
216
|
// default font Size
|
|
214
217
|
$text-xxs: 10px !default;
|
|
215
218
|
$text-xs: 12px !default;
|
|
@@ -244,7 +247,6 @@ $leading-normal: 1.5 !default;
|
|
|
244
247
|
$leading-relaxed: 1.625 !default;
|
|
245
248
|
$leading-loose: 2 !default;
|
|
246
249
|
|
|
247
|
-
|
|
248
250
|
// font Weight
|
|
249
251
|
$font-weight-lighter: lighter !default;
|
|
250
252
|
$font-weight-light: 300 !default;
|
|
@@ -253,7 +255,6 @@ $font-weight-medium: 600 !default;
|
|
|
253
255
|
$font-weight-bold: 700 !default;
|
|
254
256
|
$font-weight-bolder: bolder !default;
|
|
255
257
|
|
|
256
|
-
|
|
257
258
|
// Secondary-button
|
|
258
259
|
|
|
259
260
|
$secondary-bg-color: $white !default;
|
|
@@ -272,8 +273,6 @@ $secondary-bg-color-disabled: $gray20 !default;
|
|
|
272
273
|
$secondary-border-color-disabled: $gray20 !default;
|
|
273
274
|
$secondary-text-color-disabled: $gray90 !default;
|
|
274
275
|
|
|
275
|
-
|
|
276
|
-
|
|
277
276
|
// Primary-button
|
|
278
277
|
|
|
279
278
|
$primary-bg-color: $primary !default;
|
|
@@ -373,7 +372,6 @@ $info-outline: $info-bg-color !default;
|
|
|
373
372
|
$toast-text-color: $gray190;
|
|
374
373
|
$toast-alt-text-color: $gray190;
|
|
375
374
|
|
|
376
|
-
|
|
377
375
|
// chart series
|
|
378
376
|
|
|
379
377
|
$series-1: $gray30;
|
|
@@ -408,3 +406,117 @@ $model-radius-bigger: $inputs-radius !default;
|
|
|
408
406
|
$inputs-radius-small: $inputs-radius !default;
|
|
409
407
|
$flyout-radius-small: $inputs-radius !default;
|
|
410
408
|
$model-radius-small: $inputs-radius !default;
|
|
409
|
+
|
|
410
|
+
//Message component
|
|
411
|
+
|
|
412
|
+
//Message Default
|
|
413
|
+
$msg-color: $gray160 !default;
|
|
414
|
+
$msg-bg-color: $gray20 !default;
|
|
415
|
+
$msg-border-color: $gray20 !default;
|
|
416
|
+
$msg-color-alt1: $gray190 !default;
|
|
417
|
+
$msg-bg-color-alt1: $transparent !default;
|
|
418
|
+
$msg-border-color-alt1: $gray60 !default;
|
|
419
|
+
$msg-color-alt2: $white !default;
|
|
420
|
+
$msg-bg-color-alt2: $gray130 !default;
|
|
421
|
+
$msg-border-color-alt2: $gray130 !default;
|
|
422
|
+
|
|
423
|
+
$msg-icon-color: $gray130 !default;
|
|
424
|
+
$msg-icon-color-alt1: $gray130 !default;
|
|
425
|
+
$msg-icon-color-alt2: $white !default;
|
|
426
|
+
|
|
427
|
+
$msg-close-icon-color: $gray160 !default;
|
|
428
|
+
$msg-close-icon-color-alt1: $msg-color !default;
|
|
429
|
+
$msg-close-icon-color-alt2: $white !default;
|
|
430
|
+
|
|
431
|
+
//Message success
|
|
432
|
+
$msg-success-color: $gray160 !default;
|
|
433
|
+
$msg-success-bg-color: $success-light !default;
|
|
434
|
+
$msg-success-border-color: $success-light !default;
|
|
435
|
+
$msg-success-color-alt1: darken($green20, 5%) !default;
|
|
436
|
+
$msg-success-bg-color-alt1: $transparent !default;
|
|
437
|
+
$msg-success-border-color-alt1: $border-success !default;
|
|
438
|
+
$msg-success-color-alt2: $white !default;
|
|
439
|
+
$msg-success-bg-color-alt2: $green20 !default;
|
|
440
|
+
$msg-success-border-color-alt2: $green20 !default;
|
|
441
|
+
|
|
442
|
+
$msg-success-icon-color: #107c10 !default;
|
|
443
|
+
$msg-success-icon-color-alt1: darken($green20, 5%) !default;
|
|
444
|
+
$msg-success-icon-color-alt2: $white !default;
|
|
445
|
+
|
|
446
|
+
$msg-success-close-icon-color: $gray160 !default;
|
|
447
|
+
$msg-success-close-icon-color-alt1: $msg-color !default;
|
|
448
|
+
$msg-success-close-icon-color-alt2: $white !default;
|
|
449
|
+
|
|
450
|
+
//Message danger
|
|
451
|
+
$msg-danger-color: $gray160 !default;
|
|
452
|
+
$msg-danger-bg-color: lighten($red10, 42%) !default;
|
|
453
|
+
$msg-danger-border-color: lighten($red10, 42%) !default;
|
|
454
|
+
$msg-danger-color-alt1: darken($red10, 5%) !default;
|
|
455
|
+
$msg-danger-bg-color-alt1: $transparent !default;
|
|
456
|
+
$msg-danger-border-color-alt1: #a4262c !default;
|
|
457
|
+
$msg-danger-color-alt2: $white !default;
|
|
458
|
+
$msg-danger-bg-color-alt2: $red10 !default;
|
|
459
|
+
$msg-danger-border-color-alt2: $red10 !default;
|
|
460
|
+
|
|
461
|
+
$msg-danger-icon-color: #a80000 !default;
|
|
462
|
+
$msg-danger-icon-color-alt1: darken($red10, 5%) !default;
|
|
463
|
+
$msg-danger-icon-color-alt2: $white !default;
|
|
464
|
+
|
|
465
|
+
$msg-danger-close-icon-color: $gray160 !default;
|
|
466
|
+
$msg-danger-close-icon-color-alt1: $msg-color !default;
|
|
467
|
+
$msg-danger-close-icon-color-alt2: $white !default;
|
|
468
|
+
|
|
469
|
+
//Message warning
|
|
470
|
+
$msg-warning-color: $gray160 !default;
|
|
471
|
+
$msg-warning-bg-color: lighten($orangeyellow10, 51%) !default;
|
|
472
|
+
$msg-warning-border-color: lighten($orangeyellow10, 51%) !default;
|
|
473
|
+
$msg-warning-color-alt1: darken($orangeyellow10, 10%) !default;
|
|
474
|
+
$msg-warning-bg-color-alt1: $transparent !default;
|
|
475
|
+
$msg-warning-border-color-alt1: $orangeyellow10 !default;
|
|
476
|
+
$msg-warning-color-alt2: $white !default;
|
|
477
|
+
$msg-warning-bg-color-alt2: darken($orangeyellow10, 13%) !default;
|
|
478
|
+
$msg-warning-border-color-alt2: darken($orangeyellow10, 13%) !default;
|
|
479
|
+
|
|
480
|
+
$msg-warning-icon-color: $gray120 !default;
|
|
481
|
+
$msg-warning-icon-color-alt1: darken($orangeyellow10, 13%) !default;
|
|
482
|
+
$msg-warning-icon-color-alt2: $white !default;
|
|
483
|
+
|
|
484
|
+
$msg-warning-close-icon-color: $gray160 !default;
|
|
485
|
+
$msg-warning-close-icon-color-alt1: $msg-color !default;
|
|
486
|
+
$msg-warning-close-icon-color-alt2: $white !default;
|
|
487
|
+
|
|
488
|
+
//Message Info
|
|
489
|
+
$msg-info-color: $gray160 !default;
|
|
490
|
+
$msg-info-bg-color: $info-light !default;
|
|
491
|
+
$msg-info-border-color: $info-light !default;
|
|
492
|
+
$msg-info-color-alt1: darken($cyan20, 5%) !default;
|
|
493
|
+
$msg-info-bg-color-alt1: $transparent !default;
|
|
494
|
+
$msg-info-border-color-alt1: $cyan20 !default;
|
|
495
|
+
$msg-info-color-alt2: $white !default;
|
|
496
|
+
$msg-info-bg-color-alt2: $cyan20 !default;
|
|
497
|
+
$msg-info-border-color-alt2: $cyan20 !default;
|
|
498
|
+
|
|
499
|
+
$msg-info-icon-color: $content-text-color-alt3 !default;
|
|
500
|
+
$msg-info-icon-color-alt1: darken($cyan20, 5%) !default;
|
|
501
|
+
$msg-info-icon-color-alt2: $white !default;
|
|
502
|
+
|
|
503
|
+
$msg-info-close-icon-color: $gray160 !default;
|
|
504
|
+
$msg-info-close-icon-color-alt1: $msg-color !default;
|
|
505
|
+
$msg-info-close-icon-color-alt2: $white !default;
|
|
506
|
+
|
|
507
|
+
//Appbar
|
|
508
|
+
//Light
|
|
509
|
+
$appbar-bg-color-alt1:$gray10 !default;
|
|
510
|
+
$appbar-color-alt1: $gray190 !default;
|
|
511
|
+
$appbar-border-color-alt1: $gray10 !default;
|
|
512
|
+
$appbar-hover-bg-color-alt1: rgba(transparent, .056) !default;
|
|
513
|
+
|
|
514
|
+
//Dark
|
|
515
|
+
$appbar-bg-color-alt2: $gray150 !default;
|
|
516
|
+
$appbar-color-alt2: $white !default;
|
|
517
|
+
$appbar-border-color-alt2: $gray150 !default;
|
|
518
|
+
$appbar-hover-bg-color-alt2: rgba(255, 255, 255, .08) !default;
|
|
519
|
+
|
|
520
|
+
//shadow
|
|
521
|
+
$appbar-bottom-shadow: 0 1.6px 3.6px rgba(0, 0, 0, .13), 0 .3px .9px rgba(0, 0, 0, .1) !default;
|
|
522
|
+
$appbar-top-shadow: 0 -1.6px 3.6px rgba(0, 0, 0, .13), 0 -.3px .9px rgba(0, 0, 0, .1) !default;
|
|
@@ -18,15 +18,15 @@ $white: #fff !default;
|
|
|
18
18
|
$transparent: transparent;
|
|
19
19
|
|
|
20
20
|
// scss-docs-start gray-color-variables
|
|
21
|
-
$gray-100: #f8f9fa !default
|
|
22
|
-
$gray-200: #e9ecef !default
|
|
23
|
-
$gray-300: #dee2e6 !default
|
|
24
|
-
$gray-400: #ced4da !default
|
|
25
|
-
$gray-500: #adb5bd !default
|
|
26
|
-
$gray-600: #6c757d !default
|
|
27
|
-
$gray-700: #495057 !default
|
|
28
|
-
$gray-800: #343a40 !default
|
|
29
|
-
$gray-900: #212529 !default
|
|
21
|
+
$gray-100: #f8f9fa !default;
|
|
22
|
+
$gray-200: #e9ecef !default;
|
|
23
|
+
$gray-300: #dee2e6 !default;
|
|
24
|
+
$gray-400: #ced4da !default;
|
|
25
|
+
$gray-500: #adb5bd !default;
|
|
26
|
+
$gray-600: #6c757d !default;
|
|
27
|
+
$gray-700: #495057 !default;
|
|
28
|
+
$gray-800: #343a40 !default;
|
|
29
|
+
$gray-900: #212529 !default;
|
|
30
30
|
|
|
31
31
|
// scss-docs-start color-variables
|
|
32
32
|
$blue: #0d6efd !default;
|
|
@@ -40,7 +40,6 @@ $green: #198754 !default;
|
|
|
40
40
|
$teal: #20c997 !default;
|
|
41
41
|
$cyan: #0dcaf0 !default;
|
|
42
42
|
|
|
43
|
-
|
|
44
43
|
$primary: $blue !default;
|
|
45
44
|
$secondary: $gray-600 !default;
|
|
46
45
|
$success: lighten($green, 10%) !default;
|
|
@@ -63,8 +62,6 @@ $info-light-alt: darken($cyan, 25%) !default;
|
|
|
63
62
|
$warning-light-alt: darken($yellow, 20%) !default;
|
|
64
63
|
$danger-light-alt: darken($red, 25%) !default;
|
|
65
64
|
|
|
66
|
-
|
|
67
|
-
|
|
68
65
|
// backgroundcolor
|
|
69
66
|
$content-bg-color: $gray-900 !default;
|
|
70
67
|
$content-bg-color-alt1: lighten($gray-900, 3%) !default;
|
|
@@ -103,7 +100,6 @@ $spreadsheet-selection-4: #4caf51;
|
|
|
103
100
|
$spreadsheet-selection-5: #fe9800;
|
|
104
101
|
$spreadsheet-selection-6: #3f52b5;
|
|
105
102
|
|
|
106
|
-
|
|
107
103
|
// text-color
|
|
108
104
|
$content-text-color: $white !default;
|
|
109
105
|
$content-text-color-alt1: $gray-200 !default;
|
|
@@ -115,7 +111,7 @@ $content-text-color-focus: $white !default;
|
|
|
115
111
|
$content-text-color-selected: $primary-text-color !default;
|
|
116
112
|
$content-text-color-dragged: $white !default;
|
|
117
113
|
$content-text-color-disabled: $gray-600 !default;
|
|
118
|
-
$placeholder-text-color: $gray-600
|
|
114
|
+
$placeholder-text-color: $gray-600 !default;
|
|
119
115
|
$flyout-text-color: $white !default;
|
|
120
116
|
$flyout-text-color-hover: $white !default;
|
|
121
117
|
$flyout-text-color-pressed: $primary-text-color !default;
|
|
@@ -150,8 +146,6 @@ $tooltip-bg-color: $gray-200 !default;
|
|
|
150
146
|
$tooltip-border: $gray-200;
|
|
151
147
|
$toooltip-text-color: $gray-900 !default;
|
|
152
148
|
|
|
153
|
-
|
|
154
|
-
|
|
155
149
|
// shadow
|
|
156
150
|
$shadow: 0 .8px 16px rgba($black, .15) !default;
|
|
157
151
|
$shadow-sm: 0 2px 4px rgba($black, .075) !default;
|
|
@@ -170,11 +164,9 @@ $danger-shadow-focus: 0 0 0 4px rgba(tint-color($danger, 15%), .5) !default;
|
|
|
170
164
|
$info-shadow-focus: 0 0 0 4px rgba(tint-color($info, 15%), .5) !default;
|
|
171
165
|
$warning-shadow-focus: 0 0 0 4px rgba(tint-color($warning, 15%), .5) !default;
|
|
172
166
|
|
|
173
|
-
|
|
174
167
|
// fontfamily
|
|
175
168
|
$font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !default;
|
|
176
169
|
|
|
177
|
-
|
|
178
170
|
// default font Size
|
|
179
171
|
$text-xxs: 10px !default;
|
|
180
172
|
$text-xs: 12px !default;
|
|
@@ -209,7 +201,6 @@ $leading-normal: 1.5 !default;
|
|
|
209
201
|
$leading-relaxed: 1.625 !default;
|
|
210
202
|
$leading-loose: 2 !default;
|
|
211
203
|
|
|
212
|
-
|
|
213
204
|
// font Weight
|
|
214
205
|
$font-weight-lighter: lighter !default;
|
|
215
206
|
$font-weight-light: 300 !default;
|
|
@@ -218,7 +209,6 @@ $font-weight-medium: 500 !default;
|
|
|
218
209
|
$font-weight-bold: 700 !default;
|
|
219
210
|
$font-weight-bolder: bolder !default;
|
|
220
211
|
|
|
221
|
-
|
|
222
212
|
// Secondary-button
|
|
223
213
|
|
|
224
214
|
$secondary-bg-color: $secondary !default;
|
|
@@ -237,8 +227,6 @@ $secondary-bg-color-disabled: rgba($secondary-bg-color, .65) !default;
|
|
|
237
227
|
$secondary-border-color-disabled: $secondary-bg-color-disabled !default;
|
|
238
228
|
$secondary-text-color-disabled: rgba($secondary-text-color, .65) !default;
|
|
239
229
|
|
|
240
|
-
|
|
241
|
-
|
|
242
230
|
// Primary-button
|
|
243
231
|
|
|
244
232
|
$primary-bg-color: $primary !default;
|
|
@@ -334,8 +322,6 @@ $danger-outline: lighten($danger, 10%) !default;
|
|
|
334
322
|
$success-outline: lighten($success, 10%) !default;
|
|
335
323
|
$info-outline: lighten($info, 10%) !default;
|
|
336
324
|
|
|
337
|
-
|
|
338
|
-
|
|
339
325
|
// Chart series
|
|
340
326
|
$series-1: $gray-800;
|
|
341
327
|
$series-2: $gray-700;
|
|
@@ -356,3 +342,19 @@ $theme-name: 'bootstrap5-dark' !default;
|
|
|
356
342
|
$diagram-palette-background: $gray-300 !default;
|
|
357
343
|
$diagram-palette-hover-background: $gray-400 !default;
|
|
358
344
|
|
|
345
|
+
//App bar
|
|
346
|
+
//Light
|
|
347
|
+
$appbar-bg-color-alt1: $gray-800 !default;
|
|
348
|
+
$appbar-color-alt1: $white !default;
|
|
349
|
+
$appbar-border-color-alt1: $gray-800 !default;
|
|
350
|
+
$appbar-hover-bg-color-alt1: rgba(255, 255, 255, .08) !default;
|
|
351
|
+
|
|
352
|
+
//Dark
|
|
353
|
+
$appbar-bg-color-alt2: $gray-300 !default;
|
|
354
|
+
$appbar-color-alt2: $gray-900 !default;
|
|
355
|
+
$appbar-border-color-alt2: $gray-300 !default;
|
|
356
|
+
$appbar-hover-bg-color-alt2: rgba(transparent, .056) !default;
|
|
357
|
+
|
|
358
|
+
//shadow
|
|
359
|
+
$appbar-bottom-shadow: none !default;
|
|
360
|
+
$appbar-top-shadow: none !default;
|
|
@@ -40,7 +40,6 @@ $green: #198754 !default;
|
|
|
40
40
|
$teal: #20c997 !default;
|
|
41
41
|
$cyan: #0dcaf0 !default;
|
|
42
42
|
|
|
43
|
-
|
|
44
43
|
$primary: $blue !default;
|
|
45
44
|
$secondary: $gray-600 !default;
|
|
46
45
|
$success: $green !default;
|
|
@@ -63,8 +62,6 @@ $info-light-alt: tint-color($info, 80%) !default;
|
|
|
63
62
|
$warning-light-alt: tint-color($warning, 80%) !default;
|
|
64
63
|
$danger-light-alt: tint-color($danger, 80%) !default;
|
|
65
64
|
|
|
66
|
-
|
|
67
|
-
|
|
68
65
|
// backgroundcolor
|
|
69
66
|
$content-bg-color: $white !default;
|
|
70
67
|
$content-bg-color-alt1: $gray-100 !default;
|
|
@@ -102,7 +99,6 @@ $spreadsheet-selection-4: #4caf51;
|
|
|
102
99
|
$spreadsheet-selection-5: #fe9800;
|
|
103
100
|
$spreadsheet-selection-6: #3f52b5;
|
|
104
101
|
|
|
105
|
-
|
|
106
102
|
// text-color
|
|
107
103
|
$content-text-color: $gray-900 !default;
|
|
108
104
|
$content-text-color-alt1: $gray-800 !default;
|
|
@@ -114,7 +110,7 @@ $content-text-color-focus: $gray-900 !default;
|
|
|
114
110
|
$content-text-color-selected: $primary-text-color !default;
|
|
115
111
|
$content-text-color-dragged: $gray-900 !default;
|
|
116
112
|
$content-text-color-disabled: $gray-500 !default;
|
|
117
|
-
$placeholder-text-color: $gray-600
|
|
113
|
+
$placeholder-text-color: $gray-600 !default;
|
|
118
114
|
$flyout-text-color: $gray-900 !default;
|
|
119
115
|
$flyout-text-color-hover: $gray-900 !default;
|
|
120
116
|
$flyout-text-color-pressed: $primary-text-color !default;
|
|
@@ -150,8 +146,6 @@ $tooltip-bg-color: $gray-900 !default;
|
|
|
150
146
|
$tooltip-border: $gray-900;
|
|
151
147
|
$toooltip-text-color: #f9fafb !default;
|
|
152
148
|
|
|
153
|
-
|
|
154
|
-
|
|
155
149
|
// shadow
|
|
156
150
|
$shadow: 0 .8px 16px rgba($black, .15) !default;
|
|
157
151
|
$shadow-sm: 0 2px 4px rgba($black, .075) !default;
|
|
@@ -170,11 +164,9 @@ $danger-shadow-focus: 0 0 0 4px rgba(tint-color($danger, 15%), .5) !default;
|
|
|
170
164
|
$info-shadow-focus: 0 0 0 4px rgba(tint-color($info, 15%), .5) !default;
|
|
171
165
|
$warning-shadow-focus: 0 0 0 4px rgba(tint-color($warning, 15%), .5) !default;
|
|
172
166
|
|
|
173
|
-
|
|
174
167
|
// fontfamily
|
|
175
168
|
$font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !default;
|
|
176
169
|
|
|
177
|
-
|
|
178
170
|
// default font Size
|
|
179
171
|
$text-xxs: 10px !default;
|
|
180
172
|
$text-xs: 12px !default;
|
|
@@ -209,7 +201,6 @@ $leading-normal: 1.5 !default;
|
|
|
209
201
|
$leading-relaxed: 1.625 !default;
|
|
210
202
|
$leading-loose: 2 !default;
|
|
211
203
|
|
|
212
|
-
|
|
213
204
|
// font Weight
|
|
214
205
|
$font-weight-lighter: lighter !default;
|
|
215
206
|
$font-weight-light: 300 !default;
|
|
@@ -218,7 +209,6 @@ $font-weight-medium: 500 !default;
|
|
|
218
209
|
$font-weight-bold: 700 !default;
|
|
219
210
|
$font-weight-bolder: bolder !default;
|
|
220
211
|
|
|
221
|
-
|
|
222
212
|
// Secondary-button
|
|
223
213
|
|
|
224
214
|
$secondary-bg-color: $secondary !default;
|
|
@@ -237,8 +227,6 @@ $secondary-bg-color-disabled: rgba($secondary-bg-color, .65) !default;
|
|
|
237
227
|
$secondary-border-color-disabled: $secondary-bg-color-disabled !default;
|
|
238
228
|
$secondary-text-color-disabled: rgba($secondary-text-color, .65) !default;
|
|
239
229
|
|
|
240
|
-
|
|
241
|
-
|
|
242
230
|
// Primary-button
|
|
243
231
|
|
|
244
232
|
$primary-bg-color: $primary !default;
|
|
@@ -334,7 +322,6 @@ $danger-outline: $danger-bg-color !default;
|
|
|
334
322
|
$success-outline: $success-bg-color !default;
|
|
335
323
|
$info-outline: $info-bg-color !default;
|
|
336
324
|
|
|
337
|
-
|
|
338
325
|
// chart series
|
|
339
326
|
|
|
340
327
|
$series-1: $gray-200;
|
|
@@ -355,3 +342,20 @@ $theme-name: 'bootstrap5' !default;
|
|
|
355
342
|
//Diagram Palette color
|
|
356
343
|
$diagram-palette-background: $white !default;
|
|
357
344
|
$diagram-palette-hover-background: $content-bg-color-hover !default;
|
|
345
|
+
|
|
346
|
+
//App bar
|
|
347
|
+
//Light
|
|
348
|
+
$appbar-bg-color-alt1: $gray-100 !default;
|
|
349
|
+
$appbar-color-alt1: $gray-900 !default;
|
|
350
|
+
$appbar-border-color-alt1: $gray-100 !default;
|
|
351
|
+
$appbar-hover-bg-color-alt1: rgba(transparent, .056) !default;
|
|
352
|
+
|
|
353
|
+
//Dark
|
|
354
|
+
$appbar-bg-color-alt2: $gray-900 !default;
|
|
355
|
+
$appbar-color-alt2: $white !default;
|
|
356
|
+
$appbar-border-color-alt2: $gray-900 !default;
|
|
357
|
+
$appbar-hover-bg-color-alt2: rgba(255, 255, 255, .08) !default;
|
|
358
|
+
|
|
359
|
+
//shadow
|
|
360
|
+
$appbar-bottom-shadow: none !default;
|
|
361
|
+
$appbar-top-shadow: none !default;
|
|
@@ -34,3 +34,115 @@ $disable: #757575 !default;
|
|
|
34
34
|
$shadow: #000 !default;
|
|
35
35
|
$skin-name: 'highcontrast-light' !default;
|
|
36
36
|
$theme-name: 'highcontrast-light' !default;
|
|
37
|
+
|
|
38
|
+
//Message Default
|
|
39
|
+
$msg-color: $bg-base-100 !default;
|
|
40
|
+
$msg-bg-color: $bg-base-0 !default;
|
|
41
|
+
$msg-border-color: $bg-base-100 !default;
|
|
42
|
+
$msg-color-alt1: $selection-bg !default;
|
|
43
|
+
$msg-bg-color-alt1: transparent !default;
|
|
44
|
+
$msg-border-color-alt1: $selection-bg !default;
|
|
45
|
+
$msg-color-alt2: $bg-base-0 !default;
|
|
46
|
+
$msg-bg-color-alt2: $selection-bg !default;
|
|
47
|
+
$msg-border-color-alt2: $selection-bg !default;
|
|
48
|
+
|
|
49
|
+
$msg-icon-color: $bg-base-100 !default;
|
|
50
|
+
$msg-icon-color-alt1: $bg-base-100 !default;
|
|
51
|
+
$msg-icon-color-alt2: $bg-base-0 !default;
|
|
52
|
+
|
|
53
|
+
$msg-close-icon-color: $bg-base-100 !default;
|
|
54
|
+
$msg-close-icon-color-alt1: $selection-bg !default;
|
|
55
|
+
$msg-close-icon-color-alt2: $bg-base-0 !default;
|
|
56
|
+
|
|
57
|
+
//Message success
|
|
58
|
+
$msg-success-color: #fd0000 !default;
|
|
59
|
+
$msg-success-bg-color: $bg-base-0 !default;
|
|
60
|
+
$msg-success-border-color: $msg-success-color !default;
|
|
61
|
+
$msg-success-color-alt1: $msg-success-color !default;
|
|
62
|
+
$msg-success-bg-color-alt1: transparent !default;
|
|
63
|
+
$msg-success-border-color-alt1: $bg-base-100 !default;
|
|
64
|
+
$msg-success-color-alt2: $bg-base-0 !default;
|
|
65
|
+
$msg-success-bg-color-alt2: $msg-success-color !default;
|
|
66
|
+
$msg-success-border-color-alt2: $msg-success-color !default;
|
|
67
|
+
|
|
68
|
+
$msg-success-icon-color: #fd0000 !default;
|
|
69
|
+
$msg-success-icon-color-alt1: #fd0000 !default;
|
|
70
|
+
$msg-success-icon-color-alt2: $bg-base-0 !default;
|
|
71
|
+
|
|
72
|
+
$msg-success-close-icon-color: #fd0000 !default;
|
|
73
|
+
$msg-success-close-icon-color-alt1: $content-font !default;
|
|
74
|
+
$msg-success-close-icon-color-alt2: $bg-base-0 !default;
|
|
75
|
+
|
|
76
|
+
//Message warning
|
|
77
|
+
$msg-warning-color: #ff5b04 !default;
|
|
78
|
+
$msg-warning-bg-color: $bg-base-0 !default;
|
|
79
|
+
$msg-warning-border-color: $msg-warning-color !default;
|
|
80
|
+
$msg-warning-color-alt1: $msg-warning-color !default;
|
|
81
|
+
$msg-warning-bg-color-alt1: transparent !default;
|
|
82
|
+
$msg-warning-border-color-alt1: $bg-base-100 !default;
|
|
83
|
+
$msg-warning-color-alt2: $bg-base-0;
|
|
84
|
+
$msg-warning-bg-color-alt2: $msg-warning-color !default;
|
|
85
|
+
$msg-warning-border-color-alt2: $msg-warning-color !default;
|
|
86
|
+
|
|
87
|
+
$msg-warning-icon-color: #ff5b04 !default;
|
|
88
|
+
$msg-warning-icon-color-alt1: #ff5b04 !default;
|
|
89
|
+
$msg-warning-icon-color-alt2: $bg-base-0 !default;
|
|
90
|
+
|
|
91
|
+
$msg-warning-close-icon-color: #ff5b04 !default;
|
|
92
|
+
$msg-warning-close-icon-color-alt1: $content-font !default;
|
|
93
|
+
$msg-warning-close-icon-color-alt2: $bg-base-0 !default;
|
|
94
|
+
|
|
95
|
+
//Message Danger
|
|
96
|
+
$msg-danger-color: #fd0000 !default;
|
|
97
|
+
$msg-danger-bg-color: $bg-base-0 !default;
|
|
98
|
+
$msg-danger-border-color: $msg-danger-color !default;
|
|
99
|
+
$msg-danger-color-alt1: $msg-danger-color !default;
|
|
100
|
+
$msg-danger-bg-color-alt1: transparent !default;
|
|
101
|
+
$msg-danger-border-color-alt1: $bg-base-100 !default;
|
|
102
|
+
$msg-danger-color-alt2: $bg-base-0 !default;
|
|
103
|
+
$msg-danger-bg-color-alt2: $msg-danger-color !default;
|
|
104
|
+
$msg-danger-border-color-alt2: $msg-danger-color !default;
|
|
105
|
+
|
|
106
|
+
$msg-danger-icon-color: #fd0000 !default;
|
|
107
|
+
$msg-danger-icon-color-alt1: #fd0000 !default;
|
|
108
|
+
$msg-danger-icon-color-alt2: $bg-base-0 !default;
|
|
109
|
+
|
|
110
|
+
$msg-danger-close-icon-color: #fd0000 !default;
|
|
111
|
+
$msg-danger-close-icon-color-alt1: $content-font !default;
|
|
112
|
+
$msg-danger-close-icon-color-alt2: $bg-base-0 !default;
|
|
113
|
+
|
|
114
|
+
//Message Info
|
|
115
|
+
$msg-info-color: #22f8ff !default;
|
|
116
|
+
$msg-info-bg-color: $bg-base-0 !default;
|
|
117
|
+
$msg-info-border-color: $msg-info-color !default;
|
|
118
|
+
$msg-info-color-alt1: $msg-info-color !default;
|
|
119
|
+
$msg-info-bg-color-alt1: transparent !default;
|
|
120
|
+
$msg-info-border-color-alt1: $bg-base-100 !default;
|
|
121
|
+
$msg-info-color-alt2: $bg-base-0 !default;
|
|
122
|
+
$msg-info-bg-color-alt2: $msg-info-color !default;
|
|
123
|
+
$msg-info-border-color-alt2: $msg-info-color !default;
|
|
124
|
+
|
|
125
|
+
$msg-info-icon-color: #22f8ff !default;
|
|
126
|
+
$msg-info-icon-color-alt1: #22f8ff !default;
|
|
127
|
+
$msg-info-icon-color-alt2: $bg-base-0 !default;
|
|
128
|
+
|
|
129
|
+
$msg-info-close-icon-color: #22f8ff !default;
|
|
130
|
+
$msg-info-close-icon-color-alt1: $content-font !default;
|
|
131
|
+
$msg-info-close-icon-color-alt2: $bg-base-0 !default;
|
|
132
|
+
|
|
133
|
+
//App bar
|
|
134
|
+
//Light
|
|
135
|
+
$appbar-bg-color-alt1: #fff !default;
|
|
136
|
+
$appbar-color-alt1: #000 !default;
|
|
137
|
+
$appbar-border-color-alt1: #000 !default;
|
|
138
|
+
$appbar-hover-bg-color-alt1: rgba(255, 255, 255, .08) !default;
|
|
139
|
+
|
|
140
|
+
//Dark
|
|
141
|
+
$appbar-bg-color-alt2: #fff !default;
|
|
142
|
+
$appbar-color-alt2: #000 !default;
|
|
143
|
+
$appbar-border-color-alt2: #000 !default;
|
|
144
|
+
$appbar-hover-bg-color-alt2: rgba(255, 255, 255, .08) !default;
|
|
145
|
+
|
|
146
|
+
//shadow
|
|
147
|
+
$appbar-bottom-shadow: none !default;
|
|
148
|
+
$appbar-top-shadow: none !default;
|