1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

[SM-411] rename bwi-chevron-up; add new sort icons; update bitSortable icons (#4676)

This commit is contained in:
Will Martin
2023-02-09 14:55:05 -05:00
committed by GitHub
parent 1c18a73a56
commit de5ef14dda
10 changed files with 56 additions and 21 deletions

View File

@@ -76,9 +76,9 @@ export class SortableComponent implements OnInit {
get icon() {
if (!this.isActive) {
return "bwi-chevron-up tw-opacity-0 group-hover:tw-opacity-100 group-focus-visible:tw-opacity-100";
return "bwi-up-down-btn";
}
return this.direction === "asc" ? "bwi-chevron-up" : "bwi-angle-down";
return this.direction === "asc" ? "bwi-up-solid" : "bwi-down-solid";
}
get classList() {