mirror of
https://github.com/SrIzan10/kanboard.git
synced 2026-05-01 10:45:29 +00:00
78 lines
1.0 KiB
CSS
78 lines
1.0 KiB
CSS
/* board filters */
|
|
.board-filters {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
a.filter-on {
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
/* public board */
|
|
.public-board {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.public-task {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* board table */
|
|
#board-container {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#board td,
|
|
#board th {
|
|
min-width: 230px;
|
|
max-width: 230px;
|
|
}
|
|
|
|
#board th a {
|
|
text-decoration: none;
|
|
color: #3366CC;
|
|
font-size: 150%;
|
|
}
|
|
|
|
#board td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
#board td.task-limit-warning {
|
|
background-color: #DF5353;
|
|
}
|
|
|
|
.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;
|
|
}
|