@mtvh/mtvh-design-system 0.0.30 → 0.0.32

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.
@@ -0,0 +1,13 @@
1
+ // list style overrides for the MTVHO agent repair search results
2
+ .agent-repair-location-search-list {
3
+ list-style-type: none;
4
+ padding-left: 0;
5
+
6
+ ul {
7
+ padding-left: $mtvh-spacing-6;
8
+ }
9
+
10
+ &.agent-repair-location-search-list-additional {
11
+ border-bottom: 1px solid var(--mtvh-grey-03);
12
+ }
13
+ }
@@ -16,3 +16,5 @@
16
16
  @import "_card-list";
17
17
  @import "_space-selection";
18
18
  @import "_good-to-know";
19
+ @import "_collapse_button";
20
+ @import "_agent-repair-location-list";
@@ -4,23 +4,15 @@
4
4
  );
5
5
  min-width: unset;
6
6
  min-height: unset;
7
+
7
8
  @include button-circle();
8
- &:before {
9
- margin: 0;
10
- }
9
+
11
10
  }
12
11
 
13
12
  .btn-close-circle {
14
13
  @include button-circle();
15
14
  }
16
15
 
17
- .alert-dismissible {
18
- .btn-close-circle {
19
- top: $mtvh-spacing-5;
20
- padding: $mtvh-spacing-4;
21
- }
22
- }
23
-
24
16
  @each $state in map-keys($banner-theme-colors) {
25
17
  .mtvh-banner--#{$state} {
26
18
  --#{$prefix}btn-close-focus-outline-color: var(
@@ -30,6 +30,21 @@ $mtvh-buttons: (
30
30
  border-active: transparent,
31
31
  border-color-disabled: var(--mtvh-grey-05),
32
32
  ),
33
+ light-grey: (
34
+ text-color: var(--mtvh-black),
35
+ text-color-hover: var(--mtvh-black),
36
+ text-color-active: var(--mtvh-black),
37
+ text-color-focus: var(--mtvh-black),
38
+ text-color-disabled: var(--mtvh-black),
39
+ background: var(--mtvh-grey-01),
40
+ background-hover: var(--mtvh-grey-01),
41
+ background-active: var(--mtvh-grey-02),
42
+ background-focus: var(--mtvh-white),
43
+ background-disabled: var(--mtvh-grey-05),
44
+ border: transparent,
45
+ border-active: transparent,
46
+ border-color-disabled: var(--mtvh-grey-05),
47
+ ),
33
48
  outline-primary: (
34
49
  text-color: var(--mtvh-blue-04),
35
50
  text-color-hover: var(--mtvh-blue-05),
@@ -118,6 +133,7 @@ $mtvh-buttons: (
118
133
  outline: solid var(--#{$prefix}btn-outline-border)
119
134
  var(--#{$prefix}btn-outline-color);
120
135
  outline-offset: var(--#{$prefix}btn-outline-border);
136
+ border-radius: $btn-border-radius;
121
137
  text-decoration: none;
122
138
  }
123
139
  &:focus:not(:focus-visible) {
@@ -1,11 +1,24 @@
1
1
  .card-list {
2
+ border-radius: $border-radius-lg;
3
+ background-color: var(--#{$prefix}white);
2
4
  &-item {
5
+
3
6
  display: flex;
4
7
  flex-direction: row;
5
8
  flex-wrap: nowrap;
9
+ align-items: center;
10
+
6
11
  border-bottom: 1px solid var(--#{$prefix}grey-03);
7
- padding-top: $mtvh-spacing-5;
12
+ padding-top: $mtvh-spacing-4;
8
13
  padding-bottom: $mtvh-spacing-5;
14
+ margin-left: $mtvh-spacing-5;
15
+ margin-right: $mtvh-spacing-5;
16
+
17
+ @include media-breakpoint-up(md) {
18
+ margin-left: $mtvh-spacing-6;
19
+ margin-right: $mtvh-spacing-6;
20
+ padding-top: $mtvh-spacing-5;
21
+ }
9
22
 
10
23
  &:has(.label) {
11
24
  &:last-child {
@@ -38,7 +51,12 @@
38
51
  span {
39
52
  display: block;
40
53
  align-self: center;
41
-
54
+ font-size: $font-size-xs;
55
+ @include media-breakpoint-down(sm) {
56
+ &:not(:first-child) {
57
+ padding-top: $mtvh-spacing-2;
58
+ }
59
+ }
42
60
  @include media-breakpoint-up(sm) {
43
61
  display: inline;
44
62
  }
@@ -0,0 +1,14 @@
1
+ // collapse button for use with Bootstrap Collapse components, based on the
2
+ // circle varriation of the close button animation goes through the transition
3
+ // mixin so it adheres to the reduced motion setting.
4
+ .btn-collapse {
5
+
6
+ transform: rotate(0deg);;
7
+ @include transition($btn-collapse-transition);
8
+
9
+ &.collapsed {
10
+ transform: rotate(180deg);
11
+ @include transition($btn-collapse-transition);
12
+ }
13
+ }
14
+
@@ -126,9 +126,6 @@
126
126
  &-bg {
127
127
  --#{$prefix}content-block-bg: var(--mtvh-white);
128
128
  background-color: var(--#{$prefix}content-block-bg);
129
- a {
130
- color: var(--#{$prefix}content-block-bg-link-color, var(--#{$prefix}blue-04));
131
- }
132
129
  }
133
130
 
134
131
  &-icon {
@@ -231,7 +228,9 @@
231
228
  .mtvh-content-block-bg--#{$state} {
232
229
  --#{$prefix}content-block-bg: #{$variable};
233
230
  @if ($state == "grey-02" or $state == "yellow-02") {
234
- --#{$prefix}content-block-bg-link-color: var(--#{$prefix}black);
231
+ a {
232
+ color: var(--#{$prefix}black);
233
+ }
235
234
  }
236
235
  }
237
236
  }
@@ -8,6 +8,7 @@
8
8
  @import "../forms/validation";
9
9
  @import "../forms/stripe";
10
10
  @import "../forms/credit-card-form";
11
+ @import "../forms/search";
11
12
 
12
13
  .formio-form {
13
14
  @import "../forms/formio";
@@ -127,11 +128,12 @@ formio {
127
128
  }
128
129
  }
129
130
 
130
- .mtvh-form-container-required {
131
- font-size: $font-size-xs;
132
- padding: 0 0 $mtvh-spacing-6 0;
133
- @include media-breakpoint-down("lg") {
134
- padding-bottom: $mtvh-spacing-7;
135
- }
131
+ }
132
+
133
+ .mtvh-form-container-required {
134
+ font-size: $font-size-xs;
135
+ padding: 0 0 $mtvh-spacing-6 0;
136
+ @include media-breakpoint-down("lg") {
137
+ padding-bottom: $mtvh-spacing-7;
136
138
  }
137
139
  }
@@ -27,7 +27,7 @@ $icons: (
27
27
  "person":
28
28
  '<svg width="25" height="25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 11.611c-1.607 0-2.976-.566-4.108-1.697C7.26 8.782 6.694 7.412 6.694 5.806c0-1.607.566-2.976 1.698-4.108C9.524.566 10.893 0 12.5 0c1.607 0 2.976.566 4.108 1.698 1.132 1.132 1.698 2.5 1.698 4.108 0 1.606-.566 2.976-1.698 4.108-1.132 1.132-2.501 1.697-4.108 1.697ZM0 21.714v-1.17c0-.814.218-1.562.654-2.245a4.366 4.366 0 0 1 1.779-1.582 25.435 25.435 0 0 1 5.02-1.822c1.677-.41 3.36-.615 5.047-.615 1.688 0 3.37.205 5.05.615a25.352 25.352 0 0 1 5.019 1.821c.75.372 1.343.9 1.778 1.583.435.683.653 1.43.653 2.245v1.17c0 .673-.235 1.245-.706 1.716a2.336 2.336 0 0 1-1.716.706H2.422a2.336 2.336 0 0 1-1.716-.706A2.336 2.336 0 0 1 0 21.714Zm2.39.033h20.22v-1.199c0-.353-.1-.677-.3-.973-.2-.297-.477-.54-.83-.732a21.98 21.98 0 0 0-4.444-1.624 19.049 19.049 0 0 0-9.082 0c-1.493.367-2.969.908-4.426 1.624a2.285 2.285 0 0 0-.838.733c-.2.297-.3.62-.3.97v1.2ZM12.5 9.222a3.29 3.29 0 0 0 2.413-1.004 3.29 3.29 0 0 0 1.003-2.412 3.29 3.29 0 0 0-1.003-2.413A3.29 3.29 0 0 0 12.5 2.39a3.29 3.29 0 0 0-2.413 1.003 3.29 3.29 0 0 0-1.003 2.413c0 .94.334 1.743 1.003 2.412A3.29 3.29 0 0 0 12.5 9.222Z" fill="#000"/></svg>',
29
29
  "search":
30
- '<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.215 14.417c-2.019 0-3.726-.698-5.122-2.094C.698 10.927 0 9.223 0 7.21c0-2.013.697-3.718 2.092-5.115C3.486.698 5.19 0 7.206 0c2.016 0 3.722.699 5.12 2.096 1.396 1.397 2.095 3.102 2.095 5.116 0 .843-.141 1.655-.425 2.436a6.767 6.767 0 0 1-1.134 2.03l6.89 6.871a.82.82 0 0 1 .248.59.803.803 0 0 1-.254.605.828.828 0 0 1-1.192.003l-6.883-6.888a6.552 6.552 0 0 1-2.065 1.152 7.238 7.238 0 0 1-2.39.406Zm-.004-1.688c1.545 0 2.851-.533 3.92-1.6 1.067-1.066 1.601-2.373 1.601-3.921 0-1.548-.534-2.855-1.602-3.921-1.068-1.066-2.375-1.599-3.922-1.599-1.547 0-2.854.533-3.92 1.6-1.066 1.066-1.6 2.373-1.6 3.921 0 1.548.534 2.855 1.6 3.921 1.067 1.066 2.374 1.599 3.923 1.599Z" fill="#000"/></svg>',
30
+ '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path fill="#000" d="M7.383 14.762c-2.06 0-3.806-.715-5.237-2.145C.716 11.187 0 9.442 0 7.383c0-2.06.715-3.805 2.144-5.237C3.574.716 5.318 0 7.377 0c2.06 0 3.804.716 5.234 2.147 1.431 1.431 2.146 3.177 2.146 5.239a7.22 7.22 0 0 1-.371 2.333 6.53 6.53 0 0 1-1.016 1.925l6.272 6.266c.239.244.358.532.358.866 0 .334-.123.621-.369.862-.24.241-.53.362-.865.362-.336 0-.623-.12-.862-.358l-6.26-6.267c-.56.439-1.205.78-1.936 1.023a7.316 7.316 0 0 1-2.325.364Zm-.004-2.455c1.376 0 2.541-.477 3.494-1.43.953-.953 1.43-2.119 1.43-3.496 0-1.377-.477-2.542-1.43-3.495-.953-.954-2.118-1.43-3.494-1.43-1.377 0-2.542.476-3.495 1.43-.953.953-1.43 2.118-1.43 3.495 0 1.377.477 2.543 1.43 3.496.953.953 2.118 1.43 3.495 1.43Z"/></svg>',
31
31
  "generic-doc":
32
32
  '<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.95 20c-.528 0-.981-.188-1.358-.565a1.852 1.852 0 0 1-.565-1.358V1.923c0-.529.189-.982.565-1.358C2.97.188 3.422 0 3.95 0h7.308c.255 0 .499.047.73.141.231.094.438.232.62.413l4.8 4.79a1.925 1.925 0 0 1 .568 1.361v11.372c0 .529-.188.981-.565 1.358-.376.377-.83.565-1.358.565H3.95Zm7.154-14.09V1.923H3.95v16.154h12.103V6.872h-3.987a.926.926 0 0 1-.68-.282.926.926 0 0 1-.282-.68Z" fill="#000"/></svg>',
33
33
  "presentation":
@@ -81,9 +81,9 @@ $icons: (
81
81
  "space-sub-block":
82
82
  '<svg width="28" height="28" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.52481 12C1.24033 12 0.998404 11.8987 0.799042 11.6961C0.599681 11.4933 0.5 11.2474 0.5 10.9582V1.0416C0.5 0.752457 0.599681 0.506571 0.799042 0.303943C0.998404 0.101314 1.24033 0 1.52481 0H5.88428C6.16876 0 6.41069 0.101314 6.61005 0.303943C6.80941 0.506571 6.90909 0.752457 6.90909 1.0416V2.74286H12.4752C12.7597 2.74286 13.0016 2.84417 13.201 3.0468C13.4003 3.24943 13.5 3.49531 13.5 3.78446V10.9582C13.5 11.2474 13.4003 11.4933 13.201 11.6961C13.0016 11.8987 12.7597 12 12.4752 12H1.52481ZM1.51182 10.9714H5.89727V9.25714H1.51182V10.9714ZM1.51182 8.22857H5.89727V6.51429H1.51182V8.22857ZM1.51182 5.48571H5.89727V3.77143H1.51182V5.48571ZM1.51182 2.74286H5.89727V1.02857H1.51182V2.74286ZM6.90909 10.9714H12.4882V3.77143H6.90909V10.9714ZM8.89427 6.51429C8.75091 6.51429 8.63071 6.46497 8.53367 6.36634C8.43674 6.26771 8.38828 6.14548 8.38828 5.99966C8.38828 5.85394 8.43674 5.73183 8.53367 5.63331C8.63071 5.53491 8.75091 5.48571 8.89427 5.48571H10.3733C10.5167 5.48571 10.6368 5.53503 10.7337 5.63366C10.8308 5.73217 10.8793 5.85434 10.8793 6.00017C10.8793 6.146 10.8308 6.26811 10.7337 6.36651C10.6368 6.46503 10.5167 6.51429 10.3733 6.51429H8.89427ZM8.89427 9.25714C8.75091 9.25714 8.63071 9.20783 8.53367 9.1092C8.43674 9.01057 8.38828 8.88834 8.38828 8.74251C8.38828 8.5968 8.43674 8.47468 8.53367 8.37617C8.63071 8.27777 8.75091 8.22857 8.89427 8.22857H10.3733C10.5167 8.22857 10.6368 8.27788 10.7337 8.37651C10.8308 8.47503 10.8793 8.5972 10.8793 8.74303C10.8793 8.88886 10.8308 9.01097 10.7337 9.10937C10.6368 9.20789 10.5167 9.25714 10.3733 9.25714H8.89427Z" fill="#9A9A9A"/></svg>',
83
83
  "chevron-up":
84
- '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 44 44"><path fill="#000" d="m22.01 18.23-8.413 9.46a.875.875 0 0 1-.621.31c-.244.014-.466-.088-.665-.308a1.11 1.11 0 0 1-.31-.723c-.009-.262.087-.512.285-.75l8.636-9.711c.17-.177.34-.309.513-.397.173-.088.364-.132.575-.132.21 0 .403.044.577.133.173.089.34.222.497.399l8.627 9.705c.188.211.285.456.289.732.005.277-.093.525-.291.744-.2.22-.415.33-.646.33-.231 0-.445-.11-.64-.331l-8.413-9.46Z"/></svg>',
84
+ '<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="20" height="20" viewBox="0 0 20 13"><path fill="#000" d="m10.01 2.252-8.413 9.46a.875.875 0 0 1-.621.31c-.244.013-.466-.09-.665-.308a1.11 1.11 0 0 1-.31-.723c-.009-.262.087-.512.285-.75L8.922.528c.17-.176.34-.309.513-.397C9.608.044 9.8 0 10.01 0c.21 0 .403.044.577.133.173.089.34.222.497.4l8.627 9.704c.188.212.285.456.289.732a1.05 1.05 0 0 1-.291.745c-.2.219-.415.329-.646.329-.231 0-.445-.11-.64-.331l-8.413-9.46Z"/></svg>',
85
85
  "chevron-down":
86
- '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 44 44"><path fill="#000" d="m21.99 25.77 8.413-9.46a.875.875 0 0 1 .621-.31c.244-.014.466.088.665.308s.302.46.31.723c.009.262-.086.512-.285.75l-8.636 9.711c-.17.177-.34.309-.513.397a1.247 1.247 0 0 1-.575.132c-.21 0-.403-.044-.577-.133a1.73 1.73 0 0 1-.497-.399l-8.627-9.705a1.096 1.096 0 0 1-.289-.732 1.051 1.051 0 0 1 .291-.744c.2-.22.415-.33.646-.33.231 0 .445.11.64.331l8.413 9.46Z"/></svg>'
86
+ '<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="20" height="20" viewBox="0 0 20 13"><path fill="#000" d="M9.99 9.79 18.403.33a.875.875 0 0 1 .621-.309c.244-.014.466.089.665.308.199.22.302.46.31.723.009.262-.086.512-.285.75l-8.636 9.712c-.17.176-.34.308-.513.397a1.247 1.247 0 0 1-.575.132c-.21 0-.403-.045-.577-.134a1.73 1.73 0 0 1-.497-.399L.289 1.805A1.097 1.097 0 0 1 0 1.073 1.051 1.051 0 0 1 .291.329C.491.109.705 0 .937 0c.231 0 .445.11.64.33L9.99 9.79Z"/></svg>'
87
87
  );
88
88
 
89
89
  /**
@@ -127,6 +127,14 @@ $mtvh-icons: (
127
127
  width: $icon-size-scale-sm,
128
128
  height: $icon-size-scale-sm,
129
129
  ),
130
+ "chevron-up": (
131
+ width: $icon-size-scale-sm,
132
+ height: $icon-size-scale-sm
133
+ ),
134
+ "chevron-down": (
135
+ width: $icon-size-scale-sm,
136
+ height: $icon-size-scale-sm
137
+ ),
130
138
  "spreadsheet": (
131
139
  width: $icon-size-scale-sm,
132
140
  height: $icon-size-scale-sm,
@@ -679,14 +687,7 @@ $mtvh-icons: (
679
687
  height: $icon-size-scale-lg,
680
688
  svg-path: "#{$asset-icon-path}mastercard.svg",
681
689
  ),
682
- "chevron-up": (
683
- width: $icon-size-scale-lg,
684
- height: $icon-size-scale-lg
685
- ),
686
- "chevron-down": (
687
- width: $icon-size-scale-lg,
688
- height: $icon-size-scale-lg
689
- ),
690
+
690
691
  "space-building": (
691
692
  width: $icon-size-scale-md,
692
693
  height: $icon-size-scale-md,
@@ -12,7 +12,7 @@
12
12
  --mtvh-btn-line-height: 1.5;
13
13
  --mtvh-btn-font-weight: bold;
14
14
  --mtvh-btn-outline-color: var(--mtvh-blue-03);
15
- --mtvh-btn-outline-border: 0.13rem;
15
+ --mtvh-btn-outline-border: 0.125rem;
16
16
  --mtvh-btn-min-width: 10rem;
17
17
 
18
18
  /* Shadows */
@@ -183,7 +183,7 @@ $input-width-size-xl: 450px;
183
183
  $input-width-size-l: 420px;
184
184
 
185
185
  /* form check */
186
- $form-check-bg-color: unset;
186
+ $form-check-bg-color: var(--#{$prefix}grey-01);
187
187
  $form-check-hover-bg-color: unset;
188
188
  $form-check-input-width: 2.75rem;
189
189
  $form-check-input-height: 2.75rem;
@@ -223,6 +223,9 @@ $btn-close-circle-height: 1.25rem;
223
223
  $btn-close-focus-opacity: 1;
224
224
  $btn-close-hover-opacity: 1;
225
225
 
226
+ /* collapse button */
227
+ $btn-collapse-transition: transform 0.2s ease-in-out;
228
+
226
229
  /* stepper */
227
230
  $stepper-bg-color: var(--#{$prefix}grey-06);
228
231
  $stepper-sm-font-color: var(--#{$prefix}purple-04);
@@ -233,7 +236,9 @@ $stepper-font-size: $font-size-xs;
233
236
  $stepper-font-color: var(--#{$prefix}white);
234
237
  $stepper-breakpoint: "lg";
235
238
 
236
- $alert-border-radius: 8px;
239
+ $alert-padding-x: 0;
240
+ $alert-padding-y: 0;
241
+
237
242
  $banner-theme-colors: (
238
243
  "success": var(--#{$prefix}green-02),
239
244
  "warning": var(--#{$prefix}yellow-02),
@@ -376,7 +381,7 @@ $pagination-padding-y: 8px;
376
381
  $pagination-border-radius: 4px;
377
382
  $pagination-color: var(--#{$prefix}blue-04);
378
383
  $pagination-hover-color: var(--#{$prefix}blue-05);
379
- $pagination-hover-bg: var(--#{$prefix}white);
384
+ $pagination-hover-bg: var(--#{$prefix}grey-01);
380
385
  $pagination-active-bg: var(--#{$prefix}purple-04);
381
386
  $pagination-active-color: var(--#{$prefix}white);
382
387
  $pagination-focus-color: var(--#{$prefix}blue-04);
@@ -26,7 +26,7 @@
26
26
  @include hover-animate($position: "right");
27
27
  }
28
28
  }
29
- &.m-0, &.mtvh-icon--circle {
29
+ &.m-0, &.btn-icon-circle {
30
30
  &:after,
31
31
  &:before {
32
32
  margin-right: 0;
@@ -26,9 +26,10 @@
26
26
  }
27
27
 
28
28
  .form-check-input {
29
+
30
+ --#{$prefix}form-check-bg: #{$form-check-bg-color};
29
31
  margin-top: 0;
30
32
  margin-right: $mtvh-spacing-4;
31
- float: unset;
32
33
  align-self: start;
33
34
  border: var(--#{$prefix}border-width) solid var(--#{$prefix}grey-06);
34
35
 
@@ -0,0 +1,30 @@
1
+ .input-group-search {
2
+
3
+ $height: 44px;
4
+ $button-size: $icon-size-scale-lg;
5
+ display: flex;
6
+ align-items: center;
7
+ position: relative;
8
+ input.form-control {
9
+ padding-left: $mtvh-spacing-5;
10
+ padding-right: calc(#{$button-size} * 2 + 0.25rem);
11
+ height: $height;
12
+ border-top-right-radius: $border-radius;
13
+ border-bottom-right-radius: $border-radius;
14
+ }
15
+ .input-group-search-append {
16
+ position: absolute;
17
+ z-index:8;
18
+ display: flex;
19
+ top: 0;
20
+ right: 0;
21
+ }
22
+
23
+ .mtvh-icon {
24
+ position: relative;
25
+ &:before {
26
+ background-color: var(--mtvh-black) !important;
27
+ }
28
+ }
29
+
30
+ }
@@ -47,10 +47,15 @@
47
47
  }
48
48
  }
49
49
 
50
- @mixin button-circle($padding: $mtvh-spacing-4, $hover-bg: rgba(0, 0, 0, 0.08), $active-bg: rgba(0, 0, 0, 0.16)) {
51
- border: 0;
50
+ @mixin button-circle($size: 44px, $padding-x: 0,$padding-y: 0, $hover-bg: rgba(0, 0, 0, 0.08), $active-bg: rgba(0, 0, 0, 0.16)) {
51
+
52
+ width: $size;
53
+ height: $size;
54
+ min-width: $size;
55
+ min-height: $size;
56
+ border: none;
52
57
  border-radius: 50%;
53
- padding: $padding;
58
+ padding: $padding-y $padding-x;
54
59
 
55
60
  &:focus-visible {
56
61
  box-shadow: none;
@@ -64,11 +69,28 @@
64
69
  &:active:not(:disabled):not(.disabled) {
65
70
  outline: 0;
66
71
  }
72
+
73
+ &:hover, &:active:not(:disabled):not(.disabled) {
74
+ position: relative;
75
+ &:after {
76
+ content: "";
77
+ position: absolute;
78
+ left: 4px;
79
+ top: 4px;
80
+ padding: 1.125rem;
81
+ border-radius: 50%;
82
+ z-index: 1;
83
+ }
84
+ }
67
85
  &:hover {
68
86
  cursor: pointer;
69
- background-color: $hover-bg;
87
+ &:after {
88
+ background: $hover-bg;
89
+ }
70
90
  }
71
91
  &:active:not(:disabled):not(.disabled) {
72
- background-color: $active-bg;
92
+ &:after {
93
+ background: $active-bg;
94
+ }
73
95
  }
74
96
  }
@@ -4,7 +4,7 @@
4
4
  font-weight: bold;
5
5
  position: relative;
6
6
  display: flex;
7
- margin: $mtvh-spacing-3 0 0 0;
7
+ margin: $mtvh-spacing-4 0 0 0;
8
8
  &:before {
9
9
  content: "";
10
10
  -webkit-mask: get-icon("error", $danger);
@@ -12,9 +12,10 @@
12
12
  background-color: $danger;
13
13
  mask-repeat: no-repeat;
14
14
  -webkit-mask-repeat: no-repeat;
15
- padding-right: $mtvh-spacing-7;
15
+ padding-right: calc(1.25rem + #{$mtvh-spacing-3});
16
16
  margin-top: $mtvh-spacing-1;
17
17
  vertical-align: top;
18
+ width: $icon-size-scale-sm;
18
19
  }
19
20
  }
20
21
 
@@ -136,6 +136,7 @@
136
136
  display: flex;
137
137
  align-items: center;
138
138
  justify-content: center;
139
+ padding: (($size - $icon-size-scale-xs) / 2);
139
140
  color: $color;
140
141
 
141
142
  &.mtvh-icon {