Monotone-Parent: e7d394203e99a74856b665487e4681aa70114480

Monotone-Revision: 398264edd129900ccebb2b98453a9554c39010b4

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-08-06T12:37:28
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2010-08-06 12:37:28 +00:00
parent 1cec158922
commit 4613beebaa
3 changed files with 12 additions and 8 deletions

View file

@ -591,12 +591,11 @@ DIV.dialog.none H3
DIV#bgDialogDiv
{ position: absolute;
margin: auto;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 9999;
top: 0px; left: 0px;
bottom: 0px;
right: 0px;
opacity: .3;
background-color: #000!important; }
background-color: #555 !important; }
DIV#uploadDialog,
DIV#uploadResults
@ -956,4 +955,4 @@ DIV.bottomToolbar A.bottomButton SPAN:active
/* modalbox */
DIV#modalbox SPAN
{ float: right; }
{ float: right; }

View file

@ -566,9 +566,10 @@ function popupMenu(event, menuId, target) {
menuLeft -= (popup.offsetWidth + 1);
var isVisible = true;
if (popup.prepareVisibility)
if (popup.prepareVisibility) {
if (!popup.prepareVisibility())
isVisible = false;
}
Event.stop(event);
if (isVisible) {
@ -1010,8 +1011,9 @@ function popupToolbarMenu(node, menuId) {
hideMenu(document.currentPopupMenu);
var popup = $(menuId);
if (popup.prepareVisibility)
if (popup.prepareVisibility) {
popup.prepareVisibility();
}
var offset = $(node).cumulativeOffset();
var top = offset.top + node.offsetHeight;

View file

@ -7,6 +7,9 @@ FORM
margin: 0px; }
/* generic */
DIV#bgDialogDiv
{ filter: alpha(opacity=30); }
SPAN.disabledToolbarButton
{ filter: alpha(opacity=40); }