Compare commits
11 Commits
transcaffe
...
main
Author | SHA1 | Date | |
---|---|---|---|
ffe15b749e | |||
7006a0d0d4 | |||
5231284392 | |||
2d4bb8fc09 | |||
7e4578a058 | |||
2e04566f48 | |||
0cc6d88286 | |||
3a3b8c63ec | |||
e3db654a05 | |||
e0ed2e01c0 | |||
c6b069e882 |
@ -1,14 +0,0 @@
|
|||||||
parent=base
|
|
||||||
import=common/keycloak
|
|
||||||
|
|
||||||
styles=css/account.css
|
|
||||||
stylesCommon=node_modules/patternfly/dist/css/patternfly.min.css node_modules/patternfly/dist/css/patternfly-additions.min.css
|
|
||||||
|
|
||||||
##### css classes for form buttons
|
|
||||||
# main class used for all buttons
|
|
||||||
kcButtonClass=btn
|
|
||||||
# classes defining priority of the button - primary or default (there is typically only one priority button for the form)
|
|
||||||
kcButtonPrimaryClass=btn-primary
|
|
||||||
kcButtonDefaultClass=btn-default
|
|
||||||
# classes defining size of the button
|
|
||||||
kcButtonLargeClass=btn-lg
|
|
Before Width: | Height: | Size: 627 B |
2
finallycoffee/account/messages/messages_en.properties
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
lastName=Name
|
||||||
|
signingInSidebarTitle=Signing in & Security
|
99
finallycoffee/account/resources/img/entropia.svg
Normal file
After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 202 B |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
2
finallycoffee/account/theme.properties
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
parent=keycloak.v2
|
||||||
|
logo=/img/antifa_coffee_cups.svg
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@ -1,5 +1,6 @@
|
|||||||
parent=base
|
parent=base
|
||||||
import=common/keycloak
|
import=common/keycloak
|
||||||
|
logo=/img/antifa_trans_pride.svg
|
||||||
|
|
||||||
styles=css/styles.css
|
styles=css/styles.css
|
||||||
stylesCommon=node_modules/patternfly/dist/css/patternfly.min.css node_modules/patternfly/dist/css/patternfly-additions.min.css node_modules/select2/select2.css lib/angular/treeview/css/angular.treeview.css node_modules/text-security/text-security.css
|
stylesCommon=node_modules/patternfly/dist/css/patternfly.min.css node_modules/patternfly/dist/css/patternfly-additions.min.css node_modules/select2/select2.css lib/angular/treeview/css/angular.treeview.css node_modules/text-security/text-security.css
|
BIN
finallycoffee/common/resources/img/antifa_coffee_cups.png
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
finallycoffee/common/resources/img/antifa_lesbian_pride.png
Normal file
After Width: | Height: | Size: 166 KiB |
BIN
finallycoffee/common/resources/img/antifa_trans_pride.png
Normal file
After Width: | Height: | Size: 160 KiB |
BIN
finallycoffee/common/resources/img/background.jpg
Normal file
After Width: | Height: | Size: 312 KiB |
BIN
finallycoffee/common/resources/img/favicon-196x196.png
Normal file
After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 281 B |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
@ -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.
|
/* 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.
|
This clashes with the "keycloak-bg.png' background defined on the body below.
|
||||||
Therefore the Patternfly background must be set to none. */
|
Therefore the Patternfly background must be set to none. */
|
||||||
@ -6,9 +12,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.login-pf body {
|
.login-pf body {
|
||||||
background: url("../img/keycloak-bg.png") no-repeat center center fixed;
|
background: var(--default-background-color) url(../../../common/finallycoffee/img/background.jpg);
|
||||||
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
color: var(--pf-global--Color--light-200);
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea.pf-c-form-control {
|
textarea.pf-c-form-control {
|
||||||
@ -28,8 +36,24 @@ p.instruction {
|
|||||||
border-color: rgba(230, 230, 230, 0.5);
|
border-color: rgba(230, 230, 230, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pf-c-button.pf-m-primary {
|
||||||
|
background: var(--default-background-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1#kc-page-title::before {
|
||||||
|
content: "";
|
||||||
|
height: 200px;
|
||||||
|
display: block;
|
||||||
|
background-image: url(../../../common/finallycoffee/img/antifa_lesbian_pride.svg);
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 143.37px 200px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
h1#kc-page-title {
|
h1#kc-page-title {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
color: var(--pf-global--BackgroundColor--100);
|
||||||
}
|
}
|
||||||
|
|
||||||
#kc-locale ul {
|
#kc-locale ul {
|
||||||
@ -112,6 +136,8 @@ div.kc-logo-text span {
|
|||||||
#kc-username {
|
#kc-username {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom:-10px;
|
margin-bottom:-10px;
|
||||||
|
color: var(--pf-global--palette-black-150);
|
||||||
|
height: 290px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#kc-webauthn-settings-form {
|
#kc-webauthn-settings-form {
|
||||||
@ -123,15 +149,16 @@ div.kc-logo-text span {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#kc-form-webauthn .select-auth-box-desc {
|
#kc-form-webauthn .select-auth-box-desc {
|
||||||
color: var(--pf-global--palette--black-600);
|
color: var(--pf-global--palette--black-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
#kc-form-webauthn .select-auth-box-headline {
|
#kc-form-webauthn .select-auth-box-headline {
|
||||||
color: var(--pf-global--Color--300);
|
color: var(--pf-global--palette-black--150);
|
||||||
}
|
}
|
||||||
|
|
||||||
#kc-form-webauthn .select-auth-box-icon {
|
#kc-form-webauthn .select-auth-box-icon {
|
||||||
flex: 0 0 3em;
|
flex: 0 0 3em;
|
||||||
|
color: var(--default-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#kc-form-webauthn .select-auth-box-icon-properties {
|
#kc-form-webauthn .select-auth-box-icon-properties {
|
||||||
@ -147,6 +174,10 @@ div.kc-logo-text span {
|
|||||||
margin: -1px 0;
|
margin: -1px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#kc-form-webauthn .select-auth-box-paragraph {
|
||||||
|
color: var(--pf-global--palette--black-600);
|
||||||
|
}
|
||||||
|
|
||||||
#kc-content-wrapper {
|
#kc-content-wrapper {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
@ -155,6 +186,14 @@ div.kc-logo-text span {
|
|||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#kc-form-wrapper #kc-form-login label {
|
||||||
|
color: var(--pf-global--BackgroundColor--light-100);
|
||||||
|
}
|
||||||
|
|
||||||
|
#kc-form-wrapper #kc-form-login .pf-c-form-control {
|
||||||
|
background-color: var(--pf-global--BackgroundColor--light-300);
|
||||||
|
}
|
||||||
|
|
||||||
#kc-info {
|
#kc-info {
|
||||||
margin: 20px -40px -30px;
|
margin: 20px -40px -30px;
|
||||||
}
|
}
|
||||||
@ -171,7 +210,7 @@ div.kc-logo-text span {
|
|||||||
|
|
||||||
#kc-form-options .checkbox {
|
#kc-form-options .checkbox {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
color: #72767b;
|
color: var(--pf-global--Color--light-300);
|
||||||
}
|
}
|
||||||
|
|
||||||
#kc-terms-text {
|
#kc-terms-text {
|
||||||
@ -489,6 +528,7 @@ ul#kc-totp-supported-apps {
|
|||||||
max-width: 500px;
|
max-width: 500px;
|
||||||
border-top: 4px solid;
|
border-top: 4px solid;
|
||||||
border-color: var(--pf-global--primary-color--100);
|
border-color: var(--pf-global--primary-color--100);
|
||||||
|
background: var(--pf-global--BackgroundColor--dark-300);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*phone*/
|
/*phone*/
|
Before Width: | Height: | Size: 513 B After Width: | Height: | Size: 513 B |
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 678 B After Width: | Height: | Size: 678 B |
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 410 B |
Before Width: | Height: | Size: 513 B After Width: | Height: | Size: 513 B |
Before Width: | Height: | Size: 646 B After Width: | Height: | Size: 646 B |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 712 B |
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |