Forms: improve select arrow CSS

chats_delete_account
Alex Gleason 2020-10-01 21:04:00 -05:00
rodzic d65eedb67b
commit 5d5ca6ed85
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 17 dodań i 13 usunięć

Wyświetl plik

@ -471,19 +471,23 @@ code {
cursor: pointer; cursor: pointer;
} }
.select-wrapper::after { .select-wrapper {
display: block; display: flex;
font-family: 'ForkAwesome'; align-items: center;
content: '';
width: 10px; &::after {
position: absolute; display: flex;
right: 12px; align-items: center;
top: 1px; font-family: "ForkAwesome";
border-left: 1px solid var(--highlight-text-color); content: "";
height: 39px; position: absolute;
padding: 12px; right: 12px;
box-sizing: border-box; border-left: 1px solid var(--highlight-text-color);
pointer-events: none; height: calc(100% - 8px);
padding-left: 12px;
pointer-events: none;
margin-top: 8px;
}
} }
.label_input { .label_input {