mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-12 00:19:48 +00:00
Fix: Refactor accounts templates and create signup template (#5899)
This commit is contained in:
@@ -26,32 +26,38 @@ body {
|
||||
--bs-btn-active-color: var(--pngx-primary-active);
|
||||
}
|
||||
|
||||
.form-signin {
|
||||
.form-accounts {
|
||||
max-width: 330px;
|
||||
}
|
||||
|
||||
#inputUsername,
|
||||
#inputPassword1 {
|
||||
.form-stacked-top input {
|
||||
margin-bottom: -1px;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
#inputUsername:focus {
|
||||
.form-stacked-middle input {
|
||||
margin-bottom: -1px;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.form-stacked-bottom input {
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: 0;
|
||||
}
|
||||
|
||||
.form-accounts .form-floating input:focus {
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
#inputUsername:focus~label {
|
||||
.form-accounts .form-floating input:focus~label {
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
#inputPassword,
|
||||
#inputPassword2 {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
/* From theme_dark.scss */
|
||||
body {
|
Reference in New Issue
Block a user