Merge pull request #464 from kristerkari/master
Fixes for gradients and Right to Left support
This commit is contained in:
commit
6a5d61b061
|
@ -24,13 +24,13 @@
|
||||||
/* @group Single Chosen */
|
/* @group Single Chosen */
|
||||||
.chzn-container-single .chzn-single {
|
.chzn-container-single .chzn-single {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f4f4f4), color-stop(0.48, #eeeeee), color-stop(0.5, #f6f6f6), color-stop(0.8, #ffffff));
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );
|
||||||
background-image: -webkit-linear-gradient(center bottom, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%);
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
|
||||||
background-image: -moz-linear-gradient(center bottom, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%);
|
background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||||
background-image: -o-linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%);
|
background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||||
background-image: -ms-linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%);
|
background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
|
background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||||
background-image: linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%);
|
background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||||
-webkit-border-radius: 5px;
|
-webkit-border-radius: 5px;
|
||||||
-moz-border-radius : 5px;
|
-moz-border-radius : 5px;
|
||||||
border-radius : 5px;
|
border-radius : 5px;
|
||||||
|
@ -96,12 +96,12 @@
|
||||||
}
|
}
|
||||||
.chzn-container-single .chzn-search input {
|
.chzn-container-single .chzn-search input {
|
||||||
background: #fff url('chosen-sprite.png') no-repeat 100% -22px;
|
background: #fff url('chosen-sprite.png') no-repeat 100% -22px;
|
||||||
background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
|
background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
|
||||||
background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
margin: 1px 0;
|
margin: 1px 0;
|
||||||
padding: 4px 20px 4px 5px;
|
padding: 4px 20px 4px 5px;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
@ -127,13 +127,12 @@
|
||||||
/* @group Multi Chosen */
|
/* @group Multi Chosen */
|
||||||
.chzn-container-multi .chzn-choices {
|
.chzn-container-multi .chzn-choices {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
|
||||||
background-image: -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background-image: -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background-image: -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
|
background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background-image: -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
|
background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
|
background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background-image: linear-gradient(top, #ffffff 85%, #eeeeee 99%);
|
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -178,13 +177,13 @@
|
||||||
-webkit-background-clip: padding-box;
|
-webkit-background-clip: padding-box;
|
||||||
background-clip : padding-box;
|
background-clip : padding-box;
|
||||||
background-color: #e4e4e4;
|
background-color: #e4e4e4;
|
||||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.48, #e8e8e8), color-stop(0.5, #f0f0f0), color-stop(0.8, #f4f4f4));
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 );
|
||||||
background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%);
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
|
||||||
background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%);
|
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||||
background-image: -o-linear-gradient(top, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%);
|
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||||
background-image: -ms-linear-gradient(top, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%);
|
background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#f4f4f4',GradientType=0 );
|
background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||||
background-image: linear-gradient(top, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%);
|
background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||||
-webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
|
-webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
|
||||||
-moz-box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
|
-moz-box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
|
||||||
box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
|
box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
|
||||||
|
@ -194,8 +193,6 @@
|
||||||
padding: 3px 20px 3px 5px;
|
padding: 3px 20px 3px 5px;
|
||||||
margin: 3px 0 3px 5px;
|
margin: 3px 0 3px 5px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
|
||||||
.chzn-container-multi .chzn-choices .search-choice span {
|
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
.chzn-container-multi .chzn-choices .search-choice-focus {
|
.chzn-container-multi .chzn-choices .search-choice-focus {
|
||||||
|
@ -245,13 +242,13 @@
|
||||||
}
|
}
|
||||||
.chzn-container .chzn-results .highlighted {
|
.chzn-container .chzn-results .highlighted {
|
||||||
background-color: #3875d7;
|
background-color: #3875d7;
|
||||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.1, #2a62bc), color-stop(0.8, #3875d7));
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );
|
||||||
background-image: -webkit-linear-gradient(center bottom, #2a62bc 10%, #3875d7 80%);
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
|
||||||
background-image: -moz-linear-gradient(center bottom, #2a62bc 10%, #3875d7 80%);
|
background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
|
||||||
background-image: -o-linear-gradient(bottom, #2a62bc 10%, #3875d7 80%);
|
background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
|
||||||
background-image: -ms-linear-gradient(top, #2a62bc 10%, #3875d7 80%);
|
background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a62bc', endColorstr='#3875d7',GradientType=0 );
|
background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
|
||||||
background-image: linear-gradient(top, #2a62bc 10%, #3875d7 80%);
|
background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.chzn-container .chzn-results li em {
|
.chzn-container .chzn-results li em {
|
||||||
|
@ -278,7 +275,7 @@
|
||||||
}
|
}
|
||||||
.chzn-container .chzn-results-scroll {
|
.chzn-container .chzn-results-scroll {
|
||||||
background: white;
|
background: white;
|
||||||
margin: 0px 4px;
|
margin: 0 4px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 321px; /* This should by dynamic with js */
|
width: 321px; /* This should by dynamic with js */
|
||||||
|
@ -316,13 +313,13 @@
|
||||||
-o-box-shadow : 0 1px 0 #fff inset;
|
-o-box-shadow : 0 1px 0 #fff inset;
|
||||||
box-shadow : 0 1px 0 #fff inset;
|
box-shadow : 0 1px 0 #fff inset;
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.2, white), color-stop(0.8, #eeeeee));
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
|
||||||
background-image: -webkit-linear-gradient(center bottom, white 20%, #eeeeee 80%);
|
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
|
||||||
background-image: -moz-linear-gradient(center bottom, white 20%, #eeeeee 80%);
|
background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
|
||||||
background-image: -o-linear-gradient(bottom, white 20%, #eeeeee 80%);
|
background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
|
||||||
background-image: -ms-linear-gradient(top, #ffffff 20%,#eeeeee 80%);
|
background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
|
background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
|
||||||
background-image: linear-gradient(top, #ffffff 20%,#eeeeee 80%);
|
background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);
|
||||||
-webkit-border-bottom-left-radius : 0;
|
-webkit-border-bottom-left-radius : 0;
|
||||||
-webkit-border-bottom-right-radius: 0;
|
-webkit-border-bottom-right-radius: 0;
|
||||||
-moz-border-radius-bottomleft : 0;
|
-moz-border-radius-bottomleft : 0;
|
||||||
|
@ -362,29 +359,31 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* @group Right to Left */
|
/* @group Right to Left */
|
||||||
.chzn-rtl { direction:rtl;text-align: right; }
|
.chzn-rtl { text-align: right; }
|
||||||
.chzn-rtl .chzn-single { padding-left: 0; padding-right: 8px; }
|
.chzn-rtl .chzn-single { padding: 0 8px 0 0; overflow: visible; }
|
||||||
.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; }
|
.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; direction: rtl; }
|
||||||
|
|
||||||
.chzn-rtl .chzn-single div { left: 3px; right: auto; }
|
.chzn-rtl .chzn-single div { left: 3px; right: auto; }
|
||||||
.chzn-rtl .chzn-single abbr {
|
.chzn-rtl .chzn-single abbr {
|
||||||
left: 26px;
|
left: 26px;
|
||||||
right: auto;
|
right: auto;
|
||||||
}
|
}
|
||||||
|
.chzn-rtl .chzn-choices .search-field input { direction: rtl; }
|
||||||
.chzn-rtl .chzn-choices li { float: right; }
|
.chzn-rtl .chzn-choices li { float: right; }
|
||||||
.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }
|
.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; }
|
||||||
.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}
|
.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;}
|
||||||
.chzn-rtl.chzn-container-single .chzn-results { margin-left: 4px; margin-right: 0; padding-left: 0; padding-right: 4px; }
|
.chzn-rtl.chzn-container-single .chzn-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; }
|
||||||
.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 20px; }
|
.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 15px; }
|
||||||
.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }
|
.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; }
|
||||||
.chzn-rtl .chzn-search input {
|
.chzn-rtl .chzn-search input {
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, #ffffff;
|
background: #fff url('chosen-sprite.png') no-repeat -38px -22px;
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
|
background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
background: url('chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
background: url('chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
|
||||||
padding: 4px 5px 4px 20px;
|
padding: 4px 5px 4px 20px;
|
||||||
|
direction: rtl;
|
||||||
}
|
}
|
||||||
/* @end */
|
/* @end */
|
||||||
|
|
Loading…
Reference in a new issue