Fix issue where Patternfly background clashes with Keycloak one (#8422)
This commit is contained in:
parent
3c3c33038a
commit
38174212f9
1 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
/* Patternfly CSS places a "bg-login.jpg" as the background on this ".login-pf" class.
|
||||
This clashes with the "keycloak-bg.png' background defined on the body below.
|
||||
Therefore the Patternfly background must be set to none. */
|
||||
.login-pf {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.login-pf body {
|
||||
background: url("../img/keycloak-bg.png") no-repeat center center fixed;
|
||||
background-size: cover;
|
||||
|
|
Loading…
Reference in a new issue