Update to fade out the welcome log in message

This commit is contained in:
tlw72 2011-01-17 22:45:39 +00:00
parent d7531738c8
commit 82e39d2087
2 changed files with 17 additions and 3 deletions

View file

@ -349,6 +349,14 @@ p.password-note{
padding: 0.5em;
margin-bottom: 10px;
}
#welcome-message{
position:absolute;
width:930px;
border: 1px dotted #E2C822;
background-color: #FFF9D7;
padding: 0.25em;
margin-top:-8px;
}
/* HOME SEARCH ------> */
#search-home {
float: left;

View file

@ -10,7 +10,13 @@
<div id="wrapper-content" role="main">
<#if flash?has_content>
<#if flash?starts_with("Welcome") >
<section id="welcome-message" role="alert">
${flash}
</section>
<#else>
<section id="flash-message" role="alert">
${flash}
</section>
</#if>
</#if>