wzp
2021-07-19 58ec6ffd2dc6a3e490e28026dd559352678a273d
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
@CHARSET "UTF-8";
 
/* font style */
.bsgrid {
    font-size: 12px;
    border: 1px solid #ccc;
}
 
/* grid header and column */
.bsgrid th, .bsgrid td {
    padding: 2px;
    border: 1px dotted #ccc;
    background-color: white;
    color: black;
}
 
/* grid header */
.bsgrid th {
    background-image: none;
    background-color: #f2f2f2;
    background: -webkit-linear-gradient(top, #ffffff 0, #F2F2F2 100%);
    background: -moz-linear-gradient(top, #ffffff 0, #F2F2F2 100%);
    background: -o-linear-gradient(top, #ffffff 0, #F2F2F2 100%);
    background: linear-gradient(to bottom, #ffffff 0, #F2F2F2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#F2F2F2, GradientType=0);
}
 
/* grid even index row column color */
.bsgrid tr.even_index_row td {
    background-color: #f5f5f5;
}
 
/* grid row hover column color */
.bsgrid tr.row_hover td {
    background-color: #0092dc !important;
}
 
/* grid selected row column color */
.bsgrid tr.selected.selected_color td {
    background-color: #0092dc !important;
}
 
/* paging toolbar out table */
.bsgridPagingOutTab {
    border-color: #ccc;
    background-color: white;
}
 
.bsgridPaging {
    font-size: 12px;
    color: black;
}
 
/* paging toolbar button */
.bsgridPaging .pagingBtn {
    border-color: #ccc;
    background-image: none;
    background-color: #f2f2f2;
    background: -webkit-linear-gradient(top, #ffffff 0, #F2F2F2 100%);
    background: -moz-linear-gradient(top, #ffffff 0, #F2F2F2 100%);
    background: -o-linear-gradient(top, #ffffff 0, #F2F2F2 100%);
    background: linear-gradient(to bottom, #ffffff 0, #F2F2F2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#F2F2F2, GradientType=0);
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn {
    background: url(../../images/skins/bootstrap/glyphicons-halflings.png) transparent no-repeat !important;
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn.firstPage {
    background-position: -191px -70px !important;
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn.prevPage {
    background-position: -431px -70px !important;
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn.nextPage {
    background-position: -455px -70px !important;
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn.lastPage {
    background-position: -384px -70px !important;
}
 
.bsgridPaging .gotoPageInput {
    border-color: #ccc;
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn.gotoPage {
    background-position: -263px -93px !important;
}
 
.bsgridPaging.pagingLittleToolbar .pagingBtn.refreshPage {
    background-position: -239px -21px !important;
}