more polish
This commit is contained in:
parent
a06f01c04a
commit
e2410e41b0
|
@ -84,6 +84,7 @@
|
||||||
height:50px;
|
height:50px;
|
||||||
background: background-linear-gradient( #F7F7F7, #F1F1F1 80%) repeat scroll 0 0 transparent;
|
background: background-linear-gradient( #F7F7F7, #F1F1F1 80%) repeat scroll 0 0 transparent;
|
||||||
border-radius:24px;
|
border-radius:24px;
|
||||||
|
cursor:hand;
|
||||||
}
|
}
|
||||||
#playpause_button_icon:before {
|
#playpause_button_icon:before {
|
||||||
line-height:44px;
|
line-height:44px;
|
||||||
|
|
|
@ -379,16 +379,16 @@ function loadBroadcastSliderJS(fireWhenAllScriptsAreLoaded)
|
||||||
{
|
{
|
||||||
var self = this;
|
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).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');
|
$(self).unbind('mouseup');
|
||||||
BroadcastSlider.playpause();
|
BroadcastSlider.playpause();
|
||||||
});
|
});
|
||||||
$(document).mouseup(function(evt2)
|
$(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');
|
$(document).unbind('mouseup');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue