mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-12 00:38:51 +00:00
Minor improvements to the login page.
Monotone-Parent: e12ac2a35b8eb7888e4c254ece63a208670ac15c Monotone-Revision: 6d28caee4a9a2f2e6ecf18547bce78e7d67bf755 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2010-04-27T20:25:21 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -36,7 +36,7 @@ A:link,
|
||||
A:visited
|
||||
{ color: #54b948; }
|
||||
|
||||
DIV#aboutBox DIV A.button
|
||||
DIV A.button
|
||||
{ color: #000; }
|
||||
|
||||
DIV#aboutBox P.logo
|
||||
|
||||
@@ -192,10 +192,10 @@ function showPasswordDialog(dialogType, constructor, parameters) {
|
||||
dialogs[dialogType] = dialog;
|
||||
}
|
||||
var password = $("password");
|
||||
var offsets = password.cumulativeOffset();
|
||||
var offsets = password.positionedOffset();
|
||||
dialog.show();
|
||||
var top = offsets[1] + 5;
|
||||
var left = offsets[0] + password.clientWidth - dialog.clientWidth;
|
||||
var top = offsets[1] - 2;
|
||||
var left = offsets[0] + 10 - dialog.clientWidth;
|
||||
dialog.setStyle({ "top": top + "px", "left": left + "px"});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user