CASH-1042 WIP
This commit is contained in:
parent
3c4a856277
commit
7a908dead5
3 changed files with 13 additions and 7 deletions
|
|
@ -136,7 +136,7 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
color: $blue;
|
color: $blue;
|
||||||
border: none;
|
border: none;
|
||||||
font-weight: 900;
|
font-family: UrbanistSemibold;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
@ -154,7 +154,6 @@ export default {
|
||||||
|
|
||||||
&.btn {
|
&.btn {
|
||||||
&.btn-secondary {
|
&.btn-secondary {
|
||||||
font-weight: 900;
|
|
||||||
border: none;
|
border: none;
|
||||||
&:hover,
|
&:hover,
|
||||||
&:active,
|
&:active,
|
||||||
|
|
@ -183,6 +182,17 @@ export default {
|
||||||
// fixes flicker while transitioning between states
|
// fixes flicker while transitioning between states
|
||||||
transition: background 0s 0s ease-in-out;
|
transition: background 0s 0s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.open-save-progress-button {
|
||||||
|
span {
|
||||||
|
color: $gray-600;
|
||||||
|
font-family: UrbanistRegular;
|
||||||
|
.highlighted-words {
|
||||||
|
font-family: UrbanistSemibold;
|
||||||
|
color: $blue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal.modal-component .modal-dialog .modal-content {
|
.modal.modal-component .modal-dialog .modal-content {
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,6 @@
|
||||||
cmsWidgetName="TextMeQuestionWidget"
|
cmsWidgetName="TextMeQuestionWidget"
|
||||||
v-model="isSmsOptIn" />
|
v-model="isSmsOptIn" />
|
||||||
|
|
||||||
<techNotes v-model="techNotes" :textAreaLabelCopy="textAreaLabelCopy" />
|
|
||||||
|
|
||||||
<navbar
|
<navbar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
|
|
@ -70,7 +68,6 @@ import textboxQuestion from "@/digital-components/textbox-question/textbox-quest
|
||||||
import phoneNumberQuestion from "@/digital-components/phone-number-question/phone-number-question";
|
import phoneNumberQuestion from "@/digital-components/phone-number-question/phone-number-question";
|
||||||
import textBlock from "@/digital-components/text-block/text-block";
|
import textBlock from "@/digital-components/text-block/text-block";
|
||||||
import checkboxQuestion from "@/digital-components/checkbox-question/checkbox-question";
|
import checkboxQuestion from "@/digital-components/checkbox-question/checkbox-question";
|
||||||
import techNotes from "@/layouts/customer-details/tech-notes/tech-notes";
|
|
||||||
//Supporting files
|
//Supporting files
|
||||||
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
|
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
|
||||||
import { settleAllPromises } from "@/helpers/layout-helper";
|
import { settleAllPromises } from "@/helpers/layout-helper";
|
||||||
|
|
@ -215,7 +212,6 @@ export default {
|
||||||
textBlock,
|
textBlock,
|
||||||
phoneNumberQuestion,
|
phoneNumberQuestion,
|
||||||
checkboxQuestion,
|
checkboxQuestion,
|
||||||
techNotes,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
isLoaderDisplayed && !suppressLoader ? 'has-loader' : '',
|
isLoaderDisplayed && !suppressLoader ? 'has-loader' : '',
|
||||||
]"
|
]"
|
||||||
@click="clicked">
|
@click="clicked">
|
||||||
<span class="m-0">{{ this.buttonText }}</span>
|
<span class="m-0" v-html="buttonText"></span>
|
||||||
<loader
|
<loader
|
||||||
class="ms-2"
|
class="ms-2"
|
||||||
v-if="isLoaderDisplayed && !suppressLoader"
|
v-if="isLoaderDisplayed && !suppressLoader"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue