Skip to content

Commit

Permalink
Add sort asc/desc icons to table
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo authored and findepi committed Feb 24, 2020
1 parent 0a13a2e commit 0e6980b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions presto-main/src/main/resources/webapp/assets/presto.css
Original file line number Diff line number Diff line change
Expand Up @@ -823,3 +823,18 @@ g .operator-stats:hover {
.stack-traces {
font-size: 11px;
}

.reactable-header-sortable::after {
font-size: 0.6em;
margin-left: 0.5em;
}

.reactable-header-sort-asc::after {
font-family: 'Glyphicons Halflings';
content: "\e253";
}

.reactable-header-sort-desc::after {
font-family: 'Glyphicons Halflings';
content: "\e252";
}

0 comments on commit 0e6980b

Please sign in to comment.