@pocketprep/ui-kit 3.4.83 → 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/Quiz/Question/MobileMatrixChoicesContainer.vue +6 -1
- package/lib/components/Quiz/Question/MobileMatrixRadioGroup.vue +5 -1
- package/package.json +1 -1
|
@@ -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
|
|