amis 1.4.0 → 1.4.1-echarts-5.3.1

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.
Files changed (87) hide show
  1. package/lib/components/Badge.d.ts +2 -1
  2. package/lib/components/Badge.js +33 -4
  3. package/lib/components/Badge.js.map +2 -2
  4. package/lib/components/Button.d.ts +24 -22
  5. package/lib/components/Button.js +13 -7
  6. package/lib/components/Button.js.map +2 -2
  7. package/lib/components/RichText.d.ts +6 -1
  8. package/lib/components/RichText.js +243 -8
  9. package/lib/components/RichText.js.map +2 -2
  10. package/lib/components/calendar/DaysView.js +2 -2
  11. package/lib/components/calendar/DaysView.js.map +2 -2
  12. package/lib/components/icons.js +2 -0
  13. package/lib/components/icons.js.map +2 -2
  14. package/lib/helper.css.map +1 -1
  15. package/lib/icons/loading-outline.js +7 -0
  16. package/lib/index.js +1 -1
  17. package/lib/renderers/Action.d.ts +9 -1
  18. package/lib/renderers/Action.js +5 -5
  19. package/lib/renderers/Action.js.map +2 -2
  20. package/lib/renderers/DropDownButton.d.ts +4 -0
  21. package/lib/renderers/DropDownButton.js +5 -3
  22. package/lib/renderers/DropDownButton.js.map +2 -2
  23. package/lib/renderers/Nav.d.ts +52 -22
  24. package/lib/renderers/Nav.js +100 -15
  25. package/lib/renderers/Nav.js.map +2 -2
  26. package/lib/renderers/Page.js +1 -1
  27. package/lib/renderers/Page.js.map +2 -2
  28. package/lib/themes/ang-ie11.css +350 -54
  29. package/lib/themes/ang.css +350 -54
  30. package/lib/themes/ang.css.map +1 -1
  31. package/lib/themes/antd-ie11.css +350 -54
  32. package/lib/themes/antd.css +350 -54
  33. package/lib/themes/antd.css.map +1 -1
  34. package/lib/themes/cxd-ie11.css +458 -174
  35. package/lib/themes/cxd.css +458 -174
  36. package/lib/themes/cxd.css.map +1 -1
  37. package/lib/themes/dark-ie11.css +350 -54
  38. package/lib/themes/dark.css +350 -54
  39. package/lib/themes/dark.css.map +1 -1
  40. package/lib/themes/default.css +458 -174
  41. package/lib/themes/default.css.map +1 -1
  42. package/lib/utils/helper.js.map +2 -2
  43. package/package.json +46 -39
  44. package/schema.json +200 -15
  45. package/scss/_mixins.scss +29 -0
  46. package/scss/_properties.scss +23 -11
  47. package/scss/components/_badge.scss +52 -1
  48. package/scss/components/_button.scss +35 -3
  49. package/scss/components/_image-gallery.scss +1 -1
  50. package/scss/components/_nav.scss +109 -35
  51. package/scss/themes/_cxd-variables.scss +20 -20
  52. package/sdk/ang-ie11.css +449 -56
  53. package/sdk/ang.css +459 -56
  54. package/sdk/antd-ie11.css +439 -48
  55. package/sdk/antd.css +459 -56
  56. package/sdk/charts.js +13 -13
  57. package/sdk/color-picker.js +69 -65
  58. package/sdk/cropperjs.js +2 -2
  59. package/sdk/cxd-ie11.css +908 -517
  60. package/sdk/cxd.css +567 -176
  61. package/sdk/dark-ie11.css +449 -56
  62. package/sdk/dark.css +459 -56
  63. package/sdk/exceljs.js +1 -1
  64. package/sdk/helper.css.map +1 -1
  65. package/sdk/markdown.js +69 -69
  66. package/sdk/papaparse.js +1 -1
  67. package/sdk/renderers/Form/CityDB.js +1 -1
  68. package/sdk/rest.js +22 -28
  69. package/sdk/rich-text.js +62 -64
  70. package/sdk/sdk-ie11.css +908 -517
  71. package/sdk/sdk.css +567 -176
  72. package/sdk/sdk.js +1145 -1141
  73. package/sdk/thirds/hls.js/hls.js +1 -1
  74. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  75. package/sdk/tinymce.js +57 -57
  76. package/sdk.zip +0 -0
  77. package/src/components/Badge.tsx +78 -22
  78. package/src/components/Button.tsx +23 -7
  79. package/src/components/RichText.tsx +284 -3
  80. package/src/components/calendar/DaysView.tsx +2 -2
  81. package/src/components/icons.tsx +2 -0
  82. package/src/icons/loading-outline.svg +4 -0
  83. package/src/renderers/Action.tsx +66 -13
  84. package/src/renderers/DropDownButton.tsx +13 -4
  85. package/src/renderers/Nav.tsx +165 -36
  86. package/src/renderers/Page.tsx +1 -1
  87. package/src/utils/helper.ts +1 -0
@@ -2,18 +2,18 @@
2
2
  :root {
3
3
  --black: #000;
4
4
  --white: #fff;
5
- --primary: #108cee;
6
- --primary-onHover: #0e77ca;
7
- --primary-onActive: #0d70be;
5
+ --primary: #2468f2;
6
+ --primary-onHover: #4F86F4;
7
+ --primary-onActive:#1C53C1;
8
8
  --secondary: #6c757d;
9
9
  --secondary-onHover: #5a6268;
10
10
  --secondary-onActive: #545b62;
11
11
  --success: #5fb333;
12
12
  --success-onHover: #4f952b;
13
13
  --success-onActive: #4a8b28;
14
- --info: #108cee;
15
- --info-onHover: #0e77ca;
16
- --info-onActive: #0d70be;
14
+ --info: #2468f2;
15
+ --info-onHover: #0d54e2;
16
+ --info-onActive: #0d4fd6;
17
17
  --warning: #f39000;
18
18
  --warning-onHover: #cd7900;
19
19
  --warning-onActive: #c07200;
@@ -34,11 +34,11 @@
34
34
  --fontSizeXl: 1.25rem;
35
35
  --fontSizeSm: 0.75rem;
36
36
  --fontSizeXs: 0.6875rem;
37
- --text-color: #666;
37
+ --text-color: #151a26;
38
38
  --button-color: #fff;
39
39
  --animation-duration: 0.2s;
40
- --text--muted-color: #a6a6a6;
41
- --text--loud-color: #4d4d4d;
40
+ --text--muted-color: #425278;
41
+ --text--loud-color: #030405;
42
42
  --pre-color: var(--text-color);
43
43
  --borderColor: #d1d5db;
44
44
  --borderColorLight: #dfe2e6;
@@ -88,7 +88,7 @@
88
88
  --Alert--danger-borderColor: #ebccd1;
89
89
  --Alert--danger-color: #a94442;
90
90
  --Alert--info-bg: #d9edf7;
91
- --Alert--info-borderColor: #0e9fd6;
91
+ --Alert--info-borderColor: #0e7eee;
92
92
  --Alert--info-color: #31708f;
93
93
  --Alert--success-bg: #dff0d8;
94
94
  --Alert--success-borderColor: #d6e9c6;
@@ -164,18 +164,18 @@
164
164
  --Button--default-bg: var(--white);
165
165
  --Button--default-border: var(--borderColor);
166
166
  --Button--default-color: var(--text-color);
167
- --Button--default-onActive-bg: #e6e6e6;
168
- --Button--default-onActive-border: #adb4bf;
169
- --Button--default-onActive-color: var(--Button--default-color);
170
- --Button--default-onHover-bg: #ececec;
171
- --Button--default-onHover-border: #b4bbc5;
172
- --Button--default-onHover-color: var(--Button--default-color);
167
+ --Button--default-onActive-bg: var(--white);
168
+ --Button--default-onActive-border: var(--primary-onActive);
169
+ --Button--default-onActive-color: var(--primary-onActive);
170
+ --Button--default-onHover-bg: var(--white);
171
+ --Button--default-onHover-border: var(--primary);
172
+ --Button--default-onHover-color: var(--primary);
173
173
  --Button--iconOnly-minWidthRate: 4 / 3;
174
174
  --Button--info-bg: var(--info);
175
175
  --Button--info-border: var(--Button--info-bg);
176
176
  --Button--info-color: var(--button-color);
177
177
  --Button--info-onActive-bg: var(--info-onActive);
178
- --Button--info-onActive-border: #0c69b2;
178
+ --Button--info-onActive-border: #0c4bca;
179
179
  --Button--info-onActive-color: var(--Button--info-color);
180
180
  --Button--info-onHover-bg: var(--info-onHover);
181
181
  --Button--info-onHover-border: var(--info-onActive);
@@ -202,7 +202,8 @@
202
202
  --Button--light-onHover-color: var(--Button--light-color);
203
203
  --Button--link-color: var(--primary);
204
204
  --Button--link-onDisabled-color: #4b5563;
205
- --Button--link-onHover-color: var(--text--loud-color);
205
+ --Button--link-onHover-color: var(--primary-onHover);
206
+ --Button--link-onActive-color: var(--primary-onActive);
206
207
  --Button--md-fontSize: var(--Button-fontSize);
207
208
  --Button--md-height: var(--Button-height);
208
209
  --Button--md-lineHeight: var(--Button-lineHeight);
@@ -217,10 +218,10 @@
217
218
  --Button--primary-border: var(--Button--primary-bg);
218
219
  --Button--primary-color: var(--button-color);
219
220
  --Button--primary-onActive-bg: var(--primary-onActive);
220
- --Button--primary-onActive-border: #0c69b2;
221
+ --Button--primary-onActive-border: var(--primary-onActive);
221
222
  --Button--primary-onActive-color: var(--Button--primary-color);
222
223
  --Button--primary-onHover-bg: var(--primary-onHover);
223
- --Button--primary-onHover-border: var(--primary-onActive);
224
+ --Button--primary-onHover-border: var(--primary-onHover);
224
225
  --Button--primary-onHover-color: var(--Button--primary-color);
225
226
  --Button--secondary-bg: var(--secondary);
226
227
  --Button--secondary-border: var(--Button--secondary-bg);
@@ -251,6 +252,14 @@
251
252
  --Button--success-onHover-bg: var(--success-onHover);
252
253
  --Button--success-onHover-border: var(--success-onActive);
253
254
  --Button--success-onHover-color: var(--Button--success-color);
255
+ --Button--enhance-border: var(--primary);
256
+ --Button--enhance-color: var(--primary);
257
+ --Button--enhance-onActive-bg: var(--white);
258
+ --Button--enhance-onActive-border: var(--primary-onActive);
259
+ --Button--enhance-onActive-color: var(--primary-onActive);
260
+ --Button--enhance-onHover-bg: var(--white);
261
+ --Button--enhance-onHover-border: var(--primary-onHover);
262
+ --Button--enhance-onHover-color: var(--primary-onHover);
254
263
  --Button--warning-bg: var(--warning);
255
264
  --Button--warning-border: var(--Button--warning-bg);
256
265
  --Button--warning-color: var(--button-color);
@@ -281,12 +290,15 @@
281
290
  --Button-lineHeight: var(--Form-input-lineHeight);
282
291
  --Button-mimWidth: auto;
283
292
  --Button-onActive-boxShadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
293
+ --Button-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
294
+ --Button-animation-spin: spin 1s infinite linear;
284
295
  --Button-onActive-color: var(--primary);
285
296
  --Button-onActive-border: var(--primary);
286
297
  --Button-onDisabled-borderColor: #dee2e6;
287
298
  --Button-onDisabled-opacity: 0.65;
288
299
  --Button-onFocus-boxShadow: none;
289
300
  --Button-paddingX: 0.75rem;
301
+ --Button-paddingX-right: 0.625rem;
290
302
  --Button-paddingY: calc(
291
303
  (
292
304
  var(--Button-height) - var(--Button-borderWidth) * 2 -
@@ -306,11 +318,11 @@
306
318
  --Calendar-btn-fontSize: var(--fontSizeSm);
307
319
  --Calendar-btn-height: 1.875rem;
308
320
  --Calendar-btn-lineHeight: var(--lineHeightBase);
309
- --Calendar-btn-onActive-bg: #0d70be;
310
- --Calendar-btn-onActive-border: #0c69b2;
321
+ --Calendar-btn-onActive-bg: #0d4fd6;
322
+ --Calendar-btn-onActive-border: #0c4bca;
311
323
  --Calendar-btn-onActive-color: var(--Calendar-btn-color);
312
- --Calendar-btn-onHover-bg: #0e77ca;
313
- --Calendar-btn-onHover-border: #0d70be;
324
+ --Calendar-btn-onHover-bg: #0d54e2;
325
+ --Calendar-btn-onHover-border: #0d4fd6;
314
326
  --Calendar-btn-onHover-color: var(--Calendar-btn-color);
315
327
  --Calendar-btn-paddingX: 0.625rem;
316
328
  --Calendar-btn-paddingY: calc(
@@ -331,7 +343,7 @@
331
343
  --Calendar-btnCancel-onHover-color: var(--Button--default-onHover-color);
332
344
  --Calendar-cell-bg: var(--white);
333
345
  --Calendar-cell-onActive-bg: var(--info);
334
- --Calendar-cell-onBetween-bg: rgba(16, 140, 238, 0.1);
346
+ --Calendar-cell-onBetween-bg: rgba(36, 104, 242, 0.1);
335
347
  --Calendar-cell-onDisabled-bg: var(--light);
336
348
  --Calendar-cell-onHover-bg: #ededed;
337
349
  --Calendar-color: var(--text-color);
@@ -352,7 +364,7 @@
352
364
  );
353
365
  --Calendar-shortcut-color: var(--info);
354
366
  --Calendar-shortcut-decoration: none;
355
- --Calendar-shortcut-onHover-color: #0b62a6;
367
+ --Calendar-shortcut-onHover-color: #0b46be;
356
368
  --Calendar-shortcut-onHover-decoration: none;
357
369
  --Calendar-shortcuts-bg: transparent;
358
370
  --Calendar-shortcuts-height: 1.875rem;
@@ -450,10 +462,10 @@
450
462
  --Combo-addBtn-fontSize: var(--Button--sm-fontSize);
451
463
  --Combo-addBtn-height: 1.625rem;
452
464
  --Combo-addBtn-lineHeight: var(--Button--sm-lineHeight);
453
- --Combo-addBtn-onActive-bg: #0d70be;
465
+ --Combo-addBtn-onActive-bg: #0d4fd6;
454
466
  --Combo-addBtn-onActive-border: #adb4bf;
455
467
  --Combo-addBtn-onActive-color: var(--Combo-addBtn-color);
456
- --Combo-addBtn-onHover-bg: #0e77ca;
468
+ --Combo-addBtn-onHover-bg: #0d54e2;
457
469
  --Combo-addBtn-onHover-border: #b4bbc5;
458
470
  --Combo-addBtn-onHover-color: var(--Combo-addBtn-color);
459
471
  --Combo-addBtn-paddingX: var(--Button--sm-paddingX);
@@ -552,7 +564,7 @@
552
564
  --Form-control-widthMd: 15rem;
553
565
  --Form-control-widthSm: 10rem;
554
566
  --Form-control-widthXs: 5rem;
555
- --Form-description-color: gray;
567
+ --Form-description-color: #273047;
556
568
  --Form-description-fontSize: var(--fontSizeSm);
557
569
  --Form-fontSize: var(--fontSizeBase);
558
570
  --Form-group--lg-gutterWidth: 2.5rem;
@@ -631,12 +643,12 @@
631
643
  --Form-select-popoverGap: 0;
632
644
  --Form-select-search-height: var(--Form-select-menu-height);
633
645
  --Form-selectOption-height: var(--Form-input-height);
634
- --Form-selectValue-bg: #cee8fc;
635
- --Form-selectValue-borderColor: #9dd1fa;
646
+ --Form-selectValue-bg: #e4edfe;
647
+ --Form-selectValue-borderColor: #b3cbfc;
636
648
  --Form-selectValue-color: var(--info);
637
649
  --Form-selectValue-fontSize: var(--fontSizeSm);
638
- --Form-selectValue-onDisable-bg: #e6f3fe;
639
- --Form-selectValue-onHover-bg: #b5dcfb;
650
+ --Form-selectValue-onDisable-bg: #fdfdff;
651
+ --Form-selectValue-onHover-bg: #ccdcfd;
640
652
  --Form-select-onFocus-boxShadow: none;
641
653
  --IconPicker-content-maxHeight: 21.875rem;
642
654
  --IconPicker-padding: var(--gap-xs);
@@ -708,7 +720,7 @@
708
720
  --InputRange-slider-onDisabled-border: 0.0625rem solid var(--InputRange-onDisabled-color);
709
721
  --InputRange-slider-onFocus-borderRadius: var(--borderRadiusMd);
710
722
  --InputRange-slider-onFocus-boxShadow: 0 0 0
711
- var(--InputRange-slider-onFocus-borderRadius) rgba(16, 140, 238, 0.2);
723
+ var(--InputRange-slider-onFocus-borderRadius) rgba(36, 104, 242, 0.2);
712
724
  --InputRange-slider-transition: transform var(--animation-duration) ease-out,
713
725
  box-shadow var(--animation-duration) ease-out;
714
726
  --InputRange-slider-width: 1.125rem;
@@ -782,7 +794,7 @@
782
794
  --ListControl-item-onActive-after-borderColor: var(--primary);
783
795
  --ListControl-item-onActive-before-bg: var(--white);
784
796
  --ListControl-item-onActive-bg: var(--primary);
785
- --ListControl-item-onActive-borderColor: #0d70be;
797
+ --ListControl-item-onActive-borderColor: #0d4fd6;
786
798
  --ListControl-item-onActive-color: var(--white);
787
799
  --ListControl-item-onActive-onHover-bg: var(--primary);
788
800
  --ListControl-item-onDisabled-bg: var(--ListControl-item-bg);
@@ -986,7 +998,7 @@
986
998
  --Satus-icon-width: var(--gap-lg);
987
999
  --Satus-icon-height: var(--Satus-icon-width);
988
1000
  --Sparkline-line-color: var(--info);
989
- --Sparkline-area-color: rgba(16, 140, 238, 0.1);
1001
+ --Sparkline-area-color: rgba(36, 104, 242, 0.1);
990
1002
  --Spinner--lg-height: 3.125rem;
991
1003
  --Spinner--lg-width: 3.125rem;
992
1004
  --Spinner--sm-height: 1rem;
@@ -1235,8 +1247,8 @@
1235
1247
  :root {
1236
1248
  --borderColor: #eceff8;
1237
1249
  --body-bg: #ffffff;
1238
- --text-color: #666;
1239
- --text--muted-color: #999;
1250
+ --text-color: #151a26;
1251
+ --text--muted-color: #b4b6ba;
1240
1252
  --text--loud-color: #333;
1241
1253
  --link-onHover-decoration: none;
1242
1254
  --icon-color: #999;
@@ -1250,10 +1262,10 @@
1250
1262
  --Layout-brand-color: #fff;
1251
1263
  --Layout-asideLink-iconColor: rgba(255, 255, 255, 0.6);
1252
1264
  --Layout-asideLink-color: #fff;
1253
- --Layout-asideLink-onHover-color: #108cee;
1254
- --Layout-asideLink-onActive-color: #108cee;
1265
+ --Layout-asideLink-onHover-color: var(--primary);
1266
+ --Layout-asideLink-onActive-color: var(--primary);
1255
1267
  --Layout-asideLink-onHover-iconSize: 1rem;
1256
- --Layout-asideLink-onHover-iconColor: #108cee;
1268
+ --Layout-asideLink-onHover-iconColor: var(--primary);
1257
1269
  --Layout-asideLink-fontSize: 0.75rem;
1258
1270
  --Layout-asideLink-arrowFontSize: 0.75rem;
1259
1271
  --Layout-asideLink-arrowColor: #8d99b0;
@@ -1375,7 +1387,6 @@
1375
1387
  --Button-borderWidth: 0.0625rem;
1376
1388
  --Button-boxShadow: none;
1377
1389
  --Button-onActive-boxShadow: none;
1378
- --Button-borderRadius: 0;
1379
1390
  --Button--lg-borderRadius: 0;
1380
1391
  --Button--sm-borderRadius: 0;
1381
1392
  --Button-paddingX: 0.625rem;
@@ -1383,20 +1394,9 @@
1383
1394
  --Button--lg-fontSize: 0.875rem;
1384
1395
  --Button--default-bg: var(--white);
1385
1396
  --Button--default-border: #cccccc;
1386
- --Button--default-color: #000;
1387
- --Button--default-onHover-bg: var(--white);
1388
- --Button--default-onHover-border: var(--primary);
1389
- --Button--default-onHover-color: var(--primary);
1390
- --Button--default-onActive-bg: #f6fbff;
1391
- --Button--default-onActive-border: var(--primary);
1392
- --Button--default-onActive-color: var(--primary);
1393
1397
  --Button--primary-bg: var(--primary);
1394
1398
  --Button--primary-border: var(--primary);
1395
- --Button--primary-onHover-bg: #209bfd;
1396
- --Button--primary-onHover-border: var(--primary);
1397
1399
  --Button--primary-onHover-color: var(--white);
1398
- --Button--primary-onActive-bg: #047bdb;
1399
- --Button--primary-onActive-border: var(--primary);
1400
1400
  --Button--primary-onActive-color: var(--white);
1401
1401
  --Button--danger-bg: #ea2e2e;
1402
1402
  --Button--danger-onHover-bg: #f64545;
@@ -3347,6 +3347,15 @@ img.cxd-AsideNav-itemIcon {
3347
3347
  .cxd-Button > .pull-right {
3348
3348
  margin-left: var(--Button-paddingX);
3349
3349
  }
3350
+ .cxd-Button .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
3351
+ .cxd-Button > svg.icon:not(:last-child):not(.pull-right),
3352
+ .cxd-Button > .pull-left {
3353
+ margin-right: var(--Button-paddingX);
3354
+ }
3355
+ .cxd-Button .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
3356
+ .cxd-Button > .pull-right {
3357
+ margin-left: var(--Button-paddingX);
3358
+ }
3350
3359
  .cxd-Button img.cxd-Button-icon {
3351
3360
  height: var(--Button-fontSize);
3352
3361
  vertical-align: middle;
@@ -3359,14 +3368,20 @@ img.cxd-AsideNav-itemIcon {
3359
3368
  box-shadow: var(--Button-onFocus-boxShadow);
3360
3369
  }
3361
3370
  .cxd-Button.is-disabled, .cxd-Button:disabled {
3362
- opacity: var(--Button-onDisabled-opacity);
3363
3371
  filter: grayscale(100%);
3364
3372
  box-shadow: none;
3365
3373
  cursor: not-allowed;
3374
+ color: var(--text--muted-color);
3375
+ pointer-events: auto;
3376
+ border: none;
3377
+ background: #F2F3F3;
3366
3378
  }
3367
3379
  .cxd-Button:not(:disabled):not(.is-disabled) {
3368
3380
  cursor: pointer;
3369
3381
  }
3382
+ .cxd-Button.cxd-Button--link.is-disabled {
3383
+ background: transparent;
3384
+ }
3370
3385
  .cxd-Button > .pull-left,
3371
3386
  .cxd-Button > .pull-right {
3372
3387
  line-height: inherit;
@@ -3394,6 +3409,11 @@ fieldset:disabled a.cxd-Button {
3394
3409
  background: var(--Button--primary-onHover-bg);
3395
3410
  border-color: var(--Button--primary-onHover-border);
3396
3411
  }
3412
+ .cxd-Button--primary:not(:disabled):not(.is-disabled):hover:active {
3413
+ color: var(--Button--primary-onActive-color);
3414
+ background: var(--Button--primary-onActive-bg);
3415
+ border-color: var(--Button--primary-onActive-border);
3416
+ }
3397
3417
  .cxd-Button--primary:hover:focus {
3398
3418
  box-shadow: var(--Button-boxShadow);
3399
3419
  }
@@ -3410,6 +3430,11 @@ fieldset:disabled a.cxd-Button {
3410
3430
  background: var(--Button--secondary-onHover-bg);
3411
3431
  border-color: var(--Button--secondary-onHover-border);
3412
3432
  }
3433
+ .cxd-Button--secondary:not(:disabled):not(.is-disabled):hover:active {
3434
+ color: var(--Button--secondary-onActive-color);
3435
+ background: var(--Button--secondary-onActive-bg);
3436
+ border-color: var(--Button--secondary-onActive-border);
3437
+ }
3413
3438
  .cxd-Button--secondary:hover:focus {
3414
3439
  box-shadow: var(--Button-boxShadow);
3415
3440
  }
@@ -3426,10 +3451,36 @@ fieldset:disabled a.cxd-Button {
3426
3451
  background: var(--Button--success-onHover-bg);
3427
3452
  border-color: var(--Button--success-onHover-border);
3428
3453
  }
3454
+ .cxd-Button--success:not(:disabled):not(.is-disabled):hover:active {
3455
+ color: var(--Button--success-onActive-color);
3456
+ background: var(--Button--success-onActive-bg);
3457
+ border-color: var(--Button--success-onActive-border);
3458
+ }
3429
3459
  .cxd-Button--success:hover:focus {
3430
3460
  box-shadow: var(--Button-boxShadow);
3431
3461
  }
3432
3462
 
3463
+ .cxd-Button--enhance {
3464
+ color: var(--Button--enhance-color);
3465
+ background: var(--Button--enhance-bg);
3466
+ border-color: var(--Button--enhance-border);
3467
+ box-shadow: var(--Button-boxShadow);
3468
+ text-shadow: var(--Button-textShadow);
3469
+ }
3470
+ .cxd-Button--enhance:not(:disabled):not(.is-disabled):hover {
3471
+ color: var(--Button--enhance-onHover-color);
3472
+ background: var(--Button--enhance-onHover-bg);
3473
+ border-color: var(--Button--enhance-onHover-border);
3474
+ }
3475
+ .cxd-Button--enhance:not(:disabled):not(.is-disabled):hover:active {
3476
+ color: var(--Button--enhance-onActive-color);
3477
+ background: var(--Button--enhance-onActive-bg);
3478
+ border-color: var(--Button--enhance-onActive-border);
3479
+ }
3480
+ .cxd-Button--enhance:hover:focus {
3481
+ box-shadow: var(--Button-boxShadow);
3482
+ }
3483
+
3433
3484
  .cxd-Button--info {
3434
3485
  color: var(--Button--info-color);
3435
3486
  background: var(--Button--info-bg);
@@ -3442,6 +3493,11 @@ fieldset:disabled a.cxd-Button {
3442
3493
  background: var(--Button--info-onHover-bg);
3443
3494
  border-color: var(--Button--info-onHover-border);
3444
3495
  }
3496
+ .cxd-Button--info:not(:disabled):not(.is-disabled):hover:active {
3497
+ color: var(--Button--info-onActive-color);
3498
+ background: var(--Button--info-onActive-bg);
3499
+ border-color: var(--Button--info-onActive-border);
3500
+ }
3445
3501
  .cxd-Button--info:hover:focus {
3446
3502
  box-shadow: var(--Button-boxShadow);
3447
3503
  }
@@ -3458,6 +3514,11 @@ fieldset:disabled a.cxd-Button {
3458
3514
  background: var(--Button--warning-onHover-bg);
3459
3515
  border-color: var(--Button--warning-onHover-border);
3460
3516
  }
3517
+ .cxd-Button--warning:not(:disabled):not(.is-disabled):hover:active {
3518
+ color: var(--Button--warning-onActive-color);
3519
+ background: var(--Button--warning-onActive-bg);
3520
+ border-color: var(--Button--warning-onActive-border);
3521
+ }
3461
3522
  .cxd-Button--warning:hover:focus {
3462
3523
  box-shadow: var(--Button-boxShadow);
3463
3524
  }
@@ -3474,6 +3535,11 @@ fieldset:disabled a.cxd-Button {
3474
3535
  background: var(--Button--danger-onHover-bg);
3475
3536
  border-color: var(--Button--danger-onHover-border);
3476
3537
  }
3538
+ .cxd-Button--danger:not(:disabled):not(.is-disabled):hover:active {
3539
+ color: var(--Button--danger-onActive-color);
3540
+ background: var(--Button--danger-onActive-bg);
3541
+ border-color: var(--Button--danger-onActive-border);
3542
+ }
3477
3543
  .cxd-Button--danger:hover:focus {
3478
3544
  box-shadow: var(--Button-boxShadow);
3479
3545
  }
@@ -3490,6 +3556,11 @@ fieldset:disabled a.cxd-Button {
3490
3556
  background: var(--Button--light-onHover-bg);
3491
3557
  border-color: var(--Button--light-onHover-border);
3492
3558
  }
3559
+ .cxd-Button--light:not(:disabled):not(.is-disabled):hover:active {
3560
+ color: var(--Button--light-onActive-color);
3561
+ background: var(--Button--light-onActive-bg);
3562
+ border-color: var(--Button--light-onActive-border);
3563
+ }
3493
3564
  .cxd-Button--light:hover:focus {
3494
3565
  box-shadow: var(--Button-boxShadow);
3495
3566
  }
@@ -3506,6 +3577,11 @@ fieldset:disabled a.cxd-Button {
3506
3577
  background: var(--Button--dark-onHover-bg);
3507
3578
  border-color: var(--Button--dark-onHover-border);
3508
3579
  }
3580
+ .cxd-Button--dark:not(:disabled):not(.is-disabled):hover:active {
3581
+ color: var(--Button--dark-onActive-color);
3582
+ background: var(--Button--dark-onActive-bg);
3583
+ border-color: var(--Button--dark-onActive-border);
3584
+ }
3509
3585
  .cxd-Button--dark:hover:focus {
3510
3586
  box-shadow: var(--Button-boxShadow);
3511
3587
  }
@@ -3522,6 +3598,11 @@ fieldset:disabled a.cxd-Button {
3522
3598
  background: var(--Button--default-onHover-bg);
3523
3599
  border-color: var(--Button--default-onHover-border);
3524
3600
  }
3601
+ .cxd-Button--default:not(:disabled):not(.is-disabled):hover:active {
3602
+ color: var(--Button--default-onActive-color);
3603
+ background: var(--Button--default-onActive-bg);
3604
+ border-color: var(--Button--default-onActive-border);
3605
+ }
3525
3606
  .cxd-Button--default:hover:focus {
3526
3607
  box-shadow: var(--Button-boxShadow);
3527
3608
  }
@@ -3542,6 +3623,15 @@ fieldset:disabled a.cxd-Button {
3542
3623
  .cxd-Button--xs > .pull-right {
3543
3624
  margin-left: var(--Button--xs-paddingX);
3544
3625
  }
3626
+ .cxd-Button--xs .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
3627
+ .cxd-Button--xs > svg.icon:not(:last-child):not(.pull-right),
3628
+ .cxd-Button--xs > .pull-left {
3629
+ margin-right: var(--Button--xs-paddingX);
3630
+ }
3631
+ .cxd-Button--xs .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
3632
+ .cxd-Button--xs > .pull-right {
3633
+ margin-left: var(--Button--xs-paddingX);
3634
+ }
3545
3635
  .cxd-Button--xs img.cxd-Button-icon {
3546
3636
  height: var(--Button-fontSize);
3547
3637
  vertical-align: middle;
@@ -3566,6 +3656,15 @@ fieldset:disabled a.cxd-Button {
3566
3656
  .cxd-Button--sm > .pull-right {
3567
3657
  margin-left: var(--Button--sm-paddingX);
3568
3658
  }
3659
+ .cxd-Button--sm .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
3660
+ .cxd-Button--sm > svg.icon:not(:last-child):not(.pull-right),
3661
+ .cxd-Button--sm > .pull-left {
3662
+ margin-right: var(--Button--sm-paddingX);
3663
+ }
3664
+ .cxd-Button--sm .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
3665
+ .cxd-Button--sm > .pull-right {
3666
+ margin-left: var(--Button--sm-paddingX);
3667
+ }
3569
3668
  .cxd-Button--sm img.cxd-Button-icon {
3570
3669
  height: var(--Button-fontSize);
3571
3670
  vertical-align: middle;
@@ -3590,6 +3689,15 @@ fieldset:disabled a.cxd-Button {
3590
3689
  .cxd-Button--md > .pull-right {
3591
3690
  margin-left: var(--Button--md-paddingX);
3592
3691
  }
3692
+ .cxd-Button--md .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
3693
+ .cxd-Button--md > svg.icon:not(:last-child):not(.pull-right),
3694
+ .cxd-Button--md > .pull-left {
3695
+ margin-right: var(--Button--md-paddingX);
3696
+ }
3697
+ .cxd-Button--md .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
3698
+ .cxd-Button--md > .pull-right {
3699
+ margin-left: var(--Button--md-paddingX);
3700
+ }
3593
3701
  .cxd-Button--md img.cxd-Button-icon {
3594
3702
  height: var(--Button-fontSize);
3595
3703
  vertical-align: middle;
@@ -3614,6 +3722,15 @@ fieldset:disabled a.cxd-Button {
3614
3722
  .cxd-Button--lg > .pull-right {
3615
3723
  margin-left: var(--Button--lg-paddingX);
3616
3724
  }
3725
+ .cxd-Button--lg .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
3726
+ .cxd-Button--lg > svg.icon:not(:last-child):not(.pull-right),
3727
+ .cxd-Button--lg > .pull-left {
3728
+ margin-right: var(--Button--lg-paddingX);
3729
+ }
3730
+ .cxd-Button--lg .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
3731
+ .cxd-Button--lg > .pull-right {
3732
+ margin-left: var(--Button--lg-paddingX);
3733
+ }
3617
3734
  .cxd-Button--lg img.cxd-Button-icon {
3618
3735
  height: var(--Button-fontSize);
3619
3736
  vertical-align: middle;
@@ -3638,6 +3755,13 @@ fieldset:disabled a.cxd-Button {
3638
3755
  line-height: 1;
3639
3756
  }
3640
3757
 
3758
+ .cxd-Button--loading {
3759
+ transition: --Button-transition;
3760
+ }
3761
+ .cxd-Button--loading svg {
3762
+ animation: var(--Button-animation-spin);
3763
+ }
3764
+
3641
3765
  .cxd-Button--link {
3642
3766
  width: auto;
3643
3767
  min-width: auto;
@@ -3649,13 +3773,16 @@ fieldset:disabled a.cxd-Button {
3649
3773
  }
3650
3774
  .cxd-Button--link:hover:focus {
3651
3775
  color: var(--Button--link-onHover-color);
3652
- text-decoration: var(--link-onHover-decoration);
3776
+ box-shadow: none;
3777
+ }
3778
+ .cxd-Button--link:hover:active {
3779
+ color: var(--Button--link-onActive-color);
3653
3780
  box-shadow: none;
3654
3781
  }
3655
3782
  .cxd-Button--link:disabled, .cxd-Button--link.is-disabled {
3656
3783
  color: var(--text--muted-color);
3657
3784
  pointer-events: none;
3658
- background: transparent;
3785
+ background: #F2F3F3;
3659
3786
  }
3660
3787
 
3661
3788
  .cxd-Button--block {
@@ -3724,7 +3851,7 @@ input[type=button].cxd-Button--block {
3724
3851
  display: inline-block;
3725
3852
  position: relative;
3726
3853
  }
3727
- .cxd-Badge-text, .cxd-Badge-dot {
3854
+ .cxd-Badge-text, .cxd-Badge-dot, .cxd-Badge-ribbon {
3728
3855
  background: var(--danger);
3729
3856
  position: absolute;
3730
3857
  top: 0;
@@ -3780,6 +3907,49 @@ input[type=button].cxd-Button--block {
3780
3907
  height: var(--Badge-size);
3781
3908
  border-radius: 50%;
3782
3909
  }
3910
+ .cxd-Badge-ribbon-out {
3911
+ overflow: hidden;
3912
+ position: absolute;
3913
+ top: 0;
3914
+ bottom: 0;
3915
+ right: 0;
3916
+ }
3917
+ .cxd-Badge-ribbon {
3918
+ color: var(--Badge-color);
3919
+ height: var(--Badge-size);
3920
+ line-height: var(--Badge-size);
3921
+ transform: translateX(calc(50% - 5px)) rotate(45deg) scale(0.7);
3922
+ transform-origin: 50% 0;
3923
+ border-radius: 0;
3924
+ text-align: center;
3925
+ width: 62.5rem;
3926
+ top: 5px;
3927
+ }
3928
+ .cxd-Badge-ribbon-out--top-left, .cxd-Badge-ribbon-out--bottom-left {
3929
+ left: 0;
3930
+ right: auto;
3931
+ }
3932
+ .cxd-Badge-ribbon--top-left {
3933
+ transform: translateX(calc(-50% + 5px)) rotate(-45deg) scale(0.7);
3934
+ left: 0;
3935
+ right: auto;
3936
+ }
3937
+ .cxd-Badge-ribbon--bottom-left {
3938
+ transform: translateX(calc(-50% + 5px)) rotate(45deg) scale(0.7);
3939
+ transform-origin: 50% 100%;
3940
+ left: 0;
3941
+ right: auto;
3942
+ bottom: 5px;
3943
+ top: auto;
3944
+ }
3945
+ .cxd-Badge-ribbon--bottom-right {
3946
+ transform: translateX(calc(50% - 5px)) rotate(-45deg) scale(0.7);
3947
+ transform-origin: 50% 100%;
3948
+ left: auto;
3949
+ right: 0;
3950
+ bottom: 5px;
3951
+ top: auto;
3952
+ }
3783
3953
  @keyframes badgeDotAnimation {
3784
3954
  0% {
3785
3955
  transform: scale(0.8);
@@ -4850,6 +5020,15 @@ input[type=button].cxd-Button--block {
4850
5020
  .cxd-ArrayInput-addBtn > .pull-right {
4851
5021
  margin-left: var(--Combo-addBtn-paddingX);
4852
5022
  }
5023
+ .cxd-ArrayInput-addBtn .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
5024
+ .cxd-ArrayInput-addBtn > svg.icon:not(:last-child):not(.pull-right),
5025
+ .cxd-ArrayInput-addBtn > .pull-left {
5026
+ margin-right: var(--Combo-addBtn-paddingX);
5027
+ }
5028
+ .cxd-ArrayInput-addBtn .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
5029
+ .cxd-ArrayInput-addBtn > .pull-right {
5030
+ margin-left: var(--Combo-addBtn-paddingX);
5031
+ }
4853
5032
  .cxd-ArrayInput-addBtn img.cxd-Button-icon {
4854
5033
  height: var(--Button-fontSize);
4855
5034
  vertical-align: middle;
@@ -4859,6 +5038,11 @@ input[type=button].cxd-Button--block {
4859
5038
  background: var(--Combo-addBtn-onHover-bg);
4860
5039
  border-color: var(--Combo-addBtn-onHover-border);
4861
5040
  }
5041
+ .cxd-ArrayInput-addBtn:not(:disabled):not(.is-disabled):hover:active {
5042
+ color: var(--Combo-addBtn-onActive-color);
5043
+ background: var(--Combo-addBtn-onActive-bg);
5044
+ border-color: var(--Combo-addBtn-onActive-border);
5045
+ }
4862
5046
  .cxd-ArrayInput-addBtn:hover:focus {
4863
5047
  box-shadow: var(--Button-boxShadow);
4864
5048
  }
@@ -5333,6 +5517,7 @@ input[type=button].cxd-Button--block {
5333
5517
  .cxd-Nav--tabs .cxd-Nav-item {
5334
5518
  margin-bottom: calc(var(--Tabs-borderWidth) * -1);
5335
5519
  display: inline-block;
5520
+ position: relative;
5336
5521
  }
5337
5522
  .cxd-Nav--tabs .cxd-Nav-item > a {
5338
5523
  font-size: var(--Tabs-linkFontSize);
@@ -5344,7 +5529,7 @@ input[type=button].cxd-Button--block {
5344
5529
  color: var(--Tabs-color);
5345
5530
  text-decoration: none;
5346
5531
  margin-right: 0.125rem;
5347
- padding: var(--gap-sm) var(--gap-base);
5532
+ padding: var(--gap-sm) var(--gap-xl);
5348
5533
  cursor: pointer;
5349
5534
  }
5350
5535
  .cxd-Nav--tabs .cxd-Nav-item:hover > a,
@@ -5367,89 +5552,145 @@ input[type=button].cxd-Button--block {
5367
5552
  .cxd-Nav--stacked {
5368
5553
  min-height: 3.125rem;
5369
5554
  }
5370
- .cxd-Nav--stacked .cxd-Nav-item {
5555
+ .cxd-Nav--stacked .cxd-Nav-item, .cxd-Nav--stacked .cxd-Badge {
5371
5556
  position: relative;
5557
+ display: flex;
5558
+ flex-wrap: wrap;
5559
+ align-items: stretch;
5560
+ width: 100%;
5372
5561
  }
5373
- .cxd-Nav--stacked .cxd-Nav-item > a {
5374
- display: block;
5562
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager {
5563
+ cursor: move;
5564
+ position: absolute;
5565
+ left: 0;
5566
+ top: 0.6875rem;
5567
+ display: none;
5568
+ }
5569
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager > a, .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager > a, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager > .cxd-Badge > a {
5570
+ color: var(--icon-color);
5571
+ }
5572
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager > a:hover, .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .cxd-Badge > a:hover, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager > a:hover, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager > .cxd-Badge > a:hover {
5573
+ color: var(--icon-onHover-color);
5574
+ }
5575
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager svg, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager svg {
5576
+ width: 1rem;
5577
+ height: 1rem;
5578
+ }
5579
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Nav-item-badgeText, .cxd-Nav--stacked .cxd-Badge > .cxd-Nav-item-badgeText {
5580
+ position: absolute;
5581
+ top: 0;
5582
+ bottom: 0;
5583
+ width: 2.1875rem;
5584
+ overflow: hidden;
5585
+ }
5586
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Nav-item-badgeText > span, .cxd-Nav--stacked .cxd-Badge > .cxd-Nav-item-badgeText > span {
5587
+ position: absolute;
5588
+ top: 0.125rem;
5589
+ left: -0.8125rem;
5590
+ transform: rotate(-45deg);
5591
+ width: 3.125rem;
5592
+ font-size: 12px;
5593
+ text-align: center;
5594
+ color: var(--white);
5595
+ background: var(--success);
5596
+ }
5597
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Nav-item-atcions, .cxd-Nav--stacked .cxd-Badge > .cxd-Nav-item-atcions {
5598
+ display: flex;
5599
+ align-items: center;
5600
+ }
5601
+ .cxd-Nav--stacked .cxd-Nav-item > a,
5602
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Badge > a,
5603
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a {
5604
+ display: flex;
5605
+ align-items: center;
5375
5606
  outline: none;
5376
5607
  color: var(--Nav-item-color);
5377
5608
  text-decoration: none;
5378
- padding: var(--gap-sm) var(--gap-base);
5609
+ padding: var(--gap-sm) var(--gap-sm);
5379
5610
  cursor: pointer;
5380
5611
  background: var(--Nav-item-bg);
5381
5612
  border-radius: var(--Nav-item-borderRadius);
5382
5613
  text-overflow: ellipsis;
5383
- }
5384
- .cxd-Nav--stacked .cxd-Nav-item > a::after {
5385
- border-left: var(--Nav-item-onActive-borderLeft);
5386
- position: absolute;
5387
- left: 0;
5388
- top: 0;
5389
- content: "";
5390
- width: 1px;
5391
- height: 100%;
5392
- transform: scaleY(0.0001);
5393
- transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
5394
- }
5395
- .cxd-Nav--stacked .cxd-Nav-item.has-sub > a {
5396
- padding-right: calc(var(--gap-base) + var(--gap-sm));
5614
+ flex: 1;
5397
5615
  }
5398
5616
  .cxd-Nav--stacked .cxd-Nav-item > a:hover,
5399
- .cxd-Nav--stacked .cxd-Nav-item > a:focus {
5617
+ .cxd-Nav--stacked .cxd-Nav-item > a:focus,
5618
+ .cxd-Nav--stacked .cxd-Nav-item > a:hover + .cxd-Nav-item-atcions,
5619
+ .cxd-Nav--stacked .cxd-Nav-item > a:focus + .cxd-Nav-item-atcions,
5620
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:hover,
5621
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:focus,
5622
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
5623
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:focus + .cxd-Nav-item-atcions, .cxd-Nav--stacked .cxd-Badge > a:hover,
5624
+ .cxd-Nav--stacked .cxd-Badge > a:focus,
5625
+ .cxd-Nav--stacked .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
5626
+ .cxd-Nav--stacked .cxd-Badge > a:focus + .cxd-Nav-item-atcions,
5627
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:hover,
5628
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:focus,
5629
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
5630
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:focus + .cxd-Nav-item-atcions {
5400
5631
  border-color: var(--Nav-item-onHover-color);
5401
5632
  text-decoration: none;
5402
5633
  background: var(--Nav-item-onHover-bg);
5634
+ z-index: 9999;
5635
+ }
5636
+ .cxd-Nav--stacked .cxd-Nav-item > a:hover > .cxd-Nav-itemDrager,
5637
+ .cxd-Nav--stacked .cxd-Nav-item > a:focus > .cxd-Nav-itemDrager,
5638
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
5639
+ .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:focus > .cxd-Nav-itemDrager, .cxd-Nav--stacked .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
5640
+ .cxd-Nav--stacked .cxd-Badge > a:focus > .cxd-Nav-itemDrager,
5641
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
5642
+ .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:focus > .cxd-Nav-itemDrager {
5643
+ display: block;
5403
5644
  }
5404
- .cxd-Nav--stacked .cxd-Nav-item.disabled > a, .cxd-Nav--stacked .cxd-Nav-item.is-disabled > a {
5645
+ .cxd-Nav--stacked .cxd-Nav-item.disabled > a, .cxd-Nav--stacked .cxd-Nav-item.is-disabled > a, .cxd-Nav--stacked .cxd-Nav-item.disabled > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Nav-item.is-disabled > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Badge.disabled > a, .cxd-Nav--stacked .cxd-Badge.is-disabled > a, .cxd-Nav--stacked .cxd-Badge.disabled > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Badge.is-disabled > .cxd-Badge > a {
5405
5646
  color: var(--Nav-item-onDisabled-color);
5406
5647
  background: transparent;
5407
5648
  pointer-events: none;
5408
5649
  }
5409
- .cxd-Nav--stacked .cxd-Nav-item.active > a, .cxd-Nav--stacked .cxd-Nav-item.is-active > a {
5650
+ .cxd-Nav--stacked .cxd-Nav-item.active, .cxd-Nav--stacked .cxd-Nav-item.is-active, .cxd-Nav--stacked .cxd-Badge.active, .cxd-Nav--stacked .cxd-Badge.is-active {
5651
+ background: var(--Nav-item-onActive-bg) !important;
5652
+ }
5653
+ .cxd-Nav--stacked .cxd-Nav-item.active > a, .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions, .cxd-Nav--stacked .cxd-Nav-item.is-active > a, .cxd-Nav--stacked .cxd-Nav-item.active > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions, .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Badge.active > a, .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions, .cxd-Nav--stacked .cxd-Badge.is-active > a, .cxd-Nav--stacked .cxd-Badge.active > .cxd-Badge > a, .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions, .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > a {
5410
5654
  color: var(--Nav-item-onActive-color);
5411
- background: var(--Nav-item-onActive-bg);
5412
- padding-left: 0.75rem;
5413
5655
  position: relative;
5414
5656
  }
5415
- .cxd-Nav--stacked .cxd-Nav-item.active > a::after, .cxd-Nav--stacked .cxd-Nav-item.is-active > a::after {
5657
+ .cxd-Nav--stacked .cxd-Nav-item.active > a::after, .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions::after, .cxd-Nav--stacked .cxd-Nav-item.is-active > a::after, .cxd-Nav--stacked .cxd-Nav-item.active > .cxd-Badge > a::after, .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after, .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > a::after, .cxd-Nav--stacked .cxd-Badge.active > a::after, .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions::after, .cxd-Nav--stacked .cxd-Badge.is-active > a::after, .cxd-Nav--stacked .cxd-Badge.active > .cxd-Badge > a::after, .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after, .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > a::after {
5416
5658
  transform: scaleY(1);
5417
5659
  }
5418
- .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Nav-itemToggler {
5660
+ .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > a .cxd-Nav-itemToggler, .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Badge > a .cxd-Nav-itemToggler, .cxd-Nav--stacked .cxd-Badge.is-unfolded > a .cxd-Nav-itemToggler, .cxd-Nav--stacked .cxd-Badge.is-unfolded > .cxd-Badge > a .cxd-Nav-itemToggler {
5419
5661
  transform: rotate(180deg) scale(0.8);
5420
5662
  }
5421
- .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Nav-subItems {
5663
+ .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Nav-subItems, .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Badge > .cxd-Nav-subItems, .cxd-Nav--stacked .cxd-Badge.is-unfolded > .cxd-Nav-subItems, .cxd-Nav--stacked .cxd-Badge.is-unfolded > .cxd-Badge > .cxd-Nav-subItems {
5422
5664
  display: block;
5423
5665
  }
5424
- .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-spinner {
5666
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-spinner, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-spinner {
5425
5667
  position: absolute;
5426
5668
  right: 0.625rem;
5427
5669
  top: 0.5rem;
5428
5670
  }
5429
- .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler {
5430
- position: absolute;
5431
- right: 0;
5432
- top: 0.1875rem;
5433
- width: 1.875rem;
5434
- height: 1.875rem;
5671
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemToggler {
5672
+ float: left;
5673
+ width: 1.5rem;
5674
+ height: 1.5rem;
5435
5675
  text-align: center;
5436
- line-height: 1.875rem;
5676
+ line-height: 1.5rem;
5437
5677
  vertical-align: middle;
5438
5678
  cursor: pointer;
5439
5679
  transform: scale(0.8);
5440
5680
  transition: transform var(--animation-duration);
5441
5681
  }
5442
- .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler > svg {
5682
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler > svg, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemToggler > svg {
5443
5683
  width: 10px;
5444
5684
  height: 10px;
5445
5685
  top: 0;
5446
5686
  }
5447
- .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-subItems {
5687
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-subItems, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-subItems {
5448
5688
  display: none;
5449
5689
  padding-left: 0;
5450
5690
  list-style: none;
5691
+ width: 100%;
5451
5692
  }
5452
- .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item {
5693
+ .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item, .cxd-Nav--stacked .cxd-Badge .cxd-Nav-item {
5453
5694
  font-size: var(--Nav-subItem-fontSize);
5454
5695
  }
5455
5696
 
@@ -6464,7 +6705,7 @@ input[type=button].cxd-Button--block {
6464
6705
  left: 0;
6465
6706
  right: 0;
6466
6707
  bottom: 0;
6467
- background: rgba(16, 140, 238, 0.2);
6708
+ background: rgba(36, 104, 242, 0.2);
6468
6709
  }
6469
6710
  .cxd-CBGroupOrItem-dragbar {
6470
6711
  cursor: move;
@@ -7368,7 +7609,7 @@ input[type=button].cxd-Button--block {
7368
7609
  }
7369
7610
  .cxd-Table-table > tbody > tr.bg-light {
7370
7611
  background-color: #eaf6fe;
7371
- color: #666;
7612
+ color: #151a26;
7372
7613
  }
7373
7614
  .cxd-Table-table > tbody > tr.bg-light.lt, .cxd-Table-table > tbody > tr.bg-light .lt {
7374
7615
  background: #f4fafe;
@@ -7414,10 +7655,10 @@ input[type=button].cxd-Button--block {
7414
7655
  color: #fff;
7415
7656
  }
7416
7657
  .cxd-Table-table > tbody > tr.bg-dark .text-muted {
7417
- color: #4d4d4d !important;
7658
+ color: #030405 !important;
7418
7659
  }
7419
7660
  .cxd-Table-table > tbody > tr.bg-dark .text-lt {
7420
- color: #a6a6a6 !important;
7661
+ color: #425278 !important;
7421
7662
  }
7422
7663
  .cxd-Table-table > tbody > tr.bg-black {
7423
7664
  background-color: #000;
@@ -7448,32 +7689,32 @@ input[type=button].cxd-Button--block {
7448
7689
  color: #fff;
7449
7690
  }
7450
7691
  .cxd-Table-table > tbody > tr.bg-black .text-muted {
7451
- color: #4d4d4d !important;
7692
+ color: #030405 !important;
7452
7693
  }
7453
7694
  .cxd-Table-table > tbody > tr.bg-black .text-lt {
7454
- color: #a6a6a6 !important;
7695
+ color: #425278 !important;
7455
7696
  }
7456
7697
  .cxd-Table-table > tbody > tr.bg-primary {
7457
- background-color: #108cee;
7458
- color: #d1e7f9;
7698
+ background-color: #2468f2;
7699
+ color: #e6edfc;
7459
7700
  }
7460
7701
  .cxd-Table-table > tbody > tr.bg-primary.lt, .cxd-Table-table > tbody > tr.bg-primary .lt {
7461
- background: #2a97ee;
7702
+ background: #3f79f1;
7462
7703
  }
7463
7704
  .cxd-Table-table > tbody > tr.bg-primary.lter, .cxd-Table-table > tbody > tr.bg-primary .lter {
7464
- background: #44a2ed;
7705
+ background: #598bf0;
7465
7706
  }
7466
7707
  .cxd-Table-table > tbody > tr.bg-primary.dk, .cxd-Table-table > tbody > tr.bg-primary .dk {
7467
- background: #0c7ed9;
7708
+ background: #0b57f2;
7468
7709
  }
7469
7710
  .cxd-Table-table > tbody > tr.bg-primary.dker, .cxd-Table-table > tbody > tr.bg-primary .dker {
7470
- background: #0870c3;
7711
+ background: #074ddc;
7471
7712
  }
7472
7713
  .cxd-Table-table > tbody > tr.bg-primary.bg, .cxd-Table-table > tbody > tr.bg-primary .bg {
7473
- background-color: #108cee;
7714
+ background-color: #2468f2;
7474
7715
  }
7475
7716
  .cxd-Table-table > tbody > tr.bg-primary a, .cxd-Table-table > tbody > tr.bg-primary .cxd-Button--link {
7476
- color: #feffff;
7717
+ color: white;
7477
7718
  }
7478
7719
  .cxd-Table-table > tbody > tr.bg-primary a:hover, .cxd-Table-table > tbody > tr.bg-primary .cxd-Button--link:hover {
7479
7720
  color: #fff;
@@ -7482,10 +7723,10 @@ input[type=button].cxd-Button--block {
7482
7723
  color: #fff;
7483
7724
  }
7484
7725
  .cxd-Table-table > tbody > tr.bg-primary .text-muted {
7485
- color: #4d4d4d !important;
7726
+ color: #030405 !important;
7486
7727
  }
7487
7728
  .cxd-Table-table > tbody > tr.bg-primary .text-lt {
7488
- color: #a6a6a6 !important;
7729
+ color: #425278 !important;
7489
7730
  }
7490
7731
  .cxd-Table-table > tbody > tr.bg-success {
7491
7732
  background-color: #5fb333;
@@ -7516,32 +7757,32 @@ input[type=button].cxd-Button--block {
7516
7757
  color: #fff;
7517
7758
  }
7518
7759
  .cxd-Table-table > tbody > tr.bg-success .text-muted {
7519
- color: #4d4d4d !important;
7760
+ color: #030405 !important;
7520
7761
  }
7521
7762
  .cxd-Table-table > tbody > tr.bg-success .text-lt {
7522
- color: #a6a6a6 !important;
7763
+ color: #425278 !important;
7523
7764
  }
7524
7765
  .cxd-Table-table > tbody > tr.bg-info {
7525
- background-color: #108cee;
7526
- color: #d1e7f9;
7766
+ background-color: #2468f2;
7767
+ color: #e6edfc;
7527
7768
  }
7528
7769
  .cxd-Table-table > tbody > tr.bg-info.lt, .cxd-Table-table > tbody > tr.bg-info .lt {
7529
- background: #2a97ee;
7770
+ background: #3f79f1;
7530
7771
  }
7531
7772
  .cxd-Table-table > tbody > tr.bg-info.lter, .cxd-Table-table > tbody > tr.bg-info .lter {
7532
- background: #44a2ed;
7773
+ background: #598bf0;
7533
7774
  }
7534
7775
  .cxd-Table-table > tbody > tr.bg-info.dk, .cxd-Table-table > tbody > tr.bg-info .dk {
7535
- background: #0c7ed9;
7776
+ background: #0b57f2;
7536
7777
  }
7537
7778
  .cxd-Table-table > tbody > tr.bg-info.dker, .cxd-Table-table > tbody > tr.bg-info .dker {
7538
- background: #0870c3;
7779
+ background: #074ddc;
7539
7780
  }
7540
7781
  .cxd-Table-table > tbody > tr.bg-info.bg, .cxd-Table-table > tbody > tr.bg-info .bg {
7541
- background-color: #108cee;
7782
+ background-color: #2468f2;
7542
7783
  }
7543
7784
  .cxd-Table-table > tbody > tr.bg-info a, .cxd-Table-table > tbody > tr.bg-info .cxd-Button--link {
7544
- color: #feffff;
7785
+ color: white;
7545
7786
  }
7546
7787
  .cxd-Table-table > tbody > tr.bg-info a:hover, .cxd-Table-table > tbody > tr.bg-info .cxd-Button--link:hover {
7547
7788
  color: #fff;
@@ -7550,10 +7791,10 @@ input[type=button].cxd-Button--block {
7550
7791
  color: #fff;
7551
7792
  }
7552
7793
  .cxd-Table-table > tbody > tr.bg-info .text-muted {
7553
- color: #4d4d4d !important;
7794
+ color: #030405 !important;
7554
7795
  }
7555
7796
  .cxd-Table-table > tbody > tr.bg-info .text-lt {
7556
- color: #a6a6a6 !important;
7797
+ color: #425278 !important;
7557
7798
  }
7558
7799
  .cxd-Table-table > tbody > tr.bg-warning {
7559
7800
  background-color: #f39000;
@@ -7584,10 +7825,10 @@ input[type=button].cxd-Button--block {
7584
7825
  color: #fff;
7585
7826
  }
7586
7827
  .cxd-Table-table > tbody > tr.bg-warning .text-muted {
7587
- color: #4d4d4d !important;
7828
+ color: #030405 !important;
7588
7829
  }
7589
7830
  .cxd-Table-table > tbody > tr.bg-warning .text-lt {
7590
- color: #a6a6a6 !important;
7831
+ color: #425278 !important;
7591
7832
  }
7592
7833
  .cxd-Table-table > tbody > tr.bg-danger {
7593
7834
  background-color: #ea2e2e;
@@ -7618,10 +7859,10 @@ input[type=button].cxd-Button--block {
7618
7859
  color: #fff;
7619
7860
  }
7620
7861
  .cxd-Table-table > tbody > tr.bg-danger .text-muted {
7621
- color: #4d4d4d !important;
7862
+ color: #030405 !important;
7622
7863
  }
7623
7864
  .cxd-Table-table > tbody > tr.bg-danger .text-lt {
7624
- color: #a6a6a6 !important;
7865
+ color: #425278 !important;
7625
7866
  }
7626
7867
  .cxd-Table-table > tbody > tr.is-dragging {
7627
7868
  opacity: var(--Table-onDragging-opacity);
@@ -9620,7 +9861,7 @@ input[type=button].cxd-Button--block {
9620
9861
  display: none;
9621
9862
  }
9622
9863
  .cxd-ImageGallery-item.is-active {
9623
- border: 1px solid #108cee;
9864
+ border: 1px solid var(--primary);
9624
9865
  }
9625
9866
  .cxd-ImageGallery-item.is-active:after {
9626
9867
  display: none;
@@ -12816,6 +13057,11 @@ fieldset.cxd-Collapse--lg:after {
12816
13057
  background: var(--Calendar-btn-onHover-bg);
12817
13058
  border-color: var(--Calendar-btn-onHover-border);
12818
13059
  }
13060
+ .rdtBtn:not(:disabled):not(.is-disabled):hover:active {
13061
+ color: var(--Calendar-btn-onActive-color);
13062
+ background: var(--Calendar-btn-onActive-bg);
13063
+ border-color: var(--Calendar-btn-onActive-border);
13064
+ }
12819
13065
  .rdtBtn:hover:focus {
12820
13066
  box-shadow: var(--Button-boxShadow);
12821
13067
  }
@@ -12834,6 +13080,11 @@ fieldset.cxd-Collapse--lg:after {
12834
13080
  background: var(--Calendar-btnCancel-onHover-bg);
12835
13081
  border-color: var(--Calendar-btnCancel-onHover-border);
12836
13082
  }
13083
+ .rdtBtnCancel:not(:disabled):not(.is-disabled):hover:active {
13084
+ color: var(--Calendar-btnCancel-onActive-color);
13085
+ background: var(--Calendar-btnCancel-onActive-bg);
13086
+ border-color: var(--Calendar-btnCancel-onActive-border);
13087
+ }
12837
13088
  .rdtBtnCancel:hover:focus {
12838
13089
  box-shadow: var(--Button-boxShadow);
12839
13090
  }
@@ -13121,6 +13372,11 @@ td.rdtQuarter.rdtDisabled > span {
13121
13372
  background: var(--ImageControl-addBtn-onHover-bg);
13122
13373
  border-color: var(--ImageControl-addBtn-onHover-border);
13123
13374
  }
13375
+ .cxd-ImageControl-addBtn:not(:disabled):not(.is-disabled):hover:active {
13376
+ color: var(--ImageControl-addBtn-onActive-color);
13377
+ background: var(--ImageControl-addBtn-onActive-bg);
13378
+ border-color: var(--ImageControl-addBtn-onActive-border);
13379
+ }
13124
13380
  .cxd-ImageControl-addBtn:hover:focus {
13125
13381
  box-shadow: var(--Button-boxShadow);
13126
13382
  }
@@ -14197,6 +14453,15 @@ td.rdtQuarter.rdtDisabled > span {
14197
14453
  .cxd-Combo-addBtn > .pull-right {
14198
14454
  margin-left: var(--Combo-addBtn-paddingX);
14199
14455
  }
14456
+ .cxd-Combo-addBtn .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
14457
+ .cxd-Combo-addBtn > svg.icon:not(:last-child):not(.pull-right),
14458
+ .cxd-Combo-addBtn > .pull-left {
14459
+ margin-right: var(--Combo-addBtn-paddingX);
14460
+ }
14461
+ .cxd-Combo-addBtn .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
14462
+ .cxd-Combo-addBtn > .pull-right {
14463
+ margin-left: var(--Combo-addBtn-paddingX);
14464
+ }
14200
14465
  .cxd-Combo-addBtn img.cxd-Button-icon {
14201
14466
  height: var(--Button-fontSize);
14202
14467
  vertical-align: middle;
@@ -14206,6 +14471,11 @@ td.rdtQuarter.rdtDisabled > span {
14206
14471
  background: var(--Combo-addBtn-onHover-bg);
14207
14472
  border-color: var(--Combo-addBtn-onHover-border);
14208
14473
  }
14474
+ .cxd-Combo-addBtn:not(:disabled):not(.is-disabled):hover:active {
14475
+ color: var(--Combo-addBtn-onActive-color);
14476
+ background: var(--Combo-addBtn-onActive-bg);
14477
+ border-color: var(--Combo-addBtn-onActive-border);
14478
+ }
14209
14479
  .cxd-Combo-addBtn:hover:focus {
14210
14480
  box-shadow: var(--Button-boxShadow);
14211
14481
  }
@@ -14755,6 +15025,15 @@ td.rdtQuarter.rdtDisabled > span {
14755
15025
  .cxd-TagControl-sugItem > .pull-right {
14756
15026
  margin-left: var(--TagControl-sugBtn-paddingX);
14757
15027
  }
15028
+ .cxd-TagControl-sugItem .cxd-Button--loading:first-child:not(:last-child):not(.pull-right),
15029
+ .cxd-TagControl-sugItem > svg.icon:not(:last-child):not(.pull-right),
15030
+ .cxd-TagControl-sugItem > .pull-left {
15031
+ margin-right: var(--TagControl-sugBtn-paddingX);
15032
+ }
15033
+ .cxd-TagControl-sugItem .cxd-Button--loading:last-child:not(:first-child):not(.pull-left),
15034
+ .cxd-TagControl-sugItem > .pull-right {
15035
+ margin-left: var(--TagControl-sugBtn-paddingX);
15036
+ }
14758
15037
  .cxd-TagControl-sugItem img.cxd-Button-icon {
14759
15038
  height: var(--Button-fontSize);
14760
15039
  vertical-align: middle;
@@ -14764,6 +15043,11 @@ td.rdtQuarter.rdtDisabled > span {
14764
15043
  background: var(--TagControl-sugBtn-onHover-bg);
14765
15044
  border-color: var(--TagControl-sugBtn-onHover-border);
14766
15045
  }
15046
+ .cxd-TagControl-sugItem:not(:disabled):not(.is-disabled):hover:active {
15047
+ color: var(--TagControl-sugBtn-onActive-color);
15048
+ background: var(--TagControl-sugBtn-onActive-bg);
15049
+ border-color: var(--TagControl-sugBtn-onActive-border);
15050
+ }
14767
15051
  .cxd-TagControl-sugItem:hover:focus {
14768
15052
  box-shadow: var(--Button-boxShadow);
14769
15053
  }
@@ -15837,7 +16121,7 @@ td.rdtQuarter.rdtDisabled > span {
15837
16121
  */
15838
16122
  .bg-light {
15839
16123
  background-color: #eaf6fe;
15840
- color: #666;
16124
+ color: #151a26;
15841
16125
  }
15842
16126
  .bg-light.lt, .bg-light .lt {
15843
16127
  background: #f4fafe;
@@ -15884,10 +16168,10 @@ td.rdtQuarter.rdtDisabled > span {
15884
16168
  color: #fff;
15885
16169
  }
15886
16170
  .bg-dark .text-muted {
15887
- color: #4d4d4d !important;
16171
+ color: #030405 !important;
15888
16172
  }
15889
16173
  .bg-dark .text-lt {
15890
- color: #a6a6a6 !important;
16174
+ color: #425278 !important;
15891
16175
  }
15892
16176
 
15893
16177
  .bg-black {
@@ -15919,33 +16203,33 @@ td.rdtQuarter.rdtDisabled > span {
15919
16203
  color: #fff;
15920
16204
  }
15921
16205
  .bg-black .text-muted {
15922
- color: #4d4d4d !important;
16206
+ color: #030405 !important;
15923
16207
  }
15924
16208
  .bg-black .text-lt {
15925
- color: #a6a6a6 !important;
16209
+ color: #425278 !important;
15926
16210
  }
15927
16211
 
15928
16212
  .bg-primary {
15929
- background-color: #108cee;
15930
- color: #d1e7f9;
16213
+ background-color: #2468f2;
16214
+ color: #e6edfc;
15931
16215
  }
15932
16216
  .bg-primary.lt, .bg-primary .lt {
15933
- background: #2a97ee;
16217
+ background: #3f79f1;
15934
16218
  }
15935
16219
  .bg-primary.lter, .bg-primary .lter {
15936
- background: #44a2ed;
16220
+ background: #598bf0;
15937
16221
  }
15938
16222
  .bg-primary.dk, .bg-primary .dk {
15939
- background: #0c7ed9;
16223
+ background: #0b57f2;
15940
16224
  }
15941
16225
  .bg-primary.dker, .bg-primary .dker {
15942
- background: #0870c3;
16226
+ background: #074ddc;
15943
16227
  }
15944
16228
  .bg-primary.bg, .bg-primary .bg {
15945
- background-color: #108cee;
16229
+ background-color: #2468f2;
15946
16230
  }
15947
16231
  .bg-primary a, .bg-primary .cxd-Button--link {
15948
- color: #feffff;
16232
+ color: white;
15949
16233
  }
15950
16234
  .bg-primary a:hover, .bg-primary .cxd-Button--link:hover {
15951
16235
  color: #fff;
@@ -15954,10 +16238,10 @@ td.rdtQuarter.rdtDisabled > span {
15954
16238
  color: #fff;
15955
16239
  }
15956
16240
  .bg-primary .text-muted {
15957
- color: #4d4d4d !important;
16241
+ color: #030405 !important;
15958
16242
  }
15959
16243
  .bg-primary .text-lt {
15960
- color: #a6a6a6 !important;
16244
+ color: #425278 !important;
15961
16245
  }
15962
16246
 
15963
16247
  .bg-success {
@@ -15989,33 +16273,33 @@ td.rdtQuarter.rdtDisabled > span {
15989
16273
  color: #fff;
15990
16274
  }
15991
16275
  .bg-success .text-muted {
15992
- color: #4d4d4d !important;
16276
+ color: #030405 !important;
15993
16277
  }
15994
16278
  .bg-success .text-lt {
15995
- color: #a6a6a6 !important;
16279
+ color: #425278 !important;
15996
16280
  }
15997
16281
 
15998
16282
  .bg-info {
15999
- background-color: #108cee;
16000
- color: #d1e7f9;
16283
+ background-color: #2468f2;
16284
+ color: #e6edfc;
16001
16285
  }
16002
16286
  .bg-info.lt, .bg-info .lt {
16003
- background: #2a97ee;
16287
+ background: #3f79f1;
16004
16288
  }
16005
16289
  .bg-info.lter, .bg-info .lter {
16006
- background: #44a2ed;
16290
+ background: #598bf0;
16007
16291
  }
16008
16292
  .bg-info.dk, .bg-info .dk {
16009
- background: #0c7ed9;
16293
+ background: #0b57f2;
16010
16294
  }
16011
16295
  .bg-info.dker, .bg-info .dker {
16012
- background: #0870c3;
16296
+ background: #074ddc;
16013
16297
  }
16014
16298
  .bg-info.bg, .bg-info .bg {
16015
- background-color: #108cee;
16299
+ background-color: #2468f2;
16016
16300
  }
16017
16301
  .bg-info a, .bg-info .cxd-Button--link {
16018
- color: #feffff;
16302
+ color: white;
16019
16303
  }
16020
16304
  .bg-info a:hover, .bg-info .cxd-Button--link:hover {
16021
16305
  color: #fff;
@@ -16024,10 +16308,10 @@ td.rdtQuarter.rdtDisabled > span {
16024
16308
  color: #fff;
16025
16309
  }
16026
16310
  .bg-info .text-muted {
16027
- color: #4d4d4d !important;
16311
+ color: #030405 !important;
16028
16312
  }
16029
16313
  .bg-info .text-lt {
16030
- color: #a6a6a6 !important;
16314
+ color: #425278 !important;
16031
16315
  }
16032
16316
 
16033
16317
  .bg-warning {
@@ -16059,10 +16343,10 @@ td.rdtQuarter.rdtDisabled > span {
16059
16343
  color: #fff;
16060
16344
  }
16061
16345
  .bg-warning .text-muted {
16062
- color: #4d4d4d !important;
16346
+ color: #030405 !important;
16063
16347
  }
16064
16348
  .bg-warning .text-lt {
16065
- color: #a6a6a6 !important;
16349
+ color: #425278 !important;
16066
16350
  }
16067
16351
 
16068
16352
  .bg-danger {
@@ -16094,15 +16378,15 @@ td.rdtQuarter.rdtDisabled > span {
16094
16378
  color: #fff;
16095
16379
  }
16096
16380
  .bg-danger .text-muted {
16097
- color: #4d4d4d !important;
16381
+ color: #030405 !important;
16098
16382
  }
16099
16383
  .bg-danger .text-lt {
16100
- color: #a6a6a6 !important;
16384
+ color: #425278 !important;
16101
16385
  }
16102
16386
 
16103
16387
  .bg-white {
16104
16388
  background-color: #fff;
16105
- color: #666;
16389
+ color: #151a26;
16106
16390
  }
16107
16391
  .bg-white.lt, .bg-white .lt {
16108
16392
  background: white;
@@ -16125,59 +16409,59 @@ td.rdtQuarter.rdtDisabled > span {
16125
16409
  }
16126
16410
 
16127
16411
  a.bg-primary:hover {
16128
- background: #0e7ed6;
16412
+ background: #0e58ee;
16129
16413
  }
16130
16414
 
16131
16415
  a.text-primary:hover {
16132
- color: #0e7ed6;
16416
+ color: #0e58ee;
16133
16417
  }
16134
16418
 
16135
16419
  .text-primary {
16136
- color: #108cee;
16420
+ color: #2468f2;
16137
16421
  }
16138
16422
 
16139
16423
  .text-primary-lt {
16140
- color: #0e7ed6;
16424
+ color: #0e58ee;
16141
16425
  }
16142
16426
 
16143
16427
  .text-primary-lter {
16144
- color: #0d70be;
16428
+ color: #0d4fd6;
16145
16429
  }
16146
16430
 
16147
16431
  .text-primary-dk {
16148
- color: #0e7ed6;
16432
+ color: #0e58ee;
16149
16433
  }
16150
16434
 
16151
16435
  .text-primary-dker {
16152
- color: #0d70be;
16436
+ color: #0d4fd6;
16153
16437
  }
16154
16438
 
16155
16439
  a.bg-info:hover {
16156
- background: #0e7ed6;
16440
+ background: #0e58ee;
16157
16441
  }
16158
16442
 
16159
16443
  a.text-info:hover {
16160
- color: #0e7ed6;
16444
+ color: #0e58ee;
16161
16445
  }
16162
16446
 
16163
16447
  .text-info {
16164
- color: #108cee;
16448
+ color: #2468f2;
16165
16449
  }
16166
16450
 
16167
16451
  .text-info-lt {
16168
- color: #0e7ed6;
16452
+ color: #0e58ee;
16169
16453
  }
16170
16454
 
16171
16455
  .text-info-lter {
16172
- color: #0d70be;
16456
+ color: #0d4fd6;
16173
16457
  }
16174
16458
 
16175
16459
  .text-info-dk {
16176
- color: #0e7ed6;
16460
+ color: #0e58ee;
16177
16461
  }
16178
16462
 
16179
16463
  .text-info-dker {
16180
- color: #0d70be;
16464
+ color: #0d4fd6;
16181
16465
  }
16182
16466
 
16183
16467
  a.bg-success:hover {