Add clarifying comments for select styling

This commit is contained in:
copilot-swe-agent[bot] 2026-07-02 16:29:31 +00:00 committed by GitHub
parent 2c20d591e0
commit 7748e45cb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -72,6 +72,7 @@ select {
appearance: none; appearance: none;
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
/* Chevron stroke color is #8b93a7, matching --muted (data URIs can't reference CSS variables). */
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b93a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b93a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: right 10px center; background-position: right 10px center;
@ -304,6 +305,7 @@ button.danger {
} }
.reader-card .field select { .reader-card .field select {
/* Keep room for the chevron icon within the narrow 90px width. */
padding-right: 28px; padding-right: 28px;
} }