responsive chosen selects. Hide milestone dropdown for sm displays

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2014-01-04 19:46:52 +02:00
parent 35287f1028
commit e680228bf2
No known key found for this signature in database
GPG key ID: 627C5F589F467F17
3 changed files with 28 additions and 8 deletions

View file

@ -59,10 +59,36 @@
select { select {
&.chosen { &.chosen {
min-width: 200px; min-width: 100px;
} }
&.chosen-sm { &.chosen-sm {
min-width: 100px; min-width: 100px;
} }
} }
@media (min-width: $screen-sm-min) {
select {
&.chosen {
min-width: 150px;
}
}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: $screen-md-min) {
select {
&.chosen {
min-width: 170px;
}
}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: $screen-lg-min) {
select {
&.chosen {
min-width: 200px;
}
}
}

View file

@ -120,11 +120,6 @@ input.check_all_issues {
} }
} }
.edit-issue.inline-update select {
width: 100%;
max-width: 200px;
}
.issue-show-labels .label { .issue-show-labels .label {
padding: 6px 10px; padding: 6px 10px;
} }

View file

@ -1,5 +1,4 @@
= form_for [@project, @issue], remote: true, html: {class: 'edit-issue inline-update'} do |f| = form_for [@project, @issue], remote: true, html: {class: 'edit-issue inline-update'} do |f|
.pull-right
Created by #{link_to_member(@project, issue.author)}&nbsp; Created by #{link_to_member(@project, issue.author)}&nbsp;
- if issue.assignee - if issue.assignee
\ and currently assigned to \ and currently assigned to
@ -12,7 +11,7 @@
= link_to_member(@project, @issue.assignee) = link_to_member(@project, @issue.assignee)
.pull-right .pull-right.hidden-sm
- if issue.milestone - if issue.milestone
- milestone = issue.milestone - milestone = issue.milestone
%cite.cgray Attached to milestone %cite.cgray Attached to milestone