* Made the ImportantMessage div less obtrusive
authorArt Cancro <ajc@citadel.org>
Mon, 1 Aug 2005 02:28:57 +0000 (02:28 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 1 Aug 2005 02:28:57 +0000 (02:28 +0000)
webcit/ChangeLog
webcit/static/wclib.js
webcit/static/webcit.css

index b12fc68b7c114480355a8b81c0ef679826317f4f..6768e0ab95912658f6ea8ae1b53a7375d3a6c2a1 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 619.42  2005/08/01 02:28:55  ajc
+* Made the ImportantMessage div less obtrusive
+
 Revision 619.41  2005/07/29 16:26:04  ajc
 * omit check for gnu libiconv -- the iconv functionality is built into
   most operating systems now.
@@ -2775,4 +2778,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index 2af086bac5784a30c99d9321c245f498ea491c48..361cc889915577fd33fdcfa348f7be400d5f44e1 100644 (file)
@@ -41,6 +41,6 @@ function hide_imsg_popup_old() {
 }
 
 function hide_imsg_popup() {
-       new Effect.FadeTo('important_message', 0.0, 500, 5, {complete:function() { hide_imsg_popup_old();}});
+       new Effect.FadeTo('important_message', 0.0, 1000, 10, {complete:function() { hide_imsg_popup_old(); }} );
        // we still do it the old way afterwards, just in case the browser didn't dazzle us enough
 }
index 5ea2eda3355eca614e5ab8d76cf870a521b49601..077b4ae3fb4c9ad62d8d99061e38bd9b11f6abae 100644 (file)
@@ -65,9 +65,8 @@ body {
 
 #important_message {
        position:absolute;
-       top:150px; left:150px;
-       width:300px; height:100px;
-       background-color: #444488;
+       top:0px; right:0px;
+       background-color: #880000;
        z-index: 2;
 }