Widget info button now positioned correctly
authorrsesek <rsesek@ad1dcce9-c9fe-0310-b82b-83ea1733dbb0>
Sun, 21 Aug 2005 03:21:15 +0000 (03:21 +0000)
committerrsesek <rsesek@ad1dcce9-c9fe-0310-b82b-83ea1733dbb0>
Sun, 21 Aug 2005 03:21:15 +0000 (03:21 +0000)
git-svn-id: svn://depot/macosx/trunk@7 ad1dcce9-c9fe-0310-b82b-83ea1733dbb0

RGB_Converter/RGB_Converter.wdgt/Widget.css
RGB_Converter/RGB_Converter.wdgt/Widget.js

index 3168ee977004f44803f12c20e10114404b7dd099..9a33f22e04c7d6f5373a8e8d88c28b77b3aa2eed 100644 (file)
@@ -23,10 +23,10 @@ body
 .flip
 {
     position: absolute;
-    bottom: 10px;
-    right: 10px;
-    width: 10px;
-    height: 10px;
+    bottom: 33px;
+    left: 12px;
+    width: 13px;
+    height: 13px;
 }
 
 #flip
index 5a9e6a263b74b626b7fd3a76db3296daa46c200a..1f08bdea9b47381ac0ba03d2e09b06d98fa0b4d7 100644 (file)
@@ -33,7 +33,6 @@ function show_back()
        document.getElementById("fliprollie").style.display = "none";
 }
 
-
 function hide_back()
 {
        var front = document.getElementById("front");
@@ -123,7 +122,7 @@ function animate()
        
        if (T >= animation.duration)
        {
-               clearInterval (animation.timer);
+               clearInterval(animation.timer);
                animation.timer = null;
                animation.now = animation.to;
        }
@@ -136,7 +135,6 @@ function animate()
        animation.firstElement.style.opacity = animation.now;
 }
 
-
 function limit_3 (a, b, c)
 {
     return a < b ? b : (a > c ? c : a);