Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding <select multiple> styles #248

Merged
merged 1 commit into from
Feb 15, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions sass/ui/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -390,3 +390,35 @@ label + {
}
}

/* Form Multi-picker Element (<select> multiple) */
.multi-picker {
position: relative;
width: auto;
display: inline-block;
margin: 0 0 2px 1.2%;
overflow: hidden;
border: 1px solid darken($default-color, 5%);
@include border-radius(4px);
font-family: $font-family;
font-weight: $font-weight-semibold;
height: auto;
&:first-child {
margin-left: 0;
}
select[multiple] {
position: relative;
display: block;
min-width: 100%;
width: 100%;
height: auto;
padding: 6px 20px 6px 15px;
color: $body-font-color;
border: none;
background: #fff;
outline: none;
-webkit-appearance: none;
z-index: 99;
cursor: pointer;
@include font-size($norm);
}
}