Browse Source

Merge branch 'main' into dev

module/contact
Stephan Richter 4 weeks ago
parent
commit
b0364ec77e
  1. 2
      frontend/src/routes/project/KanbanCard.svelte
  2. 9
      web/src/main/resources/web/css/default-color.css

2
frontend/src/routes/project/KanbanCard.svelte

@ -32,7 +32,7 @@
</span> </span>
{/if} {/if}
{#if task.due_date} {#if task.due_date}
<span class="due_date"> <span class="due_date" style={style}>
{#if task.start_date} {#if task.start_date}
{task.start_date} {task.start_date}
{/if} {/if}

9
web/src/main/resources/web/css/default-color.css

@ -91,13 +91,18 @@ textarea{
} }
.kanban .state_10 .box, .kanban .state_10 .box,
.kanban .state_10 .due_date,
.kanban .state_20 .box, .kanban .state_20 .box,
.kanban .state_20 .due_date,
.kanban .state_40 .box, .kanban .state_40 .box,
.kanban .state_100 .box{ .kanban .state_40 .due_date,
.kanban .state_100 .box
.kanban .state_100 .due_date{
background-color: orange; background-color: orange;
} }
.kanban .state_60 .box{ .kanban .state_60 .box,
.kanban .state_60 .due_date{
background-color: #d3ff00; background-color: #d3ff00;
} }

Loading…
Cancel
Save