SAAS-948 - library datatable header tweaks
This commit is contained in:
parent
1957c7827f
commit
c931b81b35
|
@ -238,13 +238,19 @@ div.btn > span {
|
|||
}
|
||||
|
||||
thead th.ui-state-default {
|
||||
cursor: move;
|
||||
|
||||
border: solid #666;
|
||||
border-width: 0 0 1px 1px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
thead th.ui-state-default:not([class*='checkbox']):not([class*='type']):not([class*='image']) {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
thead th.ui-state-default:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Library Context Menu */
|
||||
|
||||
.context-menu-item.icon {
|
||||
|
@ -720,7 +726,7 @@ li.ui-state-default {
|
|||
|
||||
/* Hacky stuff here */
|
||||
#show_builder .dataTables_scrolling {
|
||||
top: 67px;
|
||||
top: 66px;
|
||||
}
|
||||
|
||||
.sb-padded > .fg-toolbar {
|
||||
|
@ -742,7 +748,7 @@ li.ui-state-default {
|
|||
color: #efefef;
|
||||
}
|
||||
|
||||
.datatable tr td[class$='checkbox'], .datatable tr td[class$='type'] {
|
||||
.datatable tr td[class*='checkbox'], .datatable tr td[class*='type'] {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
|
|
@ -541,7 +541,7 @@ var AIRTIME = (function(AIRTIME) {
|
|||
"aoColumns": [
|
||||
/* ftype */ { "sTitle" : "" , "mDataProp" : "ftype" , "bSearchable" : false , "bVisible" : false },
|
||||
/* Checkbox */ { "sTitle" : "" , "mDataProp" : "checkbox" , "bSortable" : false , "bSearchable" : false , "sWidth" : "16px" , "sClass" : "library_checkbox" },
|
||||
/* Type */ { "sTitle" : "" , "mDataProp" : "image" , "bSearchable" : false , "sWidth" : "16px" , "sClass" : "library_type" , "iDataSort" : 0 } ,
|
||||
/* Type */ { "sTitle" : "" , "mDataProp" : "image" , "bSortable" : false , "bSearchable" : false , "sWidth" : "16px" , "sClass" : "library_type" , "iDataSort" : 0 },
|
||||
/* Is Scheduled */ { "sTitle" : $.i18n._("Scheduled") , "mDataProp" : "is_scheduled" , "bVisible" : false , "bSearchable" : false , "sWidth" : "90px" , "sClass" : "library_is_scheduled" },
|
||||
///* Is Playlist */ { "sTitle" : $.i18n._("Playlist / Block") , "mDataProp" : "is_playlist" , "bSearchable" : false , "sWidth" : "110px" , "sClass" : "library_is_playlist"} ,
|
||||
/* Title */ { "sTitle" : $.i18n._("Title") , "mDataProp" : "track_title" , "sClass" : "library_title" , "sWidth" : "170px" },
|
||||
|
@ -559,7 +559,7 @@ var AIRTIME = (function(AIRTIME) {
|
|||
/* ISRC Number */ { "sTitle" : $.i18n._("ISRC") , "mDataProp" : "isrc_number" , "bVisible" : false , "sClass" : "library_isrc" , "sWidth" : "150px" },
|
||||
/* Label */ { "sTitle" : $.i18n._("Label") , "mDataProp" : "label" , "bVisible" : false , "sClass" : "library_label" , "sWidth" : "125px" },
|
||||
/* Language */ { "sTitle" : $.i18n._("Language") , "mDataProp" : "language" , "bVisible" : false , "sClass" : "library_language" , "sWidth" : "125px" },
|
||||
/* Last Modified */ { "sTitle" : $.i18n._("Last Modified") , "mDataProp" : "mtime" , "bVisible" : false , "sClass" : "library_modified_time" , "sWidth" : "155" },
|
||||
/* Last Modified */ { "sTitle" : $.i18n._("Last Modified") , "mDataProp" : "mtime" , "bVisible" : false , "sClass" : "library_modified_time" , "sWidth" : "155px" },
|
||||
/* Last Played */ { "sTitle" : $.i18n._("Last Played") , "mDataProp" : "lptime" , "bVisible" : false , "sClass" : "library_modified_time" , "sWidth" : "155px" },
|
||||
/* Length */ { "sTitle" : $.i18n._("Length") , "mDataProp" : "length" , "sClass" : "library_length" , "sWidth" : "80px" },
|
||||
/* Mime */ { "sTitle" : $.i18n._("Mime") , "mDataProp" : "mime" , "bVisible" : false , "sClass" : "library_mime" , "sWidth" : "80px" },
|
||||
|
|
Loading…
Reference in New Issue