blob: a779ff9095da983f1a3e10f452df1a7fe9183c95 (
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
|
.timeline-board {
min-height: 200px;
height: 100%;
position: relative;
padding: 1em 0;
display: flex;
flex-direction: column;
}
.timeline-board-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1em;
}
.timeline-board-item {
font-size: 1.1em;
height: 48px;
transition: background 0.3s;
display: flex;
align-items: center;
padding: 0 1em;
}
.timeline-board-item .icon {
height: 1.3em;
color: black;
}
.timeline-board-item:hover {
background: #dee2e6;
}
.timeline-board-item .right {
display: flex;
align-items: center;
flex-shrink: 0;
}
.timeline-board-item .title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
|