diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-07-20 10:53:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 10:53:41 +0200 |
commit | 71109b74259fdc5ec78e278d1674cf314c414ae1 (patch) | |
tree | d333a850490d6ddfd2458292934fd91e87d48826 | |
parent | 5579aaa7cb18b8d4832d831c20d70fb4d5189e66 (diff) | |
parent | da68952524116328a17e06c039ca98fc4d8c76af (diff) | |
download | nextcloud-server-71109b74259fdc5ec78e278d1674cf314c414ae1.tar.gz nextcloud-server-71109b74259fdc5ec78e278d1674cf314c414ae1.zip |
Merge pull request #27950 from CarlSchwan/work/carl/login-button-theming
Fix missing theming for login button
-rw-r--r-- | apps/theming/css/theming.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 148c8d7b3a1..2b9d12d2cd4 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -168,6 +168,18 @@ input.primary, color: $color-primary-text; } +#body-login { + input.primary:enabled:hover, + input.primary:enabled:focus, + button.primary:enabled:hover, + button.primary:enabled:focus, + a.primary:enabled:hover, + a.primary:enabled:focus { + color: $color-primary-text; + background-image: linear-gradient(40deg, $color-primary 0%, lighten($color-primary, 20%) 100%); + } +} + @if ($invert) { #body-login { .body-login-container { |