Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 20 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,26 @@ <h2>Union</h2>
<i data-lucide="x" aria-hidden="true"></i>
</button>
</div>
<button
type="button"
id="contactsSortBtn"
class="contacts-sort-btn"
aria-label="Change sort order"
title="Sort contacts">
<span class="contacts-sort-label" id="contactsSortLabel">Met</span>
<span class="contacts-sort-arrow"><i data-lucide="chevron-down" aria-hidden="true"></i></span>
</button>
<div class="contacts-sort-wrap">
<button
type="button"
id="contactsSortBtn"
class="contacts-sort-btn"
aria-label="Change sort order"
aria-haspopup="listbox"
aria-expanded="false"
aria-controls="contactsSortMenu"
title="Sort contacts">
<span class="contacts-sort-label" id="contactsSortLabel">Trust</span>
<span class="contacts-sort-arrow"><i data-lucide="chevron-down" aria-hidden="true"></i></span>
</button>
<div id="contactsSortMenu" class="contacts-sort-menu hidden" role="listbox" aria-labelledby="contactsSortBtn">
<button type="button" class="contacts-sort-option" role="option" data-sort-mode="recent">Met</button>
<button type="button" class="contacts-sort-option" role="option" data-sort-mode="age">Known</button>
<button type="button" class="contacts-sort-option" role="option" data-sort-mode="trust">Trust</button>
<button type="button" class="contacts-sort-option" role="option" data-sort-mode="custom">Custom</button>
</div>
</div>
</div>
<div class="contacts-list-wrap">
<div id="contactsListContent">
Expand Down
Loading