summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/assets/stylesheets/sections/issues.scss2
-rw-r--r--app/views/dashboard/issues.html.haml2
-rw-r--r--app/views/issues/index.html.haml2
3 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/stylesheets/sections/issues.scss b/app/assets/stylesheets/sections/issues.scss
index 58ef8a12fd7..dd1c22d4e76 100644
--- a/app/assets/stylesheets/sections/issues.scss
+++ b/app/assets/stylesheets/sections/issues.scss
@@ -26,7 +26,7 @@
}
}
-#issues-table {
+.issues_table {
.issue {
padding:7px 10px;
diff --git a/app/views/dashboard/issues.html.haml b/app/views/dashboard/issues.html.haml
index b6bcdf8d8fb..c9cc048c667 100644
--- a/app/views/dashboard/issues.html.haml
+++ b/app/views/dashboard/issues.html.haml
@@ -18,7 +18,7 @@
%div.ui-box
- project = group[0]
%h5= project.name
- %ul.unstyled
+ %ul.unstyled.issues_table
- group[1].each do |issue|
= render(:partial => 'issues/show', :locals => {:issue => issue})
%hr
diff --git a/app/views/issues/index.html.haml b/app/views/issues/index.html.haml
index 1c34ad25d80..e49c9513844 100644
--- a/app/views/issues/index.html.haml
+++ b/app/views/issues/index.html.haml
@@ -53,7 +53,7 @@
= select_tag(:milestone_id, options_from_collection_for_select(@project.milestones.order("id desc").all, "id", "title", params[:milestone_id]), :prompt => "Milestone")
= hidden_field_tag :f, params[:f]
- %ul#issues-table.unstyled
+ %ul#issues-table.unstyled.issues_table
= render "issues"
:javascript