CSR-920 replace generic button with button-main.
This commit is contained in:
parent
cf9adbb13b
commit
3399ab735d
1 changed files with 12 additions and 5 deletions
|
|
@ -22,10 +22,13 @@
|
||||||
<p class="mb-0" v-html="this.ModalBodyText"></p>
|
<p class="mb-0" v-html="this.ModalBodyText"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer px-5 py-4">
|
<div class="modal-footer px-5 py-4">
|
||||||
<button
|
<buttonMain
|
||||||
class="btn btn-primary w-100"
|
ref="buttonMain"
|
||||||
data-bs-dismiss="modal"
|
isPrimary
|
||||||
v-html="this.ModalCloseButtonText"></button>
|
v-html="this.ModalCloseButtonText"
|
||||||
|
class="w-100"
|
||||||
|
@click-event="buttonClick"
|
||||||
|
data-bs-dismiss="modal" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -33,6 +36,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import buttonMain from "@/ux-components/button-main/button-main";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "modal",
|
name: "modal",
|
||||||
props: {
|
props: {
|
||||||
|
|
@ -55,6 +60,9 @@ export default {
|
||||||
return this.getCmsContent(this.cmsWidgetName, "FooterText");
|
return this.getCmsContent(this.cmsWidgetName, "FooterText");
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
components: {
|
||||||
|
buttonMain,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -104,7 +112,6 @@ export default {
|
||||||
box-shadow: 0px -1px 0px rgba(179, 180, 181, 0.3);
|
box-shadow: 0px -1px 0px rgba(179, 180, 181, 0.3);
|
||||||
button {
|
button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 3rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue