Forms: improve select arrow CSS

This commit is contained in:
Alex Gleason 2020-10-01 21:04:00 -05:00
parent d65eedb67b
commit 5d5ca6ed85
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 17 additions and 13 deletions

View File

@ -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 {
display: flex;
align-items: center;
font-family: "ForkAwesome";
content: "";
position: absolute; position: absolute;
right: 12px; right: 12px;
top: 1px;
border-left: 1px solid var(--highlight-text-color); border-left: 1px solid var(--highlight-text-color);
height: 39px; height: calc(100% - 8px);
padding: 12px; padding-left: 12px;
box-sizing: border-box;
pointer-events: none; pointer-events: none;
margin-top: 8px;
}
} }
.label_input { .label_input {