improving gui details

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-07-27 14:02:23 +02:00
parent be594b3d8f
commit 65102df091
2 changed files with 17 additions and 3 deletions

View File

@@ -128,10 +128,13 @@
<table class="project"> <table class="project">
<tbody> <tbody>
<tr> <tr>
<th>{t('project')}</th> <th>
{t('project')}
<button onclick={kanban}>{t('show_kanban')}</button>
</th>
<td class="name"> <td class="name">
<LineEditor bind:value={project.name} editable={true} onSet={val => update({name:val})} /> <LineEditor bind:value={project.name} editable={true} onSet={val => update({name:val})} />
<button class="symbol" onclick={toggleSettings}></button> <button onclick={toggleSettings}><span class="symbol"></span> {t('settings')}</button>
</td> </td>
</tr> </tr>
<tr> <tr>
@@ -191,7 +194,6 @@
<th> <th>
{t('tasks')} {t('tasks')}
<button onclick={addTask}>{t('add_task')}</button> <button onclick={addTask}>{t('add_task')}</button>
<button onclick={kanban}>{t('show_kanban')}</button>
</th> </th>
<td class="tasks"> <td class="tasks">
{#if tasks} {#if tasks}

View File

@@ -181,3 +181,15 @@ textarea{
bottom: 0; bottom: 0;
right: 0; right: 0;
} }
.project th,
.task th{
text-align: right;
padding-right: 10px;
}
.project th button,
.task th button{
display: block;
margin: 5px 0 5px auto;
}