Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM keycloak/keycloak:20.0.1
FROM keycloak/keycloak:26.0.7

# Turn of caching in the configuration so we can modify the theme and refresh to see changes
COPY ./renku-theme-dev/standalone.xml /opt/jboss/keycloak/standalone/configuration/standalone.xml
Expand Down
2 changes: 1 addition & 1 deletion renku_theme/account/theme.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
parent=keycloak.v2
parent=keycloak.v3
logo=/img/logo.svg
2 changes: 1 addition & 1 deletion renku_theme/login/login.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
${msg("loginAccountTitle")}
<div id="renku-login-terms-container">
<div id="renku-login-terms-text">
${kcSanitize(msg("termsText"))?no_esc}
${msg("termsText")?no_esc}
</div>
</div>
<#elseif section = "socialProviders" >
Expand Down
2 changes: 1 addition & 1 deletion renku_theme/login/register.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
${msg("registerTitle")}
<div id="renku-login-terms-container">
<div id="renku-login-terms-text">
${kcSanitize(msg("termsText"))?no_esc}
${msg("termsText")?no_esc}
</div>
</div>
<#elseif section = "form">
Expand Down
19 changes: 10 additions & 9 deletions renku_theme/login/resources/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,10 @@
}

.login-pf body {
background-color: #07182b;
height: 100vh;
background-image: url("../img/background.svg");
background-size: cover;
background-repeat: no-repeat;

background-color: #09182bbf;
background-image: url("../img/dots_background.svg");
background-repeat: repeat-x;
background-position: top;
color: #fff;
font-family: var(--inter-font);
font-size: 16px;
Expand Down Expand Up @@ -70,18 +68,20 @@ a {
.renku-login-container {
padding: 1.5rem;
background-color: #09182bbf;
display: flex;
flex-flow: column;
align-items: center;
}

@media only screen and (min-width: 768px) {
.renku-login-container {
padding: 10px 85px;
height: 100%;
}
}

.renku-login-card {
position: relative;
top: 50px;
top: 30px;
padding-bottom: 20px;
}

Expand Down Expand Up @@ -129,6 +129,7 @@ div#kc-social-providers h4 {
}

#kc-page-title {
margin-top: 0;
margin-bottom: 40px;
}

Expand Down Expand Up @@ -236,11 +237,11 @@ span.pf-m-error.required {

div#kc-header {
background-image: url("../img/logo.svg");
background-color: #07182b;
background-size: cover;
background-repeat: no-repeat;
width: 200px;
height: 80px;
margin-top: 200px;
}

div#kc-header-wrapper {
Expand Down
1,532 changes: 1,532 additions & 0 deletions renku_theme/login/resources/img/dots_background.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion renku_theme/login/terms.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<#elseif section = "form">
<div id="renku-terms-wrapper">
<div id="kc-terms-text">
${kcSanitize(msg("termsText"))?no_esc}
${msg("termsText")?no_esc}
</div>
<form class="form-actions" action="${url.loginAction}" method="POST">
<input class="${properties.kcButtonClass!} ${properties.kcButtonDefaultClass!} ${properties.kcButtonLargeClass!}" name="cancel" id="kc-decline" type="submit" value="${msg("doDecline")}"/>
Expand Down