responsive chosen selects. Hide milestone dropdown for sm displays
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
35287f1028
commit
e680228bf2
3 changed files with 28 additions and 8 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)}
|
Created by #{link_to_member(@project, issue.author)}
|
||||||
- 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
|
||||||
|
|
Loading…
Reference in a new issue