diff --git a/manage/manage.css b/manage/manage.css index 5ebcde9c..f0360979 100644 --- a/manage/manage.css +++ b/manage/manage.css @@ -962,6 +962,27 @@ input[id^="manage.newUI"] { text-overflow: ellipsis; } +/* sort font */ +@font-face { + font-family: 'sorticon'; + src: url('sort.ttf?t4i57s') format('truetype'); + font-weight: normal; + font-style: normal; + unicode-range: U+EA4D; +} + +#sort-select { + font-family: 'sorticon', arial; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + @keyframes fadein { from { opacity: 0; diff --git a/manage/sort.js b/manage/sort.js index 77bfb617..430d5419 100644 --- a/manage/sort.js +++ b/manage/sort.js @@ -81,7 +81,7 @@ function addSortOptions() { const option = $create('option'); const optgroup = $create('optgroup'); const meta = { - desc: ' ⇩', + desc: ' \uea4d', enabled: t('genericEnabledLabel'), disabled: t('genericDisabledLabel'), dateNew: ` (${t('sortDateNewestFirst')})`, diff --git a/manage/sort.ttf b/manage/sort.ttf new file mode 100644 index 00000000..dd665cb7 Binary files /dev/null and b/manage/sort.ttf differ