add javascript and css for non-click-sortable table headers th

pull/107/head
mummified-corroding-granny 2023-01-31 23:58:12 +00:00
parent 5a9fb8f285
commit 53d9b512a2
2 changed files with 7 additions and 0 deletions

View File

@ -5120,6 +5120,10 @@ code {
cursor: pointer !important;
}
.disable-sort-click {
cursor: default !important;
}
lite-youtube {
background-color: #000;
position: relative;

View File

@ -548,6 +548,9 @@ if (reload_page) {
const TH = document.getElementsByTagName('th')
for (const element of TH) {
if (element.classList.contains("disable-sort-click"))
continue;
element.addEventListener('click', () => {sort_table(element)});
}