table sorting arrow added. see #12

This commit is contained in:
mic 2024-05-14 18:17:48 +02:00
parent 2fe25e2e84
commit 8d15a9d4f0
4 changed files with 17 additions and 1 deletions

View file

@ -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;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B