NIHVIVO-1361: clean up, added login.css to stylesheets.ftl
This commit is contained in:
parent
eafa04ccf2
commit
239c38b3c3
3 changed files with 25 additions and 5 deletions
|
@ -149,3 +149,19 @@ p.passwordNote {
|
|||
display:inline;
|
||||
vertical-align:middle;
|
||||
}
|
||||
/* WILMA THEME ------> */
|
||||
#error-alert{
|
||||
width:260px;
|
||||
position:relative;
|
||||
}
|
||||
#error-alert img{
|
||||
padding-left:38px;
|
||||
}
|
||||
#error-alert p.error-message{
|
||||
position:absolute;
|
||||
width:200px;
|
||||
top:8px;
|
||||
left:82px;
|
||||
font-size:0.7em;
|
||||
color:#b30d1c;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
<#-- Template for loading stylesheets in the head -->
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="${stylesheetPath}/screen.css" media="screen"/>
|
||||
<link rel="stylesheet" type="text/css" href="${stylesheetPath}/print.css" media="print"/>
|
||||
|
||||
${stylesheets.add("/css/edit.css")} <#-- temporary until edit controller can include this when needed -->
|
||||
${stylesheets.add("/css/menupage/menupage.css")} <#-- we need to call it from the theme until freemarker controller and menupage.ftl are created -->
|
||||
${stylesheets.add("/css/individual/individual.css")} <#-- we need to call it from the theme until freemarker controller and individual.ftl are created -->
|
||||
|
||||
${stylesheets.tags}
|
|
@ -31,8 +31,10 @@
|
|||
</#if>
|
||||
|
||||
<#if errorMessage??>
|
||||
<section id="errorAlert"><img src="${urls.siteIcons}/iconAlert.png" alert="Error alert icon"/>
|
||||
<p>${errorMessage}</p>
|
||||
<section id="error-alert" role='region'>
|
||||
<img src="${urls.siteIcons}/iconAlert.png" alert="Error alert icon" />
|
||||
|
||||
<p class="error-message">${errorMessage}</p>
|
||||
</section>
|
||||
</#if>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue