-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
65 lines (54 loc) · 1.13 KB
/
index.css
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
.time-label-count {
text-align: left;
margin-left: 10px;
}
.estimate-time, .actual-time {
height: inherit;
min-width: 15px;
display: inline-block;
padding: 0 .5rem !important;
margin: 0 5px 10px 0;
line-height: 1.14286rem;
text-align: center;
text-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 5px, rgba(0, 0, 0, 0.2) 0px 0px 2px;
font-size: 0.714286rem;
color: #fff;
border-radius: 4px;
}
.estimate-time {
background: #f2d600;
}
.actual-time {
background: #61bd4f;
}
.list.estimate-time-hide .estimate-time {
display: none;
}
.list.actual-time-hide .actual-time {
display: none;
}
.cus-divider {
position: relative;
width: 100px !important;
color: transparent;
}
.cus-divider:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 10px;
left: 50%;
background-color: rgba(0, 0, 0, 0.1);
}
.cur-divider .list-header-name {
color: transparent;
}
.cus-divider .list {
background-color: transparent !important;
}
.cus-divider .list,
.cus-divider .list-header {
display: block !important;
height: 100% !important;
}