@pocketprep/ui-kit 3.4.88 → 3.4.90
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 +1 -1
- 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.vue +1 -1
- package/lib/components/Tags/Tag.vue +4 -3
- package/package.json +1 -1
|
@@ -997,7 +997,7 @@ export default class Question extends Vue {
|
|
|
997
997
|
keywordClick (event: MouseEvent) {
|
|
998
998
|
const target = event.target as HTMLElement
|
|
999
999
|
if (target.classList.contains('keyword-highlight')) {
|
|
1000
|
-
const keyword = target.innerText
|
|
1000
|
+
const keyword = target.innerText.trim()
|
|
1001
1001
|
const location = target.getAttribute('data-location')
|
|
1002
1002
|
const clickLocation = { x: event.clientX, y: event.clientY }
|
|
1003
1003
|
return {
|
|
@@ -126,19 +126,20 @@ export default class Tag extends Vue {
|
|
|
126
126
|
&--active {
|
|
127
127
|
border: none;
|
|
128
128
|
background: $meadow;
|
|
129
|
-
color: $scifi-takeout
|
|
129
|
+
color: $scifi-takeout;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
&--pending {
|
|
133
133
|
border: none;
|
|
134
134
|
background: $buttermilk;
|
|
135
|
-
color: $flat-brown
|
|
135
|
+
color: $flat-brown;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
&--archived {
|
|
139
|
-
border: none;
|
|
140
139
|
background: $fog;
|
|
141
140
|
color: $pickled-bluewood;
|
|
141
|
+
border-radius: 3px;
|
|
142
|
+
border: 1px solid rgba($pewter, 0.30);
|
|
142
143
|
|
|
143
144
|
&--dark {
|
|
144
145
|
color: $fog;
|