99 lines
1.6 KiB
CSS
99 lines
1.6 KiB
CSS
/* public board */
|
|
.public-board {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.public-task {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* board table */
|
|
#board-container {
|
|
padding-bottom: 220px; /* Space to avoid dropdown menu truncated */
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.board-container-compact {
|
|
overflow-x: initial;
|
|
}
|
|
|
|
@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
.board-container-compact #board {
|
|
table-layout: auto;
|
|
}
|
|
}
|
|
|
|
#board {
|
|
table-layout: fixed;
|
|
}
|
|
|
|
#board th {
|
|
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 {
|
|
text-decoration: none;
|
|
color: #3366CC;
|
|
font-size: 150%;
|
|
}
|
|
|
|
#board td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
#board td.task-limit-warning {
|
|
background-color: #DF5353;
|
|
}
|
|
|
|
/* column header */
|
|
.board-add-icon {
|
|
float: left;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.board-add-icon a {
|
|
line-height: 70%;
|
|
}
|
|
|
|
.task-count {
|
|
color: #999;
|
|
font-weight: normal;
|
|
}
|
|
|
|
/* drag and drop */
|
|
.draggable-item {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.draggable-placeholder {
|
|
border: 2px dashed #000;
|
|
background: #fafafa;
|
|
height: 70px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* swimlanes */
|
|
#board th a.board-swimlane-toggle {
|
|
font-size: 0.95em;
|
|
}
|
|
|
|
.board-swimlane-toggle-title {
|
|
font-size: 0.85em;
|
|
display: none;
|
|
}
|
|
|
|
.board-swimlane-title {
|
|
vertical-align: top;
|
|
}
|