Mercurial > dive4elements > river
changeset 2971:229c34d6e87b
Add css for the error box at the login page
flys-client/trunk@4967 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Bjoern Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 13 Jul 2012 07:12:06 +0000 |
parents | b89dd09b486c |
children | 6266dff93ed2 |
files | flys-client/ChangeLog flys-client/src/main/webapp/FLYS.css |
diffstat | 2 files changed, 14 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-client/ChangeLog Fri Jul 13 06:57:00 2012 +0000 +++ b/flys-client/ChangeLog Fri Jul 13 07:12:06 2012 +0000 @@ -1,3 +1,8 @@ +2012-07-13 Björn Ricks <bjoern.ricks@intevation.de> + + * src/main/webapp/FLYS.css: + Add styles for the authentication error at the login page. + 2012-07-13 Björn Ricks <bjoern.ricks@intevation.de> * src/main/java/de/intevation/flys/client/server/LoginServlet.java:
--- a/flys-client/src/main/webapp/FLYS.css Fri Jul 13 06:57:00 2012 +0000 +++ b/flys-client/src/main/webapp/FLYS.css Fri Jul 13 07:12:06 2012 +0000 @@ -152,16 +152,22 @@ #authentication { margin-left: 25%; margin-right: 25%; - padding: 1em; + padding: 2em; border: 2px solid #cfe1f1; - border-radius: 15px 15px 15px 15px; + border-radius: 15px; } #authentication div { - margin: 1em; + margin: 1em 0; font-size: 1.2em; } +#authentication div.error { + text-align: center; + border: 1px solid red; + border-radius: 5px; +} + #authentication table { margin-bottom: 1em; }