blob: ca4ba5c0508032c26b7bd87a17351b165d427893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* 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;
}
|