blob: ab36bf6fe1787f214ec478b55e7a30eb7521a864 (
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
|
.subtask-cell {
padding: 4px 10px;
border-top: 1px dotted #dedede;
border-left: 1px dotted #dedede;
display: table-cell;
vertical-align: middle
}
.subtask-cell a {
color: var(--color-primary);
text-decoration: none
}
.subtask-cell a:hover,
.subtask-cell a:focus {
color: var(--link-color-primary);
}
.subtask-cell:first-child {
border-left: none
}
@media (max-width: 768px) {
.subtask-cell {
width: 90%;
display: block;
border-left: none
}
}
|