@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.
- package/dist/@pocketprep/ui-kit.js +7 -3
- package/dist/@pocketprep/ui-kit.js.map +1 -1
- package/dist/@pocketprep/ui-kit.umd.cjs +1 -1
- package/dist/@pocketprep/ui-kit.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/lib/components/Buttons/Button.vue +5 -3
- package/lib/components/Quiz/Question/MatrixChoicesContainer.vue +2 -0
- package/lib/components/Quiz/Question/MobileMatrixChoicesContainer.vue +6 -1
- package/lib/components/Quiz/Question/MobileMatrixRadioGroup.vue +5 -1
- package/package.json +1 -1
|
@@ -361,9 +361,11 @@ export default class Button extends Vue {
|
|
|
361
361
|
padding: 0;
|
|
362
362
|
text-decoration: none;
|
|
363
363
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
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
|
|