diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-03-12 20:42:43 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-03-12 20:42:43 -0400 |
commit | f4454c17b81c986fd35ce7272e4c5b765b94bdb8 (patch) | |
tree | f8382a62cf5a2684df0f264e22da5c210e4ce414 /assets/css/src | |
parent | 412a8eb8c898d47c81416b1bd8464145e976ee09 (diff) | |
parent | 72681443a61018231eaa180a5d283e3825641219 (diff) |
Merge pull-request #706
Diffstat (limited to 'assets/css/src')
-rw-r--r-- | assets/css/src/board.css | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/assets/css/src/board.css b/assets/css/src/board.css index f4aefa95..4309b178 100644 --- a/assets/css/src/board.css +++ b/assets/css/src/board.css @@ -21,26 +21,27 @@ /* board table */ #board-container { padding-bottom: 180px; /* Space to avoid dropdown menu truncated */ -} - -/* Board container classes for wide/compact view */ -.board-container-wide { overflow-x: scroll; } .board-container-compact { - overflow-x: hidden; + overflow-x: initial; +} + +#board { + table-layout: fixed; +} + +#board th { + width: 120px; /* Width of swimlane column */ } -/* Board table column for wide/compact view */ -.board-column-wide { - min-width: 240px; - max-width: 240px; +#board th.board-column { + width: 240px; /* Width of other columns, in default [horizontal scrolling] view mode */ } -.board-column-compact { - min-width: 0px; - max-width: 0px; +#board th.board-column.board-column-compact { + width: initial; /* Do not force the width of the columns in compact view mode */ } #board th a { |