KEYCLOAK-132,136,139 fix for form UI separator issues
This commit is contained in:
parent
2c9fcc2324
commit
7ec067eadf
6 changed files with 18 additions and 8 deletions
|
@ -71,7 +71,7 @@ body {
|
||||||
width: auto;
|
width: auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.rcue-login-register .background-area .separator .section,
|
.rcue-login-register .background-area .section,
|
||||||
.rcue-login-register .background-area .social .section {
|
.rcue-login-register .background-area .social .section {
|
||||||
padding-top: 1.5em;
|
padding-top: 1.5em;
|
||||||
padding-bottom: 1.5em;
|
padding-bottom: 1.5em;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<#import "template-login-action.ftl" as layout>
|
<#import "template-login-action.ftl" as layout>
|
||||||
<@layout.registrationLayout bodyClass="reset"; section>
|
<@layout.registrationLayout bodyClass="reset" isSeparator=true forceSeparator=true; section>
|
||||||
<#if section = "title">
|
<#if section = "title">
|
||||||
|
|
||||||
${rb.getString('emailUpdateHeader')}
|
${rb.getString('emailUpdateHeader')}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<#import "template-login-action.ftl" as layout>
|
<#import "template-login-action.ftl" as layout>
|
||||||
<@layout.registrationLayout bodyClass=""; section>
|
<@layout.registrationLayout bodyClass="" isSeparator=false forceSeparator=true; section>
|
||||||
<#if section = "title">
|
<#if section = "title">
|
||||||
|
|
||||||
Update Account Information
|
Update Account Information
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<#import "template-login-action.ftl" as layout>
|
<#import "template-login-action.ftl" as layout>
|
||||||
<@layout.registrationLayout bodyClass="email"; section>
|
<@layout.registrationLayout bodyClass="email" isSeparator=false forceSeparator=true; section>
|
||||||
<#if section = "title">
|
<#if section = "title">
|
||||||
|
|
||||||
Email verification
|
Email verification
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<#macro registrationLayout bodyClass isErrorPage=false>
|
<#macro registrationLayout bodyClass isErrorPage=false isSeparator=false forceSeparator=false>
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
@ -36,7 +36,12 @@
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<div class="background-area">
|
<div class="background-area">
|
||||||
<div class="form-area clearfix">
|
<#if !forceSeparator && realm?has_content>
|
||||||
|
<#assign drawSeparator = realm.registrationAllowed>
|
||||||
|
<#else>
|
||||||
|
<#assign drawSeparator = isSeparator>
|
||||||
|
</#if>
|
||||||
|
<div class="form-area clearfix ${(drawSeparator)?string('separator','')}">
|
||||||
<div class="section app-form">
|
<div class="section app-form">
|
||||||
<#if !isErrorPage && message?has_content>
|
<#if !isErrorPage && message?has_content>
|
||||||
<#if message.error>
|
<#if message.error>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<#macro registrationLayout bodyClass>
|
<#macro registrationLayout bodyClass isSeparator=false forceSeparator=false>
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
@ -29,7 +29,12 @@
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<div class="background-area">
|
<div class="background-area">
|
||||||
<div class="form-area ${(realm.social)?string('social','')} clearfix">
|
<#if !forceSeparator && realm?has_content>
|
||||||
|
<#assign drawSeparator = realm.registrationAllowed>
|
||||||
|
<#else>
|
||||||
|
<#assign drawSeparator = isSeparator>
|
||||||
|
</#if>
|
||||||
|
<div class="form-area ${(realm.social && bodyClass != "register")?string('social','')} ${(drawSeparator)?string('separator','')} clearfix">
|
||||||
<div class="section app-form">
|
<div class="section app-form">
|
||||||
<h3>Application login area</h3>
|
<h3>Application login area</h3>
|
||||||
<#if message?has_content && message.error>
|
<#if message?has_content && message.error>
|
||||||
|
|
Loading…
Reference in a new issue