1
1
mirror of https://github.com/primer/css.git synced 2024-12-25 15:14:59 +03:00

don't box-shadow default selects, and don't apply our styles to it if it's a select[multiple]

This commit is contained in:
Mark Otto 2015-06-10 12:38:19 -07:00
parent 2b56e65b4b
commit 047edbe5d9

View File

@ -43,8 +43,10 @@ textarea {
} }
select { select {
&:not([multiple]) {
height: 34px; height: 34px;
box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.075); vertical-align: middle;
}
} }
// Inputs with contrast for easy light gray backgrounds against white. // Inputs with contrast for easy light gray backgrounds against white.