Merge branch 'release/2025.01.23' into feature/CASH-109

This commit is contained in:
CarlNation 2025-01-18 07:54:21 -05:00 committed by GitHub
commit 2c0915f042
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 4 deletions

View file

@ -128,7 +128,7 @@ export default {
@include blue-gradient;
}
&:focus, // Mouse, touch, stylus focus
&:focus-visible {
&:focus-visible {
// Keyboard focus for accessibility
outline: none;
box-shadow:

View file

@ -53,6 +53,10 @@ export default {
modalWidgetName: String,
pageName: String,
},
unmounted() {
// remove any modal effects before leaving page (e.g. user hits browser back button)
this.modal.closeModal();
},
computed: {
buttonText() {
return this.getCmsContent(this.modalWidgetName, "SubheaderText");

View file

@ -143,11 +143,12 @@ export default {
}
}
.skip-button {
.btn.btn-secondary.skip-button {
order: 4;
position: relative;
color: $black;
border: none;
border-radius: .25rem;
font-weight: 900;
font-size: 0.875rem;
text-align: center;
@ -164,12 +165,17 @@ export default {
&:hover,
&:active,
&:focus,
&:focus-visible {
&:focus {
color: $blue-700;
background: none;
box-shadow: none;
}
&:focus-visible {
outline: none;
box-shadow:
0 0 0 3px $white,
0 0 0 5.5px $blue-300;
}
&.delay {
// fixes flicker while transitioning between states