From 385ca60a6a60a816e13d71705c75f66af49bc396 Mon Sep 17 00:00:00 2001 From: randx Date: Tue, 26 Jun 2012 23:34:23 +0300 Subject: [PATCH] issues_table css class --- app/assets/stylesheets/sections/issues.scss | 2 +- app/views/dashboard/issues.html.haml | 2 +- app/views/issues/index.html.haml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/sections/issues.scss b/app/assets/stylesheets/sections/issues.scss index 58ef8a12..dd1c22d4 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 b6bcdf8d..c9cc048c 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 1c34ad25..e49c9513 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