diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 10c6d1a..859438e 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -108,6 +108,7 @@ final class BackendController extends Controller $board = KanbanBoardMapper::get() ->with('columns') ->with('columns/cards') + ->with('columns/cards/comments') ->with('columns/cards/tags') ->with('columns/cards/tags/title') ->where('id', (int) $request->getData('id')) diff --git a/Theme/Backend/css/styles.css b/Theme/Backend/css/styles.css index 1053388..6bb3d28 100755 --- a/Theme/Backend/css/styles.css +++ b/Theme/Backend/css/styles.css @@ -5,3 +5,10 @@ flex: 1; } .kanban-column .portlet-head div { flex: 0; } + .kanban-board { + column-gap: 1rem; + flex-wrap: nowrap; + } + .kanban-column { + min-width: 300px; + } \ No newline at end of file diff --git a/Theme/Backend/css/styles.scss b/Theme/Backend/css/styles.scss index 1ecf2ce..47d3d52 100755 --- a/Theme/Backend/css/styles.scss +++ b/Theme/Backend/css/styles.scss @@ -11,4 +11,11 @@ flex: 0; } } + + min-width: 300px; +} + +.kanban-board { + column-gap: 1rem; + flex-wrap: nowrap; } \ No newline at end of file diff --git a/Theme/Backend/kanban-archive.tpl.php b/Theme/Backend/kanban-archive.tpl.php index f748f43..1b892b8 100755 --- a/Theme/Backend/kanban-archive.tpl.php +++ b/Theme/Backend/kanban-archive.tpl.php @@ -26,7 +26,7 @@ echo $this->getData('nav')->render(); ?>