blob: 37dba97433cab6a0113ad2ad3badced896789850 (
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
|
/* board filters */
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 {
table-layout: fixed;
}
#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 */
th.board-swimlane-title {
vertical-align: top;
text-align: right;
}
|