table sorting arrow added. see #12
This commit is contained in:
parent
2fe25e2e84
commit
8d15a9d4f0
4 changed files with 17 additions and 1 deletions
|
|
@ -86,7 +86,6 @@ table tr {
|
||||||
table.prompts_list th {
|
table.prompts_list th {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
|
|
@ -106,6 +105,23 @@ table.prompts_list td.properties{
|
||||||
white-space: nowrap;
|
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{
|
.hiddendata{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
images/listjs-arrow-sort-active-down.png
Normal file
BIN
images/listjs-arrow-sort-active-down.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 515 B |
BIN
images/listjs-arrow-sort-active-up.png
Normal file
BIN
images/listjs-arrow-sort-active-up.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 560 B |
BIN
images/listjs-arrow-sort-inactive.png
Normal file
BIN
images/listjs-arrow-sort-inactive.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 629 B |
Loading…
Reference in a new issue