diff --git a/entropia/common/resources/img/favicon.ico b/entropia/common/resources/img/favicon.ico index 48188de..430485d 100644 Binary files a/entropia/common/resources/img/favicon.ico and b/entropia/common/resources/img/favicon.ico differ diff --git a/entropia/common/resources/img/favicon.png b/entropia/common/resources/img/favicon.png new file mode 100644 index 0000000..eeba2df Binary files /dev/null and b/entropia/common/resources/img/favicon.png differ diff --git a/entropia/login/resources/css/login.css b/entropia/login/resources/css/login.css index b4bf8ca..46f6d73 100644 --- a/entropia/login/resources/css/login.css +++ b/entropia/login/resources/css/login.css @@ -1,3 +1,9 @@ +:root { + --pf-global--primary-color--100: #ea5b0c; + --default-background-color: #ea5b0c; + --link-hover-color: #ea5b0c; +} + /* 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. */ @@ -6,8 +12,7 @@ } .login-pf body { - background: url("../img/keycloak-bg.png") no-repeat center center fixed; - background-size: cover; + background: --default-background-color; height: 100%; } @@ -28,6 +33,10 @@ p.instruction { border-color: rgba(230, 230, 230, 0.5); } +.pf-c-button.pf-m-primary { + background: --default-background-color; +} + h1#kc-page-title { margin-top: 10px; }