Skip to content

Fixes for styling and text bugs when bundle is built/served #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 22, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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>
  • Loading branch information
obulat committed Jan 22, 2020
commit 6d349cfa498cc14ca49ff0c6e531ee325ef77c3f
1 change: 0 additions & 1 deletion src/components/LicenseIcons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default LicenseIcons;
<style lang="scss" scoped>
.photo-license-icons {
display: inline-block;
height: 32px;
white-space: none;
opacity: .7;
margin-top: 2px;
Expand Down
4 changes: 2 additions & 2 deletions src/components/SelectedLicenseCode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default {
text-transform: uppercase;
letter-spacing: 0.5px;
color: #333333;
opacity:80%;
opacity:0.8;

}
}
Expand All @@ -212,7 +212,7 @@ export default {
border-bottom-width: 3px;
span{
font-weight: 700;
opacity:100%;
opacity:1;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectedLicenseDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default {
margin-top: 1rem;
label.label{
font-weight: normal;
opacity: 80%;
opacity: 0.8;
font-size: 1em;
}
span.select, select {
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectionStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default {
margin-bottom: 0;
}
.field.not-selected {
opacity: 70%;
opacity: 0.7;
}
.field:hover {
box-shadow: 0 10px 15px -3px rgba(237, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
Expand Down
6 changes: 3 additions & 3 deletions src/components/Stepper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,11 @@ export default {
}
#stepper .b-steps .steps .step-items .step-item.is-step-not_selected .step-title {
font-weight: normal;
opacity: 70%;
opacity: 0.7;
}
#stepper .b-steps .steps .step-items .step-item.is-step-selected .step-title {
font-weight: 700;
opacity: 90%;
opacity: 1;
}
#stepper .b-steps .steps .step-items .step-item.is-step-not_selected.is-active .step-marker {
border-color: #68ca86;
Expand All @@ -263,7 +263,7 @@ export default {
color: #ed5931;
background-color: white;
svg path {
fill-opacity: 70%;
fill-opacity: 0.7;
}
}

Expand Down