BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
70496fe5
Commit
70496fe5
authored
Mar 27, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve UI for issues filters
parent
c1c93f4f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
39 additions
and
43 deletions
+39
-43
filters.scss
app/assets/stylesheets/generic/filters.scss
+25
-0
issuable.scss
app/assets/stylesheets/pages/issuable.scss
+0
-8
issues.scss
app/assets/stylesheets/pages/issues.scss
+3
-6
labels_helper.rb
app/helpers/labels_helper.rb
+1
-2
milestones_helper.rb
app/helpers/milestones_helper.rb
+1
-2
_issuable_filter.html.haml
app/views/shared/_issuable_filter.html.haml
+9
-25
No files found.
app/assets/stylesheets/generic/filters.scss
0 → 100644
View file @
70496fe5
.filter-item
{
margin-right
:
15px
;
}
.issues-state-filters
{
li
.active
a
,
li
.active
a
:hover
{
background
:
#f5f5f5
;
border-bottom
:
1px
solid
#f5f5f5
!
important
;
}
}
.issues-details-filters
{
font-size
:
13px
;
background
:
#f5f5f5
;
margin
:
-10px
0
;
padding
:
10px
15px
;
margin-top
:
-15px
;
border-left
:
1px
solid
#DDD
;
border-right
:
1px
solid
#DDD
;
.btn
{
font-size
:
13px
;
}
}
app/assets/stylesheets/pages/issuable.scss
View file @
70496fe5
...
...
@@ -45,11 +45,3 @@
.btn
{
font-size
:
13px
;
}
}
.filter-item
{
margin-right
:
15px
;
>
span
{
margin-right
:
4px
;
}
}
app/assets/stylesheets/pages/issues.scss
View file @
70496fe5
...
...
@@ -41,12 +41,9 @@
}
.check-all-holder
{
height
:
36px
;
line-
height
:
36px
;
float
:
left
;
margin-right
:
12px
;
padding
:
6px
15px
;
border
:
1px
solid
#ccc
;
@include
border-radius
(
4px
);
margin-right
:
15px
;
}
.issues_content
{
...
...
@@ -73,7 +70,7 @@
.issues-filters
,
.issues_bulk_update
{
select
,
.select2-container
{
width
:
1
4
0px
!
important
;
width
:
1
5
0px
!
important
;
display
:
inline-block
;
}
}
...
...
app/helpers/labels_helper.rb
View file @
70496fe5
...
...
@@ -49,7 +49,6 @@ module LabelsHelper
end
def
project_labels_options
(
project
)
options_for_select
([[
'Any'
,
nil
]])
+
options_from_collection_for_select
(
project
.
labels
,
'name'
,
'name'
,
params
[
:label_name
])
options_from_collection_for_select
(
project
.
labels
,
'name'
,
'name'
,
params
[
:label_name
])
end
end
app/helpers/milestones_helper.rb
View file @
70496fe5
...
...
@@ -28,7 +28,6 @@ module MilestonesHelper
Milestone
.
where
(
project_id:
@projects
)
end
.
active
options_for_select
([[
'Any'
,
nil
]])
+
options_from_collection_for_select
(
milestones
,
'id'
,
'title'
,
params
[
:milestone_id
])
options_from_collection_for_select
(
milestones
,
'id'
,
'title'
,
params
[
:milestone_id
])
end
end
app/views/shared/_issuable_filter.html.haml
View file @
70496fe5
...
...
@@ -14,7 +14,7 @@
%i
.fa.fa-compass
All
%div
.issues-details-filters
=
form_tag
page_filter_path
(
without:
[
:assignee_id
,
:author_id
,
:milestone_id
,
:label_name
]),
method: :get
,
class:
'filter-form'
do
-
if
controller
.
controller_name
==
'issues'
.check-all-holder
...
...
@@ -23,35 +23,19 @@
disabled:
!
can?
(
current_user
,
:modify_issue
,
@project
)
.issues-other-filters
.filter-item.inline
%span
.light
%i
.fa.fa-user
Assignee
%strong
=
users_select_tag
(
:assignee_id
,
selected:
params
[
:assignee_id
],
placeholder:
'Any'
,
class:
'trigger-submit'
,
any_user:
true
,
null_user:
true
)
=
users_select_tag
(
:assignee_id
,
selected:
params
[
:assignee_id
],
placeholder:
'Assignee'
,
class:
'trigger-submit'
,
any_user:
true
,
null_user:
true
)
.filter-item.inline
%span
.light
%i
.fa.fa-user
Author
%strong
=
users_select_tag
(
:author_id
,
selected:
params
[
:author_id
],
placeholder:
'Any'
,
class:
'trigger-submit'
,
any_user:
true
)
=
users_select_tag
(
:author_id
,
selected:
params
[
:author_id
],
placeholder:
'Author'
,
class:
'trigger-submit'
,
any_user:
true
)
.filter-item.inline
%span
.light
%i
.fa.fa-clock-o
Milestone
%strong
=
select_tag
(
'milestone_id'
,
projects_milestones_options
,
class:
"select2 trigger-submit"
)
.filter-item.inline.milestone-filter
=
select_tag
(
'milestone_id'
,
projects_milestones_options
,
class:
"select2 trigger-submit"
,
prompt:
'Milestone'
)
-
if
@project
.filter-item.inline
%span
.light
%i
.fa.fa-tag
Label
%strong
=
select_tag
(
'label_name'
,
project_labels_options
(
@project
),
class:
"select2 trigger-submit"
)
.filter-item.inline.labels-filter
=
select_tag
(
'label_name'
,
project_labels_options
(
@project
),
class:
"select2 trigger-submit"
,
prompt:
'Label'
)
.pull-right
=
render
'shared/sort_dropdown'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment