added column sort and arrows

This commit is contained in:
2022-01-28 19:35:07 +00:00
parent 2ac0b0ade4
commit 9d55adb26d
9 changed files with 173 additions and 24 deletions
+33
View File
@@ -829,6 +829,39 @@ textarea,
}
}
}
button {
border: none;
background: none;
padding-left: 0;
&.sortDesc:after {
width: 0;
height: 0;
border-style: solid;
border-width: 13.9px 8px 0 8px;
border-color: #31373d transparent transparent transparent;
content: "";
top: 15px;
position: relative;
left: 10px;
}
&.sortAsc:after {
width: 0;
height: 0;
border-style: solid;
border-width: 0 8px 13.9px 8px;
border-color: transparent transparent #31373d transparent;
content: "";
top: -15px;
position: relative;
left: 10px;
}
&:focus {
border: none;
box-shadow: none;
}
}
}
.results_wider {