blob: 85bf38e2d873fbc4491a7b35ed03ddc6eff612ed (
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
|
.task-board-sort-handle {
float: left;
padding-right: 5px
}
.task-board {
position: relative;
margin-bottom: 4px;
border: 1px solid #000;
padding: 2px;
word-wrap: break-word;
font-size: 0.9em;
border-radius: 6px
}
div.task-board-recent {
border-width: 2px
}
div.task-board-status-closed {
user-select: none;
border: 1px dotted #555
}
.task-board a {
color: #000;
text-decoration: none
}
.task-board-collapsed {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis
}
.task-board-title {
margin-top: 5px;
margin-bottom: 8px
}
.task-board-title a:hover {
text-decoration: underline
}
.task-board-saving-state {
opacity: 0.3
}
.task-board-saving-icon {
position: absolute;
margin: auto;
width: 100%;
text-align: center;
color: #000
}
.task-board-avatars {
text-align: right;
float: right
}
.task-board-change-assignee {
cursor: pointer
}
.task-board-change-assignee:hover {
opacity: 0.6
}
|