@pocketprep/ui-kit 3.4.82 → 3.4.84

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.
@@ -361,9 +361,11 @@ export default class Button extends Vue {
361
361
  padding: 0;
362
362
  text-decoration: none;
363
363
 
364
- &:enabled:hover {
365
- text-decoration: underline;
366
- color: mix($brand-blue, black, 90%);
364
+ @media (hover: hover) {
365
+ &:enabled:hover {
366
+ text-decoration: underline;
367
+ color: mix($brand-blue, black, 90%);
368
+ }
367
369
  }
368
370
 
369
371
  &:enabled:focus::before {
@@ -762,6 +762,7 @@ export default class MatrixChoicesContainer extends Vue {
762
762
 
763
763
  &__radio-btn-correct-answer-icon {
764
764
  margin-top: -10px;
765
+ margin-left: -4px;
765
766
  width: 21px;
766
767
  height: 22px;
767
768
  color: $cadaverous;
@@ -773,6 +774,7 @@ export default class MatrixChoicesContainer extends Vue {
773
774
 
774
775
  &__radio-btn-incorrect-answer-icon {
775
776
  margin-top: -10px;
777
+ margin-left: -4px;
776
778
  width: 21px;
777
779
  height: 22px;
778
780
  color: $pepper;
@@ -122,7 +122,8 @@
122
122
  :disabled="showMatrixAnswers || reviewMode"
123
123
  :checkbox-styles="checkboxContainerStyling(rowIndex, columnIndex)"
124
124
  />
125
- <div
125
+ <div
126
+ v-dark="isDarkMode"
126
127
  class="uikit-question-mobile-matrix-choices-container__checkbox-label"
127
128
  :class="{
128
129
  'uikit-question-mobile-matrix-choices-container__checkbox-label--distractor':
@@ -742,6 +743,10 @@ export default class MobileMatrixChoicesContainer extends Vue {
742
743
  &--distractor {
743
744
  text-decoration: line-through;
744
745
  color: $ash;
746
+
747
+ &--dark {
748
+ color: $fog;
749
+ }
745
750
  }
746
751
  }
747
752
 
@@ -131,7 +131,11 @@ const stripHtmlTags = (string?: string) => {
131
131
 
132
132
  &--distractor {
133
133
  text-decoration: line-through;
134
- color: $ash
134
+ color: $ash;
135
+
136
+ &--dark {
137
+ color: $fog;
138
+ }
135
139
  }
136
140
  }
137
141
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/ui-kit",
3
- "version": "3.4.82",
3
+ "version": "3.4.84",
4
4
  "description": "Pocket Prep UI Kit",
5
5
  "author": "pocketprep",
6
6
  "scripts": {