Improve toggle compact/horizontal scrolling view
This commit is contained in:
@@ -757,16 +757,29 @@ nav .active a {
|
||||
|
||||
/* board table */
|
||||
#board-container {
|
||||
overflow-x: scroll;
|
||||
padding-bottom: 180px; /* Space to avoid dropdown menu truncated */
|
||||
}
|
||||
|
||||
#board td,
|
||||
#board th {
|
||||
/* Board container classes for wide/compact view */
|
||||
.board-container-wide {
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
.board-container-compact {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* 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;
|
||||
|
||||
@@ -20,25 +20,18 @@
|
||||
|
||||
/* board table */
|
||||
#board-container {
|
||||
/* Will set the style from JS depending upon wide/compact view */
|
||||
padding-bottom: 180px; /* Space to avoid dropdown menu truncated */
|
||||
}
|
||||
|
||||
/* 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;
|
||||
|
||||
Reference in New Issue
Block a user