wzp
2021-07-19 e65183d31755a0e5fae4bf428435d2e0fd6afdc5
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
@CHARSET "UTF-8";
 
/* font style */
.bsgrid {
    font-size: 13px;
    font-family: '微软雅黑', Verdana, sans-serif, '宋体', serif;
}
 
/* grid table */
table.bsgrid {
    width: 98%;
    margin-right: 5px;
    border-collapse: collapse;
}
 
/* grid header and column */
.bsgrid th, .bsgrid td {
    padding: 3px;
    border: solid 1px #ccc;
    background-color: white;
    text-align: center;
    color: #333;
    line-height: 1.8em;
}
 
.bsgrid td.lineWrap {
    word-break: break-all;
}
 
.bsgrid td.lineNoWrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
/* grid header */
.bsgrid th {
    font-weight: 400;
    background: url(../images/skins/default/bg.gif) repeat-x #f4f4f4;
}
 
/* grid even index row column color */
.bsgrid tr.even_index_row td {
    background-color: #eeeeff;
}
 
/* grid row hover column color */
.bsgrid tr.row_hover td {
    background-color: #fff1cc !important;
}
 
/* grid selected row column color */
.bsgrid tr.selected.selected_color td {
    background-color: #fff1cc !important;
}
 
/* href */
.bsgrid a {
    color: #ff6600;
    text-decoration: none;
}
 
/* sort */
.bsgrid th .sort.sort-view {
    background: url(../images/sort-view.gif) no-repeat center;
    margin-left: 3px;
}
 
.bsgrid th .sort.sort-asc {
    background: url(../images/sort-asc.gif) no-repeat top;
    margin-left: 3px;
}
 
.bsgrid th .sort.sort-desc {
    background: url(../images/sort-desc.gif) no-repeat bottom;
    margin-left: 3px;
}
 
/* grid lock screen */
.bsgrid.lockscreen {
    position: fixed;
    z-index: 2014;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    filter: alpha(opacity=10);
    opacity: .1;
    -moz-opacity: 0.1;
}
 
/* grid loading */
.bsgrid.loading_div {
    position: fixed;
    z-index: 2015;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
 
.bsgrid.loading_div table {
    width: 100%;
    height: 100%;
}
 
.bsgrid.loading_div td {
    width: 100%;
    height: 100%;
    background-color: transparent !important;
    text-align: center;
    vertical-align: middle;
}
 
.bsgrid.loading_div td div {
    width: 200px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #000;
    border: solid 1px #999;
    background-color: #fff;
}
 
.bsgrid.loading {
    padding-left: 5px;
    line-height: 1.5em;
}
 
.bsgrid.loading span {
    background: url("../images/loading.gif") no-repeat center;
}
 
/* paging toolbar out table */
.bsgridPagingOutTab {
    width: 98%;
    margin-right: 5px;
    border-collapse: collapse;
    border: solid 1px #ccc;
    background-color: white;
    border-top-width: 0;
}