mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-02 10:05:26 +00:00
Monotone-Parent: a4dc112ad42d8b85263a723606a21cfe34e94865
Monotone-Revision: 2519a63de2bcf36a1f0aeeece831f277cf94934c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-01T22:35:36 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -151,10 +151,10 @@ Element.addMethods({
|
||||
- (menuLeft + popup.offsetWidth));
|
||||
if (leftDiff < 0)
|
||||
menuLeft -= popup.offsetWidth;
|
||||
|
||||
popup.style.top = menuTop + "px;";
|
||||
popup.style.left = menuLeft + "px;";
|
||||
popup.style.visibility = "visible;";
|
||||
|
||||
popup.setStyle( { top: menuTop + "px",
|
||||
left: menuLeft + "px",
|
||||
visibility: "visible" } );
|
||||
|
||||
document.currentPopupMenu = popup;
|
||||
Event.observe(document.body, "click", onBodyClickMenuHandler);
|
||||
|
||||
@@ -455,12 +455,12 @@ DIV[datatype~="additional"] > A.node > SPAN.nodeName
|
||||
|
||||
/* drag-n-drop */
|
||||
IMG.dragMessage
|
||||
{
|
||||
position: absolute;
|
||||
{ position: absolute;
|
||||
visibility: hidden;
|
||||
border: 0px;
|
||||
-moz-opacity: 0.7;
|
||||
}
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70); }
|
||||
|
||||
TABLE#addr_table
|
||||
{
|
||||
|
||||
@@ -798,7 +798,9 @@ DIV.appointments > DIV.appointment
|
||||
padding: 1px; }
|
||||
|
||||
DIV[class~="appointment"]._selected > DIV.appointmentInside
|
||||
{ -moz-opacity: 0.7; }
|
||||
{ -moz-opacity: 0.7;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70); }
|
||||
|
||||
DIV.appointment > DIV.appointmentInside
|
||||
{ position: absolute;
|
||||
@@ -817,28 +819,36 @@ DIV.shadow1
|
||||
right: 0px;
|
||||
top: 2px;
|
||||
bottom: 3px;
|
||||
-moz-opacity: 0.1; }
|
||||
-moz-opacity: 0.1;
|
||||
opacity: 0.1;
|
||||
filter: alpha(opacity=10); }
|
||||
|
||||
DIV.shadow2
|
||||
{ left: 1px;
|
||||
right: 1px;
|
||||
top: 1px;
|
||||
bottom: 2px;
|
||||
-moz-opacity: 0.1; }
|
||||
-moz-opacity: 0.1;
|
||||
opacity: 0.1;
|
||||
filter: alpha(opacity=10); }
|
||||
|
||||
DIV.shadow3
|
||||
{ left: 2px;
|
||||
right: 2px;
|
||||
top: 0px;
|
||||
bottom: 3px;
|
||||
-moz-opacity: 0.1; }
|
||||
-moz-opacity: 0.1;
|
||||
opacity: 0.1;
|
||||
filter: alpha(opacity=10); }
|
||||
|
||||
DIV.shadow4
|
||||
{ left: 3px;
|
||||
right: 3px;
|
||||
top: 3px;
|
||||
bottom: 4px;
|
||||
-moz-opacity: 0.4; }
|
||||
moz-opacity: 0.4;
|
||||
opacity: 0.4;
|
||||
filter: alpha(opacity=40); }
|
||||
|
||||
DIV.gradient, DIV.text
|
||||
{ position: absolute;
|
||||
|
||||
@@ -156,4 +156,4 @@ function onComponentEditorLoad(event) {
|
||||
menuItems[i].addEventListener("mouseup", onMenuSetClassification, false);
|
||||
}
|
||||
|
||||
window.addEventListener("load", onComponentEditorLoad, false);
|
||||
addEvent(window, 'load', onComponentEditorLoad);
|
||||
|
||||
@@ -253,7 +253,9 @@ SPAN.toolbarButton, SPAN.disabledToolbarButton
|
||||
color: -moz-DialogText; }
|
||||
|
||||
SPAN.disabledToolbarButton
|
||||
{ -moz-opacity: 0.4; }
|
||||
{ -moz-opacity: 0.4;
|
||||
opacity: 0.4;
|
||||
filter: alpha(opacity=40); }
|
||||
|
||||
SPAN.toolbarButton:hover
|
||||
{ color: -moz-buttonhovertext;
|
||||
@@ -352,6 +354,8 @@ DIV#logConsole
|
||||
display: none;
|
||||
z-index: 1000;
|
||||
-moz-opacity: 0.7;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
border-top: 2px solid #fff;
|
||||
border-left: 2px solid #fff;
|
||||
border-right: 2px solid #999;
|
||||
@@ -483,6 +487,8 @@ DIV.javascriptPopupBackground
|
||||
{ position: absolute;
|
||||
background-color: #999;
|
||||
-moz-opacity: 0.6;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
z-index: 2;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
@@ -504,6 +510,8 @@ DIV.javascriptMessagePseudoWindow
|
||||
padding: 1em;
|
||||
margin: 0px auto;
|
||||
-moz-opacity: 1.0;
|
||||
opacity: 1.0;
|
||||
filter: alpha(opacity=100);
|
||||
color: #000;
|
||||
background-color: #dedede; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user