admin/plugins: Allow people to sort search results

This commit is contained in:
Marcel Klehr 2013-03-25 23:09:03 +01:00
parent 1ebbcd2f30
commit 773293991b
4 changed files with 84 additions and 15 deletions

View file

@ -102,6 +102,19 @@ input[type="text"] {
max-width: 500px;
}
.sort {
cursor: pointer;
}
.sort:after {
content: '▲▼'
}
.sort.up:after {
content:'▲'
}
.sort.down:after {
content:'▼'
}
table {
border: 1px solid #ddd;
border-radius: 3px;