Update to fade out the welcome log in message
This commit is contained in:
parent
d7531738c8
commit
82e39d2087
2 changed files with 17 additions and 3 deletions
|
@ -349,6 +349,14 @@ p.password-note{
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
#welcome-message{
|
||||||
|
position:absolute;
|
||||||
|
width:930px;
|
||||||
|
border: 1px dotted #E2C822;
|
||||||
|
background-color: #FFF9D7;
|
||||||
|
padding: 0.25em;
|
||||||
|
margin-top:-8px;
|
||||||
|
}
|
||||||
/* HOME SEARCH ------> */
|
/* HOME SEARCH ------> */
|
||||||
#search-home {
|
#search-home {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
|
|
||||||
<div id="wrapper-content" role="main">
|
<div id="wrapper-content" role="main">
|
||||||
<#if flash?has_content>
|
<#if flash?has_content>
|
||||||
|
<#if flash?starts_with("Welcome") >
|
||||||
|
<section id="welcome-message" role="alert">
|
||||||
|
${flash}
|
||||||
|
</section>
|
||||||
|
<#else>
|
||||||
<section id="flash-message" role="alert">
|
<section id="flash-message" role="alert">
|
||||||
${flash}
|
${flash}
|
||||||
</section>
|
</section>
|
||||||
</#if>
|
</#if>
|
||||||
|
</#if>
|
Loading…
Add table
Add a link
Reference in a new issue