GUAC-1140: Add up/down arrows. Use up/down arrows to indicate sort direction. Remove old unused arrows.

This commit is contained in:
Michael Jumper
2015-03-23 14:43:49 -07:00
parent 3c5a0b63f6
commit 1a05309abc
7 changed files with 16 additions and 3 deletions

View File

@@ -31,6 +31,7 @@
.manage table.session-list th {
background: rgba(0, 0, 0, 0.125);
font-weight: normal;
}
.manage table.session-list th,
@@ -53,13 +54,25 @@
}
.manage table.session-list th.sort-primary {
text-decoration: underline;
font-weight: bold;
padding-right: 0;
}
.manage table.session-list th.sort-primary:after {
content: ' \25be';
display: inline-block;
width: 1em;
height: 1em;
vertical-align: middle;
content: ' ';
background-size: 1em 1em;
background-position: right center;
background-repeat: no-repeat;
background-image: url('images/arrows/down.png');
}
.manage table.session-list th.sort-primary.sort-descending:after {
content: ' \25b2';
background-image: url('images/arrows/up.png');
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B