CC-4440: System -> Streams: Update and Save 'Stream 1/2/3' will make it invisible

-fixed
This commit is contained in:
denise 2012-09-14 17:35:14 -04:00
parent 39903be69a
commit 84deda99c5
4 changed files with 5 additions and 5 deletions

View file

@ -1642,8 +1642,8 @@ span.errors.sp-errors{
top:8px;
}
.collapsible-header.close .arrow-icon, collapsible-header-disabled.close .arrow-icon {
background-position: 0 -11px;
.collapsible-header.closed .arrow-icon, collapsible-header-disabled.close .arrow-icon {
background-position: 0 -11px !important;
}
#schedule-add-show .button-bar {

View file

@ -85,7 +85,7 @@ $(document).ready(function() {
$('.collapsible-header').live('click',function() {
$(this).next().toggle('fast');
$(this).toggleClass("close");
$(this).toggleClass("closed");
return false;
}).next().hide();

View file

@ -238,7 +238,7 @@ $(document).ready(function() {
$('.collapsible-header').click(function() {
$(this).next().toggle('fast');
$(this).toggleClass("close");
$(this).toggleClass("closed");
return false;
})