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

Remove linear-gradient from single chosen input background #1744

Merged
merged 1 commit into from
Jan 23, 2014
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
6 changes: 3 additions & 3 deletions sass/chosen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ $chosen-sprite-retina: image-url('chosen-sprite@2x.png') !default;
outline: 0;
border: 1px solid #aaa;
background: #fff $chosen-sprite no-repeat 100% -20px;
@include background($chosen-sprite no-repeat 100% -20px, linear-gradient(#eee 1%, #fff 15%));
@include background($chosen-sprite no-repeat 100% -20px);
font-size: 1em;
font-family: sans-serif;
line-height: normal;
Expand Down Expand Up @@ -230,7 +230,7 @@ $chosen-sprite-retina: image-url('chosen-sprite@2x.png') !default;
border-radius: 3px;
background-color: #e4e4e4;
@include background-image(linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%));
background-clip: padding-box;
background-clip: padding-box;
box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(#000,.05);
color: #333;
line-height: 13px;
Expand Down Expand Up @@ -377,7 +377,7 @@ $chosen-sprite-retina: image-url('chosen-sprite@2x.png') !default;
.chosen-search input[type="text"] {
padding: 4px 5px 4px 20px;
background: #fff $chosen-sprite no-repeat -30px -20px;
@include background($chosen-sprite no-repeat -30px -20px, linear-gradient(#eee 1%, #fff 15%));
@include background($chosen-sprite no-repeat -30px -20px);
direction: rtl;
}
&.chosen-container-single{
Expand Down