SAAS-1102 - fix datatables pagination layout issues
This commit is contained in:
parent
efa3999041
commit
258500f650
|
@ -42,13 +42,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1260px) {
|
|
||||||
#library_display_length > label {
|
|
||||||
/* Hacky, but datatables dumps the select inside the label for some reason... */
|
|
||||||
font-size: 0 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 1200px) {
|
@media screen and (max-width: 1200px) {
|
||||||
.wrapper {
|
.wrapper {
|
||||||
-webkit-flex-flow: column !important;
|
-webkit-flex-flow: column !important;
|
||||||
|
|
|
@ -981,7 +981,7 @@ div.blockOverlay {
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
font-weight:normal;
|
font-weight:normal;
|
||||||
padding: 0.2em 1em;
|
padding: 0.2em 1em;
|
||||||
margin-right:3px;
|
margin-right:0;
|
||||||
}
|
}
|
||||||
.dataTables_filter input {
|
.dataTables_filter input {
|
||||||
background: url("images/search_auto_bg.png") no-repeat scroll 0 0 #DDDDDD;
|
background: url("images/search_auto_bg.png") no-repeat scroll 0 0 #DDDDDD;
|
||||||
|
|
|
@ -79,13 +79,19 @@ function getDatatablesStrings(overrideDict) {
|
||||||
"sSearch": $.i18n._(""),
|
"sSearch": $.i18n._(""),
|
||||||
"sZeroRecords": $.i18n._("No matching records found"),
|
"sZeroRecords": $.i18n._("No matching records found"),
|
||||||
"oPaginate": {
|
"oPaginate": {
|
||||||
"sFirst": $.i18n._("First"),
|
"sFirst": "«",
|
||||||
"sLast": $.i18n._("Last"),
|
"sLast": "»",
|
||||||
"sNext": $.i18n._("Next"),
|
"sNext": "›",
|
||||||
"sPrevious": $.i18n._("Previous")
|
"sPrevious": "‹"
|
||||||
},
|
},
|
||||||
|
//"oPaginate": {
|
||||||
|
// "sFirst": $.i18n._("First"),
|
||||||
|
// "sLast": $.i18n._("Last"),
|
||||||
|
// "sNext": $.i18n._("Next"),
|
||||||
|
// "sPrevious": $.i18n._("Previous")
|
||||||
|
//},
|
||||||
"oAria": {
|
"oAria": {
|
||||||
"sSortAscending": $.i18n._(": activate to sort column ascending"),
|
"sSortAscending": $.i18n._(": activate to sort column ascending"),
|
||||||
"sSortDescending": $.i18n._(": activate to sort column descending")
|
"sSortDescending": $.i18n._(": activate to sort column descending")
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -553,12 +553,6 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
return getDatatablesStrings({
|
return getDatatablesStrings({
|
||||||
"sEmptyTable": $.i18n._(""),
|
"sEmptyTable": $.i18n._(""),
|
||||||
"sZeroRecords": $.i18n._("No matching results found.")
|
"sZeroRecords": $.i18n._("No matching results found.")
|
||||||
//"oPaginate": {
|
|
||||||
// "sFirst": "<<",
|
|
||||||
// "sLast": ">>",
|
|
||||||
// "sNext": ">",
|
|
||||||
// "sPrevious": "<"
|
|
||||||
//}
|
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue