mirror of
https://github.com/humhub/humhub.git
synced 2025-02-22 10:14:19 +01:00
21 lines
372 B
CSS
21 lines
372 B
CSS
|
a.asc:after, a.desc:after {
|
||
|
content: '';
|
||
|
left: 3px;
|
||
|
display: inline-block;
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
border: solid 5px transparent;
|
||
|
margin: 4px 4px 2px 4px;
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
a.asc:after {
|
||
|
border-bottom: solid 7px #212529;
|
||
|
border-top-width: 0;
|
||
|
}
|
||
|
|
||
|
a.desc:after {
|
||
|
border-top: solid 7px #212529;
|
||
|
border-bottom-width: 0;
|
||
|
}
|