From 46709b88c647ca62f51f8f2709da1ce372d4040b Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 5 Sep 2007 17:56:00 +0000 Subject: [PATCH] Monotone-Parent: ef929534458c63024938c529b0dd268003e5c97c Monotone-Revision: d166194697bcb5739b7984b3f4bff186a687d742 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-09-05T17:56:00 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/SOGoRootPage.css | 12 +++++++++--- UI/WebServerResources/SOGoRootPage.js | 3 +++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/UI/WebServerResources/SOGoRootPage.css b/UI/WebServerResources/SOGoRootPage.css index ee7ab9448..fe301a452 100644 --- a/UI/WebServerResources/SOGoRootPage.css +++ b/UI/WebServerResources/SOGoRootPage.css @@ -1,6 +1,12 @@ BODY { background-color: #999; } +IMG#preparedAnimation +{ + width: 0px; + height: 0px; +} + DIV#loginScreen { background-color: #d4d0c8; @@ -9,7 +15,7 @@ DIV#loginScreen padding: 10px; border: 2px solid transparent; width: 158px; - height: 250px; + height: 253px; -moz-border-top-colors: #efebe7 #fff; -moz-border-left-colors: #efebe7 #fff; -moz-border-right-colors: #000 #9c9a94 transparent; @@ -19,8 +25,8 @@ DIV#loginScreen DIV#loginScreen IMG { border: 1px solid #999; } -DIV#loginScreen INPUT -{ width: 100%; } +DIV#loginScreen INPUT.textField +{ width: 148px; } DIV#loginButton { text-align: right; } diff --git a/UI/WebServerResources/SOGoRootPage.js b/UI/WebServerResources/SOGoRootPage.js index 7e311008d..28ea18e7a 100644 --- a/UI/WebServerResources/SOGoRootPage.js +++ b/UI/WebServerResources/SOGoRootPage.js @@ -3,6 +3,9 @@ function initLogin() { var userName = $("userName"); userName.focus(); Event.observe(submit, "click", onLoginClick); + + var image = $("preparedAnimation"); + image.parentNode.removeChild(image); } function onLoginClick(event) {