CC-6090 - restyle datatables processing divs

This commit is contained in:
Duncan Sommerville 2015-08-28 10:34:49 -04:00
parent 4cf40d312a
commit ec9b98c48c
2 changed files with 11 additions and 16 deletions

View File

@ -962,24 +962,18 @@ dl.inline-list dd {
width:55%; width:55%;
} }
.dt-process-rel { .dt-process-rel {
position: relative; position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
} }
.dataTables_processing { .dataTables_processing {
opacity: 1 !important; opacity: 1 !important;
position: absolute; width: 100%;
top: 100px; height: 100%;
left: 10%; background: url("img/loading.gif") no-repeat 50% 50% rgba(0, 0, 0, .25);
width: 80%;
height: 50px;
text-align: center;
font-size:14px;
font-weight:bold;
padding-top: 40px;
background: -moz-linear-gradient(top, #b2b2b2 0, #a2a2a2 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b2b2b2), color-stop(100%, #a2a2a2));
background: linear-gradient(top, #b2b2b2 0, #a2a2a2 100%);
border: 1px solid #8F8F8F;
color: #ffffff;
} }
#library_display_wrapper .ui-widget-header:first-child { #library_display_wrapper .ui-widget-header:first-child {
background:none; background:none;

View File

@ -74,7 +74,8 @@ function getDatatablesStrings(overrideDict) {
"sInfoThousands": $.i18n._("),"), "sInfoThousands": $.i18n._("),"),
"sLengthMenu": $.i18n._("Show _MENU_"), "sLengthMenu": $.i18n._("Show _MENU_"),
"sLoadingRecords": $.i18n._("Loading..."), "sLoadingRecords": $.i18n._("Loading..."),
"sProcessing": $.i18n._("Processing..."), //"sProcessing": $.i18n._("Processing..."),
"sProcessing": $.i18n._(""),
"sSearch": $.i18n._(""), "sSearch": $.i18n._(""),
"sZeroRecords": $.i18n._("No matching records found"), "sZeroRecords": $.i18n._("No matching records found"),
"oPaginate": { "oPaginate": {