diff options
| author | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-08-31 01:38:58 -0400 |
|---|---|---|
| committer | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-08-31 01:38:58 -0400 |
| commit | 33b9059366224c2f427f8ff502dda716b045ac91 (patch) | |
| tree | 07c17242d08643da99aaa548704b82109e005249 | |
| parent | 529a5625175d39fa2d96bda4331a1cf2da63f0f7 (diff) | |
sostler prod commit
| -rwxr-xr-x | static/css/dump.css | 8 | ||||
| -rw-r--r-- | static/js/pichat.js | 18 |
2 files changed, 8 insertions, 18 deletions
diff --git a/static/css/dump.css b/static/css/dump.css index 5a6c0de..f37d525 100755 --- a/static/css/dump.css +++ b/static/css/dump.css @@ -189,7 +189,7 @@ padding:4px;background-color:#fff; } #logout7{ - top:-1px; + top:10px; height:16px; padding-left:4px;padding-right:3px; @@ -262,8 +262,8 @@ top:21px;right:0px; #dumplist{ top:0px:width:100%;padding:0px;background-color:#fff; color:#000;font-size:60%;text-transform:uppercase;text-decoration: none; -border-bottom:1px solid #999;text-align:right; -padding-right:44px;line-height:1.1;background-color:#eff5fb; +border-bottom:1px solid #999;text-align:left;text-indent:350px; +padding-right:44px;line-height:1.1;background-color:#eff5fb;overflow:hidden;position:fixed;height:10px;width:100%; /*margin-left:40%; border-bottom-left-radius:5px; -webkit-border-bottom-left-radius:5px; @@ -272,7 +272,7 @@ border-left:1px solid #999;*/ } #dumplist a{color:#000;font-size:100%;text-transform:uppercase;text-decoration: none; } -#dumplist a:hover{color:#000;text-decoration: none; +#dumplist a:hover{color:#f0e;text-decoration: none; } #rapper7{ diff --git a/static/js/pichat.js b/static/js/pichat.js index 7266beb..7611edb 100644 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -608,7 +608,7 @@ function initLogThumb(selector, parentSelector) { }) } -function initChatThumb() { +function initChatThumb(){ $(".chat-thumb").live('mouseover mouseout', function(e) { var favorited = $(this).parents(".dump").hasClass("favorite") ? true : false; @@ -622,17 +622,6 @@ function initChatThumb() { } else { // mouseout if (favorited) { $(this).attr("src", Imgs.chatThumb); - var favorited = $(this).parents(".dump").hasClass("favorite") ? true : false; - if (e.type == "mouseover") { - if (favorited) { - $(this).attr("src", Imgs.chatThumbOff); - } else { - $(this).attr("src", Imgs.chatThumbBig); - $(this).stop().animate(Anim.chatThumbBig, 'fast') - } - } else { // mouseout - if (favorited) { - $(this).attr("src", Imgs.chatThumb); $(this).stop().animate(Anim.chatThumb, 'fast'); } else { $(this).stop().animate(Anim.chatThumbTiny, 'fast', 'swing', @@ -640,9 +629,10 @@ function initChatThumb() { $(this).attr("src", Imgs.chatThumbDot) $(this).animate(Anim.chatThumb, 0) }) - }} } - }})} + } + }) +} function paletteToChat(img){ var chatText = $("#msgInput").val() |
