Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
1724f45f
Commit
1724f45f
authored
Jan 05, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused styles. Restyled Issues a bit
parent
de05a598
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
88 additions
and
56 deletions
+88
-56
app/assets/javascripts/issues.js
app/assets/javascripts/issues.js
+1
-1
app/assets/stylesheets/gitlab_bootstrap/common.scss
app/assets/stylesheets/gitlab_bootstrap/common.scss
+29
-7
app/assets/stylesheets/sections/issues.scss
app/assets/stylesheets/sections/issues.scss
+4
-2
app/contexts/issues_list_context.rb
app/contexts/issues_list_context.rb
+1
-1
app/views/issues/_filter.html.haml
app/views/issues/_filter.html.haml
+21
-0
app/views/issues/index.html.haml
app/views/issues/index.html.haml
+28
-42
app/views/merge_requests/index.html.haml
app/views/merge_requests/index.html.haml
+4
-3
No files found.
app/assets/javascripts/issues.js
View file @
1724f45f
...
...
@@ -11,7 +11,7 @@ function initIssuesSearch() {
last_terms
=
terms
;
if
(
terms
.
length
>=
2
||
terms
.
length
==
0
)
{
$
.
get
(
href
,
{
'
f
'
:
status
,
'
terms
'
:
terms
,
'
milestone_id
'
:
milestone_id
},
function
(
response
)
{
$
.
get
(
href
,
{
'
status
'
:
status
,
'
terms
'
:
terms
,
'
milestone_id
'
:
milestone_id
},
function
(
response
)
{
$
(
'
#issues-table
'
).
html
(
response
);
});
}
...
...
app/assets/stylesheets/gitlab_bootstrap/common.scss
View file @
1724f45f
...
...
@@ -17,20 +17,42 @@
.padded
{
padding
:
20px
}
.ipadded
{
padding
:
20px
!
important
}
.lborder
{
border-left
:
1px
solid
#eee
}
.no-padding
{
padding
:
0
!
important
;
}
.underlined
{
border-bottom
:
1px
solid
#CCC
;
}
.no-borders
{
border
:
none
;
}
.vlink
{
color
:
$link_color
!
important
;
}
.underlined_link
{
text-decoration
:
underline
;
}
.borders
{
border
:
1px
solid
#ccc
;
@include
shade
;
}
.hint
{
font-style
:
italic
;
color
:
#999
;
}
.light
{
color
:
#888
}
.tiny
{
font-weight
:
normal
}
/** PILLS & TABS**/
.nav-pills
a
:hover
{
background-color
:
#888
;
}
.nav-pills
.active
a
{
background-color
:
$style_color
;
}
.nav-pills
{
.active
a
{
}
>
li
>
a
{
@include
border-radius
(
0
);
}
&
.nav-stacked
{
>
li
>
a
{
border-left
:
4px
solid
#EEE
;
padding
:
12px
;
}
>
.active
>
a
{
border-color
:
#29B
;
border-radius
:
0
;
background
:
#F1F1F1
;
color
:
$style_color
;
font-weight
:
bold
;
}
}
}
.nav-pills
>
.active
>
a
>
i
[
class
^=
"icon-"
]
{
background
:
inherit
;
}
/**
* nav-tabs
*
*/
.nav-tabs
>
li
>
a
,
.nav-pills
>
li
>
a
{
color
:
$style_color
;
}
.nav.nav-tabs
{
li
{
...
...
app/assets/stylesheets/sections/issues.scss
View file @
1724f45f
...
...
@@ -55,9 +55,10 @@ input.check_all_issues {
}
@media
(
min-width
:
800px
)
{
.issues_filters
select
{
width
:
160px
;
}
}
@media
(
min-width
:
1000px
)
{
.issues_filters
select
{
width
:
200px
;
}
}
@media
(
min-width
:
1200px
)
{
.issues_filters
select
{
width
:
220px
;
}
}
@media
(
min-width
:
800px
)
{
.issues_bulk_update
select
{
width
:
120px
;
}
}
@media
(
min-width
:
1200px
)
{
.issues_bulk_update
select
{
width
:
160px
;
}
}
#issues-table-holder
{
.issues_filters
{
...
...
@@ -68,6 +69,7 @@ input.check_all_issues {
form
{
float
:left
;
}
.update_selected_issues
{
position
:
relative
;
top
:
5px
;
...
...
app/contexts/issues_list_context.rb
View file @
1724f45f
...
...
@@ -4,7 +4,7 @@ class IssuesListContext < BaseContext
attr_accessor
:issues
def
execute
@issues
=
case
params
[
:
f
]
@issues
=
case
params
[
:
status
]
when
issues_filter
[
:all
]
then
@project
.
issues
when
issues_filter
[
:closed
]
then
@project
.
issues
.
closed
when
issues_filter
[
:to_me
]
then
@project
.
issues
.
opened
.
assigned
(
current_user
)
...
...
app/views/issues/_filter.html.haml
0 → 100644
View file @
1724f45f
=
form_tag
project_issues_path
(
@project
),
method:
'get'
do
%fieldset
%legend
Status:
%ul
.nav.nav-pills.nav-stacked
%li
{
class:
(
"active"
if
!
params
[
:status
])}
=
link_to
project_issues_path
(
@project
,
status:
nil
)
do
Open
%li
{
class:
(
"active"
if
params
[
:status
]
==
'to_me'
)}
=
link_to
project_issues_path
(
@project
,
status:
'to_me'
)
do
Assigned To Me
%li
{
class:
(
"active"
if
params
[
:status
]
==
'closed'
)}
=
link_to
project_issues_path
(
@project
,
status:
'closed'
)
do
Closed
%li
{
class:
(
"active"
if
params
[
:status
]
==
'all'
)}
=
link_to
project_issues_path
(
@project
,
status:
'all'
)
do
All
%fieldset
%hr
=
link_to
"Reset"
,
project_issues_path
(
@project
),
class:
'btn right'
app/views/issues/index.html.haml
View file @
1724f45f
...
...
@@ -2,25 +2,28 @@
.issues_content
%h3
.page_title
Issues
%s
mall
(
<span
class=
issue_counter
>
#{
@issues
.
total_count
}
</span>
)
%s
pan
(
<span
class=
issue_counter
>
#{
@issues
.
total_count
}
</span>
)
.right
.span5
-
if
can?
current_user
,
:write_issue
,
@project
=
link_to
new_project_issue_path
(
@project
,
issue:
{
assignee_id:
params
[
:assignee_id
],
milestone_id:
params
[
:milestone_id
]}),
class:
"right btn"
,
title:
"New Issue"
,
id:
"new_issue_link"
do
=
link_to
new_project_issue_path
(
@project
,
issue:
{
assignee_id:
params
[
:assignee_id
],
milestone_id:
params
[
:milestone_id
]}),
class:
"right btn
primary
"
,
title:
"New Issue"
,
id:
"new_issue_link"
do
%i
.icon-plus
New Issue
=
form_tag
search_project_issues_path
(
@project
),
method: :get
,
remote:
true
,
id:
"issue_search_form"
,
class: :right
do
=
hidden_field_tag
:project_id
,
@project
.
id
,
{
id:
'project_id'
}
=
hidden_field_tag
:status
,
params
[
:
f
]
=
hidden_field_tag
:status
,
params
[
:
status
]
=
search_field_tag
:issue_search
,
nil
,
{
placeholder:
'Search'
,
class:
'issue_search span3 right neib search-text-input'
}
.clearfix
.row
.span3
=
render
'filter'
,
entity:
'issue'
.span9
%div
#issues-table-holder
.ui-box
.title
=
check_box_tag
"check_all_issues"
,
nil
,
false
,
class:
"check_all_issues left"
.clearfix
.issues_bulk_update.hide
=
form_tag
bulk_update_project_issues_path
(
@project
),
method: :post
do
%span
.update_issues_text
Update selected issues with
...
...
@@ -29,31 +32,14 @@
=
select_tag
(
'update[assignee_id]'
,
options_from_collection_for_select
(
@project
.
users
.
all
,
"id"
,
"name"
,
params
[
:assignee_id
]),
prompt:
"Assignee"
)
=
select_tag
(
'update[milestone_id]'
,
options_from_collection_for_select
(
issues_active_milestones
,
"id"
,
"title"
,
params
[
:milestone_id
]),
prompt:
"Milestone"
)
=
hidden_field_tag
'update[issues_ids]'
,
[]
=
hidden_field_tag
:f
,
params
[
:f
]
=
hidden_field_tag
:status
,
params
[
:status
]
=
button_tag
"Save"
,
class:
"btn update_selected_issues btn-small save-btn"
.issues_filters
.left
%ul
.nav.nav-pills.left
%li
{
class:
(
"active"
if
(
params
[
:f
]
==
issues_filter
[
:open
]
||
!
params
[
:f
]))}
=
link_to
project_issues_path
(
@project
,
f:
issues_filter
[
:open
],
milestone_id:
params
[
:milestone_id
])
do
Open
%li
{
class:
(
"active"
if
params
[
:f
]
==
issues_filter
[
:closed
])}
=
link_to
project_issues_path
(
@project
,
f:
issues_filter
[
:closed
],
milestone_id:
params
[
:milestone_id
])
do
Closed
%li
{
class:
(
"active"
if
params
[
:f
]
==
issues_filter
[
:to_me
])}
=
link_to
project_issues_path
(
@project
,
f:
issues_filter
[
:to_me
],
milestone_id:
params
[
:milestone_id
])
do
To Me
%li
{
class:
(
"active"
if
params
[
:f
]
==
issues_filter
[
:all
])}
=
link_to
project_issues_path
(
@project
,
f:
issues_filter
[
:all
],
milestone_id:
params
[
:milestone_id
])
do
All
.right
=
form_tag
project_issues_path
(
@project
),
method: :get
,
class: :right
do
=
form_tag
project_issues_path
(
@project
),
method: :get
do
=
select_tag
(
:label_name
,
options_for_select
(
issue_tags
,
params
[
:label_name
]),
prompt:
"Labels"
)
=
select_tag
(
:assignee_id
,
options_from_collection_for_select
([
unassigned_filter
]
+
@project
.
users
.
all
,
"id"
,
"name"
,
params
[
:assignee_id
]),
prompt:
"Assignee"
)
=
select_tag
(
:milestone_id
,
options_from_collection_for_select
([
unassigned_filter
]
+
issues_active_milestones
,
"id"
,
"title"
,
params
[
:milestone_id
]),
prompt:
"Milestone"
)
=
hidden_field_tag
:f
,
params
[
:f
]
.clearfix
=
hidden_field_tag
:status
,
params
[
:status
]
%ul
#issues-table
.well-list.issues_table
=
render
"issues"
...
...
app/views/merge_requests/index.html.haml
View file @
1724f45f
-
if
can?
current_user
,
:write_issue
,
@project
=
link_to
new_project_merge_request_path
(
@project
),
class:
"right btn primary"
,
title:
"New Merge Request"
do
%i
.icon-plus
New Merge Request
%h3
.page_title
Merge Requests
-
if
can?
current_user
,
:write_issue
,
@project
=
link_to
new_project_merge_request_path
(
@project
),
class:
"right btn"
,
title:
"New Merge Request"
do
New Merge Request
%br
...
...
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