jxdnsong
2020-10-23 a7929e6b3ec9ac17233f39e55a2b8ac63ea75f42
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
/* dgrid skin for dTuned demo */
.dTuned .dgrid {
    background: #fff;
    color: #000;
}
.dTuned .dgrid-header {
    background-image: url(images/grid-header-bg.png);
    background-repeat: repeat-x;
    font-weight: bold;
}
.dTuned .dgrid-header .dgrid-cell:hover,
.dTuned .dgrid-header .dgrid-sort-up,
.dTuned .dgrid-header .dgrid-sort-down{
    background-image: url(images/grid-header-sorted.png);
    background-repeat: repeat-x;
}
 
.dTuned .dgrid-row {
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: background-color, border-color;
    -moz-transition-property: background-color, border-color;
    -o-transition-property: background-color, border-color;
    transition-property: background-color, border-color;
    background: url("../../../css/skins/images/row_back.png") #fff repeat-x;
}
 
.dTuned .dgrid-row:hover {
    background-color: #e9f2fe;
}
 
.dTuned .dgrid-selected {
    background-color: #cee6fa;
}
 
.dTuned .dgrid-selected:hover {
    background-color: #9bc6f2;
}
 
.dTuned .dgrid-highlight {
    background-color: #ff6;
}