2ec6ca827e
Build and Deploy Verso / deploy (push) Successful in 15m0s
Nginx: add dedicated upload location with client_body_timeout 15m, client_max_body_size 550m, and proxy_request_buffering off. Default client_body_timeout of 60s was the actual culprit cutting slow uploads. Node.js requestTimeout (build 228) remains as a backstop. Lumière: pass isLumiere from UserPagesController (settings), PasswordResetController (set-password), and UserActivateController (first-time activation). auth.scss adds card styling for auth pages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
104 lines
1.8 KiB
SCSS
104 lines
1.8 KiB
SCSS
// Lumière-themed overrides for auth pages (setPassword, activate, etc.)
|
|
[data-lumiere='true'] {
|
|
.auth-aux-container {
|
|
background: rgba(255, 255, 255, 0.88);
|
|
border-radius: 16px;
|
|
padding: 2rem;
|
|
box-shadow: 0 4px 24px rgba(42, 157, 143, 0.12);
|
|
min-height: unset;
|
|
margin-top: 5rem;
|
|
}
|
|
}
|
|
|
|
.auth-aux-logo {
|
|
position: absolute;
|
|
top: var(--spacing-06);
|
|
left: var(--spacing-06);
|
|
|
|
img {
|
|
height: 40px;
|
|
}
|
|
}
|
|
|
|
.auth-aux-container {
|
|
padding-top: calc($header-height + $spacing-11);
|
|
max-width: 320px;
|
|
min-height: 100vh;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
.recaptcha-branding {
|
|
@include body-xs;
|
|
|
|
padding: 0;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.auth-aux-new-password ~ .notification {
|
|
margin-top: var(--spacing-04);
|
|
}
|
|
|
|
.login-register-container {
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
padding-bottom: 125px;
|
|
}
|
|
|
|
.login-register-error-container {
|
|
padding-bottom: var(--spacing-05);
|
|
text-align: left;
|
|
}
|
|
|
|
.login-register-card {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-register-header {
|
|
padding-bottom: var(--spacing-07);
|
|
border-bottom: solid 1px var(--border-divider);
|
|
}
|
|
|
|
.login-register-header-heading {
|
|
margin: 0;
|
|
color: var(--content-secondary);
|
|
}
|
|
|
|
.login-register-hr-text-container {
|
|
line-height: 1;
|
|
position: relative;
|
|
padding: var(--spacing-08) 0;
|
|
font-size: var(--font-size-02);
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
height: 1px;
|
|
background-color: var(--neutral-20);
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.login-register-hr-text {
|
|
position: relative;
|
|
background-color: #fff;
|
|
padding: 0 var(--spacing-05);
|
|
}
|
|
|
|
.login-register-text,
|
|
.login-register-hr-text-container {
|
|
margin: 0;
|
|
}
|
|
|
|
.login-register-text {
|
|
padding-bottom: var(--spacing-08);
|
|
|
|
&:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|