Skip to content

Commit 6d349cf

Browse files
committed
Fix labels not showing bug
Labels were set opacity in percentages, which were changed to 1% during the vue build step. Fixed by setting percentages in fractions (70% -> 0.7) Signed-off-by: Olga Bulat <obulat@gmail.com>
1 parent 851f9aa commit 6d349cf

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

src/components/LicenseIcons.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export default LicenseIcons;
2424
<style lang="scss" scoped>
2525
.photo-license-icons {
2626
display: inline-block;
27-
height: 32px;
2827
white-space: none;
2928
opacity: .7;
3029
margin-top: 2px;

src/components/SelectedLicenseCode.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export default {
190190
text-transform: uppercase;
191191
letter-spacing: 0.5px;
192192
color: #333333;
193-
opacity:80%;
193+
opacity:0.8;
194194
195195
}
196196
}
@@ -212,7 +212,7 @@ export default {
212212
border-bottom-width: 3px;
213213
span{
214214
font-weight: 700;
215-
opacity:100%;
215+
opacity:1;
216216
}
217217
}
218218
}

src/components/SelectedLicenseDropdown.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default {
6464
margin-top: 1rem;
6565
label.label{
6666
font-weight: normal;
67-
opacity: 80%;
67+
opacity: 0.8;
6868
font-size: 1em;
6969
}
7070
span.select, select {

src/components/SelectionStep.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default {
7272
margin-bottom: 0;
7373
}
7474
.field.not-selected {
75-
opacity: 70%;
75+
opacity: 0.7;
7676
}
7777
.field:hover {
7878
box-shadow: 0 10px 15px -3px rgba(237, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

src/components/Stepper.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,11 @@ export default {
245245
}
246246
#stepper .b-steps .steps .step-items .step-item.is-step-not_selected .step-title {
247247
font-weight: normal;
248-
opacity: 70%;
248+
opacity: 0.7;
249249
}
250250
#stepper .b-steps .steps .step-items .step-item.is-step-selected .step-title {
251251
font-weight: 700;
252-
opacity: 90%;
252+
opacity: 1;
253253
}
254254
#stepper .b-steps .steps .step-items .step-item.is-step-not_selected.is-active .step-marker {
255255
border-color: #68ca86;
@@ -263,7 +263,7 @@ export default {
263263
color: #ed5931;
264264
background-color: white;
265265
svg path {
266-
fill-opacity: 70%;
266+
fill-opacity: 0.7;
267267
}
268268
}
269269

0 commit comments

Comments
 (0)