blob: d6de87c610b4dc01a94c50a75ceeb349b1e39093 (
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
|
.zoom-bar {
background: #fafafa;
border-bottom: 2px solid #828282;
height: 40px;
line-height: 40px;
padding: 5px 10px;
}
.radio-label {
background: #bdc3c7;
box-shadow: inset -2px -2px #acb2b7;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-block;
font-family: Tahoma, Geneva, sans-serif;
font-size: 15px;
height: 30px;
line-height: 30px;
margin-left: 6px;
text-align: center;
width: 70px;
}
.radio-label > input[type=radio] {
height: 0;
margin: 0;
visibility: hidden;
width: 0;
}
.radio-label-active {
background: #9ea4a8;
box-shadow: none;
}
.gantt-container {
height: 500px;
width: 100%;
}
.message-area {
background: #ebebeb;
border: 1px solid #a4a4a4;
font-family: Courier, monospace;
height: 200px;
overflow: auto;
padding: 10px;
}
.message-area ul{
margin: 0;
padding: 0;
list-style: none;
}
.message-area li:before {
content: "\003e";
padding-right: 10px;
}
|