diff --git a/customprompts/mzta-custom-prompts.css b/customprompts/mzta-custom-prompts.css index 958d4f5c..dcadffcd 100644 --- a/customprompts/mzta-custom-prompts.css +++ b/customprompts/mzta-custom-prompts.css @@ -86,7 +86,6 @@ table tr { table.prompts_list th { padding: 8px; text-align: left; - cursor: pointer; } table td { @@ -106,6 +105,23 @@ table.prompts_list td.properties{ white-space: nowrap; } +table .sort { + background-image: url(../images/listjs-arrow-sort-inactive.png); + background-repeat: no-repeat; + background-position: right center; + padding-right: 14px; + cursor: pointer; + cursor: hand; +} + +table .sort.asc { + background-image: url(../images/listjs-arrow-sort-active-down.png); +} + +table .sort.desc { + background-image: url(../images/listjs-arrow-sort-active-up.png); +} + .hiddendata{ display: none; } diff --git a/images/listjs-arrow-sort-active-down.png b/images/listjs-arrow-sort-active-down.png new file mode 100644 index 00000000..2736114f Binary files /dev/null and b/images/listjs-arrow-sort-active-down.png differ diff --git a/images/listjs-arrow-sort-active-up.png b/images/listjs-arrow-sort-active-up.png new file mode 100644 index 00000000..4ff00d3c Binary files /dev/null and b/images/listjs-arrow-sort-active-up.png differ diff --git a/images/listjs-arrow-sort-inactive.png b/images/listjs-arrow-sort-inactive.png new file mode 100644 index 00000000..79bc16a6 Binary files /dev/null and b/images/listjs-arrow-sort-inactive.png differ