summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortimb <timb@mb.home>2010-03-21 00:39:49 -0700
committertimb <timb@mb.home>2010-03-21 00:39:49 -0700
commit9e1070a2e949d54278e675e97d4bff3812b6f317 (patch)
treec9e29731622cf56820c6f6519f9a17ec277f8316
parent35c929f102a49dce6dd8f61d348394ae227e9496 (diff)
fix giant hand, preload, & make info bubbles fade away
-rwxr-xr-xstatic/header.css8
-rwxr-xr-xtemplate/chat.st3
-rw-r--r--template/preload.st19
3 files changed, 14 insertions, 16 deletions
diff --git a/static/header.css b/static/header.css
index 25dd736..1c53bf7 100755
--- a/static/header.css
+++ b/static/header.css
@@ -298,10 +298,4 @@ height:0.1;
.no-cursor { cursor: none; }
.invisible { display: none !important; }
-#cursor-big { position: absolute; z-index: 1000; }
-#preload {
- position: fixed;
- left: -1000px;
- display:none;
- top: -1000px;
-} \ No newline at end of file
+#cursor-big { position: absolute; z-index: 1000; } \ No newline at end of file
diff --git a/template/chat.st b/template/chat.st
index 15d0e3f..e5f8110 100755
--- a/template/chat.st
+++ b/template/chat.st
@@ -91,6 +91,9 @@ $else$
<div id="uploadstuff"><img src="/static/uploadstuff.png"></div>
<div id="signinblurb"><img src="/static/signinblurb.png"></div>
<div id="readyjoin"><img src="/static/readyjoin.png"></div>
+<script>
+jQuery(document).ready(function(){ setTimeout( function(){ jQuery("#newuserwrap div").hide(1000) }, 10000 ) })
+</script>
</div>
<link rel="stylesheet" type="text/css" href="/static/dump.css">
<div id="msgInputDiv">
diff --git a/template/preload.st b/template/preload.st
index 24f7e7c..8963e70 100644
--- a/template/preload.st
+++ b/template/preload.st
@@ -1,12 +1,13 @@
+<!-- todo: just put this lot in javascript? -->
<div id="preload">
<img src="/static/img/cursors/osx.hand.gif" class="no-cursor invisible" id="cursor-big" />
- <img src="/static/upload.png" />
- <img src="/static/dblue2.png" />
-<img src="/static/text.gif" />
-<img src="/static/directory.gif" />
-<img src="/static/image_draw.gif" />
-<img src="/static/door2.gif" />
-<img src="/static/cambutton.png" />
-<img src="/static/urlbutton.png" />
-<img src="/static/upbutton.png" />
+ <img src="/static/upload.png" class="invisible" />
+ <img src="/static/dblue2.png" class="invisible" />
+<img src="/static/text.gif" class="invisible" />
+<img src="/static/directory.gif" class="invisible" />
+<img src="/static/image_draw.gif" class="invisible" />
+<img src="/static/door2.gif" class="invisible" />
+<img src="/static/cambutton.png" class="invisible" />
+<img src="/static/urlbutton.png" class="invisible" />
+<img src="/static/upbutton.png" class="invisible" />
</div> \ No newline at end of file