Commit 8a724a046e707c77224daf59c535625970bf4899
1 parent
1c743d7f
-Sorter arrows
Showing
1 changed file
with
26 additions
and
0 deletions
Show diff stats
frontend/web/css/css_header.css
| ... | ... | @@ -20,6 +20,32 @@ |
| 20 | 20 | width: auto!important |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | +/* Arrows in sorter styling */ | |
| 24 | +ul.sorter { | |
| 25 | + list-style-type: none; | |
| 26 | +} | |
| 27 | + | |
| 28 | +ul.sorter li a:after { | |
| 29 | + display: inline-block; | |
| 30 | + margin-left: 4px; | |
| 31 | + margin-bottom: 2px; | |
| 32 | + content: ''; | |
| 33 | + width: 0; | |
| 34 | + height: 0; | |
| 35 | +} | |
| 36 | + | |
| 37 | +ul.sorter li a.asc:after { | |
| 38 | + border-left: 5px solid transparent; | |
| 39 | + border-right: 5px solid transparent; | |
| 40 | + border-bottom: 5px solid black; | |
| 41 | +} | |
| 42 | + | |
| 43 | +ul.sorter li a.desc:after { | |
| 44 | + border-left: 5px solid transparent; | |
| 45 | + border-right: 5px solid transparent; | |
| 46 | + border-top: 5px solid black; | |
| 47 | +} | |
| 48 | + | |
| 23 | 49 | html { |
| 24 | 50 | font-family: sans-serif; |
| 25 | 51 | -ms-text-size-adjust: 100%; | ... | ... |