]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1075 d1b88da0-ebda-0310...
authorwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 1 Jun 2007 22:36:03 +0000 (22:36 +0000)
committerwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 1 Jun 2007 22:36:03 +0000 (22:36 +0000)
UI/WebServerResources/HTMLElement.js
UI/WebServerResources/MailerUI.css
UI/WebServerResources/SchedulerUI.css
UI/WebServerResources/UIxComponentEditor.js
UI/WebServerResources/generic.css

index ef2bd894f9071bf31a630f0513798eec4dcc2f3d..46f4c54e6601111509cb4ada2504f891a9960ed8 100644 (file)
@@ -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);
index 7cef75b4ae99026b4314f660d05097a37e52b40f..0553085290206c610e980f912183c3920da8d750 100644 (file)
@@ -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
 { 
index f127a277c0539c69c99946850e7320438652d21f..a9a297310fd9ca7f129173d7c5b5978580f08b4f 100644 (file)
@@ -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;
index a490e25adb86c8d34a02c39fa6ca68f151ddfa14..32347213e5f36aed16efa23bf1dbfdd1647ecc19 100644 (file)
@@ -156,4 +156,4 @@ function onComponentEditorLoad(event) {
       menuItems[i].addEventListener("mouseup", onMenuSetClassification, false);
 }
 
-window.addEventListener("load", onComponentEditorLoad, false);
+addEvent(window, 'load', onComponentEditorLoad);
index 6c1ff9194a4bcc936baaf3ad3a6c2ecc903b7290..fc63f218da6057752b6664af233c4a5ce1145112 100644 (file)
@@ -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; }