Commit 385ca60a6a60a816e13d71705c75f66af49bc396

Authored by randx
1 parent cbca0457

issues_table css class

app/assets/stylesheets/sections/issues.scss
... ... @@ -26,7 +26,7 @@
26 26 }
27 27 }
28 28  
29   -#issues-table {
  29 +.issues_table {
30 30 .issue {
31 31 padding:7px 10px;
32 32  
... ...
app/views/dashboard/issues.html.haml
... ... @@ -18,7 +18,7 @@
18 18 %div.ui-box
19 19 - project = group[0]
20 20 %h5= project.name
21   - %ul.unstyled
  21 + %ul.unstyled.issues_table
22 22 - group[1].each do |issue|
23 23 = render(:partial => 'issues/show', :locals => {:issue => issue})
24 24 %hr
... ...
app/views/issues/index.html.haml
... ... @@ -53,7 +53,7 @@
53 53 = select_tag(:milestone_id, options_from_collection_for_select(@project.milestones.order("id desc").all, "id", "title", params[:milestone_id]), :prompt => "Milestone")
54 54 = hidden_field_tag :f, params[:f]
55 55  
56   - %ul#issues-table.unstyled
  56 + %ul#issues-table.unstyled.issues_table
57 57 = render "issues"
58 58  
59 59 :javascript
... ...