CC-6090 - restyle editor processing divs

This commit is contained in:
Duncan Sommerville 2015-08-28 10:50:10 -04:00
parent bc4822d8e4
commit 88a9594aca
2 changed files with 8 additions and 2 deletions

View File

@ -970,12 +970,15 @@ dl.inline-list dd {
z-index: 1; z-index: 1;
pointer-events: none; pointer-events: none;
} }
.dataTables_processing { .dataTables_processing, .block-overlay {
opacity: 1 !important; opacity: 1 !important;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: url("img/loading.gif") no-repeat 50% 50% rgba(0, 0, 0, .25); background: url("img/loading.gif") no-repeat 50% 50% rgba(0, 0, 0, .25);
} }
div.blockOverlay {
background: url("img/loading.gif") no-repeat 50% 50% rgba(0, 0, 0, .45);
}
#library_display_wrapper .ui-widget-header:first-child { #library_display_wrapper .ui-widget-header:first-child {
background:none; background:none;
border-width:0 0 1px 0; border-width:0 0 1px 0;

View File

@ -561,8 +561,11 @@ function removeButtonCheck() {
} }
function enableLoadingIcon() { function enableLoadingIcon() {
// Disable the default overlay style
$.blockUI.defaults.overlayCSS = {};
$(".side_playlist.active-tab").block({ $(".side_playlist.active-tab").block({
message: $.i18n._("Processing..."), //message: $.i18n._("Processing..."),
message: $.i18n._(""),
theme: true, theme: true,
allowBodyStretch: true, allowBodyStretch: true,
applyPlatformOpacityRules: false applyPlatformOpacityRules: false