Merge branch 'release/2025.02.06' into rlsmerge/2025.02.06-to-develop
This commit is contained in:
commit
65cb84b0bd
2 changed files with 8 additions and 2 deletions
|
|
@ -123,6 +123,7 @@ export default {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 3rem;
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
|
|
||||||
&.progress-saved {
|
&.progress-saved {
|
||||||
|
|
@ -156,6 +157,10 @@ export default {
|
||||||
background: none;
|
background: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
&:focus-visible span {
|
||||||
|
outline: 2px solid #005FCC;
|
||||||
|
border-radius: .25rem;
|
||||||
|
}
|
||||||
&.delay {
|
&.delay {
|
||||||
// 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;
|
||||||
|
|
@ -205,7 +210,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert {
|
.alert {
|
||||||
border-radius: $border-radius-lg;
|
border-radius: $border-radius-lg;
|
||||||
border: 1px solid $green;
|
border: 1px solid $green;
|
||||||
|
|
|
||||||
|
|
@ -201,7 +201,8 @@ export function areAllSessionCookiesSet() {
|
||||||
|
|
||||||
export function refreshSessionExpiration() {
|
export function refreshSessionExpiration() {
|
||||||
refreshCookieExpiration(cookieNames.SESSION_ID, cookieExpirations.SESSION_ID);
|
refreshCookieExpiration(cookieNames.SESSION_ID, cookieExpirations.SESSION_ID);
|
||||||
refreshCookieExpiration(cookieNames.DXDEV, cookieExpirations.DXDEV);
|
// Change 2/4/25: Don't update DXDEV to avoid Safari constraints on client-set cookies.
|
||||||
|
// refreshCookieExpiration(cookieNames.DXDEV, cookieExpirations.DXDEV);
|
||||||
refreshCookieExpiration(cookieNames.FUNNEL_USER_ID, cookieExpirations.FUNNEL_USER_ID);
|
refreshCookieExpiration(cookieNames.FUNNEL_USER_ID, cookieExpirations.FUNNEL_USER_ID);
|
||||||
refreshCookieExpiration(cookieNames.FUNNEL_SESSION_KEY, cookieExpirations.FUNNEL_SESSION_KEY);
|
refreshCookieExpiration(cookieNames.FUNNEL_SESSION_KEY, cookieExpirations.FUNNEL_SESSION_KEY);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue