|
@@ -0,0 +1,485 @@
|
|
1
|
+/*Grid*/
|
|
2
|
+.ui-jqgrid {
|
|
3
|
+ position: relative;
|
|
4
|
+ -moz-box-sizing: content-box;
|
|
5
|
+ -webkit-box-sizing: content-box;
|
|
6
|
+ box-sizing: content-box;
|
|
7
|
+ font-size:11px;
|
|
8
|
+}
|
|
9
|
+.ui-jqgrid .ui-jqgrid-view {
|
|
10
|
+ position: relative;
|
|
11
|
+ left:0;
|
|
12
|
+ top: 0;
|
|
13
|
+ padding: 0;
|
|
14
|
+ /*font-size:11px;*/
|
|
15
|
+ z-index:100;
|
|
16
|
+}
|
|
17
|
+.ui-jqgrid .ui-common-table {border-width: 0px; border-style: none; border-spacing: 0px; padding: 0;}
|
|
18
|
+/* caption*/
|
|
19
|
+.ui-jqgrid .ui-jqgrid-titlebar {height:19px; padding: .3em .2em .2em .3em; position: relative; font-size: 12px; border-left: 0 none;border-right: 0 none; border-top: 0 none;}
|
|
20
|
+.ui-jqgrid .ui-jqgrid-caption {text-align: left;}
|
|
21
|
+.ui-jqgrid .ui-jqgrid-title {
|
|
22
|
+ padding: .2em .1em .1em;
|
|
23
|
+ position: absolute;
|
|
24
|
+}
|
|
25
|
+.ui-jqgrid .ui-jqgrid-titlebar-close { position: absolute;top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height:18px; cursor:pointer;}
|
|
26
|
+.ui-jqgrid .ui-jqgrid-titlebar-close span { display: block; margin: 1px; }
|
|
27
|
+.ui-jqgrid .ui-jqgrid-titlebar-close:hover { padding: 0; }
|
|
28
|
+.ui-jqgrid .menubar:hover { border: 0 none;}
|
|
29
|
+/* header*/
|
|
30
|
+.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0;padding: 0; overflow: hidden; border-left: 0 none !important; border-top : 0 none !important; border-right : 0 none !important;}
|
|
31
|
+.ui-jqgrid .ui-jqgrid-hbox {float: left; padding-right: 20px;}
|
|
32
|
+.ui-jqgrid .ui-jqgrid-htable {table-layout:fixed;margin:0;border-collapse: separate;}
|
|
33
|
+.ui-jqgrid .ui-jqgrid-htable th { height: 27px; padding: 0 2px 0 2px;}
|
|
34
|
+.ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative;margin: .1em 0em .1em 0em;}
|
|
35
|
+.ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {overflow: hidden;white-space: nowrap;text-align:center;border-top : 0 none;border-bottom : 0 none;}
|
|
36
|
+.ui-th-column-header, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column-header {overflow: hidden;white-space: nowrap;text-align:center;border-top : 0 none; height: 26px;}
|
|
37
|
+.ui-th-ltr, .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {border-left : 0 none;}
|
|
38
|
+.ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {border-right : 0 none;}
|
|
39
|
+.ui-first-th-ltr {border-right: 1px solid; }
|
|
40
|
+.ui-first-th-rtl {border-left: 1px solid; }
|
|
41
|
+.ui-jqgrid .ui-th-div-ie {white-space: nowrap; zoom :1; height:17px;}
|
|
42
|
+.ui-jqgrid .ui-jqgrid-resize {height:20px !important;position: relative; cursor :e-resize;display: inline;overflow: hidden;}
|
|
43
|
+.ui-jqgrid .ui-grid-ico-sort {overflow:hidden;position:absolute;display:inline; cursor: pointer !important;}
|
|
44
|
+.ui-jqgrid .ui-icon-asc {margin-top:-3px; height:12px;}
|
|
45
|
+.ui-jqgrid .ui-icon-desc {margin-top:3px;margin-left:-1px;height:12px;}
|
|
46
|
+.ui-jqgrid .ui-i-asc {margin-top:0;height:18px;}
|
|
47
|
+.ui-jqgrid .ui-i-desc {margin-top:0;margin-left:12px;height:18px;}
|
|
48
|
+.ui-jqgrid .ui-single-sort-asc {margin-top:0;height:18px;}
|
|
49
|
+.ui-jqgrid .ui-single-sort-desc {margin-top:-1px;height:18px;}
|
|
50
|
+.ui-jqgrid .ui-jqgrid-sortable {cursor:pointer;height:14px}
|
|
51
|
+.ui-jqgrid tr.ui-search-toolbar th { }
|
|
52
|
+.ui-jqgrid .ui-search-table td.ui-search-clear { width:25px;}
|
|
53
|
+.ui-jqgrid tr.ui-search-toolbar td > input { padding-right: 0px; width: 95%;}
|
|
54
|
+.ui-jqgrid tr.ui-search-toolbar select {}
|
|
55
|
+/* body */
|
|
56
|
+.ui-jqgrid .ui-jqgrid-bdiv {position: relative; margin: 0; padding:0; overflow: auto; text-align:left;z-index: 101;}
|
|
57
|
+.ui-jqgrid .ui-jqgrid-btable {table-layout:fixed; margin:0; outline-style: none; border-collapse: separate;}
|
|
58
|
+.ui-jqgrid tr.jqgrow,
|
|
59
|
+.ui-jqgrid tr.jqgroup
|
|
60
|
+ { outline-style: none; }
|
|
61
|
+.ui-jqgrid tr.jqgrow td,
|
|
62
|
+.ui-jqgrid tr.jqgroup td
|
|
63
|
+ {font-weight: normal; overflow: hidden; white-space: pre; height: 23px;padding: 1px 2px 1px 2px;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}
|
|
64
|
+.ui-jqgrid tr.jqgfirstrow td {padding: 0 2px 0 2px;border-right-width: 1px; border-right-style: solid; height:auto;}
|
|
65
|
+.ui-jqgrid tr.jqfoot td {font-weight: bold; overflow: hidden; white-space: pre; height: 22px;padding: 0 2px 0 2px;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}
|
|
66
|
+.ui-jqgrid tr.ui-row-ltr td {text-align:left;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;}
|
|
67
|
+.ui-jqgrid tr.ui-row-rtl td {text-align:right;border-left-width: 1px; border-left-color: inherit; border-left-style: solid;}
|
|
68
|
+.ui-jqgrid td.jqgrid-rownum { padding: 0 2px 0 2px; margin: 0; border: 0 none;}
|
|
69
|
+.ui-jqgrid .ui-jqgrid-resize-mark { width:2px; left:0; background-color:#777; cursor: e-resize; cursor: col-resize; position:absolute; top:0; height:100px; overflow:hidden; display:none; border:0 none; z-index: 99999;}
|
|
70
|
+.ui-jqgrid-table-striped > tbody > tr:nth-of-type(odd) {
|
|
71
|
+ opacity: .7;
|
|
72
|
+ font-weight: normal;
|
|
73
|
+}
|
|
74
|
+/* footer */
|
|
75
|
+.ui-jqgrid .ui-jqgrid-sdiv {position: relative; margin: 0;padding: 0; overflow: hidden; border-left: 0 none !important; border-top : 0 none !important; border-right : 0 none !important;}
|
|
76
|
+.ui-jqgrid .ui-jqgrid-ftable {table-layout:fixed; margin-bottom:0;border-collapse: separate;}
|
|
77
|
+.ui-jqgrid tr.footrow td {font-weight: bold; overflow: hidden; white-space:nowrap; height: 23px;padding: 1px 2px 1px 2px;border-top-width: 1px; border-top-color: inherit; border-top-style: solid;border-bottom: 0 none;}
|
|
78
|
+.ui-jqgrid tr.footrow-ltr td {text-align:left;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;}
|
|
79
|
+.ui-jqgrid tr.footrow-rtl td {text-align:right;border-left-width: 1px; border-left-color: inherit; border-left-style: solid;}
|
|
80
|
+/* Pager*/
|
|
81
|
+.ui-jqgrid .ui-jqgrid-pager {
|
|
82
|
+ border-left: 0 none !important;
|
|
83
|
+ border-right: 0 none !important;
|
|
84
|
+ border-bottom: 0 none !important;
|
|
85
|
+ border-top: 0 none;
|
|
86
|
+ margin: 0 !important;
|
|
87
|
+ padding: 0 !important;
|
|
88
|
+ position: relative;
|
|
89
|
+ height: auto;
|
|
90
|
+ min-height: 28px;
|
|
91
|
+ white-space: nowrap;
|
|
92
|
+ overflow: hidden;
|
|
93
|
+ /*font-size:11px; */
|
|
94
|
+ z-index:100
|
|
95
|
+}
|
|
96
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pager-control, .ui-jqgrid .ui-jqgrid-pager .ui-pager-control {position: relative;border-left: 0;border-bottom: 0;border-top: 0; height: 28px;}
|
|
97
|
+.ui-jqgrid .ui-pg-table {position: relative; padding: 1px 0; width:auto; margin: 0;}
|
|
98
|
+.ui-jqgrid .ui-pg-table td {font-weight:normal; vertical-align:middle; padding:0px 1px;}
|
|
99
|
+.ui-jqgrid .ui-pg-button { height:auto}
|
|
100
|
+.ui-jqgrid .ui-pg-button span { display: block; margin: 2px; float:left;}
|
|
101
|
+.ui-jqgrid .ui-pg-button:hover { padding: 0;}
|
|
102
|
+.ui-jqgrid .ui-state-disabled:hover {padding:0px;}
|
|
103
|
+.ui-jqgrid .ui-pg-input,.ui-jqgrid .ui-jqgrid-toppager .ui-pg-input { height:14px;width: auto;font-size:.9em; margin:0;line-height: inherit;border: none; padding: 3px 2px}
|
|
104
|
+.ui-jqgrid .ui-pg-selbox, .ui-jqgrid .ui-jqgrid-toppager .ui-pg-selbox {font-size:.9em; line-height:inherit; display:block; height:19px; margin: 0; padding: 3px 0px; border:none;}
|
|
105
|
+.ui-jqgrid .ui-separator {height: 18px; border-left: 2px solid #ccc ;}
|
|
106
|
+.ui-separator-li {height: 2px; border : none;border-top: 2px solid #ccc ; margin: 0; padding: 0; width:100%}
|
|
107
|
+.ui-jqgrid .dropdownmenu {
|
|
108
|
+ padding: 3px 0 3px 0;
|
|
109
|
+ margin-left: 4px;
|
|
110
|
+}
|
|
111
|
+.ui-jqgrid .ui-jqgrid-pager .ui-pg-div,
|
|
112
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div
|
|
113
|
+{padding:1px 0;float:left;position:relative; line-height: 20px;}
|
|
114
|
+.ui-jqgrid .ui-jqgrid-pager .ui-pg-button,
|
|
115
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pg-button
|
|
116
|
+{ cursor:pointer; }
|
|
117
|
+.ui-jqgrid .ui-jqgrid-pager .ui-pg-div span.ui-icon,
|
|
118
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div span.ui-icon
|
|
119
|
+{float:left;margin: 2px; width:18px;}
|
|
120
|
+.ui-jqgrid td input, .ui-jqgrid td select, .ui-jqgrid td textarea { margin: 0; padding-top:5px;padding-bottom: 5px;}
|
|
121
|
+.ui-jqgrid td textarea {width:auto;height:auto;}
|
|
122
|
+.ui-jqgrid .ui-jqgrid-toppager {border-left: 0 none !important;border-right: 0 none !important; border-top: 0 none !important; margin: 0 !important; padding: 0 !important; position: relative;white-space: nowrap;overflow: hidden;}
|
|
123
|
+.ui-jqgrid .ui-jqgrid-pager .ui-pager-table,
|
|
124
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pager-table
|
|
125
|
+{
|
|
126
|
+ width:100%;
|
|
127
|
+ table-layout:fixed;
|
|
128
|
+ height:100%;
|
|
129
|
+}
|
|
130
|
+.ui-jqgrid .ui-jqgrid-pager .ui-paging-info,
|
|
131
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-paging-info
|
|
132
|
+{
|
|
133
|
+ font-weight: normal;
|
|
134
|
+ height:auto;
|
|
135
|
+ margin-top:3px;
|
|
136
|
+ margin-right:4px;
|
|
137
|
+ display: inline;
|
|
138
|
+}
|
|
139
|
+.ui-jqgrid .ui-jqgrid-pager .ui-paging-pager,
|
|
140
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-paging-pager
|
|
141
|
+{
|
|
142
|
+ table-layout:auto;
|
|
143
|
+ height:100%;
|
|
144
|
+}
|
|
145
|
+.ui-jqgrid .ui-jqgrid-pager .navtable,
|
|
146
|
+.ui-jqgrid .ui-jqgrid-toppager .navtable
|
|
147
|
+{
|
|
148
|
+ float:left;
|
|
149
|
+ table-layout:auto;
|
|
150
|
+ height:100%;
|
|
151
|
+}
|
|
152
|
+
|
|
153
|
+/*.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div {padding:1px 0;float:left;position:relative; line-height: 20px; margin-right:3px;}
|
|
154
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pg-button { cursor:pointer; }
|
|
155
|
+.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div span.ui-icon {float:left;margin: 2px; width:18px;}
|
|
156
|
+*/
|
|
157
|
+
|
|
158
|
+/*subgrid*/
|
|
159
|
+.ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {display: block;}
|
|
160
|
+.ui-jqgrid .ui-subgrid {margin:0;padding:0; width:100%;}
|
|
161
|
+.ui-jqgrid .ui-subgrid table {table-layout: fixed;}
|
|
162
|
+.ui-jqgrid .ui-subgrid tr.ui-subtblcell td {height:18px;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}
|
|
163
|
+.ui-jqgrid .ui-subgrid td.subgrid-data {border-top: 0 none !important; border-left: 0 none !important;}
|
|
164
|
+.ui-jqgrid .ui-subgrid td.subgrid-cell {border-width: 0 1px 1px 0;}
|
|
165
|
+.ui-jqgrid .ui-th-subgrid {height:20px;}
|
|
166
|
+/* loading */
|
|
167
|
+.ui-jqgrid .loading,
|
|
168
|
+.loading_pivot {
|
|
169
|
+ position: absolute;
|
|
170
|
+ top: 45%;
|
|
171
|
+ left: 45%;
|
|
172
|
+ width: auto;
|
|
173
|
+ z-index:101;
|
|
174
|
+ padding: 6px;
|
|
175
|
+ margin: 5px;
|
|
176
|
+ text-align: center;
|
|
177
|
+ font-weight: bold;
|
|
178
|
+ display: none;
|
|
179
|
+ border-width: 2px !important;
|
|
180
|
+ /*font-size:11px;*/
|
|
181
|
+}
|
|
182
|
+.ui-jqgrid .jqgrid-overlay {display:none;}
|
|
183
|
+/* IE * html .jqgrid-overlay {width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');} */
|
|
184
|
+* .jqgrid-overlay iframe {position:absolute;top:0;left:0;z-index:-1;}
|
|
185
|
+/* IE width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');}*/
|
|
186
|
+/* end loading div */
|
|
187
|
+/* toolbar */
|
|
188
|
+.ui-jqgrid .ui-userdata {border-left: 0 none; border-right: 0 none; height : 27px;overflow: hidden; }
|
|
189
|
+/*Modal Window */
|
|
190
|
+.ui-jqdialog {
|
|
191
|
+ /*font-size:11px !important; */
|
|
192
|
+}
|
|
193
|
+.ui-jqdialog {
|
|
194
|
+ display: none;
|
|
195
|
+ width: 300px;
|
|
196
|
+ position: absolute;
|
|
197
|
+ padding: .2em;
|
|
198
|
+ /*font-size:11px;*/
|
|
199
|
+ overflow:visible;
|
|
200
|
+}
|
|
201
|
+.ui-jqdialog .ui-jqdialog-titlebar { padding: .3em .2em; position: relative; height:20px;}
|
|
202
|
+.ui-jqdialog .ui-jqdialog-title { margin: .3em .2em .2em .2em;}
|
|
203
|
+.ui-jqdialog .ui-jqdialog-titlebar-close { position: absolute; top: 50%; width: 19px; margin: -12px 0 0 0; padding: 1px; height: 18px; cursor:pointer;}
|
|
204
|
+
|
|
205
|
+.ui-jqdialog .ui-jqdialog-titlebar-close span { display: block; margin: 1px; }
|
|
206
|
+.ui-jqdialog .ui-jqdialog-titlebar-close:hover, .ui-jqdialog .ui-jqdialog-titlebar-close:focus { padding: 0; }
|
|
207
|
+.ui-jqdialog-content, .ui-jqdialog .ui-jqdialog-content { border: 0; padding: .3em .2em; background: none; height:auto;}
|
|
208
|
+.ui-jqdialog .ui-jqconfirm {padding: .4em 1em; border-width:3px;position:absolute;bottom:10px;right:10px;overflow:visible;display:none;height:80px;width:220px;text-align:center;}
|
|
209
|
+.ui-jqdialog>.ui-resizable-se {
|
|
210
|
+ bottom: 2px;
|
|
211
|
+ right: 2px;
|
|
212
|
+ background-position: -64px -224px;
|
|
213
|
+}
|
|
214
|
+.ui-jqgrid>.ui-resizable-se { bottom: -3px; right: -3px }
|
|
215
|
+.jqgrid-overlay-modal { display : none; }
|
|
216
|
+/* end Modal window*/
|
|
217
|
+/* Form edit */
|
|
218
|
+.ui-jqdialog-content .FormGrid {margin: 0; overflow:auto;position:relative;}
|
|
219
|
+.ui-jqdialog-content .EditTable { width: 100%; margin-bottom:0;}
|
|
220
|
+.ui-jqdialog-content .DelTable { width: 100%; margin-bottom:0;}
|
|
221
|
+.EditTable td input, .EditTable td select, .EditTable td textarea {margin: 0;}
|
|
222
|
+.EditTable td textarea { width:auto; height:auto;}
|
|
223
|
+.ui-jqdialog-content td.EditButton {text-align: right;border-top: 0 none;border-left: 0 none;border-right: 0 none; padding-bottom:5px; padding-top:5px;}
|
|
224
|
+.ui-jqdialog-content td.navButton {text-align: center; border-left: 0 none;border-top: 0 none;border-right: 0 none; padding-bottom:5px; padding-top:5px;}
|
|
225
|
+.ui-jqdialog-content input.FormElement {
|
|
226
|
+ padding: .5em .3em;
|
|
227
|
+ margin-bottom: 3px;
|
|
228
|
+ font-size: inherit;
|
|
229
|
+}
|
|
230
|
+.ui-jqdialog-content select.FormElement {
|
|
231
|
+ padding:.3em;
|
|
232
|
+ margin-bottom: 3px;
|
|
233
|
+ font-size: inherit;
|
|
234
|
+}
|
|
235
|
+.ui-jqdialog-content .data-line {padding-top:.1em;border: 0 none;}
|
|
236
|
+
|
|
237
|
+.ui-jqdialog-content .CaptionTD {vertical-align: middle;border: 0 none; padding: 2px;white-space: nowrap;}
|
|
238
|
+.ui-jqdialog-content .DataTD {
|
|
239
|
+ padding: 2px;
|
|
240
|
+ border: 0 none;
|
|
241
|
+ vertical-align: middle;
|
|
242
|
+}
|
|
243
|
+.ui-jqdialog-content .form-view-data {white-space:pre}
|
|
244
|
+.fm-button { height: 18px; display: inline-block; margin:2px 4px 0 0; padding: .6em .5em .2em .5em; text-decoration:none !important; cursor:pointer; position: relative; text-align: center; zoom: 1; }
|
|
245
|
+.fm-button-icon-left { padding-left: 1.9em; }
|
|
246
|
+.fm-button-icon-right { padding-right: 1.9em; }
|
|
247
|
+.fm-button-icon-left .ui-icon { right: auto; left: .2em; margin-left: 0; position: absolute; top: 50%; margin-top: -8px; }
|
|
248
|
+.fm-button-icon-right .ui-icon { left: auto; right: .2em; margin-left: 0; position: absolute; top: 50%; margin-top: -8px;}
|
|
249
|
+#nData, #pData { float: left; margin:3px;padding: 0; width: 15px; }
|
|
250
|
+.ViewTable {
|
|
251
|
+ border-width: 0;
|
|
252
|
+ border-style: none;
|
|
253
|
+ border-spacing: 1px;
|
|
254
|
+ padding: 4px;
|
|
255
|
+ table-layout: fixed;
|
|
256
|
+}
|
|
257
|
+.ViewTable .CaptionTD, .ViewTable .DataTD {padding : 4px;}
|
|
258
|
+/* End Eorm edit */
|
|
259
|
+/*cell edit*/
|
|
260
|
+.ui-jqgrid .edit-cell {
|
|
261
|
+ padding: 4px 0px 4px 4px;
|
|
262
|
+}
|
|
263
|
+.ui-jqgrid .selected-row, div.ui-jqgrid .selected-row td {font-style : normal;border-left: 0 none;}
|
|
264
|
+/* inline edit actions button*/
|
|
265
|
+.ui-inline-del.ui-state-hover span, .ui-inline-edit.ui-state-hover span,
|
|
266
|
+.ui-inline-save.ui-state-hover span, .ui-inline-cancel.ui-state-hover span {
|
|
267
|
+ margin: -1px;
|
|
268
|
+}
|
|
269
|
+.ui-inline-del, .ui-inline-cancel {
|
|
270
|
+ margin-left: 8px;
|
|
271
|
+}
|
|
272
|
+
|
|
273
|
+.ui-jqgrid .inline-edit-cell {
|
|
274
|
+ padding: 4px 0px 4px 4px;
|
|
275
|
+}
|
|
276
|
+/* Tree Grid */
|
|
277
|
+.ui-jqgrid .tree-wrap {float: left; position: relative;height: 18px;white-space: nowrap;overflow: hidden;}
|
|
278
|
+.ui-jqgrid .tree-minus {position: absolute; height: 18px; width: 18px; overflow: hidden;}
|
|
279
|
+.ui-jqgrid .tree-plus {position: absolute; height: 18px; width: 18px; overflow: hidden;}
|
|
280
|
+.ui-jqgrid .tree-leaf {position: absolute; height: 18px; width: 18px;overflow: hidden;}
|
|
281
|
+.ui-jqgrid .treeclick {cursor: pointer;}
|
|
282
|
+/* moda dialog */
|
|
283
|
+* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;}
|
|
284
|
+/* width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');}*/
|
|
285
|
+.ui-jqgrid-dnd tr td {border-right-width: 1px; border-right-color: inherit; border-right-style: solid; height:20px}
|
|
286
|
+/* RTL Support */
|
|
287
|
+.ui-jqgrid .ui-jqgrid-caption-rtl {text-align: right;}
|
|
288
|
+.ui-jqgrid .ui-jqgrid-hbox-rtl {float: right;}
|
|
289
|
+.ui-jqgrid .ui-jqgrid-resize-ltr {float: right;margin: -2px -2px -2px 0;}
|
|
290
|
+.ui-jqgrid .ui-jqgrid-resize-rtl {float: left;margin: -2px 0 -1px -3px;}
|
|
291
|
+.ui-jqgrid .ui-sort-rtl {left:0;}
|
|
292
|
+.ui-jqgrid .tree-wrap-ltr {float: left;}
|
|
293
|
+.ui-jqgrid .tree-wrap-rtl {float: right;}
|
|
294
|
+.ui-jqgrid .ui-ellipsis {-moz-text-overflow:ellipsis;text-overflow:ellipsis;}
|
|
295
|
+
|
|
296
|
+/* Toolbar Search Menu , Nav menu*/
|
|
297
|
+.ui-search-menu,
|
|
298
|
+.ui-nav-menu {
|
|
299
|
+ position: absolute;
|
|
300
|
+ padding: 2px 5px;
|
|
301
|
+ z-index:99999;
|
|
302
|
+ -webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
|
|
303
|
+ -moz-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
|
|
304
|
+ box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
|
|
305
|
+}
|
|
306
|
+.ui-search-menu.ui-menu .ui-menu-item,
|
|
307
|
+.ui-nav-menu.ui-menu .ui-menu-item
|
|
308
|
+{
|
|
309
|
+ list-style-image: none;
|
|
310
|
+ padding-right: 0;
|
|
311
|
+ padding-left: 0;
|
|
312
|
+}
|
|
313
|
+.ui-search-menu.ui-menu .ui-menu-item a,
|
|
314
|
+.ui-nav-menu.ui-menu .ui-menu-item a
|
|
315
|
+{
|
|
316
|
+ display: block;
|
|
317
|
+}
|
|
318
|
+.ui-search-menu.ui-menu .ui-menu-item a.g-menu-item:hover,
|
|
319
|
+.ui-nav-menu.ui-menu .ui-menu-item a.g-menu-item:hover
|
|
320
|
+{
|
|
321
|
+ margin: -1px;
|
|
322
|
+ font-weight: normal;
|
|
323
|
+}
|
|
324
|
+.ui-jqgrid .ui-search-table { padding: 0; border: 0 none; height:20px; width:100%;}
|
|
325
|
+.ui-jqgrid .ui-search-table .ui-search-oper { width:20px; }
|
|
326
|
+a.g-menu-item, a.soptclass, a.clearsearchclass { cursor: pointer; }
|
|
327
|
+.ui-jqgrid .ui-jqgrid-view input,
|
|
328
|
+.ui-jqgrid .ui-jqgrid-view select,
|
|
329
|
+.ui-jqgrid .ui-jqgrid-view textarea,
|
|
330
|
+.ui-jqgrid .ui-jqgrid-view button {
|
|
331
|
+ font-size: inherit;
|
|
332
|
+}
|
|
333
|
+
|
|
334
|
+.ui-jqgrid .ui-scroll-popup {width: 95px;}
|
|
335
|
+.ui-search-table select,
|
|
336
|
+.ui-search-table input
|
|
337
|
+{
|
|
338
|
+ padding: 4px 3px;
|
|
339
|
+}
|
|
340
|
+
|
|
341
|
+.ui-jqgrid .ui-pg-table .ui-pg-button.ui-state-disabled:hover > .ui-separator {
|
|
342
|
+ margin-left: 3px;
|
|
343
|
+ margin-right: 3px;
|
|
344
|
+}
|
|
345
|
+
|
|
346
|
+.ui-jqgrid .ui-pg-table .ui-pg-button.ui-state-disabled:hover > .ui-pg-div > .ui-icon {
|
|
347
|
+ margin-left: 3px;
|
|
348
|
+ margin-right: 3px;
|
|
349
|
+}
|
|
350
|
+/* Column menu */
|
|
351
|
+.ui-jqgrid .ui-jqgrid-htable .colmenu {
|
|
352
|
+ position:absolute;
|
|
353
|
+ right:1px;
|
|
354
|
+ height:100%;
|
|
355
|
+ color : black;
|
|
356
|
+}
|
|
357
|
+.ui-jqgrid .ui-jqgrid-htable .colmenu-rtl {
|
|
358
|
+ right: auto;
|
|
359
|
+ left : 1px;
|
|
360
|
+ position:absolute;
|
|
361
|
+ height:100%;
|
|
362
|
+ color : black;
|
|
363
|
+}
|
|
364
|
+.ui-jqgrid .ui-jqgrid-htable .colmenuspan {
|
|
365
|
+ display:inline-block;
|
|
366
|
+}
|
|
367
|
+
|
|
368
|
+.ui-jqgrid .ui-jqgrid-htable .ui-th-div {
|
|
369
|
+ height:17px;
|
|
370
|
+ margin-top:5px;
|
|
371
|
+}
|
|
372
|
+.column-menu, .ui-search-menu {
|
|
373
|
+ padding: 10px 10px;
|
|
374
|
+}
|
|
375
|
+.column-menu .divider {
|
|
376
|
+ background-color: #e5e5e5;
|
|
377
|
+ height: 1px;
|
|
378
|
+ padding:0 0;
|
|
379
|
+ margin: 5px 0;
|
|
380
|
+ overflow: hidden;
|
|
381
|
+}
|
|
382
|
+.ui-menu-item .ui-common-table .menu_icon {
|
|
383
|
+ white-space: pre;
|
|
384
|
+ padding-right: 4px;
|
|
385
|
+ padding-left: 4px;
|
|
386
|
+ width : auto;
|
|
387
|
+}
|
|
388
|
+.ui-menu-item .ui-common-table .menu_icon .ui-icon {
|
|
389
|
+ display : inline-block;
|
|
390
|
+ position: relative;
|
|
391
|
+}
|
|
392
|
+td.menu_text {
|
|
393
|
+ width: auto;
|
|
394
|
+ white-space: nowrap;
|
|
395
|
+}
|
|
396
|
+.ui-search-menu .ui-menu-item {
|
|
397
|
+ padding : 0 0;
|
|
398
|
+}
|
|
399
|
+.ui-col-menu .ui-menu-item td.menu_text{
|
|
400
|
+ padding-top: 0;
|
|
401
|
+ padding-bottom: 0;
|
|
402
|
+ padding-left : 1px;
|
|
403
|
+}
|
|
404
|
+.ui-col-menu .ui-menu-item td.menu_icon{
|
|
405
|
+ padding-top: 0;
|
|
406
|
+ padding-bottom: 0;
|
|
407
|
+ vertical-align: middle;
|
|
408
|
+}
|
|
409
|
+.ui-col-menu .ui-menu-item td.menu_icon input{
|
|
410
|
+ margin: 2px 0;
|
|
411
|
+
|
|
412
|
+}
|
|
413
|
+#search_menu .ui-menu-item div {
|
|
414
|
+ margin: 3px 0;
|
|
415
|
+ white-space: nowrap;
|
|
416
|
+}
|
|
417
|
+
|
|
418
|
+#search_menu .ui-menu-item div input,
|
|
419
|
+#search_menu .ui-menu-item div select
|
|
420
|
+{
|
|
421
|
+ padding: 3px 2px;
|
|
422
|
+}
|
|
423
|
+#search_menu .search_buttons {
|
|
424
|
+ display:inline-block;
|
|
425
|
+ width:50%;
|
|
426
|
+}
|
|
427
|
+#column_menu.ui-menu .ui-menu-item {
|
|
428
|
+ position :static;
|
|
429
|
+}
|
|
430
|
+/*menubar*/
|
|
431
|
+.ui-jqgrid .ui-jqgrid-menubar {
|
|
432
|
+ margin: 0px 5px;
|
|
433
|
+ width:19px;
|
|
434
|
+ height:18px;
|
|
435
|
+}
|
|
436
|
+.ui-jqgrid .ui-jqgrid-menubar:hover {
|
|
437
|
+ border: 0 none;
|
|
438
|
+}
|
|
439
|
+.ui-jqgrid .menubar-rtl {
|
|
440
|
+ float : right;
|
|
441
|
+}
|
|
442
|
+
|
|
443
|
+.ui-jqgrid .menubar-ltr {
|
|
444
|
+ float : left;
|
|
445
|
+}
|
|
446
|
+/*printing*/
|
|
447
|
+
|
|
448
|
+.jqgridprint {
|
|
449
|
+ width : 100%;
|
|
450
|
+ font-size: 13px;
|
|
451
|
+}
|
|
452
|
+
|
|
453
|
+.jqgridprint th,
|
|
454
|
+.jqgridprint td {
|
|
455
|
+ padding: 4px 4px 4px 4px ;
|
|
456
|
+ text-align: center ;
|
|
457
|
+}
|
|
458
|
+.jqgridprint th {
|
|
459
|
+ border-bottom: 2px solid #333333 ;
|
|
460
|
+}
|
|
461
|
+.jqgridprint td {
|
|
462
|
+ border-bottom: 1px dotted #999999 ;
|
|
463
|
+}
|
|
464
|
+
|
|
465
|
+.jqgridprint tfoot td {
|
|
466
|
+ border-bottom-width: 0px ;
|
|
467
|
+ border-top: 2px solid #333333 ;
|
|
468
|
+ padding-top: 20px ;
|
|
469
|
+}
|
|
470
|
+
|
|
471
|
+.ui-jqgrid .jqgrid-caption-menu
|
|
472
|
+{
|
|
473
|
+ left:0;
|
|
474
|
+ top:30px;
|
|
475
|
+ position:absolute;
|
|
476
|
+ display:none;
|
|
477
|
+ font-size: inherit;
|
|
478
|
+ width : auto;
|
|
479
|
+}
|
|
480
|
+.ui-jqgrid .jqgrid-column-menu
|
|
481
|
+{
|
|
482
|
+ font-size:inherit;
|
|
483
|
+ width:auto;
|
|
484
|
+ position: absolute;
|
|
485
|
+}
|