bootstrap-italia 2.2.0 → 2.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 (115) hide show
  1. package/README.EN.md +1 -1
  2. package/README.md +1 -1
  3. package/dist/css/bootstrap-italia-comuni.min.css +1 -1
  4. package/dist/css/bootstrap-italia.min.css +1 -1
  5. package/dist/css/bootstrap-italia.min.css.map +1 -1
  6. package/dist/js/bootstrap-italia.bundle.min.js +253 -189
  7. package/dist/js/bootstrap-italia.min.js +256 -0
  8. package/dist/plugins/input-label.js +4 -1
  9. package/dist/plugins/input-label.js.map +1 -1
  10. package/dist/plugins/notification.js +1 -23
  11. package/dist/plugins/notification.js.map +1 -1
  12. package/dist/plugins/progress-donut.js +2 -2
  13. package/dist/plugins/progress-donut.js.map +1 -1
  14. package/dist/plugins/tab.js +82 -1
  15. package/dist/plugins/tab.js.map +1 -1
  16. package/dist/svg/sprites.svg +1 -1
  17. package/dist/version.js +1 -1
  18. package/dist/version.js.map +1 -1
  19. package/package.json +6 -4
  20. package/src/js/bootstrap-italia.entry.js +14 -1
  21. package/src/js/icons.js +2 -0
  22. package/src/js/plugins/input-label.js +4 -1
  23. package/src/js/plugins/notification.js +1 -32
  24. package/src/js/plugins/progress-donut.js +2 -2
  25. package/src/js/plugins/tab.js +82 -1
  26. package/src/js/version.js +1 -1
  27. package/src/scss/_variables.scss +66 -57
  28. package/src/scss/bootstrap-italia-comuni.scss +40 -39
  29. package/src/scss/bootstrap-italia.scss +39 -38
  30. package/src/scss/custom/_accordion.scss +5 -5
  31. package/src/scss/custom/_alert.scss +3 -3
  32. package/src/scss/custom/_autocomplete.scss +2 -2
  33. package/src/scss/custom/_avatar.scss +5 -5
  34. package/src/scss/custom/_back-to-top.scss +2 -2
  35. package/src/scss/custom/_bottomnav.scss +2 -2
  36. package/src/scss/custom/_breadcrumb.scss +2 -0
  37. package/src/scss/custom/_buttons.scss +13 -8
  38. package/src/scss/custom/_calendar.scss +2 -2
  39. package/src/scss/custom/_callout.scss +25 -25
  40. package/src/scss/custom/_card.scss +1 -1
  41. package/src/scss/custom/_carousel.scss +3 -4
  42. package/src/scss/custom/_chips.scss +4 -4
  43. package/src/scss/custom/_cookiebar.scss +1 -1
  44. package/src/scss/custom/_dimmer.scss +5 -5
  45. package/src/scss/custom/_dropdown.scss +6 -6
  46. package/src/scss/custom/_footer.scss +2 -2
  47. package/src/scss/custom/_form-datepicker.scss +2 -6
  48. package/src/scss/custom/_form-input-file.scss +2 -2
  49. package/src/scss/custom/_form-input-number.scss +13 -13
  50. package/src/scss/custom/_form-password.scss +1 -1
  51. package/src/scss/custom/_form-select.scss +3 -3
  52. package/src/scss/custom/_forms.scss +19 -17
  53. package/src/scss/custom/_just-validate.scss +7 -0
  54. package/src/scss/custom/_linklist.scss +13 -13
  55. package/src/scss/custom/_list.scss +5 -5
  56. package/src/scss/custom/_masonry-loader.scss +1 -1
  57. package/src/scss/custom/_megamenu.scss +12 -12
  58. package/src/scss/custom/_modal.scss +1 -1
  59. package/src/scss/custom/_notifications.scss +6 -6
  60. package/src/scss/custom/_point-list.scss +0 -2
  61. package/src/scss/custom/_popover.scss +2 -2
  62. package/src/scss/custom/_progress-bars.scss +3 -4
  63. package/src/scss/custom/_progress-donuts.scss +3 -3
  64. package/src/scss/custom/_progress-spinners.scss +4 -4
  65. package/src/scss/custom/_sections.scss +3 -2
  66. package/src/scss/custom/_sidebar.scss +2 -2
  67. package/src/scss/custom/_steppers.scss +82 -57
  68. package/src/scss/custom/_tab.scss +23 -19
  69. package/src/scss/custom/_timeline.scss +9 -11
  70. package/src/scss/custom/_toolbar.scss +12 -12
  71. package/src/scss/custom/_tooltip.scss +1 -1
  72. package/src/scss/custom/_version.scss +1 -1
  73. package/src/scss/utilities/colors_vars.scss +64 -28
  74. package/src/svg/it-mastodon-square.svg +3 -0
  75. package/src/svg/it-mastodon.svg +3 -0
  76. package/types/index.d.ts +80 -0
  77. package/types/plugins/accordion.d.ts +39 -0
  78. package/types/plugins/alert.d.ts +20 -0
  79. package/types/plugins/backToTop.d.ts +77 -0
  80. package/types/plugins/button.d.ts +17 -0
  81. package/types/plugins/carousel-bi.d.ts +59 -0
  82. package/types/plugins/carousel.d.ts +19 -0
  83. package/types/plugins/collapse.d.ts +19 -0
  84. package/types/plugins/cookiebar.d.ts +59 -0
  85. package/types/plugins/dimmer.d.ts +34 -0
  86. package/types/plugins/dropdown.d.ts +20 -0
  87. package/types/plugins/form-validate.d.ts +53 -0
  88. package/types/plugins/form.d.ts +30 -0
  89. package/types/plugins/forward.d.ts +49 -0
  90. package/types/plugins/header-sticky.d.ts +24 -0
  91. package/types/plugins/history-back.d.ts +24 -0
  92. package/types/plugins/input-label.d.ts +25 -0
  93. package/types/plugins/input-number.d.ts +35 -0
  94. package/types/plugins/input-password.d.ts +128 -0
  95. package/types/plugins/input-search-autocomplete.d.ts +54 -0
  96. package/types/plugins/input.d.ts +26 -0
  97. package/types/plugins/list.d.ts +25 -0
  98. package/types/plugins/masonry.d.ts +59 -0
  99. package/types/plugins/modal.d.ts +20 -0
  100. package/types/plugins/navbar-collapsible.d.ts +77 -0
  101. package/types/plugins/navscroll.d.ts +85 -0
  102. package/types/plugins/notification.d.ts +92 -0
  103. package/types/plugins/offcanvas.d.ts +19 -0
  104. package/types/plugins/popover.d.ts +19 -0
  105. package/types/plugins/progress-donut.d.ts +89 -0
  106. package/types/plugins/scrollspy.d.ts +19 -0
  107. package/types/plugins/select-autocomplete.d.ts +57 -0
  108. package/types/plugins/sticky.d.ts +97 -0
  109. package/types/plugins/tab.d.ts +17 -0
  110. package/types/plugins/toast.d.ts +19 -0
  111. package/types/plugins/tooltip.d.ts +19 -0
  112. package/types/plugins/track-focus.d.ts +7 -0
  113. package/types/plugins/transfer.d.ts +52 -0
  114. package/types/plugins/upload-dragdrop.d.ts +44 -0
  115. package/types/decs.d.ts +0 -1
@@ -23,7 +23,7 @@ fieldset {
23
23
  }
24
24
  }
25
25
  .form-text {
26
- color: $neutral-1-a7;
26
+ color: $color-text-secondary;
27
27
  }
28
28
  .form-group {
29
29
  position: relative;
@@ -33,7 +33,7 @@ fieldset {
33
33
  input,
34
34
  optgroup,
35
35
  textarea {
36
- color: $dark;
36
+ color: $color-text-muted;
37
37
  }
38
38
 
39
39
  label {
@@ -45,6 +45,7 @@ fieldset {
45
45
  top: 0;
46
46
  font-size: 1rem;
47
47
  cursor: text;
48
+ color: $input-color-placeholder;
48
49
  display: block;
49
50
  max-width: 100%;
50
51
  width: auto;
@@ -56,6 +57,7 @@ fieldset {
56
57
  &.active {
57
58
  transform: translateY(-75%);
58
59
  font-size: $small-font-size;
60
+ color: $input-label-color;
59
61
  }
60
62
  }
61
63
 
@@ -73,7 +75,7 @@ fieldset {
73
75
 
74
76
  ::placeholder {
75
77
  font-weight: 600;
76
- color: $neutral-1-a7;
78
+ color: $input-color-placeholder;
77
79
  }
78
80
 
79
81
  input[type='date'],
@@ -88,7 +90,7 @@ input[type='time'],
88
90
  input[type='url'],
89
91
  textarea {
90
92
  border: none;
91
- border-bottom: 1px solid $neutral-1-a7;
93
+ border-bottom: 1px solid $input-border;
92
94
  border-radius: 0;
93
95
  padding: $input-spacing-y $input-spacing-x;
94
96
  outline: 0;
@@ -100,13 +102,13 @@ textarea {
100
102
  -webkit-appearance: none;
101
103
  -webkit-border-radius: 0;
102
104
  &::placeholder {
103
- color: $neutral-1-a7;
105
+ color: $input-color-placeholder;
104
106
  font-weight: 600;
105
107
  }
106
108
  }
107
109
 
108
110
  textarea {
109
- border: 1px solid $neutral-1-a7;
111
+ border: 1px solid $input-border;
110
112
  height: auto;
111
113
  }
112
114
 
@@ -180,7 +182,7 @@ textarea {
180
182
  .input-group {
181
183
  .input-group-text {
182
184
  padding: $input-spacing-y $input-spacing-x;
183
- border-bottom: 1px solid $neutral-1-a7;
185
+ border-bottom: 1px solid $input-border;
184
186
  height: 100%;
185
187
  }
186
188
 
@@ -188,7 +190,7 @@ textarea {
188
190
  margin-right: 0;
189
191
 
190
192
  .icon {
191
- fill: $neutral-1-a7;
193
+ fill: $icon-secondary;
192
194
  }
193
195
 
194
196
  & ~ label {
@@ -206,7 +208,7 @@ textarea {
206
208
  .btn {
207
209
  padding-top: 0;
208
210
  padding-bottom: 0;
209
- border-bottom: 1px solid $neutral-1-a7;
211
+ border-bottom: 1px solid $input-border;
210
212
  border-radius: 0 4px 4px 0;
211
213
  box-shadow: none;
212
214
  height: 100%;
@@ -368,7 +370,7 @@ textarea {
368
370
  &:not(:checked) + label {
369
371
  &::after,
370
372
  &::before {
371
- border-color: $neutral-1-a7;
373
+ border-color: $input-border;
372
374
  }
373
375
 
374
376
  &:after {
@@ -398,18 +400,18 @@ textarea {
398
400
  &:not(:checked) + label {
399
401
  &::after,
400
402
  &::before {
401
- border-color: #e6e9f2;
403
+ border-color: $gray-border-disabled;
402
404
  }
403
405
  }
404
406
 
405
407
  &:checked + label {
406
408
  &::after {
407
- border-color: #e6e9f2;
408
- background-color: #e6e9f2;
409
+ border-color: $gray-border-disabled;
410
+ background-color: $gray-disabled;
409
411
  }
410
412
 
411
413
  &::before {
412
- border-color: #e6e9f2;
414
+ border-color: $gray-border-disabled;
413
415
  }
414
416
  }
415
417
  }
@@ -468,12 +470,12 @@ textarea {
468
470
  transform: none;
469
471
  backface-visibility: hidden;
470
472
  opacity: 1;
471
- background: #fff;
473
+ background: $white;
472
474
  }
473
475
 
474
476
  input.semi-checked:not(:checked) + label::after {
475
- border-color: $primary-a5;
476
- background-color: $primary-a5;
477
+ border-color: $primary-a5; // TODO: Not found
478
+ background-color: $primary-a5; // TODO: Not found
477
479
  z-index: 0;
478
480
  }
479
481
  }
@@ -15,6 +15,13 @@
15
15
  padding-right: calc(1.5em + 0.75rem) !important;
16
16
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300cc85' viewBox='0 0 192 512'%3E%3Cpath d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z'/%3E%3C/svg%3E");
17
17
  }
18
+ textarea {
19
+ &.just-validate-success-field {
20
+ background-position: right 0.2rem !important;
21
+ background-repeat: no-repeat !important;
22
+ background-size: 28px 16px !important;
23
+ }
24
+ }
18
25
  input[type='date'],
19
26
  input[type='file'],
20
27
  input[type='text'] {
@@ -2,7 +2,7 @@
2
2
  .link-list-wrapper {
3
3
  .link-list-heading {
4
4
  font-size: $link-list-heading-size;
5
- color: $neutral-1;
5
+ color: $color-text-base;
6
6
  padding: 0 $link-list-h-pad;
7
7
  font-weight: 600;
8
8
  margin-bottom: $link-list-divider-distance;
@@ -18,7 +18,7 @@
18
18
  }
19
19
  h3 {
20
20
  font-size: $link-list-heading-size;
21
- color: $neutral-1-a10;
21
+ color: $color-text-base;
22
22
  padding: 0 $link-list-h-pad;
23
23
  font-weight: 600;
24
24
  a {
@@ -76,7 +76,7 @@
76
76
  text-decoration: underline;
77
77
  }
78
78
  p {
79
- color: $neutral-1-a7;
79
+ color: $color-text-secondary;
80
80
  text-decoration: none;
81
81
  }
82
82
  .icon {
@@ -117,7 +117,7 @@
117
117
  .icon {
118
118
  transition: transform $dropdown-menu-animation-speed;
119
119
  &.secondary {
120
- color: $neutral-2-b3;
120
+ color: $icon-secondary;
121
121
  }
122
122
  }
123
123
  }
@@ -129,22 +129,22 @@
129
129
  }
130
130
  &.active {
131
131
  span {
132
- color: $neutral-1-a10;
132
+ color: $color-text-primary-active;
133
133
  text-decoration: underline;
134
134
  }
135
135
  .icon {
136
- color: $neutral-1-a10;
136
+ color: $color-text-primary-active;
137
137
  }
138
138
  }
139
139
  &.disabled {
140
140
  cursor: not-allowed;
141
141
  span {
142
- color: $neutral-1-a4;
142
+ color: $gray-label-disabled;
143
143
  }
144
144
  svg {
145
- fill: $neutral-1-a4;
145
+ fill: $gray-disabled;
146
146
  &.secondary {
147
- fill: $neutral-1-a4;
147
+ fill: $gray-disabled;
148
148
  }
149
149
  }
150
150
  }
@@ -155,7 +155,7 @@
155
155
  p {
156
156
  font-size: $link-list-paragraph-size;
157
157
  line-height: initial;
158
- color: $neutral-1-a7;
158
+ color: $color-text-secondary;
159
159
  }
160
160
  //avatar
161
161
  &.avatar {
@@ -191,7 +191,7 @@
191
191
  .divider {
192
192
  display: block;
193
193
  height: $link-list-divider-height;
194
- background: $neutral-1-a1;
194
+ background: $color-border-subtle;
195
195
  margin: $link-list-divider-distance 0;
196
196
  }
197
197
  //toggles
@@ -229,7 +229,7 @@
229
229
  }
230
230
  }
231
231
  [type='checkbox'][disabled] + label {
232
- color: $neutral-1-a4;
232
+ color: $color-text-secondary;
233
233
  }
234
234
  }
235
235
  }
@@ -297,7 +297,7 @@
297
297
  position: relative;
298
298
  padding: 1rem;
299
299
  margin-top: 0;
300
- border-bottom: 4px solid $border-color;
300
+ border-bottom: 4px solid $color-border-subtle;
301
301
  &:after {
302
302
  content: '';
303
303
  position: absolute;
@@ -56,7 +56,7 @@
56
56
  text-decoration: none;
57
57
  }
58
58
  svg {
59
- fill: $primary-a5;
59
+ fill: $primary;
60
60
  width: $v-gap * 3;
61
61
  height: $v-gap * 3;
62
62
  }
@@ -100,9 +100,9 @@
100
100
  }
101
101
  // active
102
102
  &.active {
103
- color: $neutral-1-a10;
103
+ color: $color-text-base;
104
104
  .text {
105
- color: $neutral-1-a10;
105
+ color: $color-text-base;
106
106
  }
107
107
  }
108
108
  }
@@ -175,9 +175,9 @@
175
175
  &.list-item {
176
176
  &:hover {
177
177
  box-shadow: $card-shadow;
178
- color: $primary-a5;
178
+ color: $color-text-primary-hover;
179
179
  text-decoration: none;
180
- background: #fff;
180
+ background: $white;
181
181
  position: relative;
182
182
  z-index: 1;
183
183
  transition: none;
@@ -6,5 +6,5 @@
6
6
  left: 0;
7
7
  right: 0;
8
8
  bottom: 0;
9
- background-color: #fff;
9
+ background-color: $white;
10
10
  }
@@ -9,7 +9,7 @@
9
9
  .dropdown-menu {
10
10
  .it-vertical {
11
11
  width: 100%;
12
- background: $lightgrey-c2;
12
+ background: $color-background-primary-lighter;
13
13
  padding-top: $v-gap * 2;
14
14
  padding-bottom: $v-gap * 2;
15
15
  margin-top: $v-gap * 2;
@@ -44,7 +44,7 @@
44
44
  display: block;
45
45
  height: 1px;
46
46
  width: $megamenu-link-small-line-width;
47
- background: $neutral-2;
47
+ background: $color-border-subtle;
48
48
  margin-bottom: $megamenu-link-small-line-margin-bottom * 2;
49
49
  }
50
50
  img {
@@ -62,7 +62,7 @@
62
62
  // asymettrical column
63
63
  .it-heading-megacolumn-wrapper {
64
64
  .it-heading-megacolumn {
65
- color: $neutral-1-a10;
65
+ color: $color-text-base;
66
66
  margin: $megamenu-linklist-link-v-padding $link-list-h-pad;
67
67
  padding-left: $link-list-h-pad;
68
68
  padding-bottom: $megamenu-linklist-link-v-padding;
@@ -85,7 +85,7 @@
85
85
  display: block;
86
86
  height: 1px;
87
87
  width: $megamenu-link-small-line-width;
88
- background: $neutral-2;
88
+ background: $color-border-subtle;
89
89
  margin-bottom: $megamenu-link-small-line-margin-bottom;
90
90
  }
91
91
  }
@@ -145,7 +145,7 @@
145
145
  display: block;
146
146
  height: 1px;
147
147
  width: $megamenu-link-small-line-width;
148
- background: $neutral-2;
148
+ background: $color-border-subtle;
149
149
  margin-bottom: $megamenu-link-small-line-margin-bottom;
150
150
  }
151
151
  }
@@ -197,7 +197,7 @@
197
197
  display: block;
198
198
  height: 1px;
199
199
  width: $megamenu-link-small-line-width;
200
- background: $neutral-2;
200
+ background: $color-border-subtle;
201
201
  margin-bottom: $megamenu-link-small-line-margin-bottom;
202
202
  }
203
203
  }
@@ -215,7 +215,7 @@
215
215
  display: block;
216
216
  height: 1px;
217
217
  width: $megamenu-link-small-line-width;
218
- background: $neutral-2;
218
+ background: $color-border-subtle;
219
219
  margin-bottom: $megamenu-link-small-line-margin-bottom;
220
220
  }
221
221
  }
@@ -276,7 +276,7 @@
276
276
  display: block;
277
277
  height: 1px;
278
278
  width: $megamenu-link-small-line-width;
279
- background: $neutral-2;
279
+ background: $color-border-subtle;
280
280
  margin-bottom: $megamenu-link-small-line-margin-bottom;
281
281
  }
282
282
  }
@@ -298,7 +298,7 @@
298
298
  font-size: $megamenu-heading-text-size;
299
299
  font-weight: $megamenu-heading-font-weight;
300
300
  letter-spacing: $megamenu-heading-letter-spacing;
301
- border-bottom: 1px solid $neutral-2;
301
+ border-bottom: 1px solid $color-border-subtle;
302
302
  padding-bottom: $megamenu-linklist-link-v-padding;
303
303
  padding-left: 0;
304
304
  line-height: 1.2em;
@@ -366,7 +366,7 @@
366
366
  line-height: $megamenu-heading-line-height;
367
367
  font-size: $megamenu-heading-text-size;
368
368
  text-transform: uppercase;
369
- border-bottom: 1px solid $neutral-2;
369
+ border-bottom: 1px solid $color-border-subtle;
370
370
  padding-bottom: $megamenu-linklist-link-v-padding;
371
371
  }
372
372
  }
@@ -383,7 +383,7 @@
383
383
  line-height: $megamenu-heading-line-height;
384
384
  font-size: $megamenu-heading-text-size;
385
385
  text-transform: uppercase;
386
- border-bottom: 1px solid $neutral-2;
386
+ border-bottom: 1px solid $color-border-subtle;
387
387
  padding-bottom: $megamenu-linklist-link-v-padding;
388
388
  }
389
389
  }
@@ -420,7 +420,7 @@
420
420
  .divider {
421
421
  height: 1px;
422
422
  display: block;
423
- background: $neutral-1-a2;
423
+ background: $color-border-subtle;
424
424
  margin: 0 0 0 $megamenu-linklist-vertical-link-padding;
425
425
  width: $megamenu-link-small-line-width;
426
426
  margin-top: $megamenu-liklist-vertical-margin-top;
@@ -4,7 +4,7 @@
4
4
  }
5
5
 
6
6
  .modal-body {
7
- color: $neutral-1-a7;
7
+ color: $color-text-base;
8
8
  }
9
9
 
10
10
  .modal-footer {
@@ -9,13 +9,13 @@
9
9
  bottom: 0;
10
10
  right: 0;
11
11
  display: none;
12
- border-top: 4px solid $secondary;
12
+ border-top: 4px solid $color-border-secondary;
13
13
 
14
14
  //title
15
15
  h5 {
16
16
  font-size: 0.938rem;
17
17
  text-transform: uppercase;
18
- color: $neutral-1;
18
+ color: $color-text-base;
19
19
  letter-spacing: 0;
20
20
  margin: 0;
21
21
  position: relative;
@@ -26,11 +26,11 @@
26
26
  p {
27
27
  font-size: 0.875rem;
28
28
  margin: 1.5rem 0 0 0;
29
- color: $secondary;
29
+ color: $color-text-secondary;
30
30
  }
31
31
  //icon version
32
32
  &.with-icon {
33
- border-top: 4px solid $secondary;
33
+ border-top: 4px solid $color-border-secondary;
34
34
  h5 {
35
35
  .icon {
36
36
  position: absolute;
@@ -81,11 +81,11 @@
81
81
  padding: 0;
82
82
  background: none;
83
83
  .icon {
84
- fill: $neutral-1;
84
+ fill: $icon-secondary;
85
85
  }
86
86
  &:hover {
87
87
  .icon {
88
- fill: $primary;
88
+ fill: $icon-primary;
89
89
  }
90
90
  }
91
91
  &:active {
@@ -11,9 +11,7 @@
11
11
  justify-content: center;
12
12
  align-items: center;
13
13
  padding: 0.5rem 1rem;
14
-
15
14
  color: $primary;
16
-
17
15
  border-right-width: 1px;
18
16
  border-right-style: solid;
19
17
  border-color: $primary;
@@ -46,7 +46,7 @@
46
46
  background: none;
47
47
  border: none;
48
48
  text-transform: uppercase;
49
- color: $dark;
49
+ color: $color-text-base;
50
50
  font-size: 0.938rem;
51
51
  padding: $v-gap * 2 $v-gap * 3 0;
52
52
  letter-spacing: 0.05em;
@@ -63,7 +63,7 @@
63
63
  .popover-body {
64
64
  font-size: 0.875rem;
65
65
  line-height: 1.5em;
66
- color: $gray-tertiary;
66
+ color: $color-text-secondary; // UI Kit
67
67
  padding: $v-gap * 2 $v-gap * 3;
68
68
  //inner bottom link
69
69
  a.popover-inner-link {
@@ -18,9 +18,8 @@
18
18
  .progress {
19
19
  height: 4px;
20
20
  box-shadow: none;
21
- background-color: tint-color($primary-a1, 4);
22
21
  &.progress-color {
23
- background-color: $neutral-2;
22
+ background-color: $color-background-secondary-lighter; // UI Kit
24
23
  }
25
24
  &.progress-indeterminate {
26
25
  position: relative;
@@ -36,14 +35,14 @@
36
35
 
37
36
  //progress bar
38
37
  .progress-bar {
39
- background-color: $primary;
38
+ background-color: $secondary; // UI Kit
40
39
  }
41
40
 
42
41
  //label
43
42
  .progress-bar-label {
44
43
  text-align: right;
45
44
  font-size: 0.75rem;
46
- color: $dark;
45
+ color: $color-text-base;
47
46
  font-weight: 500;
48
47
  }
49
48
 
@@ -4,7 +4,7 @@
4
4
  height: 128px;
5
5
  position: relative;
6
6
  .progressbar-text {
7
- color: #000 !important;
7
+ color: $color-text-base !important;
8
8
  font-weight: 700;
9
9
  z-index: 3;
10
10
  }
@@ -16,7 +16,7 @@
16
16
  }
17
17
  &:after {
18
18
  content: '';
19
- background: #fff;
19
+ background: $white;
20
20
  width: 67px;
21
21
  height: 67px;
22
22
  left: 50%;
@@ -28,7 +28,7 @@
28
28
  }
29
29
  &:before {
30
30
  content: '';
31
- background: #d4e9ff;
31
+ background: $color-background-secondary-lighter; // UI Kit
32
32
  width: 110px;
33
33
  height: 110px;
34
34
  left: 50%;
@@ -34,15 +34,15 @@
34
34
  width: $v-gap * 6;
35
35
  height: $v-gap * 6;
36
36
  border-radius: 50%;
37
- border: 4px solid tint-color($primary-a1, 4);
37
+ border: 4px solid $color-background-secondary-lighter; // UI Kit
38
38
  //spinner active state
39
39
  &.progress-spinner-active {
40
40
  animation: spinnerAnim 0.75s linear infinite;
41
41
  }
42
42
  //standard spinner active state
43
43
  &.progress-spinner-active:not(.progress-spinner-double) {
44
- border-color: $primary;
45
- border-bottom-color: tint-color($primary-a1, 4);
44
+ border-color: $secondary;
45
+ border-bottom-color: $color-background-secondary-lighter;
46
46
  }
47
47
  //small size
48
48
  &.size-sm {
@@ -92,7 +92,7 @@
92
92
  display: inline-block;
93
93
  transform: rotate(45deg);
94
94
  border-radius: 50%;
95
- border: 4px solid $primary;
95
+ border: 4px solid $secondary;
96
96
  border-right: 4px solid transparent;
97
97
  border-bottom: 4px solid transparent;
98
98
  width: 100%;
@@ -10,13 +10,14 @@
10
10
 
11
11
  // color and image variants
12
12
  &.section-muted {
13
- background: $lightgrey-a3;
13
+ background: $color-background-muted;
14
14
  }
15
15
  &.section-primary {
16
16
  background: $primary;
17
17
  }
18
18
  &.section-neutral {
19
- background: $neutral-1;
19
+ // TODO: Consider updating class name to match the variable
20
+ background: $color-background-emphasis;
20
21
  }
21
22
  &.section-image {
22
23
  background-size: cover;
@@ -77,7 +77,7 @@
77
77
  padding-bottom: $sidebar-submenu-link-v-padding;
78
78
  &.active {
79
79
  span {
80
- color: $neutral-1-a10;
80
+ color: $color-text-base;
81
81
  text-decoration: underline;
82
82
  }
83
83
  &::after {
@@ -94,7 +94,7 @@
94
94
  content: '';
95
95
  width: $sidebar-link-small-line-width;
96
96
  height: 1px;
97
- background: $neutral-2;
97
+ background: $color-border-subtle;
98
98
  display: block;
99
99
  margin-left: $v-gap * 3;
100
100
  margin-top: $v-gap * 3;