bus.css
1.9 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
thead {
background-color: #dbdfe5;
border-bottom: 1px solid #99a1ad;
border-top: 1px solid #99a1ad;
}
.doubleTable thead tr th {
width: 300px;
}
.doubleTable tr {
height: 35px;
}
.doubleTable tbody tr thead {
background-color: #dbdfe5;
}
.doubleTable {
width: 100%;
border-left: 1px solid #99a1ad;
border-top: 1px solid #99a1ad;
border-bottom: 1px solid #99a1ad;
table-layout: fixed;
}
.doubleTable a {
display: inline-block;
margin-left: 10px;
}
.childTable {
width: 100%;
}
.doubleTable tr td,
.doubleTable tr th {
text-align: center;
border-right: 1px solid #99a1ad;
}
.doubleTable tr td {
border-top: 1px solid #99a1ad;
}
.doubleTable tr {
border-top: 1px solid #99a1ad;
}
.doubleTable tbody tr {
background-color: #fff;
}
.childTable tr td,
.childTable tr th {
border-right: 0px;
border-left: 1px solid #99a1ad;
}
.childTable tr td:first-child,
.childTable tr th:first-child {
border-left: 0px;
}
.childTable tr th:first-child {
width: 50px;
}
.childTable tbody tr:hover {
background-color: #9ca5b5;
}
.childTable tbody tr:nth-child(even) {
background-color: #ebedf1;
}
.childTable tbody tr:nth-child(odd) {
background-color: #fff;
}
#gridForm {
padding-left: 10px;
padding-right: 10px;
}
.dialogDiv {
padding-left: 70px;
padding-top: 40px;
}
.roadDetail {
height: 245px;
width: 600px;
position: absolute;
display: none;
background-color: #fff;
}
.roadDetail .tdTitle {
width: 120px;
}
.roadDetail .tdContent {
width: 200px;
}
.roadDetail table {
border-right: 1px solid #9ca5b5;
border-bottom: 1px solid #9ca5b5;
}
.roadDetail table tr td {
height: 40px;
border-top: 1px solid #9ca5b5;
border-left: 1px solid #9ca5b5;
}
.roadDetail table tr td.tdContent {
background-color: #fff;
}
.roadDetail table tr td.tdTitle {
background-color: #ebedf1;
}