Add gray border to button 'Not started' at PDF reports

This commit is contained in:
Ivan Kljun 2023-08-24 09:34:17 +02:00
parent 023a6fe0a8
commit 24a6150500

View file

@ -26,7 +26,7 @@
<% status = my_module.my_module_status %>
<%= t('projects.reports.elements.module.status') %>
<span class="status-block" style="background: <%= status.color %>;
<%= 'color: #000000;' if status.name == 'Not started' %>">
<%= 'color: #000000; border: 1px solid #D0D5DD;' if status.name == 'Not started' %>">
<%= status.name %>
</span>
<% if my_module.completed? %>