more polish

This commit is contained in:
John McLear 2014-11-18 22:24:16 +00:00
parent a06f01c04a
commit e2410e41b0
2 changed files with 4 additions and 3 deletions

View file

@ -84,6 +84,7 @@
height:50px;
background: background-linear-gradient( #F7F7F7, #F1F1F1 80%) repeat scroll 0 0 transparent;
border-radius:24px;
cursor:hand;
}
#playpause_button_icon:before {
line-height:44px;

View file

@ -379,16 +379,16 @@ function loadBroadcastSliderJS(fireWhenAllScriptsAreLoaded)
{
var self = this;
$(self).css('background-image', 'url(/static/img/crushed_button_depressed.png)');
// $(self).css('background-image', 'url(/static/img/crushed_button_depressed.png)');
$(self).mouseup(function(evt2)
{
$(self).css('background-image', 'url(/static/img/crushed_button_undepressed.png)');
// $(self).css('background-image', 'url(/static/img/crushed_button_undepressed.png)');
$(self).unbind('mouseup');
BroadcastSlider.playpause();
});
$(document).mouseup(function(evt2)
{
$(self).css('background-image', 'url(/static/img/crushed_button_undepressed.png)');
// $(self).css('background-image', 'url(/static/img/crushed_button_undepressed.png)');
$(document).unbind('mouseup');
});
});