@worksafevictoria/wcl7.5 1.1.18 → 1.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worksafevictoria/wcl7.5",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
4
4
  "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -12,7 +12,7 @@
12
12
  @dismissed="handleDismissed()"
13
13
  >
14
14
  <div
15
- :role="mini ? 'link' : false"
15
+ :role="mini ? 'link' : null"
16
16
  :class="type + '-strip__inner-wrap'"
17
17
  :tabindex="mini ? 0 : false"
18
18
  :style="mini ? 'cursor: pointer;' : false"
@@ -331,11 +331,15 @@ export default {
331
331
 
332
332
  a {
333
333
  color: $black;
334
-
335
- &:focus {
334
+ text-decoration: none;
335
+ }
336
+ a:hover {
336
337
  text-decoration: underline;
337
338
  }
338
- }
339
+ a:focus {
340
+ text-decoration: underline;
341
+ }
342
+
339
343
  }
340
344
  &__icon {
341
345
  &--caret {
@@ -171,3 +171,15 @@ button.btn-primary.btn-wizard-nav-previous {
171
171
 
172
172
  }
173
173
  }
174
+
175
+ // bootstrap 5 CSS changes
176
+ @import "bootstrap";
177
+ select {
178
+ @extend .form-select;
179
+ }
180
+ .input-group-append {
181
+ @extend .input-group-text;
182
+ }
183
+ .input-group-append .input-group-text{
184
+ all: initial;
185
+ }