Better css for chosen selects

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2014-01-05 13:59:01 +02:00
parent 7a84c5c86c
commit d28ee0df12
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
2 changed files with 14 additions and 8 deletions

View File

@ -59,18 +59,21 @@
select {
&.chosen {
min-width: 100px;
width: 100px;
}
&.chosen-sm {
min-width: 100px;
width: 100px;
}
}
@media (min-width: $screen-sm-min) {
select {
&.chosen {
min-width: 150px;
width: 150px;
}
&.chosen-sm {
width: 120px;
}
}
}
@ -79,7 +82,10 @@ select {
@media (min-width: $screen-md-min) {
select {
&.chosen {
min-width: 170px;
width: 170px;
}
&.chosen-sm {
width: 140px;
}
}
}
@ -88,7 +94,10 @@ select {
@media (min-width: $screen-lg-min) {
select {
&.chosen {
min-width: 200px;
width: 200px;
}
&.chosen-sm {
width: 150px;
}
}
}

View File

@ -255,9 +255,6 @@ ul.nav.nav-projects-tabs {
height:auto !important;
}
}
.project-refs-select {
width: 120px;
}
.project-refs-form .chosen-container {
position: relative;