diff options
author | ashbike <helloashbike@gmail.com> | 2015-02-28 14:31:20 +0530 |
---|---|---|
committer | ashbike <helloashbike@gmail.com> | 2015-02-28 14:31:20 +0530 |
commit | 621b979627c19e41fc955d939615fc8b7779a2a9 (patch) | |
tree | 807dcc31a2bdc6ede08bcb09c6e7fc8fbf310ed8 /assets/css/src | |
parent | db59460da16bc607ae2e73838925bf3f6a95259d (diff) | |
parent | 106f45258c5018a811fb8e38ee7fb123da5f3459 (diff) |
Added a menu item and short key 'c' to toggle board view. View modes are compact (tries to stuff all columns in the window) and wide (scrollbar appears)
Diffstat (limited to 'assets/css/src')
-rw-r--r-- | assets/css/src/board.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/assets/css/src/board.css b/assets/css/src/board.css index a1aa268d..21b53f57 100644 --- a/assets/css/src/board.css +++ b/assets/css/src/board.css @@ -20,16 +20,36 @@ /* board table */ #board-container { + /* Will set the style from JS depending upon wide/compact view */ +} + +/* Board container classes for wide/compact view */ +.board-container-wide { overflow-x: scroll; padding-bottom: 180px; /* Space to avoid dropdown menu truncated */ } +.board-container-compact { + overflow-x: hidden; + padding-bottom: 180px; /* Space to avoid dropdown menu truncated */ +} + #board td, #board th { + /* Will set the style from JS depending upon wide/compact view */ + } + +/* Board table column for wide/compact view */ +.board-column-wide { min-width: 240px; max-width: 240px; } +.board-column-compact { + min-width: 0px; + max-width: 0px; +} + #board th a { text-decoration: none; color: #3366CC; |