@flywheel-io/vision 0.2.4 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/bundles/flywheel-io-vision-elements.umd.js +12 -3
  2. package/bundles/flywheel-io-vision-elements.umd.js.map +1 -1
  3. package/bundles/flywheel-io-vision-elements.umd.min.js +1 -15
  4. package/bundles/flywheel-io-vision-elements.umd.min.js.map +1 -1
  5. package/bundles/flywheel-io-vision.umd.js +431 -25
  6. package/bundles/flywheel-io-vision.umd.js.map +1 -1
  7. package/bundles/flywheel-io-vision.umd.min.js +1 -16
  8. package/bundles/flywheel-io-vision.umd.min.js.map +1 -1
  9. package/components/dialog/choice-dialog.component.d.ts +24 -0
  10. package/components/dialog/confirm-dialog.component.d.ts +12 -0
  11. package/components/dialog/dialog.module.d.ts +2 -0
  12. package/components/dialog/dialog.service.d.ts +19 -0
  13. package/components/dialog/error-dialog.component.d.ts +10 -0
  14. package/components/dialog/portal-dialog.component.d.ts +25 -0
  15. package/components/notification/notification-container/notification-container.component.d.ts +2 -2
  16. package/components/shared/pipes/pipes.module.d.ts +4 -0
  17. package/components/shared/pipes/translate.pipe.d.ts +15 -0
  18. package/components/shared/pipes/trusthtml.pipe.d.ts +7 -0
  19. package/components/shared/translation.service.d.ts +11 -0
  20. package/esm2015/components/dialog/choice-dialog.component.js +52 -0
  21. package/esm2015/components/dialog/confirm-dialog.component.js +40 -0
  22. package/esm2015/components/dialog/dialog.module.js +45 -0
  23. package/esm2015/components/dialog/dialog.service.js +69 -0
  24. package/esm2015/components/dialog/error-dialog.component.js +32 -0
  25. package/esm2015/components/dialog/portal-dialog.component.js +88 -0
  26. package/esm2015/components/notification/notification/notification.component.js +3 -3
  27. package/esm2015/components/notification/notification-container/notification-container.component.js +17 -16
  28. package/esm2015/components/popover/popover.component.js +1 -1
  29. package/esm2015/components/shared/pipes/pipes.module.js +24 -0
  30. package/esm2015/components/shared/pipes/translate.pipe.js +40 -0
  31. package/esm2015/components/shared/pipes/trusthtml.pipe.js +20 -0
  32. package/esm2015/components/shared/translation.service.js +22 -0
  33. package/esm2015/flywheel-io-vision.js +5 -2
  34. package/esm2015/public-api.js +8 -1
  35. package/fesm2015/flywheel-io-vision.js +420 -23
  36. package/fesm2015/flywheel-io-vision.js.map +1 -1
  37. package/flywheel-io-vision.d.ts +4 -1
  38. package/flywheel-io-vision.metadata.json +1 -1
  39. package/package.json +12 -12
  40. package/public-api.d.ts +7 -0
  41. package/scss/config/colors.scss +87 -87
  42. package/scss/config/config.scss +1 -1
  43. package/scss/config/theme.scss +34 -34
  44. package/scss/material/overrides.scss +8 -20
  45. package/styles.css +452 -366
  46. package/styles.scss +11 -13
package/styles.css CHANGED
@@ -2,60 +2,6 @@
2
2
  @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
3
3
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700");
4
4
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600");
5
- /* http://meyerweb.com/eric/tools/css/reset/
6
- v2.0 | 20110126
7
- License: none (public domain)
8
- */
9
- html, body, div, span, applet, object, iframe,
10
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
11
- a, abbr, acronym, address, big, cite, code,
12
- del, dfn, em, img, ins, kbd, q, s, samp,
13
- small, strike, strong, sub, sup, tt, var,
14
- b, u, i, center,
15
- dl, dt, dd, ol, ul, li,
16
- fieldset, form, label, legend,
17
- table, caption, tbody, tfoot, thead, tr, th, td,
18
- article, aside, canvas, details, embed,
19
- figure, figcaption, footer, header, hgroup,
20
- menu, nav, output, ruby, section, summary,
21
- time, mark, audio, video {
22
- margin: 0;
23
- padding: 0;
24
- border: 0;
25
- font-size: 100%;
26
- font: inherit;
27
- vertical-align: baseline;
28
- }
29
-
30
- /* HTML5 display-role reset for older browsers */
31
- article, aside, details, figcaption, figure,
32
- footer, header, hgroup, menu, nav, section {
33
- display: block;
34
- }
35
-
36
- body {
37
- line-height: 1;
38
- }
39
-
40
- ol, ul {
41
- list-style: none;
42
- }
43
-
44
- blockquote, q {
45
- quotes: none;
46
- }
47
-
48
- blockquote:before, blockquote:after,
49
- q:before, q:after {
50
- content: "";
51
- content: none;
52
- }
53
-
54
- table {
55
- border-collapse: collapse;
56
- border-spacing: 0;
57
- }
58
-
59
5
  /* Colors for the ripple elements.*/
60
6
  /* stylelint-disable-next-line material/theme-mixin-api */
61
7
  /* stylelint-disable-next-line material/theme-mixin-api */
@@ -719,12 +665,8 @@ input.mat-input-element {
719
665
  overflow-y: scroll;
720
666
  }
721
667
 
722
- @keyframes cdk-text-field-autofill-start {
723
- /*!*/
724
- }
725
- @keyframes cdk-text-field-autofill-end {
726
- /*!*/
727
- }
668
+ @keyframes cdk-text-field-autofill-start { /*!*/ }
669
+ @keyframes cdk-text-field-autofill-end { /*!*/ }
728
670
  .cdk-text-field-autofill-monitored:-webkit-autofill {
729
671
  animation: cdk-text-field-autofill-start 0s 1ms;
730
672
  }
@@ -780,7 +722,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
780
722
  }
781
723
 
782
724
  .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
783
- color: #2e72f6;
725
+ color: #1b68fa;
784
726
  }
785
727
 
786
728
  .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
@@ -812,7 +754,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
812
754
 
813
755
  .mat-primary .mat-pseudo-checkbox-checked,
814
756
  .mat-primary .mat-pseudo-checkbox-indeterminate {
815
- background: #2e72f6;
757
+ background: #1b68fa;
816
758
  }
817
759
 
818
760
  .mat-pseudo-checkbox-checked,
@@ -957,7 +899,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
957
899
 
958
900
  .mat-badge-content {
959
901
  color: white;
960
- background: #2e72f6;
902
+ background: #1b68fa;
961
903
  }
962
904
  .cdk-high-contrast-active .mat-badge-content {
963
905
  outline: solid 1px;
@@ -1140,7 +1082,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
1140
1082
  background: transparent;
1141
1083
  }
1142
1084
  .mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
1143
- color: #2e72f6;
1085
+ color: #1b68fa;
1144
1086
  }
1145
1087
  .mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
1146
1088
  color: #59b96b;
@@ -1152,7 +1094,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
1152
1094
  color: rgba(0, 0, 0, 0.26);
1153
1095
  }
1154
1096
  .mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
1155
- background-color: #2e72f6;
1097
+ background-color: #1b68fa;
1156
1098
  }
1157
1099
  .mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
1158
1100
  background-color: #59b96b;
@@ -1193,7 +1135,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
1193
1135
  color: rgba(0, 0, 0, 0.26);
1194
1136
  }
1195
1137
  .mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
1196
- background-color: #2e72f6;
1138
+ background-color: #1b68fa;
1197
1139
  }
1198
1140
  .mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
1199
1141
  background-color: #59b96b;
@@ -1338,7 +1280,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
1338
1280
  }
1339
1281
 
1340
1282
  .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
1341
- background-color: #2e72f6;
1283
+ background-color: #1b68fa;
1342
1284
  }
1343
1285
  .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
1344
1286
  background-color: #59b96b;
@@ -1363,7 +1305,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
1363
1305
 
1364
1306
  .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
1365
1307
  .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
1366
- background: #2e72f6;
1308
+ background: #1b68fa;
1367
1309
  }
1368
1310
  .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
1369
1311
  .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
@@ -1396,7 +1338,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
1396
1338
  }
1397
1339
 
1398
1340
  .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
1399
- background-color: #2e72f6;
1341
+ background-color: #1b68fa;
1400
1342
  color: white;
1401
1343
  }
1402
1344
  .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
@@ -1502,7 +1444,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1502
1444
  }
1503
1445
 
1504
1446
  .mat-calendar-body-in-range::before {
1505
- background: rgba(46, 114, 246, 0.2);
1447
+ background: rgba(27, 104, 250, 0.2);
1506
1448
  }
1507
1449
 
1508
1450
  .mat-calendar-body-comparison-identical,
@@ -1512,12 +1454,12 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1512
1454
 
1513
1455
  .mat-calendar-body-comparison-bridge-start::before,
1514
1456
  [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
1515
- background: linear-gradient(to right, rgba(46, 114, 246, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
1457
+ background: linear-gradient(to right, rgba(27, 104, 250, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
1516
1458
  }
1517
1459
 
1518
1460
  .mat-calendar-body-comparison-bridge-end::before,
1519
1461
  [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
1520
- background: linear-gradient(to left, rgba(46, 114, 246, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
1462
+ background: linear-gradient(to left, rgba(27, 104, 250, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
1521
1463
  }
1522
1464
 
1523
1465
  .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
@@ -1531,12 +1473,12 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1531
1473
  }
1532
1474
 
1533
1475
  .mat-calendar-body-selected {
1534
- background-color: #2e72f6;
1476
+ background-color: #1b68fa;
1535
1477
  color: white;
1536
1478
  }
1537
1479
 
1538
1480
  .mat-calendar-body-disabled > .mat-calendar-body-selected {
1539
- background-color: rgba(46, 114, 246, 0.4);
1481
+ background-color: rgba(27, 104, 250, 0.4);
1540
1482
  }
1541
1483
 
1542
1484
  .mat-calendar-body-today.mat-calendar-body-selected {
@@ -1546,7 +1488,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1546
1488
  .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
1547
1489
  .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
1548
1490
  .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
1549
- background-color: rgba(46, 114, 246, 0.3);
1491
+ background-color: rgba(27, 104, 250, 0.3);
1550
1492
  }
1551
1493
 
1552
1494
  .mat-datepicker-content {
@@ -1636,7 +1578,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1636
1578
  }
1637
1579
 
1638
1580
  .mat-datepicker-toggle-active {
1639
- color: #2e72f6;
1581
+ color: #1b68fa;
1640
1582
  }
1641
1583
  .mat-datepicker-toggle-active.mat-accent {
1642
1584
  color: #59b96b;
@@ -1717,7 +1659,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1717
1659
  }
1718
1660
 
1719
1661
  .mat-form-field.mat-focused .mat-form-field-label {
1720
- color: #2e72f6;
1662
+ color: #1b68fa;
1721
1663
  }
1722
1664
  .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
1723
1665
  color: #59b96b;
@@ -1735,7 +1677,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1735
1677
  }
1736
1678
 
1737
1679
  .mat-form-field.mat-focused .mat-form-field-ripple {
1738
- background-color: #2e72f6;
1680
+ background-color: #1b68fa;
1739
1681
  }
1740
1682
  .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
1741
1683
  background-color: #59b96b;
@@ -1745,7 +1687,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1745
1687
  }
1746
1688
 
1747
1689
  .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
1748
- color: #2e72f6;
1690
+ color: #1b68fa;
1749
1691
  }
1750
1692
  .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
1751
1693
  color: #59b96b;
@@ -1817,7 +1759,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1817
1759
  color: rgba(0, 0, 0, 0.87);
1818
1760
  }
1819
1761
  .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
1820
- color: #2e72f6;
1762
+ color: #1b68fa;
1821
1763
  }
1822
1764
  .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
1823
1765
  color: #59b96b;
@@ -1836,7 +1778,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1836
1778
  }
1837
1779
 
1838
1780
  .mat-icon.mat-primary {
1839
- color: #2e72f6;
1781
+ color: #1b68fa;
1840
1782
  }
1841
1783
  .mat-icon.mat-accent {
1842
1784
  color: #59b96b;
@@ -1855,7 +1797,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1855
1797
  }
1856
1798
 
1857
1799
  .mat-input-element {
1858
- caret-color: #2e72f6;
1800
+ caret-color: #1b68fa;
1859
1801
  }
1860
1802
  .mat-input-element::placeholder {
1861
1803
  color: rgba(0, 0, 0, 0.42);
@@ -1969,15 +1911,15 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
1969
1911
  }
1970
1912
 
1971
1913
  .mat-progress-bar-background {
1972
- fill: #c0d5fc;
1914
+ fill: #bbd2fe;
1973
1915
  }
1974
1916
 
1975
1917
  .mat-progress-bar-buffer {
1976
- background-color: #c0d5fc;
1918
+ background-color: #bbd2fe;
1977
1919
  }
1978
1920
 
1979
1921
  .mat-progress-bar-fill::after {
1980
- background-color: #2e72f6;
1922
+ background-color: #1b68fa;
1981
1923
  }
1982
1924
 
1983
1925
  .mat-progress-bar.mat-accent .mat-progress-bar-background {
@@ -2001,7 +1943,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2001
1943
  }
2002
1944
 
2003
1945
  .mat-progress-spinner circle, .mat-spinner circle {
2004
- stroke: #2e72f6;
1946
+ stroke: #1b68fa;
2005
1947
  }
2006
1948
  .mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
2007
1949
  stroke: #59b96b;
@@ -2015,11 +1957,11 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2015
1957
  }
2016
1958
 
2017
1959
  .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
2018
- border-color: #2e72f6;
1960
+ border-color: #1b68fa;
2019
1961
  }
2020
1962
  .mat-radio-button.mat-primary .mat-radio-inner-circle,
2021
1963
  .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
2022
- background-color: #2e72f6;
1964
+ background-color: #1b68fa;
2023
1965
  }
2024
1966
  .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
2025
1967
  border-color: #59b96b;
@@ -2077,7 +2019,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2077
2019
  }
2078
2020
 
2079
2021
  .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
2080
- color: #2e72f6;
2022
+ color: #1b68fa;
2081
2023
  }
2082
2024
  .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
2083
2025
  color: #59b96b;
@@ -2139,13 +2081,13 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2139
2081
  background-color: #59b96b;
2140
2082
  }
2141
2083
  .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
2142
- background-color: #2e72f6;
2084
+ background-color: #1b68fa;
2143
2085
  }
2144
2086
  .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
2145
- background-color: rgba(46, 114, 246, 0.54);
2087
+ background-color: rgba(27, 104, 250, 0.54);
2146
2088
  }
2147
2089
  .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
2148
- background-color: #2e72f6;
2090
+ background-color: #1b68fa;
2149
2091
  }
2150
2092
  .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
2151
2093
  background-color: #d9534b;
@@ -2176,13 +2118,13 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2176
2118
  .mat-primary .mat-slider-track-fill,
2177
2119
  .mat-primary .mat-slider-thumb,
2178
2120
  .mat-primary .mat-slider-thumb-label {
2179
- background-color: #2e72f6;
2121
+ background-color: #1b68fa;
2180
2122
  }
2181
2123
  .mat-primary .mat-slider-thumb-label-text {
2182
2124
  color: white;
2183
2125
  }
2184
2126
  .mat-primary .mat-slider-focus-ring {
2185
- background-color: rgba(46, 114, 246, 0.2);
2127
+ background-color: rgba(27, 104, 250, 0.2);
2186
2128
  }
2187
2129
 
2188
2130
  .mat-accent .mat-slider-track-fill,
@@ -2277,7 +2219,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2277
2219
  .mat-step-header .mat-step-icon-selected,
2278
2220
  .mat-step-header .mat-step-icon-state-done,
2279
2221
  .mat-step-header .mat-step-icon-state-edit {
2280
- background-color: #2e72f6;
2222
+ background-color: #1b68fa;
2281
2223
  color: white;
2282
2224
  }
2283
2225
  .mat-step-header.mat-accent .mat-step-icon {
@@ -2386,10 +2328,10 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2386
2328
  .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
2387
2329
  .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
2388
2330
  .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
2389
- background-color: rgba(192, 213, 252, 0.3);
2331
+ background-color: rgba(187, 210, 254, 0.3);
2390
2332
  }
2391
2333
  .mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
2392
- background-color: #2e72f6;
2334
+ background-color: #1b68fa;
2393
2335
  }
2394
2336
  .mat-tab-group.mat-primary.mat-background-primary > .mat-tab-header .mat-ink-bar, .mat-tab-group.mat-primary.mat-background-primary > .mat-tab-link-container .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary > .mat-tab-header .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary > .mat-tab-link-container .mat-ink-bar {
2395
2337
  background-color: white;
@@ -2425,10 +2367,10 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2425
2367
  .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
2426
2368
  .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
2427
2369
  .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
2428
- background-color: rgba(192, 213, 252, 0.3);
2370
+ background-color: rgba(187, 210, 254, 0.3);
2429
2371
  }
2430
2372
  .mat-tab-group.mat-background-primary > .mat-tab-header, .mat-tab-group.mat-background-primary > .mat-tab-link-container, .mat-tab-group.mat-background-primary > .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header, .mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination {
2431
- background-color: #2e72f6;
2373
+ background-color: #1b68fa;
2432
2374
  }
2433
2375
  .mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-label, .mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-tab-link, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-label, .mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-tab-link {
2434
2376
  color: white;
@@ -2519,7 +2461,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2519
2461
  color: rgba(0, 0, 0, 0.87);
2520
2462
  }
2521
2463
  .mat-toolbar.mat-primary {
2522
- background: #2e72f6;
2464
+ background: #1b68fa;
2523
2465
  color: white;
2524
2466
  }
2525
2467
  .mat-toolbar.mat-accent {
@@ -2558,7 +2500,6 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2558
2500
  .mat-toolbar-multiple-rows {
2559
2501
  min-height: 56px;
2560
2502
  }
2561
-
2562
2503
  .mat-toolbar-row, .mat-toolbar-single-row {
2563
2504
  height: 56px;
2564
2505
  }
@@ -2607,10 +2548,10 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2607
2548
  }
2608
2549
 
2609
2550
  .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
2610
- background-color: #2e72f6;
2551
+ background-color: #1b68fa;
2611
2552
  }
2612
2553
  .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
2613
- background-color: #2e72f6;
2554
+ background-color: #1b68fa;
2614
2555
  }
2615
2556
  .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {
2616
2557
  background-color: #d9534b;
@@ -2632,34 +2573,67 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2632
2573
 
2633
2574
  .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
2634
2575
  .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
2635
- background: #2e72f6;
2576
+ background: #1b68fa;
2636
2577
  }
2637
2578
  .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
2638
2579
  .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
2639
- background: #2e72f6;
2580
+ background: #1b68fa;
2640
2581
  }
2641
2582
  .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
2642
2583
  .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
2643
2584
  background: #d9534b;
2644
2585
  }
2645
2586
 
2587
+ .mat-pseudo-checkbox {
2588
+ color: rgba(0, 0, 0, 0.54);
2589
+ }
2590
+ .mat-pseudo-checkbox::after {
2591
+ color: #fafafa;
2592
+ }
2593
+
2594
+ .mat-pseudo-checkbox-disabled {
2595
+ color: #b0b0b0;
2596
+ }
2597
+
2598
+ .mat-primary .mat-pseudo-checkbox-checked,
2599
+ .mat-primary .mat-pseudo-checkbox-indeterminate {
2600
+ background: #1b68fa;
2601
+ }
2602
+
2603
+ .mat-pseudo-checkbox-checked,
2604
+ .mat-pseudo-checkbox-indeterminate,
2605
+ .mat-accent .mat-pseudo-checkbox-checked,
2606
+ .mat-accent .mat-pseudo-checkbox-indeterminate {
2607
+ background: #1b68fa;
2608
+ }
2609
+
2610
+ .mat-warn .mat-pseudo-checkbox-checked,
2611
+ .mat-warn .mat-pseudo-checkbox-indeterminate {
2612
+ background: #d9534b;
2613
+ }
2614
+
2615
+ .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
2616
+ .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
2617
+ background: #b0b0b0;
2618
+ }
2619
+
2646
2620
  .mat-radio-outer-circle {
2647
2621
  border-color: rgba(0, 0, 0, 0.54);
2648
2622
  }
2649
2623
 
2650
2624
  .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
2651
- border-color: #2e72f6;
2625
+ border-color: #1b68fa;
2652
2626
  }
2653
2627
  .mat-radio-button.mat-primary .mat-radio-inner-circle,
2654
2628
  .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
2655
- background-color: #2e72f6;
2629
+ background-color: #1b68fa;
2656
2630
  }
2657
2631
  .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
2658
- border-color: #2e72f6;
2632
+ border-color: #1b68fa;
2659
2633
  }
2660
2634
  .mat-radio-button.mat-accent .mat-radio-inner-circle,
2661
2635
  .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
2662
- background-color: #2e72f6;
2636
+ background-color: #1b68fa;
2663
2637
  }
2664
2638
  .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
2665
2639
  border-color: #d9534b;
@@ -2684,22 +2658,22 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2684
2658
  }
2685
2659
 
2686
2660
  .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
2687
- background-color: #2e72f6;
2661
+ background-color: #1b68fa;
2688
2662
  }
2689
2663
  .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
2690
- background-color: rgba(46, 114, 246, 0.54);
2664
+ background-color: rgba(27, 104, 250, 0.54);
2691
2665
  }
2692
2666
  .mat-slide-toggle.mat-checked .mat-ripple-element {
2693
- background-color: #2e72f6;
2667
+ background-color: #1b68fa;
2694
2668
  }
2695
2669
  .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
2696
- background-color: #2e72f6;
2670
+ background-color: #1b68fa;
2697
2671
  }
2698
2672
  .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
2699
- background-color: rgba(46, 114, 246, 0.54);
2673
+ background-color: rgba(27, 104, 250, 0.54);
2700
2674
  }
2701
2675
  .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
2702
- background-color: #2e72f6;
2676
+ background-color: #1b68fa;
2703
2677
  }
2704
2678
  .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
2705
2679
  background-color: #d9534b;
@@ -2730,25 +2704,25 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2730
2704
  .mat-primary .mat-slider-track-fill,
2731
2705
  .mat-primary .mat-slider-thumb,
2732
2706
  .mat-primary .mat-slider-thumb-label {
2733
- background-color: #2e72f6;
2707
+ background-color: #1b68fa;
2734
2708
  }
2735
2709
  .mat-primary .mat-slider-thumb-label-text {
2736
2710
  color: white;
2737
2711
  }
2738
2712
  .mat-primary .mat-slider-focus-ring {
2739
- background-color: rgba(46, 114, 246, 0.2);
2713
+ background-color: rgba(27, 104, 250, 0.2);
2740
2714
  }
2741
2715
 
2742
2716
  .mat-accent .mat-slider-track-fill,
2743
2717
  .mat-accent .mat-slider-thumb,
2744
2718
  .mat-accent .mat-slider-thumb-label {
2745
- background-color: #2e72f6;
2719
+ background-color: #1b68fa;
2746
2720
  }
2747
2721
  .mat-accent .mat-slider-thumb-label-text {
2748
2722
  color: white;
2749
2723
  }
2750
2724
  .mat-accent .mat-slider-focus-ring {
2751
- background-color: rgba(46, 114, 246, 0.2);
2725
+ background-color: rgba(27, 104, 250, 0.2);
2752
2726
  }
2753
2727
 
2754
2728
  .mat-warn .mat-slider-track-fill,
@@ -2812,6 +2786,11 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
2812
2786
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
2813
2787
  }
2814
2788
 
2789
+ /* Colors for the ripple elements.*/
2790
+ /* stylelint-disable-next-line material/theme-mixin-api */
2791
+ /* stylelint-disable-next-line material/theme-mixin-api */
2792
+ /* stylelint-disable material/no-prefixes */
2793
+ /* stylelint-enable */
2815
2794
  .white {
2816
2795
  color: #ffffff !important;
2817
2796
  }
@@ -3101,35 +3080,99 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
3101
3080
  }
3102
3081
 
3103
3082
  .bright-blue {
3104
- color: #2e72f6 !important;
3083
+ color: #1b68fa !important;
3105
3084
  }
3106
3085
 
3107
3086
  .fill-bright-blue {
3108
- background-color: #2e72f6 !important;
3087
+ background-color: #1b68fa !important;
3109
3088
  }
3110
3089
 
3111
3090
  .border-bright-blue {
3112
- border-color: #2e72f6 !important;
3091
+ border-color: #1b68fa !important;
3113
3092
  }
3114
3093
 
3115
3094
  .border-top-bright-blue {
3116
3095
  border-top: 1px solid;
3117
- border-color: #2e72f6 !important;
3096
+ border-color: #1b68fa !important;
3118
3097
  }
3119
3098
 
3120
3099
  .border-right-bright-blue {
3121
3100
  border-right: 1px solid;
3122
- border-color: #2e72f6 !important;
3101
+ border-color: #1b68fa !important;
3123
3102
  }
3124
3103
 
3125
3104
  .border-bottom-bright-blue {
3126
3105
  border-bottom: 1px solid;
3127
- border-color: #2e72f6 !important;
3106
+ border-color: #1b68fa !important;
3128
3107
  }
3129
3108
 
3130
3109
  .border-left-bright-blue {
3131
3110
  border-left: 1px solid;
3132
- border-color: #2e72f6 !important;
3111
+ border-color: #1b68fa !important;
3112
+ }
3113
+
3114
+ .admin-black {
3115
+ color: #01010a !important;
3116
+ }
3117
+
3118
+ .fill-admin-black {
3119
+ background-color: #01010a !important;
3120
+ }
3121
+
3122
+ .border-admin-black {
3123
+ border-color: #01010a !important;
3124
+ }
3125
+
3126
+ .border-top-admin-black {
3127
+ border-top: 1px solid;
3128
+ border-color: #01010a !important;
3129
+ }
3130
+
3131
+ .border-right-admin-black {
3132
+ border-right: 1px solid;
3133
+ border-color: #01010a !important;
3134
+ }
3135
+
3136
+ .border-bottom-admin-black {
3137
+ border-bottom: 1px solid;
3138
+ border-color: #01010a !important;
3139
+ }
3140
+
3141
+ .border-left-admin-black {
3142
+ border-left: 1px solid;
3143
+ border-color: #01010a !important;
3144
+ }
3145
+
3146
+ .accent-purple {
3147
+ color: #b080fc !important;
3148
+ }
3149
+
3150
+ .fill-accent-purple {
3151
+ background-color: #b080fc !important;
3152
+ }
3153
+
3154
+ .border-accent-purple {
3155
+ border-color: #b080fc !important;
3156
+ }
3157
+
3158
+ .border-top-accent-purple {
3159
+ border-top: 1px solid;
3160
+ border-color: #b080fc !important;
3161
+ }
3162
+
3163
+ .border-right-accent-purple {
3164
+ border-right: 1px solid;
3165
+ border-color: #b080fc !important;
3166
+ }
3167
+
3168
+ .border-bottom-accent-purple {
3169
+ border-bottom: 1px solid;
3170
+ border-color: #b080fc !important;
3171
+ }
3172
+
3173
+ .border-left-accent-purple {
3174
+ border-left: 1px solid;
3175
+ border-color: #b080fc !important;
3133
3176
  }
3134
3177
 
3135
3178
  .grey {
@@ -3324,217 +3367,209 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
3324
3367
  border-color: #222222 !important;
3325
3368
  }
3326
3369
 
3327
- .iron-grey {
3328
- color: #d3d6db !important;
3370
+ .soft-blue {
3371
+ color: #eff1f5 !important;
3329
3372
  }
3330
3373
 
3331
- .fill-iron-grey {
3332
- background-color: #d3d6db !important;
3374
+ .fill-soft-blue {
3375
+ background-color: #eff1f5 !important;
3333
3376
  }
3334
3377
 
3335
- .border-iron-grey {
3336
- border-color: #d3d6db !important;
3378
+ .border-soft-blue {
3379
+ border-color: #eff1f5 !important;
3337
3380
  }
3338
3381
 
3339
- .border-top-iron-grey {
3382
+ .border-top-soft-blue {
3340
3383
  border-top: 1px solid;
3341
- border-color: #d3d6db !important;
3384
+ border-color: #eff1f5 !important;
3342
3385
  }
3343
3386
 
3344
- .border-right-iron-grey {
3387
+ .border-right-soft-blue {
3345
3388
  border-right: 1px solid;
3346
- border-color: #d3d6db !important;
3389
+ border-color: #eff1f5 !important;
3347
3390
  }
3348
3391
 
3349
- .border-bottom-iron-grey {
3392
+ .border-bottom-soft-blue {
3350
3393
  border-bottom: 1px solid;
3351
- border-color: #d3d6db !important;
3394
+ border-color: #eff1f5 !important;
3352
3395
  }
3353
3396
 
3354
- .border-left-iron-grey {
3397
+ .border-left-soft-blue {
3355
3398
  border-left: 1px solid;
3356
- border-color: #d3d6db !important;
3399
+ border-color: #eff1f5 !important;
3357
3400
  }
3358
3401
 
3359
- .bombay-grey {
3360
- color: #aaacb0 !important;
3402
+ .dark-soft-blue {
3403
+ color: #e9ecf1 !important;
3361
3404
  }
3362
3405
 
3363
- .fill-bombay-grey {
3364
- background-color: #aaacb0 !important;
3406
+ .fill-dark-soft-blue {
3407
+ background-color: #e9ecf1 !important;
3365
3408
  }
3366
3409
 
3367
- .border-bombay-grey {
3368
- border-color: #aaacb0 !important;
3410
+ .border-dark-soft-blue {
3411
+ border-color: #e9ecf1 !important;
3369
3412
  }
3370
3413
 
3371
- .border-top-bombay-grey {
3414
+ .border-top-dark-soft-blue {
3372
3415
  border-top: 1px solid;
3373
- border-color: #aaacb0 !important;
3416
+ border-color: #e9ecf1 !important;
3374
3417
  }
3375
3418
 
3376
- .border-right-bombay-grey {
3419
+ .border-right-dark-soft-blue {
3377
3420
  border-right: 1px solid;
3378
- border-color: #aaacb0 !important;
3421
+ border-color: #e9ecf1 !important;
3379
3422
  }
3380
3423
 
3381
- .border-bottom-bombay-grey {
3424
+ .border-bottom-dark-soft-blue {
3382
3425
  border-bottom: 1px solid;
3383
- border-color: #aaacb0 !important;
3426
+ border-color: #e9ecf1 !important;
3384
3427
  }
3385
3428
 
3386
- .border-left-bombay-grey {
3429
+ .border-left-dark-soft-blue {
3387
3430
  border-left: 1px solid;
3388
- border-color: #aaacb0 !important;
3431
+ border-color: #e9ecf1 !important;
3389
3432
  }
3390
3433
 
3391
- .soft-blue {
3392
- color: #eff1f5 !important;
3434
+ .darker-soft-blue {
3435
+ color: #e6e9ef !important;
3393
3436
  }
3394
3437
 
3395
- .fill-soft-blue {
3396
- background-color: #eff1f5 !important;
3438
+ .fill-darker-soft-blue {
3439
+ background-color: #e6e9ef !important;
3397
3440
  }
3398
3441
 
3399
- .border-soft-blue {
3400
- border-color: #eff1f5 !important;
3442
+ .border-darker-soft-blue {
3443
+ border-color: #e6e9ef !important;
3401
3444
  }
3402
3445
 
3403
- .border-top-soft-blue {
3446
+ .border-top-darker-soft-blue {
3404
3447
  border-top: 1px solid;
3405
- border-color: #eff1f5 !important;
3448
+ border-color: #e6e9ef !important;
3406
3449
  }
3407
3450
 
3408
- .border-right-soft-blue {
3451
+ .border-right-darker-soft-blue {
3409
3452
  border-right: 1px solid;
3410
- border-color: #eff1f5 !important;
3453
+ border-color: #e6e9ef !important;
3411
3454
  }
3412
3455
 
3413
- .border-bottom-soft-blue {
3456
+ .border-bottom-darker-soft-blue {
3414
3457
  border-bottom: 1px solid;
3415
- border-color: #eff1f5 !important;
3458
+ border-color: #e6e9ef !important;
3416
3459
  }
3417
3460
 
3418
- .border-left-soft-blue {
3461
+ .border-left-darker-soft-blue {
3419
3462
  border-left: 1px solid;
3420
- border-color: #eff1f5 !important;
3463
+ border-color: #e6e9ef !important;
3421
3464
  }
3422
3465
 
3423
- .darker-soft-blue {
3424
- color: #e9ecf1 !important;
3466
+ .light-soft-blue {
3467
+ color: #f5f6f9 !important;
3425
3468
  }
3426
3469
 
3427
- .fill-darker-soft-blue {
3428
- background-color: #e9ecf1 !important;
3470
+ .fill-light-soft-blue {
3471
+ background-color: #f5f6f9 !important;
3429
3472
  }
3430
3473
 
3431
- .border-darker-soft-blue {
3432
- border-color: #e9ecf1 !important;
3474
+ .border-light-soft-blue {
3475
+ border-color: #f5f6f9 !important;
3433
3476
  }
3434
3477
 
3435
- .border-top-darker-soft-blue {
3478
+ .border-top-light-soft-blue {
3436
3479
  border-top: 1px solid;
3437
- border-color: #e9ecf1 !important;
3480
+ border-color: #f5f6f9 !important;
3438
3481
  }
3439
3482
 
3440
- .border-right-darker-soft-blue {
3483
+ .border-right-light-soft-blue {
3441
3484
  border-right: 1px solid;
3442
- border-color: #e9ecf1 !important;
3485
+ border-color: #f5f6f9 !important;
3443
3486
  }
3444
3487
 
3445
- .border-bottom-darker-soft-blue {
3488
+ .border-bottom-light-soft-blue {
3446
3489
  border-bottom: 1px solid;
3447
- border-color: #e9ecf1 !important;
3490
+ border-color: #f5f6f9 !important;
3448
3491
  }
3449
3492
 
3450
- .border-left-darker-soft-blue {
3493
+ .border-left-light-soft-blue {
3451
3494
  border-left: 1px solid;
3452
- border-color: #e9ecf1 !important;
3495
+ border-color: #f5f6f9 !important;
3453
3496
  }
3454
3497
 
3455
3498
  .lighter-soft-blue {
3456
- color: #f5f6f9 !important;
3499
+ color: #f8f9fb !important;
3457
3500
  }
3458
3501
 
3459
3502
  .fill-lighter-soft-blue {
3460
- background-color: #f5f6f9 !important;
3503
+ background-color: #f8f9fb !important;
3461
3504
  }
3462
3505
 
3463
3506
  .border-lighter-soft-blue {
3464
- border-color: #f5f6f9 !important;
3507
+ border-color: #f8f9fb !important;
3465
3508
  }
3466
3509
 
3467
3510
  .border-top-lighter-soft-blue {
3468
3511
  border-top: 1px solid;
3469
- border-color: #f5f6f9 !important;
3512
+ border-color: #f8f9fb !important;
3470
3513
  }
3471
3514
 
3472
3515
  .border-right-lighter-soft-blue {
3473
3516
  border-right: 1px solid;
3474
- border-color: #f5f6f9 !important;
3517
+ border-color: #f8f9fb !important;
3475
3518
  }
3476
3519
 
3477
3520
  .border-bottom-lighter-soft-blue {
3478
3521
  border-bottom: 1px solid;
3479
- border-color: #f5f6f9 !important;
3522
+ border-color: #f8f9fb !important;
3480
3523
  }
3481
3524
 
3482
3525
  .border-left-lighter-soft-blue {
3483
3526
  border-left: 1px solid;
3484
- border-color: #f5f6f9 !important;
3527
+ border-color: #f8f9fb !important;
3485
3528
  }
3486
3529
 
3487
3530
  :root {
3488
3531
  --color-gray: var(--color-gray-100);
3489
3532
  --color-gray-50: #f6f7f8;
3490
- --color-gray-100: #EFF1F4;
3491
- --color-gray-200: #E3E5E8;
3492
- --color-gray-300: #D7D9DC;
3493
- --color-gray-400: #CBCDCF;
3494
- --color-gray-500: #BFC1C3;
3495
- --color-primary: var(--color-primary-1000);
3496
- --color-primary-100: #EAF1FE;
3497
- --color-primary-200: #D5E3FD;
3498
- --color-primary-300: #C0D5FC;
3499
- --color-primary-400: #ABC7FB;
3500
- --color-primary-500: #97B9FB;
3501
- --color-primary-600: #82AAFA;
3502
- --color-primary-700: #6DA2FF;
3503
- --color-primary-800: #588EF8;
3504
- --color-primary-900: #4380F7;
3505
- --color-primary-1000: #2E72F6;
3506
- --color-primary-1100: #2967DD;
3507
- --color-primary-1200: #255BC5;
3508
- --color-primary-1300: #2050AC;
3509
- --color-primary-1400: #1C4494;
3510
- --color-primary-1500: #083076;
3511
- --color-primary-1600: #122E62;
3512
- --color-primary-1700: #0E224A;
3513
- --color-primary-1800: #061734;
3514
- --color-primary-1900: #050B19;
3515
- --color-secondary: var(--color-secondary-900);
3516
- --color-secondary-100: #CCF1E4;
3517
- --color-secondary-200: #B3E9D7;
3518
- --color-secondary-300: #99E2C9;
3519
- --color-secondary-400: #80DBBC;
3520
- --color-secondary-500: #66D4AE;
3521
- --color-secondary-600: #4DCDA1;
3522
- --color-secondary-700: #33C593;
3523
- --color-secondary-800: #1ABE86;
3524
- --color-secondary-900: #00B778;
3525
- --color-secondary-1000: #00A56C;
3526
- --color-secondary-1100: #009260;
3527
- --color-secondary-1200: #008054;
3528
- --color-secondary-1300: #006E48;
3529
- --color-secondary-1400: #005C3C;
3530
- --color-secondary-1500: #004930;
3531
- --color-secondary-1600: #002518;
3532
- --color-secondary-1700: #00120C;
3533
+ --color-gray-100: #eff1f4;
3534
+ --color-gray-200: #e3e5e8;
3535
+ --color-gray-300: #d7d9dc;
3536
+ --color-gray-400: #cbcdcf;
3537
+ --color-gray-500: #bfc1c3;
3538
+ --color-primary: var(--color-primary-500);
3539
+ --color-primary-50: #e4edfe;
3540
+ --color-primary-100: #bbd2fe;
3541
+ --color-primary-200: #8db4fd;
3542
+ --color-primary-300: #5f95fc;
3543
+ --color-primary-400: #3d7ffb;
3544
+ --color-primary-500: #1b68fa;
3545
+ --color-primary-600: #1860f9;
3546
+ --color-primary-700: #1455f9;
3547
+ --color-primary-800: #104bf8;
3548
+ --color-primary-900: #083af6;
3549
+ --color-primary-A100: #ffffff;
3550
+ --color-primary-A200: #ebefff;
3551
+ --color-primary-A400: #b8c4ff;
3552
+ --color-primary-A700: #9fafff;
3553
+ --color-secondary: var(--color-secondary-500);
3554
+ --color-secondary-50: #ebf7ed;
3555
+ --color-secondary-100: #cdead3;
3556
+ --color-secondary-200: #acdcb5;
3557
+ --color-secondary-300: #8bce97;
3558
+ --color-secondary-400: #72c481;
3559
+ --color-secondary-500: #59b96b;
3560
+ --color-secondary-600: #51b263;
3561
+ --color-secondary-700: #48aa58;
3562
+ --color-secondary-800: #3ea24e;
3563
+ --color-secondary-900: #2e933c;
3564
+ --color-secondary-A100: #d9ffde;
3565
+ --color-secondary-A200: #a6ffb1;
3566
+ --color-secondary-A400: #73ff84;
3567
+ --color-secondary-A700: #59ff6e;
3533
3568
  }
3534
3569
 
3535
3570
  :root {
3536
- --font-primary: Helvetica Neue, Helvetica, arial, sans-serif;
3537
- --font-secondary: Roboto, Helvetica Neue, Helvetica, arial, sans-serif;
3571
+ --font-primary: Helvetica Neue, Helvetica, Arial, sans-serif;
3572
+ --font-secondary: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
3538
3573
  --sidebar-width: 55px;
3539
3574
  --menu-bar-width: 180px;
3540
3575
  --page-layout-padding: 235px;
@@ -3563,6 +3598,11 @@ html, body {
3563
3598
  height: 100%;
3564
3599
  }
3565
3600
 
3601
+ /* Colors for the ripple elements.*/
3602
+ /* stylelint-disable-next-line material/theme-mixin-api */
3603
+ /* stylelint-disable-next-line material/theme-mixin-api */
3604
+ /* stylelint-disable material/no-prefixes */
3605
+ /* stylelint-enable */
3566
3606
  .white {
3567
3607
  color: #ffffff !important;
3568
3608
  }
@@ -3852,35 +3892,99 @@ html, body {
3852
3892
  }
3853
3893
 
3854
3894
  .bright-blue {
3855
- color: #2e72f6 !important;
3895
+ color: #1b68fa !important;
3856
3896
  }
3857
3897
 
3858
3898
  .fill-bright-blue {
3859
- background-color: #2e72f6 !important;
3899
+ background-color: #1b68fa !important;
3860
3900
  }
3861
3901
 
3862
3902
  .border-bright-blue {
3863
- border-color: #2e72f6 !important;
3903
+ border-color: #1b68fa !important;
3864
3904
  }
3865
3905
 
3866
3906
  .border-top-bright-blue {
3867
3907
  border-top: 1px solid;
3868
- border-color: #2e72f6 !important;
3908
+ border-color: #1b68fa !important;
3869
3909
  }
3870
3910
 
3871
3911
  .border-right-bright-blue {
3872
3912
  border-right: 1px solid;
3873
- border-color: #2e72f6 !important;
3913
+ border-color: #1b68fa !important;
3874
3914
  }
3875
3915
 
3876
3916
  .border-bottom-bright-blue {
3877
3917
  border-bottom: 1px solid;
3878
- border-color: #2e72f6 !important;
3918
+ border-color: #1b68fa !important;
3879
3919
  }
3880
3920
 
3881
3921
  .border-left-bright-blue {
3882
3922
  border-left: 1px solid;
3883
- border-color: #2e72f6 !important;
3923
+ border-color: #1b68fa !important;
3924
+ }
3925
+
3926
+ .admin-black {
3927
+ color: #01010a !important;
3928
+ }
3929
+
3930
+ .fill-admin-black {
3931
+ background-color: #01010a !important;
3932
+ }
3933
+
3934
+ .border-admin-black {
3935
+ border-color: #01010a !important;
3936
+ }
3937
+
3938
+ .border-top-admin-black {
3939
+ border-top: 1px solid;
3940
+ border-color: #01010a !important;
3941
+ }
3942
+
3943
+ .border-right-admin-black {
3944
+ border-right: 1px solid;
3945
+ border-color: #01010a !important;
3946
+ }
3947
+
3948
+ .border-bottom-admin-black {
3949
+ border-bottom: 1px solid;
3950
+ border-color: #01010a !important;
3951
+ }
3952
+
3953
+ .border-left-admin-black {
3954
+ border-left: 1px solid;
3955
+ border-color: #01010a !important;
3956
+ }
3957
+
3958
+ .accent-purple {
3959
+ color: #b080fc !important;
3960
+ }
3961
+
3962
+ .fill-accent-purple {
3963
+ background-color: #b080fc !important;
3964
+ }
3965
+
3966
+ .border-accent-purple {
3967
+ border-color: #b080fc !important;
3968
+ }
3969
+
3970
+ .border-top-accent-purple {
3971
+ border-top: 1px solid;
3972
+ border-color: #b080fc !important;
3973
+ }
3974
+
3975
+ .border-right-accent-purple {
3976
+ border-right: 1px solid;
3977
+ border-color: #b080fc !important;
3978
+ }
3979
+
3980
+ .border-bottom-accent-purple {
3981
+ border-bottom: 1px solid;
3982
+ border-color: #b080fc !important;
3983
+ }
3984
+
3985
+ .border-left-accent-purple {
3986
+ border-left: 1px solid;
3987
+ border-color: #b080fc !important;
3884
3988
  }
3885
3989
 
3886
3990
  .grey {
@@ -4075,212 +4179,204 @@ html, body {
4075
4179
  border-color: #222222 !important;
4076
4180
  }
4077
4181
 
4078
- .iron-grey {
4079
- color: #d3d6db !important;
4182
+ .soft-blue {
4183
+ color: #eff1f5 !important;
4080
4184
  }
4081
4185
 
4082
- .fill-iron-grey {
4083
- background-color: #d3d6db !important;
4186
+ .fill-soft-blue {
4187
+ background-color: #eff1f5 !important;
4084
4188
  }
4085
4189
 
4086
- .border-iron-grey {
4087
- border-color: #d3d6db !important;
4190
+ .border-soft-blue {
4191
+ border-color: #eff1f5 !important;
4088
4192
  }
4089
4193
 
4090
- .border-top-iron-grey {
4194
+ .border-top-soft-blue {
4091
4195
  border-top: 1px solid;
4092
- border-color: #d3d6db !important;
4196
+ border-color: #eff1f5 !important;
4093
4197
  }
4094
4198
 
4095
- .border-right-iron-grey {
4199
+ .border-right-soft-blue {
4096
4200
  border-right: 1px solid;
4097
- border-color: #d3d6db !important;
4201
+ border-color: #eff1f5 !important;
4098
4202
  }
4099
4203
 
4100
- .border-bottom-iron-grey {
4204
+ .border-bottom-soft-blue {
4101
4205
  border-bottom: 1px solid;
4102
- border-color: #d3d6db !important;
4206
+ border-color: #eff1f5 !important;
4103
4207
  }
4104
4208
 
4105
- .border-left-iron-grey {
4209
+ .border-left-soft-blue {
4106
4210
  border-left: 1px solid;
4107
- border-color: #d3d6db !important;
4211
+ border-color: #eff1f5 !important;
4108
4212
  }
4109
4213
 
4110
- .bombay-grey {
4111
- color: #aaacb0 !important;
4214
+ .dark-soft-blue {
4215
+ color: #e9ecf1 !important;
4112
4216
  }
4113
4217
 
4114
- .fill-bombay-grey {
4115
- background-color: #aaacb0 !important;
4218
+ .fill-dark-soft-blue {
4219
+ background-color: #e9ecf1 !important;
4116
4220
  }
4117
4221
 
4118
- .border-bombay-grey {
4119
- border-color: #aaacb0 !important;
4222
+ .border-dark-soft-blue {
4223
+ border-color: #e9ecf1 !important;
4120
4224
  }
4121
4225
 
4122
- .border-top-bombay-grey {
4226
+ .border-top-dark-soft-blue {
4123
4227
  border-top: 1px solid;
4124
- border-color: #aaacb0 !important;
4228
+ border-color: #e9ecf1 !important;
4125
4229
  }
4126
4230
 
4127
- .border-right-bombay-grey {
4231
+ .border-right-dark-soft-blue {
4128
4232
  border-right: 1px solid;
4129
- border-color: #aaacb0 !important;
4233
+ border-color: #e9ecf1 !important;
4130
4234
  }
4131
4235
 
4132
- .border-bottom-bombay-grey {
4236
+ .border-bottom-dark-soft-blue {
4133
4237
  border-bottom: 1px solid;
4134
- border-color: #aaacb0 !important;
4238
+ border-color: #e9ecf1 !important;
4135
4239
  }
4136
4240
 
4137
- .border-left-bombay-grey {
4241
+ .border-left-dark-soft-blue {
4138
4242
  border-left: 1px solid;
4139
- border-color: #aaacb0 !important;
4243
+ border-color: #e9ecf1 !important;
4140
4244
  }
4141
4245
 
4142
- .soft-blue {
4143
- color: #eff1f5 !important;
4246
+ .darker-soft-blue {
4247
+ color: #e6e9ef !important;
4144
4248
  }
4145
4249
 
4146
- .fill-soft-blue {
4147
- background-color: #eff1f5 !important;
4250
+ .fill-darker-soft-blue {
4251
+ background-color: #e6e9ef !important;
4148
4252
  }
4149
4253
 
4150
- .border-soft-blue {
4151
- border-color: #eff1f5 !important;
4254
+ .border-darker-soft-blue {
4255
+ border-color: #e6e9ef !important;
4152
4256
  }
4153
4257
 
4154
- .border-top-soft-blue {
4258
+ .border-top-darker-soft-blue {
4155
4259
  border-top: 1px solid;
4156
- border-color: #eff1f5 !important;
4260
+ border-color: #e6e9ef !important;
4157
4261
  }
4158
4262
 
4159
- .border-right-soft-blue {
4263
+ .border-right-darker-soft-blue {
4160
4264
  border-right: 1px solid;
4161
- border-color: #eff1f5 !important;
4265
+ border-color: #e6e9ef !important;
4162
4266
  }
4163
4267
 
4164
- .border-bottom-soft-blue {
4268
+ .border-bottom-darker-soft-blue {
4165
4269
  border-bottom: 1px solid;
4166
- border-color: #eff1f5 !important;
4270
+ border-color: #e6e9ef !important;
4167
4271
  }
4168
4272
 
4169
- .border-left-soft-blue {
4273
+ .border-left-darker-soft-blue {
4170
4274
  border-left: 1px solid;
4171
- border-color: #eff1f5 !important;
4275
+ border-color: #e6e9ef !important;
4172
4276
  }
4173
4277
 
4174
- .darker-soft-blue {
4175
- color: #e9ecf1 !important;
4278
+ .light-soft-blue {
4279
+ color: #f5f6f9 !important;
4176
4280
  }
4177
4281
 
4178
- .fill-darker-soft-blue {
4179
- background-color: #e9ecf1 !important;
4282
+ .fill-light-soft-blue {
4283
+ background-color: #f5f6f9 !important;
4180
4284
  }
4181
4285
 
4182
- .border-darker-soft-blue {
4183
- border-color: #e9ecf1 !important;
4286
+ .border-light-soft-blue {
4287
+ border-color: #f5f6f9 !important;
4184
4288
  }
4185
4289
 
4186
- .border-top-darker-soft-blue {
4290
+ .border-top-light-soft-blue {
4187
4291
  border-top: 1px solid;
4188
- border-color: #e9ecf1 !important;
4292
+ border-color: #f5f6f9 !important;
4189
4293
  }
4190
4294
 
4191
- .border-right-darker-soft-blue {
4295
+ .border-right-light-soft-blue {
4192
4296
  border-right: 1px solid;
4193
- border-color: #e9ecf1 !important;
4297
+ border-color: #f5f6f9 !important;
4194
4298
  }
4195
4299
 
4196
- .border-bottom-darker-soft-blue {
4300
+ .border-bottom-light-soft-blue {
4197
4301
  border-bottom: 1px solid;
4198
- border-color: #e9ecf1 !important;
4302
+ border-color: #f5f6f9 !important;
4199
4303
  }
4200
4304
 
4201
- .border-left-darker-soft-blue {
4305
+ .border-left-light-soft-blue {
4202
4306
  border-left: 1px solid;
4203
- border-color: #e9ecf1 !important;
4307
+ border-color: #f5f6f9 !important;
4204
4308
  }
4205
4309
 
4206
4310
  .lighter-soft-blue {
4207
- color: #f5f6f9 !important;
4311
+ color: #f8f9fb !important;
4208
4312
  }
4209
4313
 
4210
4314
  .fill-lighter-soft-blue {
4211
- background-color: #f5f6f9 !important;
4315
+ background-color: #f8f9fb !important;
4212
4316
  }
4213
4317
 
4214
4318
  .border-lighter-soft-blue {
4215
- border-color: #f5f6f9 !important;
4319
+ border-color: #f8f9fb !important;
4216
4320
  }
4217
4321
 
4218
4322
  .border-top-lighter-soft-blue {
4219
4323
  border-top: 1px solid;
4220
- border-color: #f5f6f9 !important;
4324
+ border-color: #f8f9fb !important;
4221
4325
  }
4222
4326
 
4223
4327
  .border-right-lighter-soft-blue {
4224
4328
  border-right: 1px solid;
4225
- border-color: #f5f6f9 !important;
4329
+ border-color: #f8f9fb !important;
4226
4330
  }
4227
4331
 
4228
4332
  .border-bottom-lighter-soft-blue {
4229
4333
  border-bottom: 1px solid;
4230
- border-color: #f5f6f9 !important;
4334
+ border-color: #f8f9fb !important;
4231
4335
  }
4232
4336
 
4233
4337
  .border-left-lighter-soft-blue {
4234
4338
  border-left: 1px solid;
4235
- border-color: #f5f6f9 !important;
4339
+ border-color: #f8f9fb !important;
4236
4340
  }
4237
4341
 
4238
4342
  :root {
4239
4343
  --color-gray: var(--color-gray-100);
4240
4344
  --color-gray-50: #f6f7f8;
4241
- --color-gray-100: #EFF1F4;
4242
- --color-gray-200: #E3E5E8;
4243
- --color-gray-300: #D7D9DC;
4244
- --color-gray-400: #CBCDCF;
4245
- --color-gray-500: #BFC1C3;
4246
- --color-primary: var(--color-primary-1000);
4247
- --color-primary-100: #EAF1FE;
4248
- --color-primary-200: #D5E3FD;
4249
- --color-primary-300: #C0D5FC;
4250
- --color-primary-400: #ABC7FB;
4251
- --color-primary-500: #97B9FB;
4252
- --color-primary-600: #82AAFA;
4253
- --color-primary-700: #6DA2FF;
4254
- --color-primary-800: #588EF8;
4255
- --color-primary-900: #4380F7;
4256
- --color-primary-1000: #2E72F6;
4257
- --color-primary-1100: #2967DD;
4258
- --color-primary-1200: #255BC5;
4259
- --color-primary-1300: #2050AC;
4260
- --color-primary-1400: #1C4494;
4261
- --color-primary-1500: #083076;
4262
- --color-primary-1600: #122E62;
4263
- --color-primary-1700: #0E224A;
4264
- --color-primary-1800: #061734;
4265
- --color-primary-1900: #050B19;
4266
- --color-secondary: var(--color-secondary-900);
4267
- --color-secondary-100: #CCF1E4;
4268
- --color-secondary-200: #B3E9D7;
4269
- --color-secondary-300: #99E2C9;
4270
- --color-secondary-400: #80DBBC;
4271
- --color-secondary-500: #66D4AE;
4272
- --color-secondary-600: #4DCDA1;
4273
- --color-secondary-700: #33C593;
4274
- --color-secondary-800: #1ABE86;
4275
- --color-secondary-900: #00B778;
4276
- --color-secondary-1000: #00A56C;
4277
- --color-secondary-1100: #009260;
4278
- --color-secondary-1200: #008054;
4279
- --color-secondary-1300: #006E48;
4280
- --color-secondary-1400: #005C3C;
4281
- --color-secondary-1500: #004930;
4282
- --color-secondary-1600: #002518;
4283
- --color-secondary-1700: #00120C;
4345
+ --color-gray-100: #eff1f4;
4346
+ --color-gray-200: #e3e5e8;
4347
+ --color-gray-300: #d7d9dc;
4348
+ --color-gray-400: #cbcdcf;
4349
+ --color-gray-500: #bfc1c3;
4350
+ --color-primary: var(--color-primary-500);
4351
+ --color-primary-50: #e4edfe;
4352
+ --color-primary-100: #bbd2fe;
4353
+ --color-primary-200: #8db4fd;
4354
+ --color-primary-300: #5f95fc;
4355
+ --color-primary-400: #3d7ffb;
4356
+ --color-primary-500: #1b68fa;
4357
+ --color-primary-600: #1860f9;
4358
+ --color-primary-700: #1455f9;
4359
+ --color-primary-800: #104bf8;
4360
+ --color-primary-900: #083af6;
4361
+ --color-primary-A100: #ffffff;
4362
+ --color-primary-A200: #ebefff;
4363
+ --color-primary-A400: #b8c4ff;
4364
+ --color-primary-A700: #9fafff;
4365
+ --color-secondary: var(--color-secondary-500);
4366
+ --color-secondary-50: #ebf7ed;
4367
+ --color-secondary-100: #cdead3;
4368
+ --color-secondary-200: #acdcb5;
4369
+ --color-secondary-300: #8bce97;
4370
+ --color-secondary-400: #72c481;
4371
+ --color-secondary-500: #59b96b;
4372
+ --color-secondary-600: #51b263;
4373
+ --color-secondary-700: #48aa58;
4374
+ --color-secondary-800: #3ea24e;
4375
+ --color-secondary-900: #2e933c;
4376
+ --color-secondary-A100: #d9ffde;
4377
+ --color-secondary-A200: #a6ffb1;
4378
+ --color-secondary-A400: #73ff84;
4379
+ --color-secondary-A700: #59ff6e;
4284
4380
  }
4285
4381
 
4286
4382
  /* Dialogs */
@@ -4319,12 +4415,12 @@ html, body {
4319
4415
  top: -4px;
4320
4416
  }
4321
4417
 
4322
- [mat-dialog-content].fill {
4418
+ mat-dialog-content.fill, [mat-dialog-content].fill {
4323
4419
  width: calc(100% + 48px) !important;
4324
4420
  padding: 0 !important;
4325
4421
  margin: 0 -24px -24px !important;
4326
4422
  }
4327
- [mat-dialog-content].fill-width {
4423
+ mat-dialog-content.fill-width, [mat-dialog-content].fill-width {
4328
4424
  width: calc(100% + 48px) !important;
4329
4425
  padding: 0 !important;
4330
4426
  margin: 0 -24px !important;
@@ -4339,6 +4435,13 @@ html, body {
4339
4435
  max-width: 98vw;
4340
4436
  }
4341
4437
 
4438
+ /* Buttons */
4439
+ .mat-button-wrapper {
4440
+ display: flex;
4441
+ align-items: center;
4442
+ justify-content: center;
4443
+ }
4444
+
4342
4445
  /* Form Controls */
4343
4446
  .form-block-fields .mat-form-field {
4344
4447
  display: block !important;
@@ -4353,23 +4456,6 @@ html, body {
4353
4456
  width: 100%;
4354
4457
  }
4355
4458
 
4356
- mat-form-field.mat-prefix-button .mat-form-field-prefix {
4357
- height: 20px;
4358
- width: 20px;
4359
- line-height: 0.25;
4360
- top: 2px;
4361
- }
4362
- mat-form-field.mat-prefix-button mat-datepicker-toggle > button.mat-icon-button {
4363
- margin-left: -7px;
4364
- padding-top: 5px;
4365
- }
4366
- mat-form-field.mat-prefix-button input {
4367
- color: #58595b;
4368
- }
4369
- mat-form-field.mat-prefix-button label.mat-form-field-empty {
4370
- top: 2em;
4371
- }
4372
-
4373
4459
  .mat-form-field.solid-background > .mat-form-field-wrapper,
4374
4460
  .solid-background > .mat-form-field > .mat-form-field-wrapper {
4375
4461
  background-color: white;