UI: Adjust gradient, icon hover, capitalizations (#12045)

This commit adjusts the scroll gradient on the login modal, changes `email / username` to `Email / Username` and adjusts the color of social button icons on hover in the login modal.
This commit is contained in:
Jordan Vidrine 2021-02-11 10:08:01 -06:00 committed by GitHub
parent 830797a9c3
commit 5e1c8111d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -171,6 +171,9 @@
color: #000 !important; color: #000 !important;
background: #ececec !important; background: #ececec !important;
box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.25); box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.25);
.d-icon {
color: inherit !important;
}
} }
&[href] { &[href] {
color: var(--secondary); color: var(--secondary);

View File

@ -234,6 +234,7 @@
.login-welcome-header { .login-welcome-header {
grid-area: header; grid-area: header;
padding: 1em 1em 1em 1em; padding: 1em 1em 1em 1em;
height: calc(110px - 2em);
.login-title { .login-title {
font-size: 2.75em; font-size: 2.75em;
} }
@ -279,7 +280,7 @@
); );
} }
&:before { &:before {
top: 7.85em; top: 110px;
background-image: linear-gradient( background-image: linear-gradient(
to top, to top,
rgba(var(--secondary-rgb), 0), rgba(var(--secondary-rgb), 0),

View File

@ -1728,7 +1728,7 @@ en:
security_key_not_allowed_error: "The security key authentication process either timed out or was cancelled." security_key_not_allowed_error: "The security key authentication process either timed out or was cancelled."
security_key_no_matching_credential_error: "No matching credentials could be found in the provided security key." security_key_no_matching_credential_error: "No matching credentials could be found in the provided security key."
security_key_support_missing_error: "Your current device or browser does not support the use of security keys. Please use a different method." security_key_support_missing_error: "Your current device or browser does not support the use of security keys. Please use a different method."
email_placeholder: "email / username" email_placeholder: "Email / Username"
caps_lock_warning: "Caps Lock is on" caps_lock_warning: "Caps Lock is on"
error: "Unknown error" error: "Unknown error"
cookies_error: "Your browser seems to have cookies disabled. You might not be able to log in without enabling them first." cookies_error: "Your browser seems to have cookies disabled. You might not be able to log in without enabling them first."