diff --git a/src/constants/progress-bar-mapper.js b/src/constants/progress-bar-mapper.js index f177b6cf7..7947f6817 100644 --- a/src/constants/progress-bar-mapper.js +++ b/src/constants/progress-bar-mapper.js @@ -1,35 +1,35 @@ export const pageProgressMapper = { //Combine progress bar slide percent and button steps vehicle: { - percent: 7, - step: 1, - }, - "vehicle-damage": { percent: 10, step: 1, }, - estimate: { + "vehicle-damage": { percent: 14, step: 1, }, - "service-zip": { + estimate: { percent: 18, step: 1, }, + "service-zip": { + percent: 22, + step: 1, + }, "vin-lookup": { - percent: 18, + percent: 22, step: 1, }, "license-plate-lookup": { - percent: 18, + percent: 22, step: 1, }, "address-lookup": { - percent: 18, + percent: 22, step: 1, }, "address-vehicles": { - percent: 25, + percent: 26, step: 1, }, "part-questions": { @@ -49,7 +49,7 @@ export const pageProgressMapper = { step: 1, }, quote: { - percent: 39, //Must be 39 + percent: 39, //The first Step 2 must be 39 so the animated bar lines up with the dot step: 2, }, "insurance-company": { @@ -61,7 +61,7 @@ export const pageProgressMapper = { step: 2, }, schedule: { - percent: 70.5, //Must be 70.5 + percent: 70.5, //The first Step 3 must be 70.5 so the animated bar lines up with the dot step: 3, }, "mobile-details": { @@ -73,7 +73,7 @@ export const pageProgressMapper = { step: 3, }, "payment-method": { - percent: 92, //Must be 92 + percent: 92, //The first Step 4 must be 92 so the animated bar lines up with the dot step: 3, }, payment: { diff --git a/src/experiment-components/donation-block.vue b/src/experiment-components/donation-block.vue index 34cd4178a..f93c96520 100644 --- a/src/experiment-components/donation-block.vue +++ b/src/experiment-components/donation-block.vue @@ -317,10 +317,18 @@ export default { } } .custom-secondary { - &:hover { + border-radius: 0.5rem; + color: $blue; + border: 1px solid $blue; + &:hover, + &:focus, + &:active { color: $blue; background: transparent; border: 1px solid $blue; + box-shadow: + 0 0 0 3px #ffffff, + 0 0 0 5.5px $blue; } } } diff --git a/src/fmg-components/layouts/questions-page-layout/questions-page-layout.vue b/src/fmg-components/layouts/questions-page-layout/questions-page-layout.vue index fca4b91f3..560fe87c6 100644 --- a/src/fmg-components/layouts/questions-page-layout/questions-page-layout.vue +++ b/src/fmg-components/layouts/questions-page-layout/questions-page-layout.vue @@ -19,10 +19,10 @@ v-if="showThisQuestionChain(questionsDatum, i)" :answerKey="questionsDatum.answerKey" :validationRules="validationRules" /> + + - - diff --git a/src/layouts/mobile-details/mobile-details.vue b/src/layouts/mobile-details/mobile-details.vue index 25268805c..dd2ddf9a5 100644 --- a/src/layouts/mobile-details/mobile-details.vue +++ b/src/layouts/mobile-details/mobile-details.vue @@ -1,15 +1,15 @@