Quellcode durchsuchen

Merge pull request #27950 from CarlSchwan/work/carl/login-button-theming

Fix missing theming for login button
tags/v23.0.0beta1
Carl Schwan vor 2 Jahren
Ursprung
Commit
71109b7425
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen
  1. 12
    0
      apps/theming/css/theming.scss

+ 12
- 0
apps/theming/css/theming.scss Datei anzeigen

@@ -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 {

Laden…
Abbrechen
Speichern