diff options
Diffstat (limited to 'template')
| -rw-r--r-- | template/banner.st | 2 | ||||
| -rw-r--r-- | template/fame.st | 2 | ||||
| -rw-r--r-- | template/profile.st | 35 |
3 files changed, 30 insertions, 9 deletions
diff --git a/template/banner.st b/template/banner.st index 6108c9a..691cd48 100644 --- a/template/banner.st +++ b/template/banner.st @@ -87,7 +87,7 @@ <div id="dumplist"> $if(user_nick)$ - <a href="http://dump.fm/fullscreen">checkout dump.fm in full-screen </a> $else$ <style>#dumplist{z-index:-1!important;}</style> $endif$ + <a href="http://dump.fm/fullscreen">checkout dump.fm in full-screen </a> - <a href="http://abcdef4.dump.fm/">MYSTERY ROOM!!!!!!!! </a> $else$ <style>#dumplist{z-index:-1!important;}</style> $endif$ $if(isadmin)$ - <a href="http://vip.dump.fm/">NAUGHTY BOYS DELIGHT </a> $endif$ </div> diff --git a/template/fame.st b/template/fame.st index 4735cab..b389d54 100644 --- a/template/fame.st +++ b/template/fame.st @@ -15,7 +15,7 @@ <div id="userListp"> <img src="http://dump.fm/static/img/halloffametrophy.gif" id="halltrophy"> - <h2>Hall Of Fame </h2><br><h3>updated hourly</h3> + <h2>Hall Of Fame </h2> </div> <div id="messageList"> diff --git a/template/profile.st b/template/profile.st index 3aae2c2..6b54c43 100644 --- a/template/profile.st +++ b/template/profile.st @@ -10,6 +10,26 @@ <script> jQuery(document).ready(initProfile); </script> + + + <script> +//MESSAGE STUFF + +jQuery(document).ready(function() { + jQuery('#msgbtn').toggle( + + function(){ + + jQuery("#directmsgs").animate({right: "0px"}, 400); + }, + function() + { + jQuery("#directmsgs").animate({right: "-263px"}, 400); + + }); + }); + </script> + </head> <body class="profiledash"> $if(avatar)$ @@ -91,22 +111,23 @@ </div> </div> - $if(isadmin)$ - <br /> + + +<a href="#"class="msgbtn" id="msgbtn">messages!</a> <div id="directmsgs"> <h2>Messages</h2> + $dms: { dm | - <div class="directmsg"> - <b><a href="/$dm.nick$">$dm.nick$</a></b> - <img src="$dm.avatar$" height="20" width="20" /> + <div id="singlemsg"> + <b><a href="/$dm.nick$">$dm.nick$</a>:</b> <span class="linkify-full">$dm.content$</span> - </div> + </div> }$ </div> <script> var Recips = $recips$; </script> - $endif$ + </div> <div id="footerc"> |
