Use FontAwesome glyphs for asc/desc arrows.

This commit is contained in:
Akinori MUSHA 2014-09-24 12:28:13 +09:00
parent c6c91cd8ab
commit b543c38f25

View file

@ -6,17 +6,17 @@
&.asc:after, &.desc:after {
text-decoration: none;
position: absolute;
top: -5px;
right: -12px;
font-size: 1.2em;
top: 0;
right: -1em;
font-family: FontAwesome;
}
&.asc:after {
content: '\2193';
content: '\f0de'; //fa-sort-asc
}
&.desc:after {
content: '\2191';
content: '\f0dd'; //fa-sort-desc
}
}