|
1
2
3
4
5
6
7
|
/*
IMPORTANT:
In order to preserve the uniform grid appearance, all cell styles need to have padding, margin and border sizes.
No built-in (selected, editable, highlight, flashing, invalid, loading, :focus) or user-specified CSS
classes should alter those!
*/
|
|
8
9
10
11
|
.slick-header.ui-state-default, .slick-headerrow.ui-state-default {
width: 100%;
overflow: hidden;
border-left: 0px;
|
|
12
13
|
}
|
|
14
15
16
17
18
|
.slick-header-columns, .slick-headerrow-columns {
position: relative;
white-space: nowrap;
cursor: default;
overflow: hidden;
|
|
19
20
21
|
}
.slick-header-column.ui-state-default {
|
|
22
23
24
|
position: relative;
display: inline-block;
overflow: hidden;
|
|
25
|
-o-text-overflow: ellipsis;
|
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
text-overflow: ellipsis;
height: 16px;
line-height: 16px;
margin: 0;
padding: 4px;
border-right: 1px solid silver;
border-left: 0px;
border-top: 0px;
border-bottom: 0px;
float: left;
}
.slick-headerrow-column.ui-state-default {
padding: 4px;
|
|
40
41
42
|
}
.slick-header-column-sorted {
|
|
43
|
font-style: italic;
|
|
44
45
46
|
}
.slick-sort-indicator {
|
|
47
48
49
50
|
display: inline-block;
width: 8px;
height: 5px;
margin-left: 4px;
|
|
51
52
|
margin-top: 6px;
float: left;
|
|
53
54
55
|
}
.slick-sort-indicator-desc {
|
|
56
|
background: url(images/sort-desc.gif);
|
|
57
58
59
|
}
.slick-sort-indicator-asc {
|
|
60
|
background: url(images/sort-asc.gif);
|
|
61
62
63
|
}
.slick-resizable-handle {
|
|
64
65
66
67
68
69
70
71
|
position: absolute;
font-size: 0.1px;
display: block;
cursor: col-resize;
width: 4px;
right: 0px;
top: 0;
height: 100%;
|
|
72
73
74
|
}
.slick-sortable-placeholder {
|
|
75
|
background: silver;
|
|
76
77
78
|
}
.grid-canvas {
|
|
79
80
|
position: relative;
outline: 0;
|
|
81
82
83
|
}
.slick-row.ui-widget-content, .slick-row.ui-state-active {
|
|
84
85
86
|
position: absolute;
border: 0px;
width: 100%;
|
|
87
88
|
}
|
|
89
90
91
92
93
94
|
.slick-cell, .slick-headerrow-column {
position: absolute;
border: 1px solid transparent;
border-right: 1px dotted silver;
border-bottom-color: silver;
overflow: hidden;
|
|
95
|
-o-text-overflow: ellipsis;
|
|
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
text-overflow: ellipsis;
vertical-align: middle;
z-index: 1;
padding: 1px 2px 2px 1px;
margin: 0;
white-space: nowrap;
cursor: default;
}
.slick-group {
}
.slick-group-toggle {
display: inline-block;
|
|
110
111
112
|
}
.slick-cell.highlighted {
|
|
113
114
115
116
|
background: lightskyblue;
background: rgba(0, 0, 255, 0.2);
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
|
|
117
|
-o-transition: all 0.5s;
|
|
118
|
transition: all 0.5s;
|
|
119
120
121
|
}
.slick-cell.flashing {
|
|
122
|
border: 1px solid red !important;
|
|
123
124
125
|
}
.slick-cell.editable {
|
|
126
127
128
129
130
|
z-index: 11;
overflow: visible;
background: white;
border-color: black;
border-style: solid;
|
|
131
132
133
|
}
.slick-cell:focus {
|
|
134
|
outline: none;
|
|
135
136
137
|
}
.slick-reorder-proxy {
|
|
138
139
140
141
142
|
display: inline-block;
background: blue;
opacity: 0.15;
filter: alpha(opacity = 15);
cursor: move;
|
|
143
144
145
|
}
.slick-reorder-guide {
|
|
146
147
148
149
150
151
152
153
154
155
156
|
display: inline-block;
height: 2px;
background: blue;
opacity: 0.7;
filter: alpha(opacity = 70);
}
.slick-selection {
z-index: 10;
position: absolute;
border: 2px dashed black;
|
|
157
|
}
|