fix: add dropdown chevron to account switcher

This commit is contained in:
Laurent Dinclaux
2026-02-27 17:10:26 +11:00
parent e81002c528
commit 7de47160b6
2 changed files with 14 additions and 2 deletions

View File

@@ -15,6 +15,18 @@
width: 100%;
}
/* Account switcher <select>: hide native arrow, show SVG chevron */
.ident-switch-wrapper select {
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23ccc'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 0.3em center;
background-size: 10px 6px;
}
/* Unread badge */
.ident-switch-badge {
flex-shrink: 0;