diff options
Diffstat (limited to 'assets/css/src/board.css')
-rw-r--r-- | assets/css/src/board.css | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/assets/css/src/board.css b/assets/css/src/board.css index 6d7d8dd4..4309b178 100644 --- a/assets/css/src/board.css +++ b/assets/css/src/board.css @@ -3,6 +3,10 @@ font-size: 0.95em; } +#more-filters { + display: none; /* Hide this filter initially, to avoid re-layout */ +} + /* public board */ .public-board { margin-top: 5px; @@ -16,14 +20,28 @@ /* board table */ #board-container { - overflow-x: scroll; padding-bottom: 180px; /* Space to avoid dropdown menu truncated */ + overflow-x: scroll; +} + +.board-container-compact { + overflow-x: initial; +} + +#board { + table-layout: fixed; } -#board td, #board th { - min-width: 240px; - max-width: 240px; + width: 120px; /* Width of swimlane column */ +} + +#board th.board-column { + width: 240px; /* Width of other columns, in default [horizontal scrolling] view mode */ +} + +#board th.board-column.board-column-compact { + width: initial; /* Do not force the width of the columns in compact view mode */ } #board th a { |