Fix board column header alignment

This commit is contained in:
Jake G
2021-12-10 16:34:02 -08:00
committed by GitHub
parent a40da29a0e
commit e745f8a235
4 changed files with 8 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
</div> </div>
<!-- column in expanded mode --> <!-- column in expanded mode -->
<div class="board-column-expanded"> <div class="board-column-expanded-header">
<?php if (! $not_editable && $this->projectRole->canCreateTaskInColumn($column['project_id'], $column['id'])): ?> <?php if (! $not_editable && $this->projectRole->canCreateTaskInColumn($column['project_id'], $column['id'])): ?>
<?= $this->task->getNewBoardTaskButton($swimlane, $column) ?> <?= $this->task->getNewBoardTaskButton($swimlane, $column) ?>
<?php endif ?> <?php endif ?>

View File

@@ -7,7 +7,7 @@
</div> </div>
<!-- column in expanded mode --> <!-- column in expanded mode -->
<div class="board-column-expanded"> <div class="board-column-expanded-header">
<span class="board-column-title"> <span class="board-column-title">
</span> </span>

File diff suppressed because one or more lines are too long

View File

@@ -53,6 +53,11 @@
display: none display: none
} }
.board-column-expanded-header {
display: flex;
align-items: center
}
td.board-column-task-collapsed { td.board-column-task-collapsed {
font-weight: bold; font-weight: bold;
background-color: #fbfbfb background-color: #fbfbfb