Commit 4012f3295005c41f97ba7c6ea85fea8b173e3417

Authored by Victor Costa
2 parents 67e29ed1 05361395

Merge branch 'processed_tasks' into production

app/views/tasks/processed.html.erb
... ... @@ -35,7 +35,7 @@
35 35 <% else %>
36 36 <ul class="task-list">
37 37 <% @tasks.each do |item| %>
38   - <li class="task">
  38 + <li class="task status-<%= item.status%>">
39 39 <div class="title">
40 40 <strong><%= task_information(item) %></strong> <br/>
41 41 </div>
... ...
public/stylesheets/tasks.css
... ... @@ -103,6 +103,15 @@
103 103 padding: 12px;
104 104 }
105 105  
  106 +.task-processed .task.status-3 {
  107 + background-color: rgb(255, 203, 203);
  108 +}
  109 +
  110 +.task-processed .task.status-2 {
  111 + background-color: rgb(205, 252, 218);
  112 +}
  113 +
  114 +
106 115 .task-processed ul {
107 116 padding: 0;
108 117 }
... ...