Let select use 'ui' border style

This commit is contained in:
GithubAnon0000 2025-08-30 23:04:38 +02:00
parent c1fcbb263d
commit bd2d76164a

View file

@ -262,6 +262,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
display: flex; display: flex;
flex-flow: row; flex-flow: row;
justify-content: space-between; justify-content: space-between;
border-color: var(border-ui);
.inner { .inner {
flex-grow: 1; flex-grow: 1;
@ -287,13 +288,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
.chevron { .chevron {
height: 100%; height: 100%;
align-self: flex-end; align-self: flex-end;
border-left: 1px solid var(--border-subtle); border-left: 1px solid var(--border-ui);
} }
:global([dir="rtl"]) { :global([dir="rtl"]) {
.chevron { .chevron {
border-left: none; border-left: none;
border-right: 1px solid var(--border-subtle); border-right: 1px solid var(--border-ui);
} }
} }
</style> </style>