nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
// rtl support
 
// IMPORTANT:
// Safari places the scrollbars on the right even when in RTL mode.
// .dgrid-rtl is added to the domNode if the grid's isRTL is true
// .dgrid-rtl-swap is also added to the domNode if isRTL is true and
//   the client swaps the vertical scrollbar to the left side
 
.dgrid-rtl-swap .dgrid-header-row {
    right: 0;
    left: 17px;
}
 
.dgrid-rtl-swap .dgrid-header-scroll {
    left: 0px;
    right: auto;
}
 
.dgrid-rtl .dgrid-cell {
    text-align: right;
}
 
// Reverse position of sort arrow
.dgrid-rtl .dgrid-sort-arrow {
    float: left;
    margin: 0 5px 0 4px;
}
 
// Reverse arrows for tree expando states
.dgrid-rtl .ui-icon-triangle-1-e {
    background-position: -96px -16px;
}
.dgrid-rtl .ui-icon-triangle-1-se {
    background-position: -80px -16px;
}
 
// Reverse Pagination
 
.dgrid-rtl .dgrid-pagination .dgrid-status {
    float: right;
}
 
.dgrid-rtl .dgrid-pagination .dgrid-page-size {
    float: right;
}
.dgrid-rtl .dgrid-pagination .dgrid-navigation {
    float: left;
}
 
.dgrid-rtl.dgrid-autoheight .dgrid-header {
    left: 0;
}