Skip to content

Commit

Permalink
Chosen build to chosen-package
Browse files Browse the repository at this point in the history
  • Loading branch information
chosen-package committed Aug 24, 2017
1 parent 20457c6 commit aefa82b
Show file tree
Hide file tree
Showing 9 changed files with 1,685 additions and 210 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

Chosen is a library for making long, unwieldy select boxes more user friendly.

- jQuery support: 1.4+
- jQuery support: 1.7+
- Prototype support: 1.7+

For **documentation**, usage, and examples, see:
Expand Down
4 changes: 1 addition & 3 deletions bower.json
Expand Up @@ -32,9 +32,7 @@
"dependencies": {},
"main": [
"chosen.jquery.js",
"chosen.css",
"chosen-sprite@2x.png",
"chosen-sprite.png"
"chosen.css"
],
"ignore": [],
"repository": {
Expand Down
30 changes: 22 additions & 8 deletions chosen.css
Expand Up @@ -23,7 +23,8 @@ This file is generated by `grunt build`, do not edit it by hand.
}

.chosen-container * {
box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

.chosen-container .chosen-drop {
Expand All @@ -34,7 +35,8 @@ This file is generated by `grunt build`, do not edit it by hand.
border: 1px solid #aaa;
border-top: 0;
background: #fff;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
clip: rect(0, 0, 0, 0);
}

Expand Down Expand Up @@ -72,9 +74,11 @@ This file is generated by `grunt build`, do not edit it by hand.
border: 1px solid #aaa;
border-radius: 5px;
background-color: #fff;
background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
background-clip: padding-box;
box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
color: #444;
text-decoration: none;
white-space: nowrap;
Expand Down Expand Up @@ -201,6 +205,7 @@ This file is generated by `grunt build`, do not edit it by hand.

.chosen-container .chosen-results li.highlighted {
background-color: #3875d7;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
color: #fff;
}
Expand Down Expand Up @@ -237,6 +242,7 @@ This file is generated by `grunt build`, do not edit it by hand.
height: auto;
border: 1px solid #aaa;
background-color: #fff;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
background-image: linear-gradient(#eee 1%, #fff 15%);
cursor: text;
}
Expand All @@ -259,7 +265,8 @@ This file is generated by `grunt build`, do not edit it by hand.
outline: 0;
border: 0 !important;
background: transparent !important;
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
color: #999;
font-size: 100%;
font-family: sans-serif;
Expand All @@ -276,11 +283,13 @@ This file is generated by `grunt build`, do not edit it by hand.
max-width: 100%;
border-radius: 3px;
background-color: #eeeeee;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-size: 100% 19px;
background-repeat: repeat-x;
background-clip: padding-box;
box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
color: #333;
line-height: 13px;
cursor: default;
Expand Down Expand Up @@ -309,6 +318,7 @@ This file is generated by `grunt build`, do not edit it by hand.
padding-right: 5px;
border: 1px solid #ccc;
background-color: #e4e4e4;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
color: #666;
}
Expand Down Expand Up @@ -336,15 +346,18 @@ This file is generated by `grunt build`, do not edit it by hand.
/* @group Active */
.chosen-container-active .chosen-single {
border: 1px solid #5897fb;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
border: 1px solid #aaa;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
background-image: linear-gradient(#eee 20%, #fff 80%);
box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
Expand All @@ -358,7 +371,8 @@ This file is generated by `grunt build`, do not edit it by hand.

.chosen-container-active .chosen-choices {
border: 1px solid #5897fb;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
Expand Down

0 comments on commit aefa82b

Please sign in to comment.