Show More
The requested changes are too big and content was truncated. Show full diff
@@ -0,0 +1,40 b'' | |||||
|
1 | ||||
|
2 | import os | |||
|
3 | ||||
|
4 | import tornado.httpserver | |||
|
5 | import tornado.ioloop | |||
|
6 | import tornado.options | |||
|
7 | import tornado.web | |||
|
8 | ||||
|
9 | from tornado.options import define, options | |||
|
10 | ||||
|
11 | define("port", default=8888, help="run on the given port", type=int) | |||
|
12 | ||||
|
13 | class MainHandler(tornado.web.RequestHandler): | |||
|
14 | def get(self): | |||
|
15 | self.render('notebook.html') | |||
|
16 | ||||
|
17 | ||||
|
18 | class NotebookApplication(tornado.web.Application): | |||
|
19 | def __init__(self): | |||
|
20 | handlers = [ | |||
|
21 | (r"/", MainHandler) | |||
|
22 | ] | |||
|
23 | settings = dict( | |||
|
24 | template_path=os.path.join(os.path.dirname(__file__), "templates"), | |||
|
25 | static_path=os.path.join(os.path.dirname(__file__), "static"), | |||
|
26 | ) | |||
|
27 | tornado.web.Application.__init__(self, handlers, **settings) | |||
|
28 | ||||
|
29 | ||||
|
30 | def main(): | |||
|
31 | tornado.options.parse_command_line() | |||
|
32 | application = NotebookApplication() | |||
|
33 | http_server = tornado.httpserver.HTTPServer(application) | |||
|
34 | http_server.listen(options.port) | |||
|
35 | tornado.ioloop.IOLoop.instance().start() | |||
|
36 | ||||
|
37 | ||||
|
38 | if __name__ == "__main__": | |||
|
39 | main() | |||
|
40 |
@@ -0,0 +1,173 b'' | |||||
|
1 | html, body, div, span, applet, object, iframe, | |||
|
2 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |||
|
3 | a, abbr, acronym, address, big, cite, code, | |||
|
4 | del, dfn, em, img, ins, kbd, q, s, samp, | |||
|
5 | small, strike, strong, sub, sup, tt, var, | |||
|
6 | b, u, i, center, | |||
|
7 | dl, dt, dd, ol, ul, li, | |||
|
8 | fieldset, form, label, legend, | |||
|
9 | table, caption, tbody, tfoot, thead, tr, th, td, | |||
|
10 | article, aside, canvas, details, embed, | |||
|
11 | figure, figcaption, footer, header, hgroup, | |||
|
12 | menu, nav, output, ruby, section, summary, | |||
|
13 | time, mark, audio, video { | |||
|
14 | margin: 0; | |||
|
15 | padding: 0; | |||
|
16 | border: 0; | |||
|
17 | font-size: 100%; | |||
|
18 | font: inherit; | |||
|
19 | vertical-align: baseline; | |||
|
20 | } | |||
|
21 | ||||
|
22 | body { | |||
|
23 | background-color: white; | |||
|
24 | } | |||
|
25 | ||||
|
26 | span#ipython_notebook h1 { | |||
|
27 | font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; | |||
|
28 | font-size: 32pt; | |||
|
29 | padding: 10px; | |||
|
30 | margin: 10px; | |||
|
31 | } | |||
|
32 | ||||
|
33 | ||||
|
34 | div#toolbar { | |||
|
35 | width: 100%; | |||
|
36 | height: auto; | |||
|
37 | border-bottom-width: 2px; | |||
|
38 | border-bottom-style: solid; | |||
|
39 | border-bottom-color: black; | |||
|
40 | padding: 5px; | |||
|
41 | } | |||
|
42 | ||||
|
43 | #main_toolbar { | |||
|
44 | } | |||
|
45 | ||||
|
46 | #main_toolbar button { | |||
|
47 | font-size: 0.9em; | |||
|
48 | } | |||
|
49 | ||||
|
50 | div.notebook { | |||
|
51 | width: 760px; | |||
|
52 | height: 100%; | |||
|
53 | margin-left: auto; | |||
|
54 | margin-right: auto; | |||
|
55 | padding-top: 5px; | |||
|
56 | padding-bottom: 5px; | |||
|
57 | background-color: white; | |||
|
58 | ||||
|
59 | /* Uncomment this block for help in debugging the padding and margins | |||
|
60 | /* border-left-width: 1px; | |||
|
61 | border-left-style: solid; | |||
|
62 | border-left-color: black; | |||
|
63 | border-right-width: 1px; | |||
|
64 | border-right-style: solid; | |||
|
65 | border-right-color: black; | |||
|
66 | border-bottom-width: 1px; | |||
|
67 | border-bottom-style: solid; | |||
|
68 | border-bottom-color: black;*/ | |||
|
69 | } | |||
|
70 | ||||
|
71 | div.cell { | |||
|
72 | width: 740px; | |||
|
73 | margin: 5px 5px 5px 5px; | |||
|
74 | padding: 5px; | |||
|
75 | font-size: 11pt; | |||
|
76 | position: relative; | |||
|
77 | } | |||
|
78 | ||||
|
79 | div.code_cell { | |||
|
80 | background-color: white; | |||
|
81 | } | |||
|
82 | ||||
|
83 | div.prompt { | |||
|
84 | vertical-align: top; | |||
|
85 | display: table-cell; | |||
|
86 | width: 85px; | |||
|
87 | min-width 80px !important; | |||
|
88 | font-family: Menlo, "Courier New", Courier, mono; | |||
|
89 | font-weight: normal; | |||
|
90 | font-style: normal; | |||
|
91 | } | |||
|
92 | ||||
|
93 | div.input { | |||
|
94 | display: table; | |||
|
95 | height: auto; | |||
|
96 | } | |||
|
97 | ||||
|
98 | div.input_prompt { | |||
|
99 | color: blue; | |||
|
100 | } | |||
|
101 | ||||
|
102 | ||||
|
103 | textarea.input_area { | |||
|
104 | text-align: left; | |||
|
105 | font-family: Menlo, "Courier New", Courier, mono; | |||
|
106 | font-size: inherit; | |||
|
107 | border-style: none; | |||
|
108 | display: table-cell; | |||
|
109 | margin: 0; | |||
|
110 | padding: 0; | |||
|
111 | overflow: auto; | |||
|
112 | font-weight: normal; | |||
|
113 | font-style: normal; | |||
|
114 | width: 665px; | |||
|
115 | outline: none; | |||
|
116 | resize: none; | |||
|
117 | } | |||
|
118 | ||||
|
119 | ||||
|
120 | div.output { | |||
|
121 | display: table; | |||
|
122 | } | |||
|
123 | ||||
|
124 | div.output_prompt { | |||
|
125 | color: red; | |||
|
126 | } | |||
|
127 | ||||
|
128 | div.output_area { | |||
|
129 | text-align: left; | |||
|
130 | font-family: Menlo, "Courier New", Courier, mono; | |||
|
131 | font-size: inherit; | |||
|
132 | margin: 0; | |||
|
133 | padding: 0; | |||
|
134 | display: table-cell; | |||
|
135 | width: 665px; | |||
|
136 | } | |||
|
137 | ||||
|
138 | div.text_cell { | |||
|
139 | background-color: white; | |||
|
140 | } | |||
|
141 | ||||
|
142 | textarea.text_cell_input { | |||
|
143 | font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; | |||
|
144 | font-size: inherit; | |||
|
145 | outline: none; | |||
|
146 | resize: none; | |||
|
147 | width: inherit; | |||
|
148 | border-style: none; | |||
|
149 | padding: 0; | |||
|
150 | margin: 0; | |||
|
151 | color: black; | |||
|
152 | } | |||
|
153 | ||||
|
154 | div.text_cell_render { | |||
|
155 | font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; | |||
|
156 | font-size: inherit; | |||
|
157 | outline: none; | |||
|
158 | resize: none; | |||
|
159 | width: inherit; | |||
|
160 | border-style: none; | |||
|
161 | padding: 0; | |||
|
162 | margin: 0; | |||
|
163 | color: black; | |||
|
164 | } | |||
|
165 | ||||
|
166 | div.text_cell_render em { | |||
|
167 | font-style: italic; | |||
|
168 | } | |||
|
169 | ||||
|
170 | div.text_cell_render strong { | |||
|
171 | font-weight: bold; | |||
|
172 | } | |||
|
173 |
This diff has been collapsed as it changes many lines, (1760 lines changed) Show them Hide them | |||||
@@ -0,0 +1,1760 b'' | |||||
|
1 | .ui-helper-horizontal > DIV, | |||
|
2 | .ui-helper-horizontal > LI, | |||
|
3 | .ui-helper-horizontal > SPAN, | |||
|
4 | .ui-helper-horizontal > LABEL, | |||
|
5 | .ui-helper-horizontal > H1, | |||
|
6 | .ui-helper-horizontal > H2, | |||
|
7 | .ui-helper-horizontal > H3, | |||
|
8 | .ui-helper-horizontal > H4 | |||
|
9 | { | |||
|
10 | float: left; | |||
|
11 | clear: none; | |||
|
12 | display: block; | |||
|
13 | } /* WijSlider horizontal | |||
|
14 | ----------------------------------*/ | |||
|
15 | .wijmo-wijslider-horizontal | |||
|
16 | { | |||
|
17 | position: relative; | |||
|
18 | } | |||
|
19 | ||||
|
20 | .wijmo-wijslider-horizontal .wijmo-wijslider-track | |||
|
21 | { | |||
|
22 | ||||
|
23 | } | |||
|
24 | ||||
|
25 | .wijmo-wijslider-horizontal .wijmo-wijslider-decbutton | |||
|
26 | { | |||
|
27 | position: absolute; | |||
|
28 | left: 0px; | |||
|
29 | right: auto; | |||
|
30 | cursor:pointer; | |||
|
31 | } | |||
|
32 | ||||
|
33 | .wijmo-wijslider-horizontal .wijmo-wijslider-incbutton | |||
|
34 | { | |||
|
35 | position: absolute; | |||
|
36 | left: auto; | |||
|
37 | right: 0px; | |||
|
38 | cursor:pointer; | |||
|
39 | } | |||
|
40 | ||||
|
41 | /* WijSlider vertical | |||
|
42 | ----------------------------------*/ | |||
|
43 | .wijmo-wijslider-vertical | |||
|
44 | { | |||
|
45 | position: relative; | |||
|
46 | } | |||
|
47 | ||||
|
48 | .wijmo-wijslider-vertical .wijmo-wijslider-track | |||
|
49 | { | |||
|
50 | ||||
|
51 | } | |||
|
52 | ||||
|
53 | .wijmo-wijslider-vertical .wijmo-wijslider-decbutton | |||
|
54 | { | |||
|
55 | position: absolute; | |||
|
56 | top: 0px; | |||
|
57 | bottom: auto; | |||
|
58 | cursor:pointer; | |||
|
59 | } | |||
|
60 | ||||
|
61 | .wijmo-wijslider-vertical .wijmo-wijslider-incbutton | |||
|
62 | { | |||
|
63 | position: absolute; | |||
|
64 | top: auto; | |||
|
65 | bottom: 0px; | |||
|
66 | cursor:pointer; | |||
|
67 | }/* WijSplitter | |||
|
68 | ----------------------------------*/ | |||
|
69 | ||||
|
70 | .wijmo-wijsplitter-vertical | |||
|
71 | { | |||
|
72 | overflow: hidden; | |||
|
73 | /* fixed bug for IE6.7 */ | |||
|
74 | position: relative; | |||
|
75 | } | |||
|
76 | .wijmo-wijsplitter-v-panel1 | |||
|
77 | { | |||
|
78 | float: left; | |||
|
79 | position: relative; | |||
|
80 | } | |||
|
81 | .wijmo-wijsplitter-v-panel1-content | |||
|
82 | { | |||
|
83 | position: relative; | |||
|
84 | } | |||
|
85 | .wijmo-wijsplitter-v-bar | |||
|
86 | { | |||
|
87 | float: left; | |||
|
88 | position: relative; | |||
|
89 | font-size: 1px; | |||
|
90 | width: 2px; | |||
|
91 | z-index:99; | |||
|
92 | } | |||
|
93 | ||||
|
94 | .wijmo-wijsplitter-vertical .ui-resizable-e | |||
|
95 | { | |||
|
96 | right:-7px; | |||
|
97 | width:10px; | |||
|
98 | z-index:999; | |||
|
99 | display:block; | |||
|
100 | background-color:white; | |||
|
101 | filter:alpha(opacity=0); | |||
|
102 | -moz-opacity:0; | |||
|
103 | opacity: 0; | |||
|
104 | } | |||
|
105 | ||||
|
106 | *html .wijmo-wijsplitter-vertical .ui-resizable-e | |||
|
107 | { | |||
|
108 | right:-4px; | |||
|
109 | } | |||
|
110 | ||||
|
111 | *+html .wijmo-wijsplitter-vertical .ui-resizable-e | |||
|
112 | { | |||
|
113 | right:-4px; | |||
|
114 | } | |||
|
115 | ||||
|
116 | .wijmo-wijsplitter-v-expander | |||
|
117 | { | |||
|
118 | position: absolute; | |||
|
119 | z-index: 999; | |||
|
120 | } | |||
|
121 | ||||
|
122 | .wijmo-wijsplitter-v-expanded .wijmo-wijsplitter-v-expander | |||
|
123 | { | |||
|
124 | left: -18px; | |||
|
125 | z-index: 999; | |||
|
126 | } | |||
|
127 | ||||
|
128 | .wijmo-wijsplitter-v-collapsed .wijmo-wijsplitter-v-expander | |||
|
129 | { | |||
|
130 | right: -18px; | |||
|
131 | z-index: 999; | |||
|
132 | } | |||
|
133 | ||||
|
134 | .wijmo-wijsplitter-v-panel2 | |||
|
135 | { | |||
|
136 | float: left; | |||
|
137 | } | |||
|
138 | .wijmo-wijsplitter-v-panel2-content | |||
|
139 | { | |||
|
140 | position: relative; | |||
|
141 | } | |||
|
142 | .wijmo-wijsplitter-v-resize-hepler | |||
|
143 | { | |||
|
144 | border-right: dotted 1px black; | |||
|
145 | overflow: hidden; | |||
|
146 | border-bottom: dotted 0 black; | |||
|
147 | } | |||
|
148 | ||||
|
149 | .wijmo-wijsplitter-horizontal | |||
|
150 | { | |||
|
151 | overflow: hidden; | |||
|
152 | /* fixed bug for IE6.7 */ | |||
|
153 | position: relative; | |||
|
154 | } | |||
|
155 | .wijmo-wijsplitter-h-panel1 | |||
|
156 | { | |||
|
157 | position: relative; | |||
|
158 | } | |||
|
159 | .wijmo-wijsplitter-h-panel1-content | |||
|
160 | { | |||
|
161 | overflow: auto; | |||
|
162 | position: relative; | |||
|
163 | } | |||
|
164 | .wijmo-wijsplitter-h-bar | |||
|
165 | { | |||
|
166 | position: relative; | |||
|
167 | font-size: 1px; | |||
|
168 | height: 2px; | |||
|
169 | z-index:999; | |||
|
170 | } | |||
|
171 | ||||
|
172 | .wijmo-wijsplitter-horizontal .ui-resizable-s | |||
|
173 | { | |||
|
174 | bottom:-7px; | |||
|
175 | height:10px; | |||
|
176 | z-index:999; | |||
|
177 | display:block; | |||
|
178 | background-color:white; | |||
|
179 | filter:alpha(opacity=0); | |||
|
180 | -moz-opacity:0; | |||
|
181 | opacity: 0; | |||
|
182 | } | |||
|
183 | ||||
|
184 | *html .wijmo-wijsplitter-horizontal .ui-resizable-s | |||
|
185 | { | |||
|
186 | bottom:-4px; | |||
|
187 | } | |||
|
188 | ||||
|
189 | *+html .wijmo-wijsplitter-horizontal .ui-resizable-s | |||
|
190 | { | |||
|
191 | bottom:-4px; | |||
|
192 | } | |||
|
193 | ||||
|
194 | .wijmo-wijsplitter-h-expander | |||
|
195 | { | |||
|
196 | position: absolute; | |||
|
197 | z-index: 999; | |||
|
198 | } | |||
|
199 | ||||
|
200 | ||||
|
201 | .wijmo-wijsplitter-h-expanded .wijmo-wijsplitter-h-expander | |||
|
202 | { | |||
|
203 | top: -18px; | |||
|
204 | } | |||
|
205 | ||||
|
206 | .wijmo-wijsplitter-h-collapsed .wijmo-wijsplitter-h-expander | |||
|
207 | { | |||
|
208 | bottom: -18px; | |||
|
209 | } | |||
|
210 | ||||
|
211 | .wijmo-wijsplitter-h-panel2 | |||
|
212 | { | |||
|
213 | } | |||
|
214 | .wijmo-wijsplitter-h-panel2-content | |||
|
215 | { | |||
|
216 | overflow: auto; | |||
|
217 | position: relative; | |||
|
218 | } | |||
|
219 | .wijmo-wijsplitter-h-resize-hepler | |||
|
220 | { | |||
|
221 | border-bottom: dotted 1px black; | |||
|
222 | overflow: hidden; | |||
|
223 | border-right: dotted 0 black; | |||
|
224 | } | |||
|
225 | ||||
|
226 | ||||
|
227 | ||||
|
228 | .wijmo-wijprogressbar | |||
|
229 | { | |||
|
230 | moz-user-select: none; | |||
|
231 | text-align: left; | |||
|
232 | float: left; | |||
|
233 | position: relative; | |||
|
234 | overflow: hidden; | |||
|
235 | } | |||
|
236 | ||||
|
237 | .wijmo-wijprogressbar .ui-progressbar-value | |||
|
238 | { | |||
|
239 | position: absolute; | |||
|
240 | border-width: 0; | |||
|
241 | margin: 0; | |||
|
242 | } | |||
|
243 | ||||
|
244 | div.wijmo-wijprogressbar-east | |||
|
245 | { | |||
|
246 | width: 200px; | |||
|
247 | height: 1.1em; | |||
|
248 | } | |||
|
249 | div.wijmo-wijprogressbar-west | |||
|
250 | { | |||
|
251 | width: 200px; | |||
|
252 | height: 1.1em; | |||
|
253 | } | |||
|
254 | div.wijmo-wijprogressbar-south | |||
|
255 | { | |||
|
256 | height: 200px; | |||
|
257 | width: 1.1em; | |||
|
258 | line-height: 100%; | |||
|
259 | } | |||
|
260 | ||||
|
261 | div.wijmo-wijprogressbar-north | |||
|
262 | { | |||
|
263 | height: 200px; | |||
|
264 | width: 1.1em; | |||
|
265 | line-height: 100%; | |||
|
266 | } | |||
|
267 | ||||
|
268 | .wijmo-wijprogressbar-east .ui-progressbar-value | |||
|
269 | { | |||
|
270 | left: 0; | |||
|
271 | height: 100%; | |||
|
272 | } | |||
|
273 | .wijmo-wijprogressbar-west .ui-progressbar-value | |||
|
274 | { | |||
|
275 | right: 0; | |||
|
276 | height: 100%; | |||
|
277 | } | |||
|
278 | .wijmo-wijprogressbar-south .ui-progressbar-value | |||
|
279 | { | |||
|
280 | top: 0; | |||
|
281 | width: 100%; | |||
|
282 | } | |||
|
283 | ||||
|
284 | .wijmo-wijprogressbar-north .ui-progressbar-value | |||
|
285 | { | |||
|
286 | bottom: 0; | |||
|
287 | width: 100%; | |||
|
288 | } | |||
|
289 | ||||
|
290 | .wijmo-wijprogressbar .lb_west, .wijmo-wijprogressbar .lb_east, .wijmo-wijprogressbar .lb_south, .wijmo-wijprogressbar .lb_north, .wijmo-wijprogressbar .lb_center | |||
|
291 | { | |||
|
292 | display: block; position:absolute; | |||
|
293 | } | |||
|
294 | ||||
|
295 | .wijmo-wijprogressbar .lb_west | |||
|
296 | { | |||
|
297 | text-align: left; | |||
|
298 | } | |||
|
299 | .wijmo-wijprogressbar .lb_east | |||
|
300 | { | |||
|
301 | text-align: right; | |||
|
302 | } | |||
|
303 | .wijmo-wijprogressbar .lb_south | |||
|
304 | { | |||
|
305 | width: 100%; | |||
|
306 | text-align: center; | |||
|
307 | position: absolute; | |||
|
308 | bottom: 0; | |||
|
309 | } | |||
|
310 | .wijmo-wijprogressbar .lb_north | |||
|
311 | { | |||
|
312 | width: 100%; | |||
|
313 | text-align: center; | |||
|
314 | top: 0; | |||
|
315 | } | |||
|
316 | .wijmo-wijprogressbar .lb_center | |||
|
317 | { | |||
|
318 | width: 100%; | |||
|
319 | text-align: center; | |||
|
320 | } | |||
|
321 | .wijmo-wijprogressbar .lb_running | |||
|
322 | { | |||
|
323 | position: absolute; | |||
|
324 | left: auto; | |||
|
325 | top: auto; | |||
|
326 | } | |||
|
327 | ||||
|
328 | .wijmo-wijprogressbar-east .lb_running, .wijmo-wijprogressbar-west .lb_running | |||
|
329 | { | |||
|
330 | width: auto; | |||
|
331 | height: 100%; | |||
|
332 | } | |||
|
333 | .wijmo-wijprogressbar-south .lb_running, .wijmo-wijprogressbar-north .lb_running | |||
|
334 | { | |||
|
335 | width: 100%; | |||
|
336 | height: auto; | |||
|
337 | text-align: center; | |||
|
338 | -webkit-transform: rotate(-90deg); | |||
|
339 | -moz-transform: rotate(-90deg); | |||
|
340 | } | |||
|
341 | ||||
|
342 | .wijmo-wijprogressbar-west .ui-progressbar-label | |||
|
343 | { | |||
|
344 | position: absolute; | |||
|
345 | right: 0; | |||
|
346 | } | |||
|
347 | .wijmo-wijprogressbar-north .ui-progressbar-label, .wijmo-wijprogressbar-south .ui-progressbar-label | |||
|
348 | { | |||
|
349 | position: absolute; | |||
|
350 | -webkit-transform: rotate(-90deg); | |||
|
351 | -moz-transform: rotate(-90deg); | |||
|
352 | } | |||
|
353 | .wijmo-wijdialog-captionbutton { | |||
|
354 | height:18px; | |||
|
355 | padding:1px; | |||
|
356 | width:19px; | |||
|
357 | display: inline-block; | |||
|
358 | margin-right:.2em; | |||
|
359 | outline:none; | |||
|
360 | text-align: left; | |||
|
361 | } | |||
|
362 | .wijmo-wijdialog-captionbutton:hover, | |||
|
363 | .wijmo-wijdialog-captionbutton .ui-state-focus { | |||
|
364 | padding: 0; | |||
|
365 | } | |||
|
366 | .wijmo-wijdialog-captionbutton .ui-icon{ | |||
|
367 | margin:1px; | |||
|
368 | } | |||
|
369 | .wijmo-wijdialog .wijmo-wijdialog-hasframe{ | |||
|
370 | padding: 0; | |||
|
371 | } | |||
|
372 | .wijmo-wijdialog-defaultdockingzone { position:fixed; bottom: 0px;left:0px; } | |||
|
373 | ||||
|
374 | .ui-dialog-titlebar {/* extend jquery.ui.dialog.css*/ | |||
|
375 | text-align: right; | |||
|
376 | } | |||
|
377 | ||||
|
378 | /* for ie 6 minimize*/ | |||
|
379 | * html .wijmo-wijdialog-defaultdockingzone .ui-dialog-titlebar { | |||
|
380 | float:left; | |||
|
381 | } | |||
|
382 | /*.wijmo-wijaccordion.ui-helper-horizontal > .ui-widget-content | |||
|
383 | { | |||
|
384 | width: 200px; | |||
|
385 | height: 200px; | |||
|
386 | padding-top:0; | |||
|
387 | padding-bottom:0; | |||
|
388 | margin-top:0; | |||
|
389 | margin-bottom:0; | |||
|
390 | } | |||
|
391 | ||||
|
392 | .wijmo-wijaccordion.ui-helper-horizontal > .ui-accordion-header | |||
|
393 | { | |||
|
394 | height: 200px; | |||
|
395 | padding-top:0; | |||
|
396 | padding-bottom:0; | |||
|
397 | margin-top:0; | |||
|
398 | margin-bottom:0; | |||
|
399 | }*/ | |||
|
400 | ||||
|
401 | ||||
|
402 | .ui-accordion a | |||
|
403 | { | |||
|
404 | outline: none; | |||
|
405 | } | |||
|
406 | ||||
|
407 | /* RIGHT */ | |||
|
408 | ||||
|
409 | .ui-accordion-right .ui-accordion-header | |||
|
410 | { | |||
|
411 | margin-top: 0; | |||
|
412 | margin-left: 1px; | |||
|
413 | width: 2em; | |||
|
414 | height: 12em; | |||
|
415 | overflow: hidden; | |||
|
416 | } | |||
|
417 | ||||
|
418 | .ui-accordion-right .ui-accordion-content | |||
|
419 | { | |||
|
420 | margin: 0; | |||
|
421 | height: 200px; | |||
|
422 | width: 36em; | |||
|
423 | height: 12em; | |||
|
424 | padding: 0 2.2em; | |||
|
425 | } | |||
|
426 | .ui-accordion-right .ui-accordion-content | |||
|
427 | { | |||
|
428 | top: 0; | |||
|
429 | margin-left: -2px; | |||
|
430 | padding: 1px; | |||
|
431 | border: none; | |||
|
432 | } | |||
|
433 | ||||
|
434 | ||||
|
435 | .ui-accordion-right .ui-state-active | |||
|
436 | { | |||
|
437 | border-right: none; | |||
|
438 | } | |||
|
439 | ||||
|
440 | .ui-accordion-right .ui-accordion-header a | |||
|
441 | { | |||
|
442 | padding: 2.2em 0 0 0; | |||
|
443 | text-align: center; | |||
|
444 | } | |||
|
445 | ||||
|
446 | ||||
|
447 | .ui-accordion-right .ui-accordion-header .ui-icon | |||
|
448 | { | |||
|
449 | top: 10%; | |||
|
450 | } | |||
|
451 | ||||
|
452 | ||||
|
453 | /* LEFT */ | |||
|
454 | ||||
|
455 | .ui-accordion-left .ui-accordion-header | |||
|
456 | { | |||
|
457 | margin-top: 0; | |||
|
458 | margin-right: 1px; | |||
|
459 | width: 2em; | |||
|
460 | height: 12em; | |||
|
461 | overflow: hidden; | |||
|
462 | } | |||
|
463 | ||||
|
464 | .ui-accordion-left .ui-accordion-content | |||
|
465 | { | |||
|
466 | margin: 0; | |||
|
467 | height: 200px; | |||
|
468 | width: 36em; | |||
|
469 | height: 12em; | |||
|
470 | padding: 0 2.2em; | |||
|
471 | } | |||
|
472 | .ui-accordion-left .ui-accordion-content | |||
|
473 | { | |||
|
474 | border: none; | |||
|
475 | padding: 1px; | |||
|
476 | top: 0; | |||
|
477 | margin-right: -2px; | |||
|
478 | } | |||
|
479 | ||||
|
480 | ||||
|
481 | .ui-accordion-left .ui-state-active | |||
|
482 | { | |||
|
483 | border-left: none; | |||
|
484 | } | |||
|
485 | ||||
|
486 | .ui-accordion-left .ui-accordion-header a | |||
|
487 | { | |||
|
488 | padding: 2.2em 0 0 0; | |||
|
489 | text-align: center; | |||
|
490 | } | |||
|
491 | ||||
|
492 | ||||
|
493 | .ui-accordion-left .ui-accordion-header .ui-icon | |||
|
494 | { | |||
|
495 | top: 10%; | |||
|
496 | } | |||
|
497 | /* SuperPanel | |||
|
498 | ----------------------------------*/ | |||
|
499 | .wijmo-wijsuperpanel | |||
|
500 | { | |||
|
501 | overflow: hidden; | |||
|
502 | outline: none; | |||
|
503 | background-image: none; | |||
|
504 | } | |||
|
505 | .wijmo-wijsuperpanel-statecontainer | |||
|
506 | { | |||
|
507 | overflow: hidden; | |||
|
508 | position: relative; | |||
|
509 | zoom:1; | |||
|
510 | } | |||
|
511 | .wijmo-wijsuperpanel-contentwrapper | |||
|
512 | { | |||
|
513 | position: absolute; | |||
|
514 | overflow: hidden; | |||
|
515 | ||||
|
516 | } | |||
|
517 | .wijmo-wijsuperpanel-hbarcontainer, .wijmo-wijsuperpanel-vbarcontainer | |||
|
518 | { | |||
|
519 | font-size: 0px; | |||
|
520 | border:0; | |||
|
521 | } | |||
|
522 | .wijmo-wijsuperpanel-templateouterwrapper | |||
|
523 | { | |||
|
524 | position: relative; | |||
|
525 | /* overflow:auto; */ | |||
|
526 | zoom: 1; | |||
|
527 | } | |||
|
528 | ||||
|
529 | .wijmo-wijsuperpanel-vbarcontainer .ui-state-default, .wijmo-wijsuperpanel-hbarcontainer .ui-state-default | |||
|
530 | { | |||
|
531 | width: 16px; | |||
|
532 | height: 16px; | |||
|
533 | position: absolute; | |||
|
534 | } | |||
|
535 | .wijmo-wijsuperpanel .wijmo-wijsuperpanel-vbarcontainer | |||
|
536 | { | |||
|
537 | position: absolute; | |||
|
538 | width: 18px; | |||
|
539 | padding-top: 18px; | |||
|
540 | padding-bottom: 18px; | |||
|
541 | border: none; | |||
|
542 | } | |||
|
543 | .wijmo-wijsuperpanel .wijmo-wijsuperpanel-hbarcontainer | |||
|
544 | { | |||
|
545 | position: absolute; | |||
|
546 | height: 18px; | |||
|
547 | padding-left: 18px; | |||
|
548 | padding-right: 18px; | |||
|
549 | border: none; | |||
|
550 | } | |||
|
551 | .wijmo-wijsuperpanel-handle | |||
|
552 | { | |||
|
553 | position: absolute; | |||
|
554 | font-size:0px; | |||
|
555 | overflow:hidden; | |||
|
556 | } | |||
|
557 | .wijmo-wijsuperpanel-handle * | |||
|
558 | { | |||
|
559 | font-size:0px; | |||
|
560 | } | |||
|
561 | .wijmo-wijsuperpanel-helper | |||
|
562 | { | |||
|
563 | border-style: dotted; | |||
|
564 | background: transparent; | |||
|
565 | } | |||
|
566 | ||||
|
567 | .wijmo-wijsuperpanel-button | |||
|
568 | { | |||
|
569 | position: absolute; | |||
|
570 | padding: 4px; | |||
|
571 | } | |||
|
572 | .wijmo-wijsuperpanel .ui-icon-gripsmall-diagonal-se | |||
|
573 | { | |||
|
574 | background: none; | |||
|
575 | width: 7px; | |||
|
576 | height: 7px; | |||
|
577 | } | |||
|
578 | .wijmo-wijsuperpanel-hbar-buttonleft | |||
|
579 | { | |||
|
580 | left: 0; | |||
|
581 | } | |||
|
582 | .wijmo-wijsuperpanel-hbar-buttonright | |||
|
583 | { | |||
|
584 | right: 0; | |||
|
585 | } | |||
|
586 | .wijmo-wijsuperpanel-vbar-buttontop | |||
|
587 | { | |||
|
588 | top: 0; | |||
|
589 | } | |||
|
590 | .wijmo-wijsuperpanel-vbar-buttonbottom | |||
|
591 | { | |||
|
592 | bottom: 0; | |||
|
593 | } | |||
|
594 | .wijmo-wijtextbox | |||
|
595 | { | |||
|
596 | outline:none; | |||
|
597 | margin: 0; | |||
|
598 | padding:5px; | |||
|
599 | } | |||
|
600 | ||||
|
601 | .wijmo-wijdropdown | |||
|
602 | { | |||
|
603 | display: inline-block; | |||
|
604 | position: relative; | |||
|
605 | width: auto; | |||
|
606 | zoom: 1; | |||
|
607 | *display: inline; | |||
|
608 | width:200px; | |||
|
609 | /*z-index: 101;*/ | |||
|
610 | } | |||
|
611 | ||||
|
612 | ||||
|
613 | ||||
|
614 | ||||
|
615 | .wijmo-wijdropdown div.wijmo-dropdown-trigger | |||
|
616 | { | |||
|
617 | border-right: none; | |||
|
618 | border-top: none; | |||
|
619 | border-bottom: none; | |||
|
620 | cursor: pointer; | |||
|
621 | width: 16px; | |||
|
622 | height: 100%; | |||
|
623 | position: absolute; | |||
|
624 | right: 0; | |||
|
625 | top: 0; | |||
|
626 | padding: 0 3px; | |||
|
627 | } | |||
|
628 | ||||
|
629 | .wijmo-wijdropdown .wijmo-dropdown-trigger .ui-icon | |||
|
630 | { | |||
|
631 | margin-top: 3px; | |||
|
632 | } | |||
|
633 | ||||
|
634 | .wijmo-wijdropdown label.wijmo-dropdown-label | |||
|
635 | { | |||
|
636 | display: block; | |||
|
637 | padding: 3px 26px 3px 5px; | |||
|
638 | width: auto; | |||
|
639 | border: none; | |||
|
640 | } | |||
|
641 | ||||
|
642 | .wijmo-wijdropdown .wijmo-dropdown | |||
|
643 | { | |||
|
644 | position: absolute; height:250px; | |||
|
645 | } | |||
|
646 | ||||
|
647 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-list | |||
|
648 | { | |||
|
649 | padding: 0.4em; | |||
|
650 | border: 0 none; | |||
|
651 | } | |||
|
652 | ||||
|
653 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-item | |||
|
654 | { | |||
|
655 | border:1px solid transparent; | |||
|
656 | cursor:pointer; | |||
|
657 | font-weight:normal; | |||
|
658 | margin:1px 0; | |||
|
659 | padding:3px 5px; | |||
|
660 | text-align:left; | |||
|
661 | *border-color: white; | |||
|
662 | *filter: chroma(color=white); | |||
|
663 | ||||
|
664 | } | |||
|
665 | ||||
|
666 | /* | |||
|
667 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-optgroup .wijmo-dropdown-items | |||
|
668 | { | |||
|
669 | margin-left: 15%; | |||
|
670 | }*/ | |||
|
671 | ||||
|
672 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-optgroup .wijmo-dropdown-items li | |||
|
673 | { | |||
|
674 | padding-left: 10%; | |||
|
675 | } | |||
|
676 | ||||
|
677 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-optgroup-header | |||
|
678 | { | |||
|
679 | font-style: italic; | |||
|
680 | } | |||
|
681 | .wijmo-checkbox | |||
|
682 | { | |||
|
683 | position: relative; /*float: left;*/ | |||
|
684 | margin: 3px 0; | |||
|
685 | line-height: 16px; | |||
|
686 | width: 16px; | |||
|
687 | } | |||
|
688 | .wijmo-checkbox .wijmo-checkbox-inputwrapper | |||
|
689 | { | |||
|
690 | width: 0; | |||
|
691 | height: 0; | |||
|
692 | overflow: hidden; | |||
|
693 | } | |||
|
694 | .wijmo-checkbox label | |||
|
695 | { | |||
|
696 | display: block; | |||
|
697 | position: relative; | |||
|
698 | margin: 0; | |||
|
699 | cursor: pointer; | |||
|
700 | z-index: 1; | |||
|
701 | padding: 0 0 0 1.4em; | |||
|
702 | outline: none; | |||
|
703 | margin: 0 3px; | |||
|
704 | width: 8em; | |||
|
705 | } | |||
|
706 | .wijmo-checkbox .wijmo-checkbox-box | |||
|
707 | { | |||
|
708 | position: absolute; | |||
|
709 | bottom: 0; | |||
|
710 | left: 0; | |||
|
711 | width: 16px; | |||
|
712 | height: 16px; | |||
|
713 | -moz-border-radius: 2px; | |||
|
714 | -webkit-border-radius: 2px; | |||
|
715 | border-radius: 2px; | |||
|
716 | margin-right: 3px; | |||
|
717 | } | |||
|
718 | ||||
|
719 | .wijmo-checkbox .wijmo-checkbox-relative | |||
|
720 | { | |||
|
721 | position: relative; | |||
|
722 | float: left; | |||
|
723 | margin-right: 3px; | |||
|
724 | } | |||
|
725 | .wijmo-wijradio | |||
|
726 | { | |||
|
727 | position: relative; /*float: left;*/ | |||
|
728 | margin: 3px 0; | |||
|
729 | width: 16px; | |||
|
730 | line-height: 16px; | |||
|
731 | } | |||
|
732 | .wijmo-wijradio .wijmo-wijradio-inputwrapper | |||
|
733 | { | |||
|
734 | width: 0; | |||
|
735 | height: 0; | |||
|
736 | overflow: hidden; | |||
|
737 | } | |||
|
738 | .wijmo-wijradio label | |||
|
739 | { | |||
|
740 | display: block; | |||
|
741 | position: relative; | |||
|
742 | margin: 0; | |||
|
743 | cursor: pointer; | |||
|
744 | z-index: 1; | |||
|
745 | padding: 0 0 0 1.4em; | |||
|
746 | outline: none; | |||
|
747 | margin: 0 3px; | |||
|
748 | width: 8em; | |||
|
749 | } | |||
|
750 | .wijmo-wijradio .wijmo-wijradio-box | |||
|
751 | { | |||
|
752 | position: absolute; | |||
|
753 | bottom: 0; | |||
|
754 | left: 0; | |||
|
755 | width: 16px; | |||
|
756 | height: 16px; | |||
|
757 | line-height: 16px; | |||
|
758 | -moz-border-radius: 10px; | |||
|
759 | -webkit-border-radius: 10px; | |||
|
760 | border-radius: 10px; | |||
|
761 | } | |||
|
762 | .wijmo-wijradio .wijmo-wijradio-relative | |||
|
763 | { | |||
|
764 | position: relative; | |||
|
765 | float: left; | |||
|
766 | margin-right: 3px; | |||
|
767 | } | |||
|
768 | ||||
|
769 | .wijmo-wijlist-list | |||
|
770 | { | |||
|
771 | cursor: default; | |||
|
772 | overflow: hidden; | |||
|
773 | } | |||
|
774 | .wijmo-wijlist-ul | |||
|
775 | { | |||
|
776 | list-style: none; | |||
|
777 | padding: 2px; | |||
|
778 | margin: 0; | |||
|
779 | display: block; | |||
|
780 | border: 0px; | |||
|
781 | overflow: hidden; | |||
|
782 | } | |||
|
783 | .wijmo-wijlist-ul .wijmo-wijlist-item | |||
|
784 | { | |||
|
785 | margin: 1px 0; | |||
|
786 | padding: 3px 5px; | |||
|
787 | /*white-space: nowrap;*/ | |||
|
788 | cursor: pointer; | |||
|
789 | text-align: left; | |||
|
790 | font-weight: normal; | |||
|
791 | border: solid 1px transparent; | |||
|
792 | } | |||
|
793 | .wijmo-wijlist-ul .wijmo-wijlist-item.ui-state-hover | |||
|
794 | { | |||
|
795 | font-weight: normal; | |||
|
796 | } | |||
|
797 | ||||
|
798 | .wijmo-wijlist .ui-resizable-se | |||
|
799 | { | |||
|
800 | width: 7px; | |||
|
801 | height: 7px; | |||
|
802 | background: none; | |||
|
803 | } | |||
|
804 | .wijmo-wijcalendar | |||
|
805 | { | |||
|
806 | -webkit-user-select: none; | |||
|
807 | -moz-user-select: none; | |||
|
808 | display:block; | |||
|
809 | } | |||
|
810 | ||||
|
811 | .wijmo-wijcalendar-header | |||
|
812 | { | |||
|
813 | position: relative; | |||
|
814 | } | |||
|
815 | ||||
|
816 | .wijmo-wijcalendar-header-inner | |||
|
817 | { | |||
|
818 | margin: 0 1.8em; | |||
|
819 | line-height: 1.8em; | |||
|
820 | } | |||
|
821 | ||||
|
822 | .wijmo-wijcalendar .ui-datepicker-header | |||
|
823 | { | |||
|
824 | padding: 1px; | |||
|
825 | } | |||
|
826 | ||||
|
827 | .wijmo-wijcalendar .ui-datepicker-header .ui-state-default | |||
|
828 | { | |||
|
829 | border-color: transparent; | |||
|
830 | background: none; | |||
|
831 | color: inherit; | |||
|
832 | } | |||
|
833 | ||||
|
834 | .wijmo-wijcalendar .wijmo-wijcalendar-table | |||
|
835 | { | |||
|
836 | table-layout: fixed; | |||
|
837 | } | |||
|
838 | ||||
|
839 | .wijmo-wijcalendar-prevpreview-button, .wijmo-wijcalendar-nextpreview-button | |||
|
840 | { | |||
|
841 | width: 16px; | |||
|
842 | margin-top: 35%; | |||
|
843 | float: left; | |||
|
844 | } | |||
|
845 | ||||
|
846 | .wijmo-wijcalendar-nextpreview-button | |||
|
847 | { | |||
|
848 | float: right; | |||
|
849 | } | |||
|
850 | ||||
|
851 | .wijmo-wijcalendar-preview-wrapper .wijmo-wijcalendar | |||
|
852 | { | |||
|
853 | float: left; | |||
|
854 | width: 18em; | |||
|
855 | } | |||
|
856 | ||||
|
857 | .wijmo-wijcalendar-preview-wrapper .wijmo-wijcalendar .ui-datepicker-calendar | |||
|
858 | { | |||
|
859 | width: 80%; | |||
|
860 | float: left; | |||
|
861 | } | |||
|
862 | ||||
|
863 | .wijmo-wijcalendar-title, .wijmo-wijcalendar-selectable | |||
|
864 | { | |||
|
865 | cursor: pointer; | |||
|
866 | } | |||
|
867 | ||||
|
868 | .ui-datepicker-other-month | |||
|
869 | { | |||
|
870 | text-align: right; | |||
|
871 | } | |||
|
872 | ||||
|
873 | .wijmo-wijcalendar-mygrid td span, .wijmo-wijcalendar-mygrid td a | |||
|
874 | { | |||
|
875 | display: block; | |||
|
876 | text-align: center; | |||
|
877 | text-decoration: none; | |||
|
878 | padding: 0; | |||
|
879 | } | |||
|
880 | ||||
|
881 | .wijmo-wijcalendar-mygrid .ui-state-default a, .wijmo-wijcalendar-mygrid .ui-state-default a:hover, .wijmo-wijcalendar-mygrid .ui-state-hover a, .wijmo-wijcalendar-mygrid .ui-state-hover a:hover | |||
|
882 | { | |||
|
883 | color: inherit; | |||
|
884 | } | |||
|
885 | ||||
|
886 | .ui-header-custom img, .ui-footer-custom img | |||
|
887 | { | |||
|
888 | width: 100%; | |||
|
889 | } | |||
|
890 | ||||
|
891 | .wijmo-wijcalendar table.wijmo-wijcalendar-mygrid | |||
|
892 | { | |||
|
893 | margin-top: 2px; | |||
|
894 | border-collapse: separate; | |||
|
895 | table-layout: fixed; | |||
|
896 | } | |||
|
897 | ||||
|
898 | .wijmo-wijcalendar table.wijmo-wijcalendar-mygrid .ui-datepicker-week-day | |||
|
899 | { | |||
|
900 | cursor: pointer; | |||
|
901 | } | |||
|
902 | ||||
|
903 | .wijmo-wijcalendar-aniwrapper | |||
|
904 | { | |||
|
905 | position: relative; | |||
|
906 | left: 0; | |||
|
907 | top: 0; | |||
|
908 | } | |||
|
909 | ||||
|
910 | .wijmo-wijcalendar-multi-aniwrapper | |||
|
911 | { | |||
|
912 | position: absolute; | |||
|
913 | overflow: hidden; | |||
|
914 | } | |||
|
915 | ||||
|
916 | .ui-datepicker-rtl .ui-datepicker-prev .ui-icon, .ui-datepicker-rtl .ui-datepicker-next .ui-icon | |||
|
917 | { | |||
|
918 | direction: rtl; | |||
|
919 | } | |||
|
920 | .wijmo-wijexpander | |||
|
921 | { | |||
|
922 | margin: 1px; | |||
|
923 | padding: 0; | |||
|
924 | display: block; | |||
|
925 | } | |||
|
926 | ||||
|
927 | .wijmo-wijexpander a | |||
|
928 | { | |||
|
929 | outline: none; | |||
|
930 | } | |||
|
931 | ||||
|
932 | .wijmo-wijexpander .ui-expander-header | |||
|
933 | { | |||
|
934 | cursor: pointer; | |||
|
935 | margin-top: 1px; | |||
|
936 | position: relative; | |||
|
937 | } | |||
|
938 | /*.wijmo-wijexpander.ui-helper-horizontal > .ui-expander-header | |||
|
939 | { | |||
|
940 | cursor: pointer; | |||
|
941 | width: 20px; | |||
|
942 | height: 200px; | |||
|
943 | } | |||
|
944 | .wijmo-wijexpander.ui-state-disabled > .ui-expander-header | |||
|
945 | { | |||
|
946 | cursor: default; | |||
|
947 | } | |||
|
948 | .wijmo-wijexpander > .ui-widget-content | |||
|
949 | { | |||
|
950 | height: 100px; | |||
|
951 | overflow: auto; | |||
|
952 | } | |||
|
953 | .wijmo-wijexpander.ui-state-disabled > .ui-widget-content | |||
|
954 | { | |||
|
955 | }*/ | |||
|
956 | ||||
|
957 | ||||
|
958 | .ui-expander .ui-expander-content | |||
|
959 | { | |||
|
960 | border-top: 0 none; | |||
|
961 | display: none; | |||
|
962 | margin-bottom: 2px; | |||
|
963 | margin-top: -2px; | |||
|
964 | overflow: auto; | |||
|
965 | padding: 1em 2.2em; | |||
|
966 | position: relative; | |||
|
967 | top: 1px; | |||
|
968 | } | |||
|
969 | ||||
|
970 | ||||
|
971 | .wijmo-wijexpander .ui-expander-header a | |||
|
972 | { | |||
|
973 | display: block; | |||
|
974 | font-size: 1em; | |||
|
975 | padding: 0.5em 0.5em 0.5em 0.7em; | |||
|
976 | } | |||
|
977 | ||||
|
978 | .wijmo-wijexpander .ui-expander-header .ui-icon | |||
|
979 | { | |||
|
980 | left: 0.5em; | |||
|
981 | margin-top: -8px; | |||
|
982 | position: absolute; | |||
|
983 | top: 50%; | |||
|
984 | } | |||
|
985 | ||||
|
986 | .wijmo-wijexpander .ui-expander-content-active | |||
|
987 | { | |||
|
988 | display: block; | |||
|
989 | border-top: 0 none; | |||
|
990 | padding: 1em 2.2em; | |||
|
991 | } | |||
|
992 | ||||
|
993 | ||||
|
994 | .wijmo-wijexpander .ui-expander-header > a | |||
|
995 | { | |||
|
996 | padding-left: 2.2em; | |||
|
997 | } | |||
|
998 | ||||
|
999 | .ui-helper-horizontal.wijmo-wijexpander .ui-expander-header .ui-icon | |||
|
1000 | { | |||
|
1001 | left: inherit; | |||
|
1002 | margin-top: inherit; | |||
|
1003 | margin-left: -8px; | |||
|
1004 | position: absolute; | |||
|
1005 | top: 0.5em; | |||
|
1006 | left: 50%; | |||
|
1007 | } | |||
|
1008 | ||||
|
1009 | .ui-helper-horizontal.wijmo-wijexpander .ui-expander-header > a | |||
|
1010 | { | |||
|
1011 | padding-left: inherit; | |||
|
1012 | padding-top: 2.2em; | |||
|
1013 | display: inline-block; | |||
|
1014 | } | |||
|
1015 | ||||
|
1016 | ||||
|
1017 | /* RIGHT */ | |||
|
1018 | ||||
|
1019 | .ui-expander-right .ui-expander-header | |||
|
1020 | { | |||
|
1021 | margin: 0 1px; | |||
|
1022 | width: 2em; | |||
|
1023 | height: 12em; | |||
|
1024 | overflow: hidden; | |||
|
1025 | } | |||
|
1026 | ||||
|
1027 | .ui-expander-right .ui-expander-content | |||
|
1028 | { | |||
|
1029 | margin: 0; | |||
|
1030 | height: 200px; | |||
|
1031 | width: 12em; | |||
|
1032 | height: 12em; | |||
|
1033 | padding: 0 2.2em; | |||
|
1034 | } | |||
|
1035 | .ui-expander-right .ui-expander-content | |||
|
1036 | { | |||
|
1037 | top: 0; | |||
|
1038 | margin-left: -2px; | |||
|
1039 | padding: 1px; | |||
|
1040 | border: none; | |||
|
1041 | margin-right: 1px; | |||
|
1042 | } | |||
|
1043 | ||||
|
1044 | ||||
|
1045 | .ui-expander-right .ui-state-active | |||
|
1046 | { | |||
|
1047 | border-right: none; | |||
|
1048 | } | |||
|
1049 | ||||
|
1050 | .ui-expander-right .ui-expander-header a | |||
|
1051 | { | |||
|
1052 | padding: 2.2em 0 0 0; | |||
|
1053 | } | |||
|
1054 | ||||
|
1055 | ||||
|
1056 | .ui-expander-right .ui-expander-header .ui-icon | |||
|
1057 | { | |||
|
1058 | top: 10%; | |||
|
1059 | } | |||
|
1060 | ||||
|
1061 | ||||
|
1062 | /* LEFT */ | |||
|
1063 | ||||
|
1064 | .ui-expander-left .ui-expander-header | |||
|
1065 | { | |||
|
1066 | margin: 0 1px; | |||
|
1067 | width: 2em; | |||
|
1068 | height: 12em; | |||
|
1069 | overflow: hidden; | |||
|
1070 | } | |||
|
1071 | ||||
|
1072 | .ui-expander-left .ui-expander-content | |||
|
1073 | { | |||
|
1074 | margin: 0; | |||
|
1075 | height: 200px; | |||
|
1076 | width: 12em; | |||
|
1077 | height: 12em; | |||
|
1078 | padding: 0 2.2em; | |||
|
1079 | } | |||
|
1080 | .ui-expander-left .ui-expander-content | |||
|
1081 | { | |||
|
1082 | border: none; | |||
|
1083 | padding: 1px; | |||
|
1084 | top: 0; | |||
|
1085 | margin-right: -2px; | |||
|
1086 | margin-left: 1px; | |||
|
1087 | } | |||
|
1088 | ||||
|
1089 | ||||
|
1090 | .ui-expander-left .ui-state-active | |||
|
1091 | { | |||
|
1092 | border-left: none; | |||
|
1093 | } | |||
|
1094 | ||||
|
1095 | .ui-expander-left .ui-expander-header a | |||
|
1096 | { | |||
|
1097 | padding: 2.2em 0 0 0; | |||
|
1098 | } | |||
|
1099 | ||||
|
1100 | ||||
|
1101 | .ui-expander-left .ui-expander-header .ui-icon | |||
|
1102 | { | |||
|
1103 | top: 10%; | |||
|
1104 | } | |||
|
1105 | ||||
|
1106 | .ui-tabs .ui-tabs-nav li | |||
|
1107 | { | |||
|
1108 | top: 1px; | |||
|
1109 | } | |||
|
1110 | ||||
|
1111 | /* BOTTOM */ | |||
|
1112 | ||||
|
1113 | .ui-tabs-bottom .ui-tabs-nav li | |||
|
1114 | { | |||
|
1115 | top: -3px; | |||
|
1116 | padding: 0; | |||
|
1117 | margin: 1px .2em 0 0; | |||
|
1118 | } | |||
|
1119 | ||||
|
1120 | .ui-tabs-bottom .ui-tabs-nav li.ui-tabs-selected | |||
|
1121 | { | |||
|
1122 | margin-top: -1px; | |||
|
1123 | padding-bottom: 2px; | |||
|
1124 | } | |||
|
1125 | ||||
|
1126 | .ui-tabs .ui-tabs-nav li | |||
|
1127 | { | |||
|
1128 | border: none; | |||
|
1129 | } | |||
|
1130 | ||||
|
1131 | /* LEFT */ | |||
|
1132 | .ui-tabs-left .ui-tabs-nav | |||
|
1133 | { | |||
|
1134 | float: left; | |||
|
1135 | overflow: hidden; | |||
|
1136 | } | |||
|
1137 | ||||
|
1138 | .ui-tabs-left .ui-tabs-nav li | |||
|
1139 | { | |||
|
1140 | white-space: normal; | |||
|
1141 | float: right; | |||
|
1142 | display: block; | |||
|
1143 | width: 98%; | |||
|
1144 | } | |||
|
1145 | ||||
|
1146 | .ui-tabs-left .ui-tabs-nav li a, .ui-tabs-right .ui-tabs-nav li a | |||
|
1147 | { | |||
|
1148 | float: none; | |||
|
1149 | display: block; | |||
|
1150 | } | |||
|
1151 | ||||
|
1152 | .ui-tabs-left .ui-tabs-nav li | |||
|
1153 | { | |||
|
1154 | top: -1px; | |||
|
1155 | left: 3px; | |||
|
1156 | margin-bottom: 2px; | |||
|
1157 | } | |||
|
1158 | ||||
|
1159 | .ui-tabs-left .ui-tabs-panel | |||
|
1160 | { | |||
|
1161 | padding: 1.6em; | |||
|
1162 | } | |||
|
1163 | ||||
|
1164 | .ui-tabs-left .ui-tabs-nav li.ui-tabs-selected | |||
|
1165 | { | |||
|
1166 | border-right: medium none; | |||
|
1167 | margin-bottom: 2px; | |||
|
1168 | } | |||
|
1169 | .ui-tabs-left .ui-tabs-nav | |||
|
1170 | { | |||
|
1171 | padding: 0.2em 0 0 0; | |||
|
1172 | } | |||
|
1173 | ||||
|
1174 | .ui-tabs-left .wijmo-wijtabs-content | |||
|
1175 | { | |||
|
1176 | float: right; | |||
|
1177 | width: 75%; | |||
|
1178 | overflow: hidden; | |||
|
1179 | } | |||
|
1180 | ||||
|
1181 | .ui-tabs-left .ui-tabs-nav | |||
|
1182 | { | |||
|
1183 | min-height: 300px; | |||
|
1184 | width: 23%; | |||
|
1185 | height: 100%; | |||
|
1186 | } | |||
|
1187 | ||||
|
1188 | /* RIGHT */ | |||
|
1189 | ||||
|
1190 | .ui-tabs-right .ui-tabs-nav | |||
|
1191 | { | |||
|
1192 | float: right; | |||
|
1193 | overflow: hidden; | |||
|
1194 | } | |||
|
1195 | ||||
|
1196 | .ui-tabs-right .ui-tabs-nav li | |||
|
1197 | { | |||
|
1198 | white-space: normal; | |||
|
1199 | float: left; | |||
|
1200 | display: block; | |||
|
1201 | width: 98%; | |||
|
1202 | } | |||
|
1203 | ||||
|
1204 | .ui-tabs-right .ui-tabs-nav li | |||
|
1205 | { | |||
|
1206 | top: -1px; | |||
|
1207 | left: 0; | |||
|
1208 | margin-bottom: 2px; | |||
|
1209 | } | |||
|
1210 | ||||
|
1211 | .ui-tabs-right .ui-tabs-panel | |||
|
1212 | { | |||
|
1213 | padding: 1.6em; | |||
|
1214 | } | |||
|
1215 | ||||
|
1216 | .ui-tabs-right .ui-tabs-nav li.ui-tabs-selected | |||
|
1217 | { | |||
|
1218 | border-left: medium none; | |||
|
1219 | margin-bottom: 2px; | |||
|
1220 | } | |||
|
1221 | .ui-tabs-right .ui-tabs-nav | |||
|
1222 | { | |||
|
1223 | padding: 0.2em 0 0 0; | |||
|
1224 | } | |||
|
1225 | ||||
|
1226 | .ui-tabs-right .wijmo-wijtabs-content | |||
|
1227 | { | |||
|
1228 | float: left; | |||
|
1229 | width: 75%; | |||
|
1230 | overflow: hidden; | |||
|
1231 | } | |||
|
1232 | ||||
|
1233 | .ui-tabs-right .ui-tabs-nav | |||
|
1234 | { | |||
|
1235 | min-height: 300px; | |||
|
1236 | width: 23%; | |||
|
1237 | } | |||
|
1238 | ||||
|
1239 | ||||
|
1240 | .ui-tabs-left .ui-tabs-nav li.ui-tabs-selected | |||
|
1241 | { | |||
|
1242 | margin-right: 2px; | |||
|
1243 | padding-right: 1px; | |||
|
1244 | } | |||
|
1245 | ||||
|
1246 | .ui-tabs-right .ui-tabs-nav li.ui-tabs-selected | |||
|
1247 | { | |||
|
1248 | margin-left: -1px; | |||
|
1249 | padding-left: 1px; | |||
|
1250 | } | |||
|
1251 | .wijmo-wijtooltip { | |||
|
1252 | position: absolute; | |||
|
1253 | z-index: 9999; | |||
|
1254 | margin:0; | |||
|
1255 | } | |||
|
1256 | ||||
|
1257 | ||||
|
1258 | .wijmo-wijtooltip .wijmo-wijtooltip-close | |||
|
1259 | { | |||
|
1260 | background:none repeat scroll 0 0 transparent; | |||
|
1261 | border:medium none; | |||
|
1262 | display:block; | |||
|
1263 | height:16px; | |||
|
1264 | position:absolute; | |||
|
1265 | right:3px; | |||
|
1266 | top:3px; | |||
|
1267 | width:16px; | |||
|
1268 | } | |||
|
1269 | ||||
|
1270 | .wijmo-wijtooltip .wijmo-wijtooltip-title | |||
|
1271 | { | |||
|
1272 | background:none repeat scroll 0 0 transparent; | |||
|
1273 | border:medium none; | |||
|
1274 | color:inherit; | |||
|
1275 | padding:0.4em; | |||
|
1276 | } | |||
|
1277 | .wijmo-wijtooltip .wijmo-wijtooltip-container | |||
|
1278 | { | |||
|
1279 | padding: 1em; | |||
|
1280 | overflow: hidden; | |||
|
1281 | } | |||
|
1282 | ||||
|
1283 | .wijmo-wijtooltip { | |||
|
1284 | border-width: 2px; | |||
|
1285 | } | |||
|
1286 | ||||
|
1287 | .wijmo-wijtooltip .wijmo-wijtooltip-pointer, .wijmo-wijtooltip .wijmo-wijtooltip-pointer-inner { | |||
|
1288 | background: none; | |||
|
1289 | height: 0; | |||
|
1290 | position: absolute; | |||
|
1291 | width: 0; | |||
|
1292 | } | |||
|
1293 | ||||
|
1294 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer { | |||
|
1295 | border-bottom-width: 14px; | |||
|
1296 | border-top: 0 none; | |||
|
1297 | top: -14px; | |||
|
1298 | ||||
|
1299 | } | |||
|
1300 | ||||
|
1301 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer { | |||
|
1302 | border-left: 18px solid transparent; | |||
|
1303 | border-right: 0 none; | |||
|
1304 | right: 10px; | |||
|
1305 | } | |||
|
1306 | ||||
|
1307 | .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer { | |||
|
1308 | border-left: 10px solid transparent; | |||
|
1309 | border-right: 10px solid transparent; | |||
|
1310 | left: 50%; | |||
|
1311 | margin-left: -10px; | |||
|
1312 | } | |||
|
1313 | ||||
|
1314 | .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer { | |||
|
1315 | border-left: 0 none; | |||
|
1316 | border-right: 18px solid transparent; | |||
|
1317 | left: 10px; | |||
|
1318 | } | |||
|
1319 | ||||
|
1320 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer-inner { | |||
|
1321 | border-bottom-color: inherit; | |||
|
1322 | border-bottom-style: solid; | |||
|
1323 | border-bottom-width: 10px; | |||
|
1324 | bottom: -14px; | |||
|
1325 | *font-size:0;line-height:0; | |||
|
1326 | } | |||
|
1327 | ||||
|
1328 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer-inner { | |||
|
1329 | border-left: 12px solid transparent; | |||
|
1330 | border-right: 0 none; | |||
|
1331 | right: 2px; | |||
|
1332 | } | |||
|
1333 | ||||
|
1334 | .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer-inner { | |||
|
1335 | border-left: 8px solid transparent; | |||
|
1336 | border-right: 8px solid transparent; | |||
|
1337 | left: -8px; | |||
|
1338 | } | |||
|
1339 | ||||
|
1340 | .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer-inner { | |||
|
1341 | border-left: 0 none; | |||
|
1342 | border-right-style: solid; | |||
|
1343 | border-right-color: inherit; | |||
|
1344 | border-right-width: 12px; | |||
|
1345 | left: 2px; | |||
|
1346 | } | |||
|
1347 | ||||
|
1348 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer { | |||
|
1349 | border-left-width: 14px; | |||
|
1350 | border-right: 0 none; | |||
|
1351 | right: -14px; | |||
|
1352 | } | |||
|
1353 | ||||
|
1354 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer { | |||
|
1355 | border-bottom: 0 none; | |||
|
1356 | border-top: 18px solid transparent; | |||
|
1357 | bottom: 10px; | |||
|
1358 | } | |||
|
1359 | ||||
|
1360 | .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer { | |||
|
1361 | border-bottom: 10px solid transparent; | |||
|
1362 | border-top: 10px solid transparent; | |||
|
1363 | bottom: 50%; | |||
|
1364 | margin-bottom: -10px; | |||
|
1365 | } | |||
|
1366 | ||||
|
1367 | .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer { | |||
|
1368 | border-bottom: 18px solid transparent; | |||
|
1369 | border-top: 0 none; | |||
|
1370 | top: 10px; | |||
|
1371 | } | |||
|
1372 | ||||
|
1373 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer-inner { | |||
|
1374 | border-left-color: inherit; | |||
|
1375 | border-left-style: solid; | |||
|
1376 | border-left-width: 10px; | |||
|
1377 | left: -14px; | |||
|
1378 | *font-size:0;line-height:0; | |||
|
1379 | } | |||
|
1380 | ||||
|
1381 | ||||
|
1382 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer-inner { | |||
|
1383 | border-bottom: 0 none; | |||
|
1384 | border-top-style: solid; | |||
|
1385 | border-top-color: inherit; | |||
|
1386 | border-top-width: 12px; | |||
|
1387 | bottom: 2px; | |||
|
1388 | } | |||
|
1389 | ||||
|
1390 | .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer-inner { | |||
|
1391 | border-bottom: 8px solid transparent; | |||
|
1392 | border-top: 8px solid transparent; | |||
|
1393 | bottom: -8px; | |||
|
1394 | } | |||
|
1395 | ||||
|
1396 | .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer-inner { | |||
|
1397 | border-bottom-style: solid; | |||
|
1398 | border-bottom-color: inherit; | |||
|
1399 | border-bottom-width: 12px; | |||
|
1400 | border-top: 0 none; | |||
|
1401 | top: 2px; | |||
|
1402 | } | |||
|
1403 | ||||
|
1404 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer { | |||
|
1405 | border-bottom: 0 none; | |||
|
1406 | border-top-width: 14px; | |||
|
1407 | bottom: -14px; | |||
|
1408 | ||||
|
1409 | } | |||
|
1410 | ||||
|
1411 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer { | |||
|
1412 | border-left: 18px solid transparent; | |||
|
1413 | border-right: 0 none; | |||
|
1414 | right: 10px; | |||
|
1415 | } | |||
|
1416 | ||||
|
1417 | .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer { | |||
|
1418 | border-left: 10px solid transparent; | |||
|
1419 | border-right: 10px solid transparent; | |||
|
1420 | left: 50%; | |||
|
1421 | margin-left: -10px; | |||
|
1422 | } | |||
|
1423 | ||||
|
1424 | .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer { | |||
|
1425 | border-left: 0 none; | |||
|
1426 | border-right: 18px solid transparent; | |||
|
1427 | left: 10px; | |||
|
1428 | } | |||
|
1429 | ||||
|
1430 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer-inner { | |||
|
1431 | border-top-color: inherit; | |||
|
1432 | border-top-style: solid; | |||
|
1433 | border-top-width: 10px; | |||
|
1434 | top: -14px; | |||
|
1435 | *font-size:0;line-height:0; | |||
|
1436 | } | |||
|
1437 | ||||
|
1438 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer-inner { | |||
|
1439 | border-left: 12px solid transparent; | |||
|
1440 | border-right: 0 none; | |||
|
1441 | right: 2px; | |||
|
1442 | } | |||
|
1443 | ||||
|
1444 | .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer-inner { | |||
|
1445 | border-left: 8px solid transparent; | |||
|
1446 | border-right: 8px solid transparent; | |||
|
1447 | left: -8px; | |||
|
1448 | } | |||
|
1449 | ||||
|
1450 | .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer-inner { | |||
|
1451 | border-left: 0 none; | |||
|
1452 | border-right: 12px solid transparent; | |||
|
1453 | left: 2px; | |||
|
1454 | } | |||
|
1455 | ||||
|
1456 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer { | |||
|
1457 | border-left: 0 none; | |||
|
1458 | border-right-width: 14px; | |||
|
1459 | left: -14px; | |||
|
1460 | } | |||
|
1461 | ||||
|
1462 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer { | |||
|
1463 | border-bottom: 0 none; | |||
|
1464 | border-top: 18px solid transparent; | |||
|
1465 | bottom: 10px; | |||
|
1466 | } | |||
|
1467 | ||||
|
1468 | .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer { | |||
|
1469 | border-bottom: 10px solid transparent; | |||
|
1470 | border-top: 10px solid transparent; | |||
|
1471 | bottom: 50%; | |||
|
1472 | margin-bottom: -10px; | |||
|
1473 | } | |||
|
1474 | ||||
|
1475 | .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer { | |||
|
1476 | border-bottom: 18px solid transparent; | |||
|
1477 | border-top: 0 none; | |||
|
1478 | top: 10px; | |||
|
1479 | } | |||
|
1480 | ||||
|
1481 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer-inner { | |||
|
1482 | border-right-color: inherit; | |||
|
1483 | border-right-style: solid; | |||
|
1484 | border-right-width: 10px; | |||
|
1485 | right: -14px; | |||
|
1486 | *font-size:0;line-height:0; | |||
|
1487 | } | |||
|
1488 | ||||
|
1489 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer-inner { | |||
|
1490 | border-bottom: 0 none; | |||
|
1491 | border-top: 12px solid transparent; | |||
|
1492 | bottom: 2px; | |||
|
1493 | } | |||
|
1494 | ||||
|
1495 | .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer-inner { | |||
|
1496 | border-bottom: 8px solid transparent; | |||
|
1497 | border-top: 8px solid transparent; | |||
|
1498 | bottom: -8px; | |||
|
1499 | } | |||
|
1500 | ||||
|
1501 | .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer-inner { | |||
|
1502 | border-bottom-style: solid; | |||
|
1503 | border-bottom-color: inherit; | |||
|
1504 | border-bottom-width: 12px; | |||
|
1505 | border-top: 0 none; | |||
|
1506 | top: 2px; | |||
|
1507 | } | |||
|
1508 | .wijmo-wijmenu { | |||
|
1509 | width:150px; | |||
|
1510 | padding:0.3em; | |||
|
1511 | position:relative; | |||
|
1512 | } | |||
|
1513 | ||||
|
1514 | .wijmo-wijmenu .wijmo-wijsuperpanel { | |||
|
1515 | border:none; | |||
|
1516 | background: inherit; | |||
|
1517 | padding:0; | |||
|
1518 | } | |||
|
1519 | ||||
|
1520 | .wijmo-wijmenu-list { | |||
|
1521 | position:static; | |||
|
1522 | } | |||
|
1523 | ||||
|
1524 | .wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child { | |||
|
1525 | display:none; | |||
|
1526 | width:150px; | |||
|
1527 | padding:0.3em; | |||
|
1528 | } | |||
|
1529 | ||||
|
1530 | .wijmo-wijmenu .wijmo-wijmenu-parent { | |||
|
1531 | position:relative; | |||
|
1532 | } | |||
|
1533 | ||||
|
1534 | .wijmo-wijmenu .wijmo-wijmenu-child { | |||
|
1535 | position:relative; | |||
|
1536 | left:150px; | |||
|
1537 | top:0; | |||
|
1538 | } | |||
|
1539 | ||||
|
1540 | .wijmo-wijmenu .wijmo-wijmenu-item { | |||
|
1541 | width:100%; | |||
|
1542 | float:left; | |||
|
1543 | clear:both; | |||
|
1544 | margin:1px 0; | |||
|
1545 | padding:0; | |||
|
1546 | } | |||
|
1547 | ||||
|
1548 | .wijmo-wijmenu .wijmo-wijmenu-list .wijmo-wijmenu-item { | |||
|
1549 | background:none; | |||
|
1550 | border:none; | |||
|
1551 | } | |||
|
1552 | ||||
|
1553 | .wijmo-wijmenu .wijmo-wijmenu-link { | |||
|
1554 | display:block; | |||
|
1555 | width:92%; | |||
|
1556 | outline:none; | |||
|
1557 | text-decoration:none; | |||
|
1558 | font-weight:400; | |||
|
1559 | border:solid 1px transparent; | |||
|
1560 | float:left; | |||
|
1561 | line-height:16px; | |||
|
1562 | padding:0.3em; | |||
|
1563 | } | |||
|
1564 | ||||
|
1565 | .wijmo-wijmenu-horizontal { | |||
|
1566 | width:auto; | |||
|
1567 | } | |||
|
1568 | ||||
|
1569 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-item { | |||
|
1570 | width:auto; | |||
|
1571 | clear:none; | |||
|
1572 | margin-right:3px; | |||
|
1573 | } | |||
|
1574 | ||||
|
1575 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child .wijmo-wijmenu-item { | |||
|
1576 | width:100%; | |||
|
1577 | } | |||
|
1578 | ||||
|
1579 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child { | |||
|
1580 | top:25px; | |||
|
1581 | left:0; | |||
|
1582 | } | |||
|
1583 | ||||
|
1584 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-link { | |||
|
1585 | width:auto; | |||
|
1586 | padding:0.4em 0.3em; | |||
|
1587 | } | |||
|
1588 | ||||
|
1589 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child .wijmo-wijmenu-link { | |||
|
1590 | width:92%; | |||
|
1591 | } | |||
|
1592 | ||||
|
1593 | .wijmo-wijmenu .wijmo-wijmenu-list .ui-widget-header { | |||
|
1594 | clear:both; | |||
|
1595 | float:left; | |||
|
1596 | width:98%; | |||
|
1597 | font-size:12px; | |||
|
1598 | margin:1px 0; | |||
|
1599 | } | |||
|
1600 | ||||
|
1601 | .wijmo-wijmenu-horizontal .ui-widget-header { | |||
|
1602 | clear:none; | |||
|
1603 | width:auto; | |||
|
1604 | margin:0 3px 0 0; | |||
|
1605 | } | |||
|
1606 | ||||
|
1607 | .wijmo-wijmenu .ui-widget-header h1,.wijmo-wijmenu .ui-widget-header h2,.wijmo-wijmenu .ui-widget-header h3,.wijmo-wijmenu .ui-widget-header h4,.wijmo-wijmenu .ui-widget-header h5,.wijmo-wijmenu .ui-widget-header h6 { | |||
|
1608 | float:left; | |||
|
1609 | display:block; | |||
|
1610 | font-size:1em; | |||
|
1611 | margin:0 auto; | |||
|
1612 | padding:0.3em 3%; | |||
|
1613 | } | |||
|
1614 | ||||
|
1615 | .wijmo-wijmenu-horizontal .ui-widget-header h1,.wijmo-wijmenu-horizontal .ui-widget-header h2,.wijmo-wijmenu-horizontal .ui-widget-header h3,.wijmo-wijmenu-horizontal .ui-widget-header h4,.wijmo-wijmenu-horizontal .ui-widget-header h5,.wijmo-wijmenu-horizontal .ui-widget-header h6 { | |||
|
1616 | padding:0.4em 0.3em; | |||
|
1617 | } | |||
|
1618 | ||||
|
1619 | .wijmo-wijmenu a.ui-state-default:link,.wijmo-wijmenu a.ui-state-default:visited,.wijmo-wijmenu a.ui-state-default:hover,.wijmo-wijmenu a.ui-state-default:active,.wijmo-wijmenu a.ui-state-hover:link,.wijmo-wijmenu a.ui-state-hover:visited,.wijmo-wijmenu a.ui-state-hover:hover,.wijmo-wijmenu a.ui-state-hover:active,.wijmo-wijmenu a.ui-state-active:link,.wijmo-wijmenu a.ui-state-active:visited,.wijmo-wijmenu a.ui-state-active:hover,.wijmo-wijmenu a.ui-state-active:active { | |||
|
1620 | font-weight:400; | |||
|
1621 | border-style:solid; | |||
|
1622 | } | |||
|
1623 | ||||
|
1624 | .wijmo-wijmenu .wijmo-wijmenu-child .ui-state-hover { | |||
|
1625 | font-weight:400; | |||
|
1626 | } | |||
|
1627 | ||||
|
1628 | .wijmo-wijmenu .wijmo-wijmenu-separator { | |||
|
1629 | clear:both; | |||
|
1630 | float:left; | |||
|
1631 | height:1px; | |||
|
1632 | text-indent:-9999px; | |||
|
1633 | width:98%; | |||
|
1634 | margin:1px 0; | |||
|
1635 | font-size:0; | |||
|
1636 | } | |||
|
1637 | ||||
|
1638 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-separator { | |||
|
1639 | height:auto; | |||
|
1640 | clear:none; | |||
|
1641 | width:1px; | |||
|
1642 | text-indent:-9999px; | |||
|
1643 | margin:0 3px 0 0; | |||
|
1644 | padding:0.4em 0; | |||
|
1645 | } | |||
|
1646 | ||||
|
1647 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child .wijmo-wijmenu-separator { | |||
|
1648 | clear:both; | |||
|
1649 | float:left; | |||
|
1650 | height:1px; | |||
|
1651 | text-indent:-9999px; | |||
|
1652 | width:98%; | |||
|
1653 | margin:1px 0; | |||
|
1654 | padding:0; | |||
|
1655 | } | |||
|
1656 | ||||
|
1657 | .wijmo-wijmenu .wijmo-wijmenu-group { | |||
|
1658 | clear:both; | |||
|
1659 | float:left; | |||
|
1660 | width:98%; | |||
|
1661 | margin:3px 0; | |||
|
1662 | padding:0 0.4em; | |||
|
1663 | } | |||
|
1664 | ||||
|
1665 | .wijmo-wijmenu-ipod { | |||
|
1666 | width:180px; | |||
|
1667 | } | |||
|
1668 | ||||
|
1669 | .wijmo-wijmenu-container { | |||
|
1670 | overflow:hidden; | |||
|
1671 | } | |||
|
1672 | ||||
|
1673 | .wijmo-wijmenu-ipod .wijmo-wijmenu-list { | |||
|
1674 | background:inherit; | |||
|
1675 | position:absolute; | |||
|
1676 | border-width:0; | |||
|
1677 | -moz-box-shadow: none; | |||
|
1678 | -webkit-box-shadow:none; | |||
|
1679 | } | |||
|
1680 | ||||
|
1681 | .wijmo-wijmenu-breadcrumb { | |||
|
1682 | margin:0; | |||
|
1683 | padding:0; | |||
|
1684 | } | |||
|
1685 | ||||
|
1686 | .wijmo-wijmenu-footer { | |||
|
1687 | margin-top:3px; | |||
|
1688 | } | |||
|
1689 | ||||
|
1690 | .wijmo-wijmenu-footer .ui-icon { | |||
|
1691 | margin:3px 0; | |||
|
1692 | } | |||
|
1693 | ||||
|
1694 | .wijmo-wijmenu-header { | |||
|
1695 | margin-bottom:3px; | |||
|
1696 | } | |||
|
1697 | ||||
|
1698 | .wijmo-wijmenu-breadcrumb li { | |||
|
1699 | float:left; | |||
|
1700 | list-style:none; | |||
|
1701 | font-size:.9em; | |||
|
1702 | margin:0; | |||
|
1703 | padding:0 .2em; | |||
|
1704 | } | |||
|
1705 | ||||
|
1706 | .wijmo-wijmenu-breadcrumb li.wijmo-wijmenu-prev-list,.wijmo-wijmenu-breadcrumb li.wijmo-wijmenu-current-crumb { | |||
|
1707 | clear:left; | |||
|
1708 | float:none; | |||
|
1709 | opacity:1; | |||
|
1710 | } | |||
|
1711 | ||||
|
1712 | .wijmo-wijmenu-breadcrumb li.wijmo-wijmenu-current-crumb { | |||
|
1713 | padding-top:.2em; | |||
|
1714 | } | |||
|
1715 | ||||
|
1716 | .wijmo-wijmenu-footer a:link,.wijmo-wijmenu-footer a:visited { | |||
|
1717 | float:left; | |||
|
1718 | width:100%; | |||
|
1719 | text-decoration:none; | |||
|
1720 | } | |||
|
1721 | ||||
|
1722 | .wijmo-wijmenu-footer a span { | |||
|
1723 | float:left; | |||
|
1724 | cursor:pointer; | |||
|
1725 | } | |||
|
1726 | ||||
|
1727 | .wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:link,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:visited,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:hover,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:active { | |||
|
1728 | background-image:none; | |||
|
1729 | text-decoration:none; | |||
|
1730 | } | |||
|
1731 | ||||
|
1732 | .wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a { | |||
|
1733 | float:left; | |||
|
1734 | padding-right:.4em; | |||
|
1735 | } | |||
|
1736 | ||||
|
1737 | .wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:link,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:visited,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:hover,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:active { | |||
|
1738 | display:block; | |||
|
1739 | background-image:none; | |||
|
1740 | font-size:1.3em; | |||
|
1741 | text-decoration:none; | |||
|
1742 | } | |||
|
1743 | ||||
|
1744 | .wijmo-wijmenu .wijmo-wijmenu-parent .ui-icon,.wijmo-wijmenu-horizontal .wijmo-wijmenu-child .ui-icon,.wijmo-wijmenu-ipod .ui-icon-triangle-1-e { | |||
|
1745 | float:right; | |||
|
1746 | } | |||
|
1747 | ||||
|
1748 | .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-text,.wijmo-wijmenu-horizontal .wijmo-wijmenu-parent .ui-icon,.wijmo-wijmenu-breadcrumb a,.wijmo-wijmenu-breadcrumb span,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a .ui-icon { | |||
|
1749 | float:left; | |||
|
1750 | } | |||
|
1751 | ||||
|
1752 | .wijmo-wijmenu .wijmo-wijmenu-link .wijmo-wijmenu-icon-left { | |||
|
1753 | display:inline-block; | |||
|
1754 | float:left; | |||
|
1755 | } | |||
|
1756 | ||||
|
1757 | .wijmo-wijmenu .wijmo-wijmenu-link .wijmo-wijmenu-icon-right { | |||
|
1758 | display:inline-block; | |||
|
1759 | float:right; | |||
|
1760 | } No newline at end of file |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
This diff has been collapsed as it changes many lines, (2295 lines changed) Show them Hide them | |||||
@@ -0,0 +1,2295 b'' | |||||
|
1 | /* | |||
|
2 | * | |||
|
3 | * Wijmo Aristo Theme | |||
|
4 | * http://wijmo.com/ | |||
|
5 | * | |||
|
6 | * Copyright(c) ComponentOne, LLC. All rights reserved. | |||
|
7 | * | |||
|
8 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
9 | * licensing@wijmo.com | |||
|
10 | * http://www.wijmo.com/license | |||
|
11 | * | |||
|
12 | * Based on the Aristo theme concept created by 280 North and Pinvoke (https://github.com/280north/aristo). | |||
|
13 | * | |||
|
14 | */ | |||
|
15 | ||||
|
16 | a | |||
|
17 | { | |||
|
18 | outline: none; | |||
|
19 | } | |||
|
20 | ||||
|
21 | /* Layout helpers | |||
|
22 | ----------------------------------*/ | |||
|
23 | .ui-helper-hidden | |||
|
24 | { | |||
|
25 | display: none; | |||
|
26 | } | |||
|
27 | .ui-helper-hidden-accessible | |||
|
28 | { | |||
|
29 | position: absolute; | |||
|
30 | left: -99999999px; | |||
|
31 | } | |||
|
32 | .ui-helper-reset | |||
|
33 | { | |||
|
34 | margin: 0; | |||
|
35 | padding: 0; | |||
|
36 | border: 0; | |||
|
37 | outline: 0; | |||
|
38 | line-height: 1.3; | |||
|
39 | text-decoration: none; | |||
|
40 | font-size: 100%; | |||
|
41 | list-style: none; | |||
|
42 | } | |||
|
43 | .ui-helper-clearfix:after | |||
|
44 | { | |||
|
45 | content: "."; | |||
|
46 | display: block; | |||
|
47 | height: 0; | |||
|
48 | clear: both; | |||
|
49 | visibility: hidden; | |||
|
50 | } | |||
|
51 | .ui-helper-clearfix | |||
|
52 | { | |||
|
53 | display: inline-block; | |||
|
54 | } | |||
|
55 | /* required comment for clearfix to work in Opera \*/ | |||
|
56 | * html .ui-helper-clearfix | |||
|
57 | { | |||
|
58 | height: 1%; | |||
|
59 | } | |||
|
60 | .ui-helper-clearfix | |||
|
61 | { | |||
|
62 | display: block; | |||
|
63 | } | |||
|
64 | /* end clearfix */ | |||
|
65 | .ui-helper-zfix | |||
|
66 | { | |||
|
67 | width: 100%; | |||
|
68 | height: 100%; | |||
|
69 | top: 0; | |||
|
70 | left: 0; | |||
|
71 | position: absolute; | |||
|
72 | opacity: 0; | |||
|
73 | filter: Alpha(Opacity=0); | |||
|
74 | } | |||
|
75 | ||||
|
76 | ||||
|
77 | /* Interaction Cues | |||
|
78 | ----------------------------------*/ | |||
|
79 | .ui-state-disabled | |||
|
80 | { | |||
|
81 | cursor: default !important; | |||
|
82 | } | |||
|
83 | ||||
|
84 | ||||
|
85 | /* Icons | |||
|
86 | ----------------------------------*/ | |||
|
87 | ||||
|
88 | /* states and images */ | |||
|
89 | .ui-icon | |||
|
90 | { | |||
|
91 | display: block; | |||
|
92 | text-indent: -99999px; | |||
|
93 | overflow: hidden; | |||
|
94 | background-repeat: no-repeat; | |||
|
95 | -moz-border-radius: 10px; | |||
|
96 | -webkit-border-radius: 10px; | |||
|
97 | border-radius: 10px; | |||
|
98 | } | |||
|
99 | ||||
|
100 | ||||
|
101 | /* Misc visuals | |||
|
102 | ----------------------------------*/ | |||
|
103 | ||||
|
104 | /* Overlays */ | |||
|
105 | .ui-widget-overlay | |||
|
106 | { | |||
|
107 | position: absolute; | |||
|
108 | top: 0; | |||
|
109 | left: 0; | |||
|
110 | width: 100%; | |||
|
111 | height: 100%; | |||
|
112 | } | |||
|
113 | ||||
|
114 | ||||
|
115 | /* | |||
|
116 | * jQuery UI CSS Framework @VERSION | |||
|
117 | * | |||
|
118 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
119 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
120 | * http://jquery.org/license | |||
|
121 | * | |||
|
122 | * http://docs.jquery.com/UI/Theming/API | |||
|
123 | * | |||
|
124 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial,sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=3px&bgColorHeader=c4c4c4&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=100&borderColorHeader=a8a8a8&fcHeader=4f4f4f&iconColorHeader=898989&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=100&borderColorContent=a8a8a8&fcContent=4f4f4f&iconColorContent=616161&bgColorDefault=c4c4c4&bgTextureDefault=04_highlight_hard.png&bgImgOpacityDefault=80&borderColorDefault=a8a8a8&fcDefault=4f4f4f&iconColorDefault=ffffff&bgColorHover=c4c4c4&bgTextureHover=04_highlight_hard.png&bgImgOpacityHover=80&borderColorHover=a8a8a8&fcHover=4f4f4f&iconColorHover=ffffff&bgColorActive=c4c4c4&bgTextureActive=06_inset_hard.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=4f4f4f&iconColorActive=ffffff&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=4f4f4f&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px | |||
|
125 | */ | |||
|
126 | ||||
|
127 | ||||
|
128 | /* Component containers | |||
|
129 | ----------------------------------*/ | |||
|
130 | .ui-widget | |||
|
131 | { | |||
|
132 | font-family: Arial,sans-serif; | |||
|
133 | font-size: 1.1em; | |||
|
134 | } | |||
|
135 | .ui-widget .ui-widget | |||
|
136 | { | |||
|
137 | font-size: 1em; | |||
|
138 | } | |||
|
139 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button | |||
|
140 | { | |||
|
141 | font-family: Arial,sans-serif; | |||
|
142 | font-size: 1em; | |||
|
143 | } | |||
|
144 | .ui-widget-content | |||
|
145 | { | |||
|
146 | border: 1px solid #a8a8a8; | |||
|
147 | background: #ffffff; | |||
|
148 | color: #4f4f4f; | |||
|
149 | } | |||
|
150 | .ui-widget-content a | |||
|
151 | { | |||
|
152 | color: #4f4f4f; | |||
|
153 | } | |||
|
154 | .ui-widget-header | |||
|
155 | { | |||
|
156 | border: 1px solid #a8a8a8; | |||
|
157 | background: #c4c4c4 url(images/ui-bg_highlight-soft_100_c4c4c4_1x100.png) 50% 50% repeat-x; | |||
|
158 | background: #c4c4c4 linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
159 | background: #c4c4c4 -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
160 | background: #c4c4c4 -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)"; */ | |||
|
161 | color: #333; | |||
|
162 | font-weight: bold; | |||
|
163 | text-shadow: 0px 1px 0px rgba(255,255,255,0.7); | |||
|
164 | } | |||
|
165 | .ui-widget-header a | |||
|
166 | { | |||
|
167 | color: #4f4f4f; | |||
|
168 | } | |||
|
169 | ||||
|
170 | /* Interaction states | |||
|
171 | ----------------------------------*/ | |||
|
172 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default | |||
|
173 | { | |||
|
174 | border: 1px solid #a8a8a8; | |||
|
175 | background: #c4c4c4 url(images/ui-bg_highlight-hard_80_c4c4c4_1x100.png) 50% 50% repeat-x; | |||
|
176 | background: #c4c4c4 linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
177 | background: #c4c4c4 -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
178 | background: #c4c4c4 -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)"; */ | |||
|
179 | font-weight: bold; | |||
|
180 | color: #4f4f4f; | |||
|
181 | text-shadow: 0px 1px 0px rgba(255,255,255,0.7); | |||
|
182 | } | |||
|
183 | .ui-state-default | |||
|
184 | { | |||
|
185 | -moz-box-shadow: inset 0px 1px 0px #fff; | |||
|
186 | -webkit-box-shadow: inset 0px 1px 0px #fff; | |||
|
187 | box-shadow: inset 0px 1px 0px #fff; | |||
|
188 | } | |||
|
189 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited | |||
|
190 | { | |||
|
191 | color: #4f4f4f; | |||
|
192 | text-decoration: none; | |||
|
193 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); | |||
|
194 | } | |||
|
195 | .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus | |||
|
196 | { | |||
|
197 | border: 1px solid #7096ab; | |||
|
198 | background: #85b2cb url(images/ui-bg_highlight-hard_80_85b2cb_1x100.png) 50% 50% repeat-x; | |||
|
199 | background: #85b2cb linear-gradient(top, rgba(255,255,255,0.6), rgba(255,255,255,0)); | |||
|
200 | background: #85b2cb -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.6)), to(rgba(255,255,255,0))); | |||
|
201 | background: #85b2cb -moz-linear-gradient(top, rgba(255,255,255,0.6), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#00FFFFFF)"; */ | |||
|
202 | font-weight: bold; | |||
|
203 | color: #313131; | |||
|
204 | -moz-box-shadow: 0 0 5px #85b2cb; | |||
|
205 | -webkit-box-shadow: 0px 0px 8px #85b2cb; | |||
|
206 | box-shadow: 0px 0px 8px #85b2cb; | |||
|
207 | } | |||
|
208 | .ui-state-hover | |||
|
209 | { | |||
|
210 | -moz-box-shadow: 0px 0px 8px #85b2cb, inset 0px 1px 0px #fff; | |||
|
211 | -webkit-box-shadow: 0px 0px 8px #85b2cb, inset 0px 1px 0px #fff; | |||
|
212 | box-shadow: 0px 0px 8px #85b2cb, inset 0px 1px 0px #fff; | |||
|
213 | } | |||
|
214 | .ui-state-hover a, .ui-state-hover a:hover | |||
|
215 | { | |||
|
216 | color: #2f556a; | |||
|
217 | text-decoration: none; | |||
|
218 | } | |||
|
219 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active | |||
|
220 | { | |||
|
221 | border: 1px solid #7096ab; | |||
|
222 | background: #85b2cb url(images/ui-bg_inset-hard_65_85b2cb_1x100.png) 50% 50% repeat-x; | |||
|
223 | background: #85b2cb linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.4)); | |||
|
224 | background: #85b2cb -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.4))); | |||
|
225 | background: #85b2cb -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.4)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#CCFFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#CCFFFFFF)"; */ | |||
|
226 | font-weight: bold; | |||
|
227 | color: #1C4257; | |||
|
228 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); | |||
|
229 | } | |||
|
230 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited | |||
|
231 | { | |||
|
232 | color: #2f556a; | |||
|
233 | text-decoration: none; | |||
|
234 | } | |||
|
235 | .ui-widget :active | |||
|
236 | { | |||
|
237 | outline: none; | |||
|
238 | } | |||
|
239 | .ui-state-active | |||
|
240 | { | |||
|
241 | -moz-box-shadow: inset 0px -1px 0px #fff; | |||
|
242 | -webkit-box-shadow: inset 0px 1px 0px #fff; | |||
|
243 | box-shadow: inset 0px 1px 0px #fff; | |||
|
244 | } | |||
|
245 | /* Interaction Cues | |||
|
246 | ----------------------------------*/ | |||
|
247 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight | |||
|
248 | { | |||
|
249 | border: 1px solid #666666; | |||
|
250 | background: #aaaaaa; | |||
|
251 | background: #aaaaaa linear-gradient(top, rgba(0,0,0,0.25), rgba(0,0,0,0)); | |||
|
252 | background: #aaaaaa -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.25)), to(rgba(0,0,0,0))); | |||
|
253 | background: #aaaaaa -moz-linear-gradient(top, rgba(0,0,0,0.25), rgba(0,0,0,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000, endColorstr=#00000000); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000, endColorstr=#00000000)"; */ | |||
|
254 | color: #ffffff; | |||
|
255 | text-shadow: 1px 1px 1px #333333; | |||
|
256 | } | |||
|
257 | ||||
|
258 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a | |||
|
259 | { | |||
|
260 | color: #363636; | |||
|
261 | } | |||
|
262 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error | |||
|
263 | { | |||
|
264 | border: 1px solid #cd0a0a; | |||
|
265 | background: #fef1ec url(images/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x; | |||
|
266 | background: #fef1ec linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
267 | background: #fef1ec -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
268 | background: #fef1ec -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)";*/ | |||
|
269 | color: #cd0a0a; | |||
|
270 | } | |||
|
271 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a | |||
|
272 | { | |||
|
273 | color: #cd0a0a; | |||
|
274 | } | |||
|
275 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text | |||
|
276 | { | |||
|
277 | color: #cd0a0a; | |||
|
278 | } | |||
|
279 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary | |||
|
280 | { | |||
|
281 | font-weight: bold; | |||
|
282 | } | |||
|
283 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary | |||
|
284 | { | |||
|
285 | opacity: .7; | |||
|
286 | filter: Alpha(Opacity=70); | |||
|
287 | font-weight: normal; | |||
|
288 | } | |||
|
289 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled | |||
|
290 | { | |||
|
291 | opacity: .35; | |||
|
292 | filter: Alpha(Opacity=35); | |||
|
293 | background-image: none; | |||
|
294 | } | |||
|
295 | ||||
|
296 | /* Icons | |||
|
297 | ----------------------------------*/ | |||
|
298 | ||||
|
299 | /* states and images */ | |||
|
300 | .ui-icon | |||
|
301 | { | |||
|
302 | width: 16px; | |||
|
303 | height: 16px; | |||
|
304 | background-image: url(images/ui-icons_616161_256x240.png); | |||
|
305 | } | |||
|
306 | .ui-widget-content .ui-icon | |||
|
307 | { | |||
|
308 | background-image: url(images/ui-icons_616161_256x240.png); | |||
|
309 | } | |||
|
310 | .ui-widget-header .ui-icon | |||
|
311 | { | |||
|
312 | background-image: url(images/ui-icons_898989_256x240.png); | |||
|
313 | } | |||
|
314 | .ui-state-default .ui-icon | |||
|
315 | { | |||
|
316 | background-image: url(images/ui-icons_38667f_256x240.png); | |||
|
317 | } | |||
|
318 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon | |||
|
319 | { | |||
|
320 | background-image: url(images/ui-icons_38667f_256x240.png); | |||
|
321 | } | |||
|
322 | .ui-state-active .ui-icon | |||
|
323 | { | |||
|
324 | background-image: url(images/ui-icons_38667f_256x240.png); | |||
|
325 | } | |||
|
326 | .ui-state-highlight .ui-icon | |||
|
327 | { | |||
|
328 | background-image: url(images/ui-icons_2e83ff_256x240.png); | |||
|
329 | } | |||
|
330 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon | |||
|
331 | { | |||
|
332 | background-image: url(images/ui-icons_cd0a0a_256x240.png); | |||
|
333 | } | |||
|
334 | ||||
|
335 | /* positioning */ | |||
|
336 | .ui-icon-carat-1-n | |||
|
337 | { | |||
|
338 | background-position: 0 0; | |||
|
339 | } | |||
|
340 | .ui-icon-carat-1-ne | |||
|
341 | { | |||
|
342 | background-position: -16px 0; | |||
|
343 | } | |||
|
344 | .ui-icon-carat-1-e | |||
|
345 | { | |||
|
346 | background-position: -32px 0; | |||
|
347 | } | |||
|
348 | .ui-icon-carat-1-se | |||
|
349 | { | |||
|
350 | background-position: -48px 0; | |||
|
351 | } | |||
|
352 | .ui-icon-carat-1-s | |||
|
353 | { | |||
|
354 | background-position: -64px 0; | |||
|
355 | } | |||
|
356 | .ui-icon-carat-1-sw | |||
|
357 | { | |||
|
358 | background-position: -80px 0; | |||
|
359 | } | |||
|
360 | .ui-icon-carat-1-w | |||
|
361 | { | |||
|
362 | background-position: -96px 0; | |||
|
363 | } | |||
|
364 | .ui-icon-carat-1-nw | |||
|
365 | { | |||
|
366 | background-position: -112px 0; | |||
|
367 | } | |||
|
368 | .ui-icon-carat-2-n-s | |||
|
369 | { | |||
|
370 | background-position: -128px 0; | |||
|
371 | } | |||
|
372 | .ui-icon-carat-2-e-w | |||
|
373 | { | |||
|
374 | background-position: -144px 0; | |||
|
375 | } | |||
|
376 | .ui-icon-triangle-1-n | |||
|
377 | { | |||
|
378 | background-position: 0 -16px; | |||
|
379 | } | |||
|
380 | .ui-icon-triangle-1-ne | |||
|
381 | { | |||
|
382 | background-position: -16px -16px; | |||
|
383 | } | |||
|
384 | .ui-icon-triangle-1-e | |||
|
385 | { | |||
|
386 | background-position: -32px -16px; | |||
|
387 | } | |||
|
388 | .ui-icon-triangle-1-se | |||
|
389 | { | |||
|
390 | background-position: -48px -16px; | |||
|
391 | } | |||
|
392 | .ui-icon-triangle-1-s | |||
|
393 | { | |||
|
394 | background-position: -64px -16px; | |||
|
395 | } | |||
|
396 | .ui-icon-triangle-1-sw | |||
|
397 | { | |||
|
398 | background-position: -80px -16px; | |||
|
399 | } | |||
|
400 | .ui-icon-triangle-1-w | |||
|
401 | { | |||
|
402 | background-position: -96px -16px; | |||
|
403 | } | |||
|
404 | .ui-icon-triangle-1-nw | |||
|
405 | { | |||
|
406 | background-position: -112px -16px; | |||
|
407 | } | |||
|
408 | .ui-icon-triangle-2-n-s | |||
|
409 | { | |||
|
410 | background-position: -128px -16px; | |||
|
411 | } | |||
|
412 | .ui-icon-triangle-2-e-w | |||
|
413 | { | |||
|
414 | background-position: -144px -16px; | |||
|
415 | } | |||
|
416 | .ui-icon-arrow-1-n | |||
|
417 | { | |||
|
418 | background-position: 0 -32px; | |||
|
419 | } | |||
|
420 | .ui-icon-arrow-1-ne | |||
|
421 | { | |||
|
422 | background-position: -16px -32px; | |||
|
423 | } | |||
|
424 | .ui-icon-arrow-1-e | |||
|
425 | { | |||
|
426 | background-position: -32px -32px; | |||
|
427 | } | |||
|
428 | .ui-icon-arrow-1-se | |||
|
429 | { | |||
|
430 | background-position: -48px -32px; | |||
|
431 | } | |||
|
432 | .ui-icon-arrow-1-s | |||
|
433 | { | |||
|
434 | background-position: -64px -32px; | |||
|
435 | } | |||
|
436 | .ui-icon-arrow-1-sw | |||
|
437 | { | |||
|
438 | background-position: -80px -32px; | |||
|
439 | } | |||
|
440 | .ui-icon-arrow-1-w | |||
|
441 | { | |||
|
442 | background-position: -96px -32px; | |||
|
443 | } | |||
|
444 | .ui-icon-arrow-1-nw | |||
|
445 | { | |||
|
446 | background-position: -112px -32px; | |||
|
447 | } | |||
|
448 | .ui-icon-arrow-2-n-s | |||
|
449 | { | |||
|
450 | background-position: -128px -32px; | |||
|
451 | } | |||
|
452 | .ui-icon-arrow-2-ne-sw | |||
|
453 | { | |||
|
454 | background-position: -144px -32px; | |||
|
455 | } | |||
|
456 | .ui-icon-arrow-2-e-w | |||
|
457 | { | |||
|
458 | background-position: -160px -32px; | |||
|
459 | } | |||
|
460 | .ui-icon-arrow-2-se-nw | |||
|
461 | { | |||
|
462 | background-position: -176px -32px; | |||
|
463 | } | |||
|
464 | .ui-icon-arrowstop-1-n | |||
|
465 | { | |||
|
466 | background-position: -192px -32px; | |||
|
467 | } | |||
|
468 | .ui-icon-arrowstop-1-e | |||
|
469 | { | |||
|
470 | background-position: -208px -32px; | |||
|
471 | } | |||
|
472 | .ui-icon-arrowstop-1-s | |||
|
473 | { | |||
|
474 | background-position: -224px -32px; | |||
|
475 | } | |||
|
476 | .ui-icon-arrowstop-1-w | |||
|
477 | { | |||
|
478 | background-position: -240px -32px; | |||
|
479 | } | |||
|
480 | .ui-icon-arrowthick-1-n | |||
|
481 | { | |||
|
482 | background-position: 0 -48px; | |||
|
483 | } | |||
|
484 | .ui-icon-arrowthick-1-ne | |||
|
485 | { | |||
|
486 | background-position: -16px -48px; | |||
|
487 | } | |||
|
488 | .ui-icon-arrowthick-1-e | |||
|
489 | { | |||
|
490 | background-position: -32px -48px; | |||
|
491 | } | |||
|
492 | .ui-icon-arrowthick-1-se | |||
|
493 | { | |||
|
494 | background-position: -48px -48px; | |||
|
495 | } | |||
|
496 | .ui-icon-arrowthick-1-s | |||
|
497 | { | |||
|
498 | background-position: -64px -48px; | |||
|
499 | } | |||
|
500 | .ui-icon-arrowthick-1-sw | |||
|
501 | { | |||
|
502 | background-position: -80px -48px; | |||
|
503 | } | |||
|
504 | .ui-icon-arrowthick-1-w | |||
|
505 | { | |||
|
506 | background-position: -96px -48px; | |||
|
507 | } | |||
|
508 | .ui-icon-arrowthick-1-nw | |||
|
509 | { | |||
|
510 | background-position: -112px -48px; | |||
|
511 | } | |||
|
512 | .ui-icon-arrowthick-2-n-s | |||
|
513 | { | |||
|
514 | background-position: -128px -48px; | |||
|
515 | } | |||
|
516 | .ui-icon-arrowthick-2-ne-sw | |||
|
517 | { | |||
|
518 | background-position: -144px -48px; | |||
|
519 | } | |||
|
520 | .ui-icon-arrowthick-2-e-w | |||
|
521 | { | |||
|
522 | background-position: -160px -48px; | |||
|
523 | } | |||
|
524 | .ui-icon-arrowthick-2-se-nw | |||
|
525 | { | |||
|
526 | background-position: -176px -48px; | |||
|
527 | } | |||
|
528 | .ui-icon-arrowthickstop-1-n | |||
|
529 | { | |||
|
530 | background-position: -192px -48px; | |||
|
531 | } | |||
|
532 | .ui-icon-arrowthickstop-1-e | |||
|
533 | { | |||
|
534 | background-position: -208px -48px; | |||
|
535 | } | |||
|
536 | .ui-icon-arrowthickstop-1-s | |||
|
537 | { | |||
|
538 | background-position: -224px -48px; | |||
|
539 | } | |||
|
540 | .ui-icon-arrowthickstop-1-w | |||
|
541 | { | |||
|
542 | background-position: -240px -48px; | |||
|
543 | } | |||
|
544 | .ui-icon-arrowreturnthick-1-w | |||
|
545 | { | |||
|
546 | background-position: 0 -64px; | |||
|
547 | } | |||
|
548 | .ui-icon-arrowreturnthick-1-n | |||
|
549 | { | |||
|
550 | background-position: -16px -64px; | |||
|
551 | } | |||
|
552 | .ui-icon-arrowreturnthick-1-e | |||
|
553 | { | |||
|
554 | background-position: -32px -64px; | |||
|
555 | } | |||
|
556 | .ui-icon-arrowreturnthick-1-s | |||
|
557 | { | |||
|
558 | background-position: -48px -64px; | |||
|
559 | } | |||
|
560 | .ui-icon-arrowreturn-1-w | |||
|
561 | { | |||
|
562 | background-position: -64px -64px; | |||
|
563 | } | |||
|
564 | .ui-icon-arrowreturn-1-n | |||
|
565 | { | |||
|
566 | background-position: -80px -64px; | |||
|
567 | } | |||
|
568 | .ui-icon-arrowreturn-1-e | |||
|
569 | { | |||
|
570 | background-position: -96px -64px; | |||
|
571 | } | |||
|
572 | .ui-icon-arrowreturn-1-s | |||
|
573 | { | |||
|
574 | background-position: -112px -64px; | |||
|
575 | } | |||
|
576 | .ui-icon-arrowrefresh-1-w | |||
|
577 | { | |||
|
578 | background-position: -128px -64px; | |||
|
579 | } | |||
|
580 | .ui-icon-arrowrefresh-1-n | |||
|
581 | { | |||
|
582 | background-position: -144px -64px; | |||
|
583 | } | |||
|
584 | .ui-icon-arrowrefresh-1-e | |||
|
585 | { | |||
|
586 | background-position: -160px -64px; | |||
|
587 | } | |||
|
588 | .ui-icon-arrowrefresh-1-s | |||
|
589 | { | |||
|
590 | background-position: -176px -64px; | |||
|
591 | } | |||
|
592 | .ui-icon-arrow-4 | |||
|
593 | { | |||
|
594 | background-position: 0 -80px; | |||
|
595 | } | |||
|
596 | .ui-icon-arrow-4-diag | |||
|
597 | { | |||
|
598 | background-position: -16px -80px; | |||
|
599 | } | |||
|
600 | .ui-icon-extlink | |||
|
601 | { | |||
|
602 | background-position: -32px -80px; | |||
|
603 | } | |||
|
604 | .ui-icon-newwin | |||
|
605 | { | |||
|
606 | background-position: -48px -80px; | |||
|
607 | } | |||
|
608 | .ui-icon-refresh | |||
|
609 | { | |||
|
610 | background-position: -64px -80px; | |||
|
611 | } | |||
|
612 | .ui-icon-shuffle | |||
|
613 | { | |||
|
614 | background-position: -80px -80px; | |||
|
615 | } | |||
|
616 | .ui-icon-transfer-e-w | |||
|
617 | { | |||
|
618 | background-position: -96px -80px; | |||
|
619 | } | |||
|
620 | .ui-icon-transferthick-e-w | |||
|
621 | { | |||
|
622 | background-position: -112px -80px; | |||
|
623 | } | |||
|
624 | .ui-icon-folder-collapsed | |||
|
625 | { | |||
|
626 | background-position: 0 -96px; | |||
|
627 | } | |||
|
628 | .ui-icon-folder-open | |||
|
629 | { | |||
|
630 | background-position: -16px -96px; | |||
|
631 | } | |||
|
632 | .ui-icon-document | |||
|
633 | { | |||
|
634 | background-position: -32px -96px; | |||
|
635 | } | |||
|
636 | .ui-icon-document-b | |||
|
637 | { | |||
|
638 | background-position: -48px -96px; | |||
|
639 | } | |||
|
640 | .ui-icon-note | |||
|
641 | { | |||
|
642 | background-position: -64px -96px; | |||
|
643 | } | |||
|
644 | .ui-icon-mail-closed | |||
|
645 | { | |||
|
646 | background-position: -80px -96px; | |||
|
647 | } | |||
|
648 | .ui-icon-mail-open | |||
|
649 | { | |||
|
650 | background-position: -96px -96px; | |||
|
651 | } | |||
|
652 | .ui-icon-suitcase | |||
|
653 | { | |||
|
654 | background-position: -112px -96px; | |||
|
655 | } | |||
|
656 | .ui-icon-comment | |||
|
657 | { | |||
|
658 | background-position: -128px -96px; | |||
|
659 | } | |||
|
660 | .ui-icon-person | |||
|
661 | { | |||
|
662 | background-position: -144px -96px; | |||
|
663 | } | |||
|
664 | .ui-icon-print | |||
|
665 | { | |||
|
666 | background-position: -160px -96px; | |||
|
667 | } | |||
|
668 | .ui-icon-trash | |||
|
669 | { | |||
|
670 | background-position: -176px -96px; | |||
|
671 | } | |||
|
672 | .ui-icon-locked | |||
|
673 | { | |||
|
674 | background-position: -192px -96px; | |||
|
675 | } | |||
|
676 | .ui-icon-unlocked | |||
|
677 | { | |||
|
678 | background-position: -208px -96px; | |||
|
679 | } | |||
|
680 | .ui-icon-bookmark | |||
|
681 | { | |||
|
682 | background-position: -224px -96px; | |||
|
683 | } | |||
|
684 | .ui-icon-tag | |||
|
685 | { | |||
|
686 | background-position: -240px -96px; | |||
|
687 | } | |||
|
688 | .ui-icon-home | |||
|
689 | { | |||
|
690 | background-position: 0 -112px; | |||
|
691 | } | |||
|
692 | .ui-icon-flag | |||
|
693 | { | |||
|
694 | background-position: -16px -112px; | |||
|
695 | } | |||
|
696 | .ui-icon-calendar | |||
|
697 | { | |||
|
698 | background-position: -32px -112px; | |||
|
699 | } | |||
|
700 | .ui-icon-cart | |||
|
701 | { | |||
|
702 | background-position: -48px -112px; | |||
|
703 | } | |||
|
704 | .ui-icon-pencil | |||
|
705 | { | |||
|
706 | background-position: -64px -112px; | |||
|
707 | } | |||
|
708 | .ui-icon-clock | |||
|
709 | { | |||
|
710 | background-position: -80px -112px; | |||
|
711 | } | |||
|
712 | .ui-icon-disk | |||
|
713 | { | |||
|
714 | background-position: -96px -112px; | |||
|
715 | } | |||
|
716 | .ui-icon-calculator | |||
|
717 | { | |||
|
718 | background-position: -112px -112px; | |||
|
719 | } | |||
|
720 | .ui-icon-zoomin | |||
|
721 | { | |||
|
722 | background-position: -128px -112px; | |||
|
723 | } | |||
|
724 | .ui-icon-zoomout | |||
|
725 | { | |||
|
726 | background-position: -144px -112px; | |||
|
727 | } | |||
|
728 | .ui-icon-search | |||
|
729 | { | |||
|
730 | background-position: -160px -112px; | |||
|
731 | } | |||
|
732 | .ui-icon-wrench | |||
|
733 | { | |||
|
734 | background-position: -176px -112px; | |||
|
735 | } | |||
|
736 | .ui-icon-gear | |||
|
737 | { | |||
|
738 | background-position: -192px -112px; | |||
|
739 | } | |||
|
740 | .ui-icon-heart | |||
|
741 | { | |||
|
742 | background-position: -208px -112px; | |||
|
743 | } | |||
|
744 | .ui-icon-star | |||
|
745 | { | |||
|
746 | background-position: -224px -112px; | |||
|
747 | } | |||
|
748 | .ui-icon-link | |||
|
749 | { | |||
|
750 | background-position: -240px -112px; | |||
|
751 | } | |||
|
752 | .ui-icon-cancel | |||
|
753 | { | |||
|
754 | background-position: 0 -128px; | |||
|
755 | } | |||
|
756 | .ui-icon-plus | |||
|
757 | { | |||
|
758 | background-position: -16px -128px; | |||
|
759 | } | |||
|
760 | .ui-icon-plusthick | |||
|
761 | { | |||
|
762 | background-position: -32px -128px; | |||
|
763 | } | |||
|
764 | .ui-icon-minus | |||
|
765 | { | |||
|
766 | background-position: -48px -128px; | |||
|
767 | } | |||
|
768 | .ui-icon-minusthick | |||
|
769 | { | |||
|
770 | background-position: -64px -128px; | |||
|
771 | } | |||
|
772 | .ui-icon-close | |||
|
773 | { | |||
|
774 | background-position: -80px -128px; | |||
|
775 | } | |||
|
776 | .ui-icon-closethick | |||
|
777 | { | |||
|
778 | background-position: -96px -128px; | |||
|
779 | } | |||
|
780 | .ui-icon-key | |||
|
781 | { | |||
|
782 | background-position: -112px -128px; | |||
|
783 | } | |||
|
784 | .ui-icon-lightbulb | |||
|
785 | { | |||
|
786 | background-position: -128px -128px; | |||
|
787 | } | |||
|
788 | .ui-icon-scissors | |||
|
789 | { | |||
|
790 | background-position: -144px -128px; | |||
|
791 | } | |||
|
792 | .ui-icon-clipboard | |||
|
793 | { | |||
|
794 | background-position: -160px -128px; | |||
|
795 | } | |||
|
796 | .ui-icon-copy | |||
|
797 | { | |||
|
798 | background-position: -176px -128px; | |||
|
799 | } | |||
|
800 | .ui-icon-contact | |||
|
801 | { | |||
|
802 | background-position: -192px -128px; | |||
|
803 | } | |||
|
804 | .ui-icon-image | |||
|
805 | { | |||
|
806 | background-position: -208px -128px; | |||
|
807 | } | |||
|
808 | .ui-icon-video | |||
|
809 | { | |||
|
810 | background-position: -224px -128px; | |||
|
811 | } | |||
|
812 | .ui-icon-script | |||
|
813 | { | |||
|
814 | background-position: -240px -128px; | |||
|
815 | } | |||
|
816 | .ui-icon-alert | |||
|
817 | { | |||
|
818 | background-position: 0 -144px; | |||
|
819 | } | |||
|
820 | .ui-icon-info | |||
|
821 | { | |||
|
822 | background-position: -16px -144px; | |||
|
823 | } | |||
|
824 | .ui-icon-notice | |||
|
825 | { | |||
|
826 | background-position: -32px -144px; | |||
|
827 | } | |||
|
828 | .ui-icon-help | |||
|
829 | { | |||
|
830 | background-position: -48px -144px; | |||
|
831 | } | |||
|
832 | .ui-icon-check | |||
|
833 | { | |||
|
834 | background-position: -64px -144px; | |||
|
835 | } | |||
|
836 | .ui-icon-bullet | |||
|
837 | { | |||
|
838 | background-position: -80px -144px; | |||
|
839 | } | |||
|
840 | .ui-icon-radio-off | |||
|
841 | { | |||
|
842 | background-position: -96px -144px; | |||
|
843 | } | |||
|
844 | .ui-icon-radio-on | |||
|
845 | { | |||
|
846 | background-position: -112px -144px; | |||
|
847 | } | |||
|
848 | .ui-icon-pin-w | |||
|
849 | { | |||
|
850 | background-position: -128px -144px; | |||
|
851 | } | |||
|
852 | .ui-icon-pin-s | |||
|
853 | { | |||
|
854 | background-position: -144px -144px; | |||
|
855 | } | |||
|
856 | .ui-icon-play | |||
|
857 | { | |||
|
858 | background-position: 0 -160px; | |||
|
859 | } | |||
|
860 | .ui-icon-pause | |||
|
861 | { | |||
|
862 | background-position: -16px -160px; | |||
|
863 | } | |||
|
864 | .ui-icon-seek-next | |||
|
865 | { | |||
|
866 | background-position: -32px -160px; | |||
|
867 | } | |||
|
868 | .ui-icon-seek-prev | |||
|
869 | { | |||
|
870 | background-position: -48px -160px; | |||
|
871 | } | |||
|
872 | .ui-icon-seek-end | |||
|
873 | { | |||
|
874 | background-position: -64px -160px; | |||
|
875 | } | |||
|
876 | .ui-icon-seek-start | |||
|
877 | { | |||
|
878 | background-position: -80px -160px; | |||
|
879 | } | |||
|
880 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ | |||
|
881 | .ui-icon-seek-first | |||
|
882 | { | |||
|
883 | background-position: -80px -160px; | |||
|
884 | } | |||
|
885 | .ui-icon-stop | |||
|
886 | { | |||
|
887 | background-position: -96px -160px; | |||
|
888 | } | |||
|
889 | .ui-icon-eject | |||
|
890 | { | |||
|
891 | background-position: -112px -160px; | |||
|
892 | } | |||
|
893 | .ui-icon-volume-off | |||
|
894 | { | |||
|
895 | background-position: -128px -160px; | |||
|
896 | } | |||
|
897 | .ui-icon-volume-on | |||
|
898 | { | |||
|
899 | background-position: -144px -160px; | |||
|
900 | } | |||
|
901 | .ui-icon-power | |||
|
902 | { | |||
|
903 | background-position: 0 -176px; | |||
|
904 | } | |||
|
905 | .ui-icon-signal-diag | |||
|
906 | { | |||
|
907 | background-position: -16px -176px; | |||
|
908 | } | |||
|
909 | .ui-icon-signal | |||
|
910 | { | |||
|
911 | background-position: -32px -176px; | |||
|
912 | } | |||
|
913 | .ui-icon-battery-0 | |||
|
914 | { | |||
|
915 | background-position: -48px -176px; | |||
|
916 | } | |||
|
917 | .ui-icon-battery-1 | |||
|
918 | { | |||
|
919 | background-position: -64px -176px; | |||
|
920 | } | |||
|
921 | .ui-icon-battery-2 | |||
|
922 | { | |||
|
923 | background-position: -80px -176px; | |||
|
924 | } | |||
|
925 | .ui-icon-battery-3 | |||
|
926 | { | |||
|
927 | background-position: -96px -176px; | |||
|
928 | } | |||
|
929 | .ui-icon-circle-plus | |||
|
930 | { | |||
|
931 | background-position: 0 -192px; | |||
|
932 | } | |||
|
933 | .ui-icon-circle-minus | |||
|
934 | { | |||
|
935 | background-position: -16px -192px; | |||
|
936 | } | |||
|
937 | .ui-icon-circle-close | |||
|
938 | { | |||
|
939 | background-position: -32px -192px; | |||
|
940 | } | |||
|
941 | .ui-icon-circle-triangle-e | |||
|
942 | { | |||
|
943 | background-position: -48px -192px; | |||
|
944 | } | |||
|
945 | .ui-icon-circle-triangle-s | |||
|
946 | { | |||
|
947 | background-position: -64px -192px; | |||
|
948 | } | |||
|
949 | .ui-icon-circle-triangle-w | |||
|
950 | { | |||
|
951 | background-position: -80px -192px; | |||
|
952 | } | |||
|
953 | .ui-icon-circle-triangle-n | |||
|
954 | { | |||
|
955 | background-position: -96px -192px; | |||
|
956 | } | |||
|
957 | .ui-icon-circle-arrow-e | |||
|
958 | { | |||
|
959 | background-position: -112px -192px; | |||
|
960 | } | |||
|
961 | .ui-icon-circle-arrow-s | |||
|
962 | { | |||
|
963 | background-position: -128px -192px; | |||
|
964 | } | |||
|
965 | .ui-icon-circle-arrow-w | |||
|
966 | { | |||
|
967 | background-position: -144px -192px; | |||
|
968 | } | |||
|
969 | .ui-icon-circle-arrow-n | |||
|
970 | { | |||
|
971 | background-position: -160px -192px; | |||
|
972 | } | |||
|
973 | .ui-icon-circle-zoomin | |||
|
974 | { | |||
|
975 | background-position: -176px -192px; | |||
|
976 | } | |||
|
977 | .ui-icon-circle-zoomout | |||
|
978 | { | |||
|
979 | background-position: -192px -192px; | |||
|
980 | } | |||
|
981 | .ui-icon-circle-check | |||
|
982 | { | |||
|
983 | background-position: -208px -192px; | |||
|
984 | } | |||
|
985 | .ui-icon-circlesmall-plus | |||
|
986 | { | |||
|
987 | background-position: 0 -208px; | |||
|
988 | } | |||
|
989 | .ui-icon-circlesmall-minus | |||
|
990 | { | |||
|
991 | background-position: -16px -208px; | |||
|
992 | } | |||
|
993 | .ui-icon-circlesmall-close | |||
|
994 | { | |||
|
995 | background-position: -32px -208px; | |||
|
996 | } | |||
|
997 | .ui-icon-squaresmall-plus | |||
|
998 | { | |||
|
999 | background-position: -48px -208px; | |||
|
1000 | } | |||
|
1001 | .ui-icon-squaresmall-minus | |||
|
1002 | { | |||
|
1003 | background-position: -64px -208px; | |||
|
1004 | } | |||
|
1005 | .ui-icon-squaresmall-close | |||
|
1006 | { | |||
|
1007 | background-position: -80px -208px; | |||
|
1008 | } | |||
|
1009 | .ui-icon-grip-dotted-vertical | |||
|
1010 | { | |||
|
1011 | background-position: 0 -224px; | |||
|
1012 | } | |||
|
1013 | .ui-icon-grip-dotted-horizontal | |||
|
1014 | { | |||
|
1015 | background-position: -16px -224px; | |||
|
1016 | } | |||
|
1017 | .ui-icon-grip-solid-vertical | |||
|
1018 | { | |||
|
1019 | background-position: -32px -224px; | |||
|
1020 | } | |||
|
1021 | .ui-icon-grip-solid-horizontal | |||
|
1022 | { | |||
|
1023 | background-position: -48px -224px; | |||
|
1024 | } | |||
|
1025 | .ui-icon-gripsmall-diagonal-se | |||
|
1026 | { | |||
|
1027 | background-position: -64px -224px; | |||
|
1028 | } | |||
|
1029 | .ui-icon-grip-diagonal-se | |||
|
1030 | { | |||
|
1031 | background-position: -80px -224px; | |||
|
1032 | } | |||
|
1033 | ||||
|
1034 | ||||
|
1035 | /* Misc visuals | |||
|
1036 | ----------------------------------*/ | |||
|
1037 | ||||
|
1038 | /* Corner radius */ | |||
|
1039 | .ui-corner-tl | |||
|
1040 | { | |||
|
1041 | -moz-border-radius-topleft: 3px; | |||
|
1042 | -webkit-border-top-left-radius: 3px; | |||
|
1043 | border-top-left-radius: 3px; | |||
|
1044 | } | |||
|
1045 | .ui-corner-tr | |||
|
1046 | { | |||
|
1047 | -moz-border-radius-topright: 3px; | |||
|
1048 | -webkit-border-top-right-radius: 3px; | |||
|
1049 | border-top-right-radius: 3px; | |||
|
1050 | } | |||
|
1051 | .ui-corner-bl | |||
|
1052 | { | |||
|
1053 | -moz-border-radius-bottomleft: 3px; | |||
|
1054 | -webkit-border-bottom-left-radius: 3px; | |||
|
1055 | border-bottom-left-radius: 3px; | |||
|
1056 | } | |||
|
1057 | .ui-corner-br | |||
|
1058 | { | |||
|
1059 | -moz-border-radius-bottomright: 3px; | |||
|
1060 | -webkit-border-bottom-right-radius: 3px; | |||
|
1061 | border-bottom-right-radius: 3px; | |||
|
1062 | } | |||
|
1063 | .ui-corner-top | |||
|
1064 | { | |||
|
1065 | -moz-border-radius-topleft: 3px; | |||
|
1066 | -webkit-border-top-left-radius: 3px; | |||
|
1067 | border-top-left-radius: 3px; | |||
|
1068 | -moz-border-radius-topright: 3px; | |||
|
1069 | -webkit-border-top-right-radius: 3px; | |||
|
1070 | border-top-right-radius: 3px; | |||
|
1071 | } | |||
|
1072 | .ui-corner-bottom | |||
|
1073 | { | |||
|
1074 | -moz-border-radius-bottomleft: 3px; | |||
|
1075 | -webkit-border-bottom-left-radius: 3px; | |||
|
1076 | border-bottom-left-radius: 3px; | |||
|
1077 | -moz-border-radius-bottomright: 3px; | |||
|
1078 | -webkit-border-bottom-right-radius: 3px; | |||
|
1079 | border-bottom-right-radius: 3px; | |||
|
1080 | } | |||
|
1081 | .ui-corner-right | |||
|
1082 | { | |||
|
1083 | -moz-border-radius-topright: 3px; | |||
|
1084 | -webkit-border-top-right-radius: 3px; | |||
|
1085 | border-top-right-radius: 3px; | |||
|
1086 | -moz-border-radius-bottomright: 3px; | |||
|
1087 | -webkit-border-bottom-right-radius: 3px; | |||
|
1088 | border-bottom-right-radius: 3px; | |||
|
1089 | } | |||
|
1090 | .ui-corner-left | |||
|
1091 | { | |||
|
1092 | -moz-border-radius-topleft: 3px; | |||
|
1093 | -webkit-border-top-left-radius: 3px; | |||
|
1094 | border-top-left-radius: 3px; | |||
|
1095 | -moz-border-radius-bottomleft: 3px; | |||
|
1096 | -webkit-border-bottom-left-radius: 3px; | |||
|
1097 | border-bottom-left-radius: 3px; | |||
|
1098 | } | |||
|
1099 | .ui-corner-all | |||
|
1100 | { | |||
|
1101 | -moz-border-radius: 3px; | |||
|
1102 | -webkit-border-radius: 3px; | |||
|
1103 | border-radius: 3px; | |||
|
1104 | } | |||
|
1105 | .ui-round-all | |||
|
1106 | { | |||
|
1107 | -moz-border-radius: 10px; | |||
|
1108 | -webkit-border-radius: 10px; | |||
|
1109 | border-radius: 10px; | |||
|
1110 | } | |||
|
1111 | ||||
|
1112 | /* Overlays */ | |||
|
1113 | .ui-widget-overlay | |||
|
1114 | { | |||
|
1115 | background: #2d5972 url(images/ui-bg_flat_0_2d5972_40x100.png) 50% 50% repeat-x; | |||
|
1116 | opacity: .30; | |||
|
1117 | filter: Alpha(Opacity=30); | |||
|
1118 | } | |||
|
1119 | .ui-widget-shadow | |||
|
1120 | { | |||
|
1121 | margin: -8px 0 0 -8px; | |||
|
1122 | padding: 8px; | |||
|
1123 | background: #4f4f4f url(images/ui-bg_flat_0_4f4f4f_40x100.png) 50% 50% repeat-x; | |||
|
1124 | opacity: .30; | |||
|
1125 | filter: Alpha(Opacity=30); | |||
|
1126 | -moz-border-radius: 8px; | |||
|
1127 | -webkit-border-radius: 8px; | |||
|
1128 | border-radius: 8px; | |||
|
1129 | } | |||
|
1130 | /* | |||
|
1131 | * jQuery UI Resizable @VERSION | |||
|
1132 | * | |||
|
1133 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1134 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1135 | * http://jquery.org/license | |||
|
1136 | * | |||
|
1137 | * http://docs.jquery.com/UI/Resizable#theming | |||
|
1138 | */ | |||
|
1139 | .ui-resizable | |||
|
1140 | { | |||
|
1141 | position: relative; | |||
|
1142 | } | |||
|
1143 | .ui-resizable-handle | |||
|
1144 | { | |||
|
1145 | position: absolute; | |||
|
1146 | font-size: 0.1px; | |||
|
1147 | z-index: 99999; | |||
|
1148 | display: block; | |||
|
1149 | } | |||
|
1150 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle | |||
|
1151 | { | |||
|
1152 | display: none; | |||
|
1153 | } | |||
|
1154 | .ui-resizable-n | |||
|
1155 | { | |||
|
1156 | cursor: n-resize; | |||
|
1157 | height: 7px; | |||
|
1158 | width: 100%; | |||
|
1159 | top: -5px; | |||
|
1160 | left: 0; | |||
|
1161 | } | |||
|
1162 | .ui-resizable-s | |||
|
1163 | { | |||
|
1164 | cursor: s-resize; | |||
|
1165 | height: 7px; | |||
|
1166 | width: 100%; | |||
|
1167 | bottom: -5px; | |||
|
1168 | left: 0; | |||
|
1169 | } | |||
|
1170 | .ui-resizable-e | |||
|
1171 | { | |||
|
1172 | cursor: e-resize; | |||
|
1173 | width: 7px; | |||
|
1174 | right: -5px; | |||
|
1175 | top: 0; | |||
|
1176 | height: 100%; | |||
|
1177 | } | |||
|
1178 | .ui-resizable-w | |||
|
1179 | { | |||
|
1180 | cursor: w-resize; | |||
|
1181 | width: 7px; | |||
|
1182 | left: -5px; | |||
|
1183 | top: 0; | |||
|
1184 | height: 100%; | |||
|
1185 | } | |||
|
1186 | .ui-resizable-se | |||
|
1187 | { | |||
|
1188 | cursor: se-resize; | |||
|
1189 | width: 12px; | |||
|
1190 | height: 12px; | |||
|
1191 | right: 1px; | |||
|
1192 | bottom: 1px; | |||
|
1193 | } | |||
|
1194 | .ui-resizable-sw | |||
|
1195 | { | |||
|
1196 | cursor: sw-resize; | |||
|
1197 | width: 9px; | |||
|
1198 | height: 9px; | |||
|
1199 | left: -5px; | |||
|
1200 | bottom: -5px; | |||
|
1201 | } | |||
|
1202 | .ui-resizable-nw | |||
|
1203 | { | |||
|
1204 | cursor: nw-resize; | |||
|
1205 | width: 9px; | |||
|
1206 | height: 9px; | |||
|
1207 | left: -5px; | |||
|
1208 | top: -5px; | |||
|
1209 | } | |||
|
1210 | .ui-resizable-ne | |||
|
1211 | { | |||
|
1212 | cursor: ne-resize; | |||
|
1213 | width: 9px; | |||
|
1214 | height: 9px; | |||
|
1215 | right: -5px; | |||
|
1216 | top: -5px; | |||
|
1217 | } | |||
|
1218 | /* | |||
|
1219 | * jQuery UI Selectable @VERSION | |||
|
1220 | * | |||
|
1221 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1222 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1223 | * http://jquery.org/license | |||
|
1224 | * | |||
|
1225 | * http://docs.jquery.com/UI/Selectable#theming | |||
|
1226 | */ | |||
|
1227 | .ui-selectable-helper | |||
|
1228 | { | |||
|
1229 | position: absolute; | |||
|
1230 | z-index: 100; | |||
|
1231 | border: 1px dotted black; | |||
|
1232 | } | |||
|
1233 | /* | |||
|
1234 | * jQuery UI Accordion @VERSION | |||
|
1235 | * | |||
|
1236 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1237 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1238 | * http://jquery.org/license | |||
|
1239 | * | |||
|
1240 | * http://docs.jquery.com/UI/Accordion#theming | |||
|
1241 | */ | |||
|
1242 | /* IE/Win - Fix animation bug - #4615 */ | |||
|
1243 | .ui-accordion | |||
|
1244 | { | |||
|
1245 | width: 100%; | |||
|
1246 | } | |||
|
1247 | .ui-accordion .ui-accordion-header | |||
|
1248 | { | |||
|
1249 | cursor: pointer; | |||
|
1250 | position: relative; | |||
|
1251 | margin-top: 1px; | |||
|
1252 | zoom: 1; | |||
|
1253 | } | |||
|
1254 | .ui-accordion .ui-accordion-li-fix | |||
|
1255 | { | |||
|
1256 | display: inline; | |||
|
1257 | } | |||
|
1258 | .ui-accordion .ui-accordion-header-active | |||
|
1259 | { | |||
|
1260 | border-bottom: 0 !important; | |||
|
1261 | } | |||
|
1262 | .ui-accordion .ui-accordion-header a | |||
|
1263 | { | |||
|
1264 | display: block; | |||
|
1265 | font-size: 1em; | |||
|
1266 | padding: .5em .5em .5em .7em; | |||
|
1267 | } | |||
|
1268 | .ui-accordion-icons .ui-accordion-header a | |||
|
1269 | { | |||
|
1270 | padding-left: 2.2em; | |||
|
1271 | } | |||
|
1272 | .ui-accordion .ui-accordion-header .ui-icon | |||
|
1273 | { | |||
|
1274 | position: absolute; | |||
|
1275 | left: .5em; | |||
|
1276 | top: 50%; | |||
|
1277 | margin-top: -8px; | |||
|
1278 | } | |||
|
1279 | .ui-accordion .ui-accordion-content | |||
|
1280 | { | |||
|
1281 | padding: 1em 2.2em; | |||
|
1282 | border-top: 0; | |||
|
1283 | margin-top: -2px; | |||
|
1284 | position: relative; | |||
|
1285 | top: 1px; | |||
|
1286 | margin-bottom: 2px; | |||
|
1287 | overflow: auto; | |||
|
1288 | display: none; | |||
|
1289 | zoom: 1; | |||
|
1290 | } | |||
|
1291 | .ui-accordion .ui-accordion-content-active | |||
|
1292 | { | |||
|
1293 | display: block; | |||
|
1294 | } | |||
|
1295 | ||||
|
1296 | .ui-accordion .ui-accordion-header | |||
|
1297 | { | |||
|
1298 | margin: 0; | |||
|
1299 | -moz-border-radius: 0; | |||
|
1300 | -webkit-border-radius: 0; | |||
|
1301 | border-radius: 0; | |||
|
1302 | } | |||
|
1303 | ||||
|
1304 | ||||
|
1305 | .ui-accordion .ui-accordion-content | |||
|
1306 | { | |||
|
1307 | margin-bottom: 0; | |||
|
1308 | } | |||
|
1309 | ||||
|
1310 | /* | |||
|
1311 | * jQuery UI Autocomplete @VERSION | |||
|
1312 | * | |||
|
1313 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1314 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1315 | * http://jquery.org/license | |||
|
1316 | * | |||
|
1317 | * http://docs.jquery.com/UI/Autocomplete#theming | |||
|
1318 | */ | |||
|
1319 | .ui-autocomplete | |||
|
1320 | { | |||
|
1321 | position: absolute; | |||
|
1322 | cursor: default; | |||
|
1323 | } | |||
|
1324 | ||||
|
1325 | ||||
|
1326 | .ui-autocomplete .ui-menu-item .ui-state-hover | |||
|
1327 | { | |||
|
1328 | background: none repeat scroll 0 0 #5F83B9; | |||
|
1329 | color: #FFFFFF !important; | |||
|
1330 | font-weight: bold; | |||
|
1331 | -moz-box-shadow: none; | |||
|
1332 | -webkit-box-shadow: none; | |||
|
1333 | box-shadow: none; | |||
|
1334 | border: solid 1px transparent; | |||
|
1335 | cursor: pointer; | |||
|
1336 | } | |||
|
1337 | ||||
|
1338 | ||||
|
1339 | /* workarounds */ | |||
|
1340 | * html .ui-autocomplete | |||
|
1341 | { | |||
|
1342 | width: 1px; | |||
|
1343 | } | |||
|
1344 | /* without this, the menu expands to 100% in IE6 */ | |||
|
1345 | ||||
|
1346 | /* | |||
|
1347 | * jQuery UI Menu @VERSION | |||
|
1348 | * | |||
|
1349 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1350 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1351 | * http://jquery.org/license | |||
|
1352 | * | |||
|
1353 | * http://docs.jquery.com/UI/Menu#theming | |||
|
1354 | */ | |||
|
1355 | .ui-menu | |||
|
1356 | { | |||
|
1357 | list-style: none; | |||
|
1358 | padding: 2px; | |||
|
1359 | margin: 0; | |||
|
1360 | display: block; | |||
|
1361 | float: left; | |||
|
1362 | } | |||
|
1363 | .ui-menu .ui-menu | |||
|
1364 | { | |||
|
1365 | margin-top: -3px; | |||
|
1366 | } | |||
|
1367 | .ui-menu .ui-menu-item | |||
|
1368 | { | |||
|
1369 | margin: 0; | |||
|
1370 | padding: 0; | |||
|
1371 | zoom: 1; | |||
|
1372 | float: left; | |||
|
1373 | clear: left; | |||
|
1374 | width: 100%; | |||
|
1375 | } | |||
|
1376 | .ui-menu .ui-menu-item a | |||
|
1377 | { | |||
|
1378 | text-decoration: none; | |||
|
1379 | display: block; | |||
|
1380 | padding: .2em .4em; | |||
|
1381 | line-height: 1.5; | |||
|
1382 | zoom: 1; | |||
|
1383 | } | |||
|
1384 | .ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active | |||
|
1385 | { | |||
|
1386 | font-weight: normal; | |||
|
1387 | margin: -1px; | |||
|
1388 | } | |||
|
1389 | /* | |||
|
1390 | * jQuery UI Button @VERSION | |||
|
1391 | * | |||
|
1392 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1393 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1394 | * http://jquery.org/license | |||
|
1395 | * | |||
|
1396 | * http://docs.jquery.com/UI/Button#theming | |||
|
1397 | */ | |||
|
1398 | .ui-button | |||
|
1399 | { | |||
|
1400 | display: inline-block; | |||
|
1401 | position: relative; | |||
|
1402 | padding: 0; | |||
|
1403 | margin-right: .1em; | |||
|
1404 | text-decoration: none !important; | |||
|
1405 | cursor: pointer; | |||
|
1406 | text-align: center; | |||
|
1407 | zoom: 1; | |||
|
1408 | overflow: visible; | |||
|
1409 | } | |||
|
1410 | /* the overflow property removes extra width in IE */ | |||
|
1411 | .ui-button-icon-only | |||
|
1412 | { | |||
|
1413 | width: 2.2em; | |||
|
1414 | } | |||
|
1415 | /* to make room for the icon, a width needs to be set here */ | |||
|
1416 | button.ui-button-icon-only | |||
|
1417 | { | |||
|
1418 | width: 2.4em; | |||
|
1419 | } | |||
|
1420 | /* button elements seem to need a little more width */ | |||
|
1421 | .ui-button-icons-only | |||
|
1422 | { | |||
|
1423 | width: 3.4em; | |||
|
1424 | } | |||
|
1425 | button.ui-button-icons-only | |||
|
1426 | { | |||
|
1427 | width: 3.7em; | |||
|
1428 | } | |||
|
1429 | ||||
|
1430 | .ui-button-icon-only .ui-icon, .ui-button-text-icon .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon | |||
|
1431 | { | |||
|
1432 | margin-left: 6px; | |||
|
1433 | margin-top: -8px; | |||
|
1434 | position: absolute; | |||
|
1435 | top: 50%; | |||
|
1436 | } | |||
|
1437 | ||||
|
1438 | .ui-button-text-icon .ui-button-text, .ui-button-text-icons .ui-button-text | |||
|
1439 | { | |||
|
1440 | padding: 5px 12px 5px 25px; | |||
|
1441 | } | |||
|
1442 | ||||
|
1443 | /*button text element */ | |||
|
1444 | .ui-button .ui-button-text | |||
|
1445 | { | |||
|
1446 | display: block; | |||
|
1447 | line-height: 1.4; | |||
|
1448 | } | |||
|
1449 | .ui-button-text-only .ui-button-text | |||
|
1450 | { | |||
|
1451 | padding: .4em 1em; | |||
|
1452 | } | |||
|
1453 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text | |||
|
1454 | { | |||
|
1455 | padding: .4em; | |||
|
1456 | text-indent: -9999999px; | |||
|
1457 | } | |||
|
1458 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text | |||
|
1459 | { | |||
|
1460 | padding: .4em 1em .4em 2.1em; | |||
|
1461 | } | |||
|
1462 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text | |||
|
1463 | { | |||
|
1464 | padding: .4em 2.1em .4em 1em; | |||
|
1465 | } | |||
|
1466 | .ui-button-text-icons .ui-button-text | |||
|
1467 | { | |||
|
1468 | padding-left: 2.1em; | |||
|
1469 | padding-right: 2.1em; | |||
|
1470 | } | |||
|
1471 | /* no icon support for input elements, provide padding by default */ | |||
|
1472 | input.ui-button | |||
|
1473 | { | |||
|
1474 | padding: .4em 1em; | |||
|
1475 | } | |||
|
1476 | ||||
|
1477 | /*button icon element(s) */ | |||
|
1478 | .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon | |||
|
1479 | { | |||
|
1480 | position: absolute; | |||
|
1481 | top: 50%; | |||
|
1482 | margin-top: -8px; | |||
|
1483 | } | |||
|
1484 | .ui-button-icon-only .ui-icon | |||
|
1485 | { | |||
|
1486 | left: 50%; | |||
|
1487 | margin-left: -8px; | |||
|
1488 | } | |||
|
1489 | /*.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }*/ | |||
|
1490 | .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary | |||
|
1491 | { | |||
|
1492 | right: .5em; | |||
|
1493 | } | |||
|
1494 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary | |||
|
1495 | { | |||
|
1496 | right: .5em; | |||
|
1497 | } | |||
|
1498 | ||||
|
1499 | /*button sets*/ | |||
|
1500 | .ui-buttonset | |||
|
1501 | { | |||
|
1502 | margin-right: 7px; | |||
|
1503 | } | |||
|
1504 | .ui-buttonset .ui-button | |||
|
1505 | { | |||
|
1506 | margin-left: 0; | |||
|
1507 | margin-right: -.3em; | |||
|
1508 | } | |||
|
1509 | ||||
|
1510 | /* workarounds */ | |||
|
1511 | button.ui-button::-moz-focus-inner | |||
|
1512 | { | |||
|
1513 | border: 0; | |||
|
1514 | padding: 0; | |||
|
1515 | } | |||
|
1516 | /* reset extra padding in Firefox */ | |||
|
1517 | /* | |||
|
1518 | * jQuery UI Dialog @VERSION | |||
|
1519 | * | |||
|
1520 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1521 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1522 | * http://jquery.org/license | |||
|
1523 | * | |||
|
1524 | * http://docs.jquery.com/UI/Dialog#theming | |||
|
1525 | */ | |||
|
1526 | .ui-dialog | |||
|
1527 | { | |||
|
1528 | position: absolute; | |||
|
1529 | padding: .2em; | |||
|
1530 | width: 300px; | |||
|
1531 | overflow: hidden; | |||
|
1532 | -moz-box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
1533 | -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
1534 | box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
1535 | } | |||
|
1536 | .ui-dialog .ui-dialog-titlebar | |||
|
1537 | { | |||
|
1538 | padding: .5em 1em .3em; | |||
|
1539 | position: relative; | |||
|
1540 | } | |||
|
1541 | .ui-dialog .ui-dialog-title | |||
|
1542 | { | |||
|
1543 | float: left; | |||
|
1544 | margin: .1em 16px .2em 0; | |||
|
1545 | } | |||
|
1546 | .ui-dialog .ui-dialog-titlebar-close | |||
|
1547 | { | |||
|
1548 | position: absolute; | |||
|
1549 | right: .3em; | |||
|
1550 | top: 50%; | |||
|
1551 | width: 19px; | |||
|
1552 | margin: -10px 0 0 0; | |||
|
1553 | padding: 1px; | |||
|
1554 | height: 18px; | |||
|
1555 | -moz-border-radius: 10px; | |||
|
1556 | } | |||
|
1557 | .ui-dialog .ui-dialog-titlebar-close span | |||
|
1558 | { | |||
|
1559 | display: block; | |||
|
1560 | margin: 1px; | |||
|
1561 | } | |||
|
1562 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus | |||
|
1563 | { | |||
|
1564 | padding: 0; | |||
|
1565 | } | |||
|
1566 | .ui-dialog .ui-dialog-content | |||
|
1567 | { | |||
|
1568 | position: relative; | |||
|
1569 | border: 0; | |||
|
1570 | padding: .5em 1em; | |||
|
1571 | background: none; | |||
|
1572 | overflow: auto; | |||
|
1573 | zoom: 1; | |||
|
1574 | } | |||
|
1575 | .ui-dialog .ui-dialog-buttonpane | |||
|
1576 | { | |||
|
1577 | text-align: left; | |||
|
1578 | border-width: 1px 0 0 0; | |||
|
1579 | background-image: none; | |||
|
1580 | margin: .5em 0 0 0; | |||
|
1581 | padding: .3em 1em .5em .4em; | |||
|
1582 | } | |||
|
1583 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset | |||
|
1584 | { | |||
|
1585 | float: right; | |||
|
1586 | } | |||
|
1587 | .ui-dialog .ui-dialog-buttonpane button | |||
|
1588 | { | |||
|
1589 | margin: .5em .4em .5em 0; | |||
|
1590 | cursor: pointer; | |||
|
1591 | } | |||
|
1592 | .ui-dialog .ui-resizable-se | |||
|
1593 | { | |||
|
1594 | width: 14px; | |||
|
1595 | height: 14px; | |||
|
1596 | right: 3px; | |||
|
1597 | bottom: 3px; | |||
|
1598 | } | |||
|
1599 | .ui-draggable .ui-dialog-titlebar | |||
|
1600 | { | |||
|
1601 | cursor: move; | |||
|
1602 | } | |||
|
1603 | ||||
|
1604 | .ui-dialog | |||
|
1605 | { | |||
|
1606 | padding: 0; | |||
|
1607 | } | |||
|
1608 | ||||
|
1609 | .ui-dialog .ui-dialog-titlebar | |||
|
1610 | { | |||
|
1611 | border-top: none; | |||
|
1612 | border-right: none; | |||
|
1613 | border-left: none; | |||
|
1614 | -moz-border-radius: 0; | |||
|
1615 | -webkit-border-radius: 0; | |||
|
1616 | border-radius: 0; | |||
|
1617 | } | |||
|
1618 | ||||
|
1619 | .ui-dialog .ui-dialog-titlebar-close | |||
|
1620 | { | |||
|
1621 | } | |||
|
1622 | ||||
|
1623 | /* | |||
|
1624 | * jQuery UI Slider @VERSION | |||
|
1625 | * | |||
|
1626 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1627 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1628 | * http://jquery.org/license | |||
|
1629 | * | |||
|
1630 | * http://docs.jquery.com/UI/Slider#theming | |||
|
1631 | */ | |||
|
1632 | .ui-slider | |||
|
1633 | { | |||
|
1634 | position: relative; | |||
|
1635 | text-align: left; | |||
|
1636 | -moz-border-radius: 10px; | |||
|
1637 | -webkit-border-radius: 10px; | |||
|
1638 | border-radius: 10px; | |||
|
1639 | } | |||
|
1640 | .ui-slider .ui-slider-handle | |||
|
1641 | { | |||
|
1642 | position: absolute; | |||
|
1643 | z-index: 2; | |||
|
1644 | width: 16px; | |||
|
1645 | height: 16px; | |||
|
1646 | cursor: default; | |||
|
1647 | -moz-border-radius: 10px; | |||
|
1648 | -webkit-border-radius: 10px; | |||
|
1649 | border-radius: 10px; | |||
|
1650 | } | |||
|
1651 | .ui-slider .ui-slider-range | |||
|
1652 | { | |||
|
1653 | position: absolute; | |||
|
1654 | z-index: 1; | |||
|
1655 | font-size: .7em; | |||
|
1656 | display: block; | |||
|
1657 | border: 0; | |||
|
1658 | background-position: 0 0; | |||
|
1659 | } | |||
|
1660 | ||||
|
1661 | ||||
|
1662 | .ui-slider | |||
|
1663 | { | |||
|
1664 | background: #cbcbcb; | |||
|
1665 | -moz-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
1666 | -webkit-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
1667 | box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
1668 | } | |||
|
1669 | ||||
|
1670 | .ui-slider .ui-slider-range | |||
|
1671 | { | |||
|
1672 | background: #a3cae0; | |||
|
1673 | -moz-box-shadow: inset 0 2px 2px #7d9aab; | |||
|
1674 | -webkit-box-shadow: inset 0 2px 2px #7d9aab; | |||
|
1675 | box-shadow: inset 0 2px 2px #7d9aab; | |||
|
1676 | } | |||
|
1677 | ||||
|
1678 | .ui-slider-vertical | |||
|
1679 | { | |||
|
1680 | background: #cbcbcb; | |||
|
1681 | -moz-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
1682 | -webkit-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
1683 | box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
1684 | } | |||
|
1685 | ||||
|
1686 | .ui-slider-vertical .ui-slider-range | |||
|
1687 | { | |||
|
1688 | background: #a3cae0; | |||
|
1689 | -moz-box-shadow: inset 2px 0 2px #7d9aab; | |||
|
1690 | -webkit-box-shadow: inset 2px 0 2px #7d9aab; | |||
|
1691 | box-shadow: inset 2px 0 2px #7d9aab; | |||
|
1692 | } | |||
|
1693 | ||||
|
1694 | ||||
|
1695 | .ui-slider .ui-slider-handle span | |||
|
1696 | { | |||
|
1697 | height: 16px !important; | |||
|
1698 | width: 16px !important; | |||
|
1699 | float: none !important; | |||
|
1700 | margin: 0 auto !important; | |||
|
1701 | } | |||
|
1702 | ||||
|
1703 | ||||
|
1704 | .ui-slider-horizontal | |||
|
1705 | { | |||
|
1706 | height: .4em; | |||
|
1707 | } | |||
|
1708 | .ui-slider-horizontal .ui-slider-handle | |||
|
1709 | { | |||
|
1710 | top: -.5em; | |||
|
1711 | margin-left: -.6em; | |||
|
1712 | } | |||
|
1713 | .ui-slider-horizontal .ui-slider-range | |||
|
1714 | { | |||
|
1715 | top: 0; | |||
|
1716 | height: 100%; | |||
|
1717 | } | |||
|
1718 | .ui-slider-horizontal .ui-slider-range-min | |||
|
1719 | { | |||
|
1720 | left: 0; | |||
|
1721 | } | |||
|
1722 | .ui-slider-horizontal .ui-slider-range-max | |||
|
1723 | { | |||
|
1724 | right: 0; | |||
|
1725 | } | |||
|
1726 | ||||
|
1727 | .ui-slider-vertical | |||
|
1728 | { | |||
|
1729 | width: .4em; | |||
|
1730 | height: 100px; | |||
|
1731 | } | |||
|
1732 | .ui-slider-vertical .ui-slider-handle | |||
|
1733 | { | |||
|
1734 | left: -.5em; | |||
|
1735 | margin-left: 0; | |||
|
1736 | margin-bottom: -.6em; | |||
|
1737 | } | |||
|
1738 | .ui-slider-vertical .ui-slider-range | |||
|
1739 | { | |||
|
1740 | left: 0; | |||
|
1741 | width: 100%; | |||
|
1742 | } | |||
|
1743 | .ui-slider-vertical .ui-slider-range-min | |||
|
1744 | { | |||
|
1745 | bottom: 0; | |||
|
1746 | } | |||
|
1747 | .ui-slider-vertical .ui-slider-range-max | |||
|
1748 | { | |||
|
1749 | top: 0; | |||
|
1750 | } | |||
|
1751 | .ui-slider .ui-slider-handle | |||
|
1752 | { | |||
|
1753 | background: #85b2cb; | |||
|
1754 | background: #85b2cb linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
1755 | background: #85b2cb -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
1756 | background: #85b2cb -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)"; */ | |||
|
1757 | } | |||
|
1758 | ||||
|
1759 | ||||
|
1760 | ||||
|
1761 | /* | |||
|
1762 | * jQuery UI Tabs @VERSION | |||
|
1763 | * | |||
|
1764 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1765 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1766 | * http://jquery.org/license | |||
|
1767 | * | |||
|
1768 | * http://docs.jquery.com/UI/Tabs#theming | |||
|
1769 | */ | |||
|
1770 | .ui-tabs | |||
|
1771 | { | |||
|
1772 | position: relative; | |||
|
1773 | padding: .2em; | |||
|
1774 | zoom: 1; | |||
|
1775 | } | |||
|
1776 | /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | |||
|
1777 | .ui-tabs .ui-tabs-nav | |||
|
1778 | { | |||
|
1779 | margin: 0; | |||
|
1780 | padding: .2em .2em 0; | |||
|
1781 | } | |||
|
1782 | .ui-tabs .ui-tabs-nav li | |||
|
1783 | { | |||
|
1784 | list-style: none; | |||
|
1785 | float: left; | |||
|
1786 | position: relative; | |||
|
1787 | top: 1px; | |||
|
1788 | margin: 0 .2em 1px 0; | |||
|
1789 | border: 1px solid #a8a8a8; | |||
|
1790 | border-bottom: 0 !important; | |||
|
1791 | padding: 0; | |||
|
1792 | white-space: nowrap; | |||
|
1793 | } | |||
|
1794 | .ui-tabs .ui-tabs-nav li a | |||
|
1795 | { | |||
|
1796 | float: left; | |||
|
1797 | padding: .5em 1em; | |||
|
1798 | text-decoration: none; | |||
|
1799 | } | |||
|
1800 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected | |||
|
1801 | { | |||
|
1802 | margin-bottom: 0; | |||
|
1803 | padding-bottom: 1px; | |||
|
1804 | border: 1px solid #a8a8a8; | |||
|
1805 | border-bottom: 0 !important; | |||
|
1806 | } | |||
|
1807 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a | |||
|
1808 | { | |||
|
1809 | cursor: text; | |||
|
1810 | } | |||
|
1811 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a | |||
|
1812 | { | |||
|
1813 | cursor: pointer; | |||
|
1814 | } | |||
|
1815 | /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ | |||
|
1816 | .ui-tabs .ui-tabs-panel | |||
|
1817 | { | |||
|
1818 | display: block; | |||
|
1819 | border-width: 0; | |||
|
1820 | padding: 1em 1.4em; | |||
|
1821 | background: none; | |||
|
1822 | } | |||
|
1823 | .ui-tabs .ui-tabs-hide | |||
|
1824 | { | |||
|
1825 | display: none !important; | |||
|
1826 | } | |||
|
1827 | ||||
|
1828 | .ui-tabs | |||
|
1829 | { | |||
|
1830 | padding: 0; | |||
|
1831 | } | |||
|
1832 | ||||
|
1833 | .ui-tabs .ui-tabs-nav | |||
|
1834 | { | |||
|
1835 | background: #e3e3e3; | |||
|
1836 | background: #e3e3e3 linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
1837 | background: #e3e3e3 -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
1838 | background: #e3e3e3 -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)"; */ | |||
|
1839 | -moz-border-radius: 0; | |||
|
1840 | -webkit-border-radius: 0; | |||
|
1841 | border-radius: 0; | |||
|
1842 | } | |||
|
1843 | ||||
|
1844 | ||||
|
1845 | .ui-tabs .ui-tabs-nav .ui-tabs-selected | |||
|
1846 | { | |||
|
1847 | background: #fff; | |||
|
1848 | border-bottom: none; | |||
|
1849 | -moz-box-shadow: none; | |||
|
1850 | -webkit-box-shadow: none; | |||
|
1851 | box-shadow: none; | |||
|
1852 | } | |||
|
1853 | ||||
|
1854 | ||||
|
1855 | ||||
|
1856 | /* | |||
|
1857 | * jQuery UI Datepicker @VERSION | |||
|
1858 | * | |||
|
1859 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1860 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1861 | * http://jquery.org/license | |||
|
1862 | * | |||
|
1863 | * http://docs.jquery.com/UI/Datepicker#theming | |||
|
1864 | */ | |||
|
1865 | .ui-datepicker | |||
|
1866 | { | |||
|
1867 | width: 17em; | |||
|
1868 | padding: .2em .2em 0; | |||
|
1869 | } | |||
|
1870 | .ui-datepicker .ui-datepicker-header | |||
|
1871 | { | |||
|
1872 | position: relative; | |||
|
1873 | padding: .2em 0; | |||
|
1874 | } | |||
|
1875 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next | |||
|
1876 | { | |||
|
1877 | position: absolute; | |||
|
1878 | top: 2px; | |||
|
1879 | width: 1.8em; | |||
|
1880 | height: 1.8em; | |||
|
1881 | cursor: pointer; | |||
|
1882 | } | |||
|
1883 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover | |||
|
1884 | { | |||
|
1885 | top: 1px; | |||
|
1886 | } | |||
|
1887 | .ui-datepicker .ui-datepicker-prev | |||
|
1888 | { | |||
|
1889 | left: 2px; | |||
|
1890 | } | |||
|
1891 | .ui-datepicker .ui-datepicker-next | |||
|
1892 | { | |||
|
1893 | right: 2px; | |||
|
1894 | } | |||
|
1895 | .ui-datepicker .ui-datepicker-prev-hover | |||
|
1896 | { | |||
|
1897 | left: 1px; | |||
|
1898 | } | |||
|
1899 | .ui-datepicker .ui-datepicker-next-hover | |||
|
1900 | { | |||
|
1901 | right: 1px; | |||
|
1902 | } | |||
|
1903 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span | |||
|
1904 | { | |||
|
1905 | display: block; | |||
|
1906 | position: absolute; | |||
|
1907 | left: 50%; | |||
|
1908 | margin-left: -8px; | |||
|
1909 | top: 50%; | |||
|
1910 | margin-top: -8px; | |||
|
1911 | } | |||
|
1912 | .ui-datepicker .ui-datepicker-title | |||
|
1913 | { | |||
|
1914 | margin: 0 2.3em; | |||
|
1915 | line-height: 1.8em; | |||
|
1916 | text-align: center; | |||
|
1917 | } | |||
|
1918 | .ui-datepicker .ui-datepicker-title select | |||
|
1919 | { | |||
|
1920 | font-size: 1em; | |||
|
1921 | margin: 1px 0; | |||
|
1922 | } | |||
|
1923 | .ui-datepicker select.ui-datepicker-month-year | |||
|
1924 | { | |||
|
1925 | width: 100%; | |||
|
1926 | } | |||
|
1927 | .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year | |||
|
1928 | { | |||
|
1929 | width: 49%; | |||
|
1930 | } | |||
|
1931 | .ui-datepicker table | |||
|
1932 | { | |||
|
1933 | width: 100%; | |||
|
1934 | font-size: .9em; | |||
|
1935 | border-collapse: collapse; | |||
|
1936 | margin: 0 0 .4em; | |||
|
1937 | } | |||
|
1938 | .ui-datepicker th | |||
|
1939 | { | |||
|
1940 | padding: .7em .3em; | |||
|
1941 | text-align: center; | |||
|
1942 | font-weight: bold; | |||
|
1943 | border: 0; | |||
|
1944 | } | |||
|
1945 | .ui-datepicker td | |||
|
1946 | { | |||
|
1947 | border: 0; | |||
|
1948 | padding: 1px; | |||
|
1949 | } | |||
|
1950 | .ui-datepicker td span, .ui-datepicker td a | |||
|
1951 | { | |||
|
1952 | display: block; | |||
|
1953 | padding: 2px 3px 3px; | |||
|
1954 | text-align: right; | |||
|
1955 | text-decoration: none; | |||
|
1956 | } | |||
|
1957 | .ui-datepicker .ui-datepicker-buttonpane | |||
|
1958 | { | |||
|
1959 | background-image: none; | |||
|
1960 | margin: .7em 0 0 0; | |||
|
1961 | padding: 0 .2em; | |||
|
1962 | border-left: 0; | |||
|
1963 | border-right: 0; | |||
|
1964 | border-bottom: 0; | |||
|
1965 | } | |||
|
1966 | .ui-datepicker .ui-datepicker-buttonpane button | |||
|
1967 | { | |||
|
1968 | float: right; | |||
|
1969 | margin: .5em .2em .4em; | |||
|
1970 | cursor: pointer; | |||
|
1971 | padding: .2em .6em .3em .6em; | |||
|
1972 | width: auto; | |||
|
1973 | overflow: visible; | |||
|
1974 | } | |||
|
1975 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current | |||
|
1976 | { | |||
|
1977 | float: left; | |||
|
1978 | } | |||
|
1979 | ||||
|
1980 | ||||
|
1981 | .ui-datepicker table | |||
|
1982 | { | |||
|
1983 | table-layout: fixed; | |||
|
1984 | } | |||
|
1985 | ||||
|
1986 | .ui-datepicker .ui-datepicker-calendar .ui-state-default | |||
|
1987 | { | |||
|
1988 | background: none; | |||
|
1989 | border: none; | |||
|
1990 | color: #5F83B9; | |||
|
1991 | } | |||
|
1992 | ||||
|
1993 | .ui-datepicker .ui-datepicker-calendar .ui-state-hover | |||
|
1994 | { | |||
|
1995 | color: #1C4257; | |||
|
1996 | -moz-box-shadow: none; | |||
|
1997 | -webkit-box-shadow: none; | |||
|
1998 | box-shadow: none; | |||
|
1999 | } | |||
|
2000 | ||||
|
2001 | .ui-datepicker .ui-datepicker-current-day .ui-state-highlight, .ui-datepicker .ui-datepicker-current-day .ui-state-default | |||
|
2002 | { | |||
|
2003 | background: #5F83B9; | |||
|
2004 | color: #FFFFFF !important; | |||
|
2005 | font-weight: bold; | |||
|
2006 | text-shadow: 0 1px 1px #234386; | |||
|
2007 | -moz-box-shadow: none; | |||
|
2008 | -webkit-box-shadow: none; | |||
|
2009 | box-shadow: none; | |||
|
2010 | } | |||
|
2011 | ||||
|
2012 | .ui-datepicker | |||
|
2013 | { | |||
|
2014 | padding: 0; | |||
|
2015 | } | |||
|
2016 | ||||
|
2017 | .ui-datepicker .ui-datepicker-header | |||
|
2018 | { | |||
|
2019 | background: #e3e3e3; | |||
|
2020 | background: #e3e3e3 linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
2021 | background: #e3e3e3 -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
2022 | background: #e3e3e3 -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)"; */ | |||
|
2023 | border-right: none; | |||
|
2024 | border-left: none; | |||
|
2025 | border-top: none; | |||
|
2026 | -moz-border-radius: 0; | |||
|
2027 | -webkit-border-radius: 0; | |||
|
2028 | border-radius: 0; | |||
|
2029 | } | |||
|
2030 | ||||
|
2031 | .ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover | |||
|
2032 | { | |||
|
2033 | background: none; | |||
|
2034 | border: solid 1px transparent; | |||
|
2035 | -moz-box-shadow: none; | |||
|
2036 | } | |||
|
2037 | ||||
|
2038 | ||||
|
2039 | /* with multiple calendars */ | |||
|
2040 | .ui-datepicker.ui-datepicker-multi | |||
|
2041 | { | |||
|
2042 | width: auto; | |||
|
2043 | } | |||
|
2044 | .ui-datepicker-multi .ui-datepicker-group | |||
|
2045 | { | |||
|
2046 | float: left; | |||
|
2047 | } | |||
|
2048 | .ui-datepicker-multi .ui-datepicker-group table | |||
|
2049 | { | |||
|
2050 | width: 95%; | |||
|
2051 | margin: 0 auto .4em; | |||
|
2052 | } | |||
|
2053 | .ui-datepicker-multi-2 .ui-datepicker-group | |||
|
2054 | { | |||
|
2055 | width: 50%; | |||
|
2056 | } | |||
|
2057 | .ui-datepicker-multi-3 .ui-datepicker-group | |||
|
2058 | { | |||
|
2059 | width: 33.3%; | |||
|
2060 | } | |||
|
2061 | .ui-datepicker-multi-4 .ui-datepicker-group | |||
|
2062 | { | |||
|
2063 | width: 25%; | |||
|
2064 | } | |||
|
2065 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header | |||
|
2066 | { | |||
|
2067 | border-left-width: 0; | |||
|
2068 | } | |||
|
2069 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header | |||
|
2070 | { | |||
|
2071 | border-left-width: 0; | |||
|
2072 | } | |||
|
2073 | .ui-datepicker-multi .ui-datepicker-buttonpane | |||
|
2074 | { | |||
|
2075 | clear: left; | |||
|
2076 | } | |||
|
2077 | .ui-datepicker-row-break | |||
|
2078 | { | |||
|
2079 | clear: both; | |||
|
2080 | width: 100%; | |||
|
2081 | } | |||
|
2082 | ||||
|
2083 | /* RTL support */ | |||
|
2084 | .ui-datepicker-rtl | |||
|
2085 | { | |||
|
2086 | direction: rtl; | |||
|
2087 | } | |||
|
2088 | .ui-datepicker-rtl .ui-datepicker-prev | |||
|
2089 | { | |||
|
2090 | right: 2px; | |||
|
2091 | left: auto; | |||
|
2092 | } | |||
|
2093 | .ui-datepicker-rtl .ui-datepicker-next | |||
|
2094 | { | |||
|
2095 | left: 2px; | |||
|
2096 | right: auto; | |||
|
2097 | } | |||
|
2098 | .ui-datepicker-rtl .ui-datepicker-prev:hover | |||
|
2099 | { | |||
|
2100 | right: 1px; | |||
|
2101 | left: auto; | |||
|
2102 | } | |||
|
2103 | .ui-datepicker-rtl .ui-datepicker-next:hover | |||
|
2104 | { | |||
|
2105 | left: 1px; | |||
|
2106 | right: auto; | |||
|
2107 | } | |||
|
2108 | .ui-datepicker-rtl .ui-datepicker-buttonpane | |||
|
2109 | { | |||
|
2110 | clear: right; | |||
|
2111 | } | |||
|
2112 | .ui-datepicker-rtl .ui-datepicker-buttonpane button | |||
|
2113 | { | |||
|
2114 | float: left; | |||
|
2115 | } | |||
|
2116 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current | |||
|
2117 | { | |||
|
2118 | float: right; | |||
|
2119 | } | |||
|
2120 | .ui-datepicker-rtl .ui-datepicker-group | |||
|
2121 | { | |||
|
2122 | float: right; | |||
|
2123 | } | |||
|
2124 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header | |||
|
2125 | { | |||
|
2126 | border-right-width: 0; | |||
|
2127 | border-left-width: 1px; | |||
|
2128 | } | |||
|
2129 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header | |||
|
2130 | { | |||
|
2131 | border-right-width: 0; | |||
|
2132 | border-left-width: 1px; | |||
|
2133 | } | |||
|
2134 | ||||
|
2135 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ | |||
|
2136 | .ui-datepicker-cover | |||
|
2137 | { | |||
|
2138 | display: none; /*sorry for IE5*/ | |||
|
2139 | display: /**/ block; /*sorry for IE5*/ | |||
|
2140 | position: absolute; /*must have*/ | |||
|
2141 | z-index: -1; /*must have*/ | |||
|
2142 | filter: mask(); /*must have*/ | |||
|
2143 | top: -4px; /*must have*/ | |||
|
2144 | left: -4px; /*must have*/ | |||
|
2145 | width: 200px; /*must have*/ | |||
|
2146 | height: 200px; /*must have*/ | |||
|
2147 | } | |||
|
2148 | /* | |||
|
2149 | * jQuery UI Progressbar @VERSION | |||
|
2150 | * | |||
|
2151 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
2152 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
2153 | * http://jquery.org/license | |||
|
2154 | * | |||
|
2155 | * http://docs.jquery.com/UI/Progressbar#theming | |||
|
2156 | */ | |||
|
2157 | .ui-progressbar | |||
|
2158 | { | |||
|
2159 | height: 1.1em; | |||
|
2160 | text-align: left; | |||
|
2161 | -moz-border-radius: 10px; | |||
|
2162 | -webkit-border-radius: 10px; | |||
|
2163 | border-radius: 10px; | |||
|
2164 | -moz-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
2165 | -webkit-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
2166 | box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
2167 | } | |||
|
2168 | .ui-progressbar .ui-progressbar-value | |||
|
2169 | { | |||
|
2170 | margin: -1px; | |||
|
2171 | height: 100%; | |||
|
2172 | } | |||
|
2173 | .ui-progressbar .ui-widget-header | |||
|
2174 | { | |||
|
2175 | background: #85b2cb; | |||
|
2176 | background: #85b2cb linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
2177 | background: #85b2cb -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
2178 | background: #85b2cb -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
2179 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF); | |||
|
2180 | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDFFFFFF, endColorstr=#00FFFFFF)"; | |||
|
2181 | -moz-border-radius: 10px; | |||
|
2182 | -webkit-border-radius: 10px; | |||
|
2183 | border-radius: 10px; | |||
|
2184 | } | |||
|
2185 | /* | |||
|
2186 | * jQuery UI AutoComplete @VERSION | |||
|
2187 | * | |||
|
2188 | */ | |||
|
2189 | .wijmo-wijinput, .wijmo-wijtextbox | |||
|
2190 | { | |||
|
2191 | background: #fff !important; | |||
|
2192 | -moz-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
2193 | -webkit-box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
2194 | box-shadow: inset 0 2px 2px #8f8f8f; | |||
|
2195 | } | |||
|
2196 | .wijmo-wijinput.ui-state-focus, .wijmo-wijtextbox.ui-state-focus | |||
|
2197 | { | |||
|
2198 | background: #fff !important; | |||
|
2199 | -moz-box-shadow: 0px 0px 5px #85b2cb, inset 0 2px 2px #8f8f8f; | |||
|
2200 | -webkit-box-shadow: 0px 0px 5px #85b2cb, inset 0 2px 2px #8f8f8f; | |||
|
2201 | box-shadow: 0px 0px 5px #85b2cb, inset 0 2px 2px #8f8f8f; | |||
|
2202 | } | |||
|
2203 | .ui-autocomplete | |||
|
2204 | { | |||
|
2205 | -moz-box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
2206 | -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
2207 | box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
2208 | } | |||
|
2209 | .wijmo-wijcalendar .ui-datepicker-header .ui-state-default | |||
|
2210 | { | |||
|
2211 | -moz-box-shadow: none; | |||
|
2212 | -webkit-box-shadow: none; | |||
|
2213 | box-shadow: none; | |||
|
2214 | } | |||
|
2215 | .wijmo-wijmenu | |||
|
2216 | { | |||
|
2217 | background: #c4c4c4 url(images/ui-bg_highlight-hard_80_c4c4c4_1x100.png) top repeat-x; | |||
|
2218 | background: #c4c4c4 linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
2219 | background: #c4c4c4 -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | |||
|
2220 | background: #c4c4c4 -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0)); | |||
|
2221 | } | |||
|
2222 | .wijmo-wijmenu .ui-state-default | |||
|
2223 | { | |||
|
2224 | -moz-box-shadow: none; | |||
|
2225 | -webkit-box-shadow: none; | |||
|
2226 | box-shadow: none; | |||
|
2227 | } | |||
|
2228 | ||||
|
2229 | .wijmo-wijmenu .wijmo-wijmenu-child | |||
|
2230 | { | |||
|
2231 | -moz-box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
2232 | -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
2233 | box-shadow: 0px 5px 10px rgba(0,0,0,0.8); | |||
|
2234 | } | |||
|
2235 | .wij-menu-ipod .wijmo-wijmenu-list | |||
|
2236 | { | |||
|
2237 | -moz-box-shadow: none; | |||
|
2238 | -webkit-box-shadow: none; | |||
|
2239 | box-shadow: none; | |||
|
2240 | } | |||
|
2241 | ||||
|
2242 | *html .wijmo-wijmenu .wijmo-wijsuperpanel, *html .wijmo-wijmenu .wijmo-wijmenu-list | |||
|
2243 | { | |||
|
2244 | background: none; | |||
|
2245 | } | |||
|
2246 | ||||
|
2247 | *html .wijmo-wijmenu-horizontal .wijmo-wijmenu-child | |||
|
2248 | { | |||
|
2249 | background: #ffffff; | |||
|
2250 | } | |||
|
2251 | ||||
|
2252 | ||||
|
2253 | *html .wijmo-wijmenu .wijmo-wijmenu-link | |||
|
2254 | { | |||
|
2255 | border-color: #c4c4c4; | |||
|
2256 | filter: chroma(color=#c4c4c4); | |||
|
2257 | } | |||
|
2258 | ||||
|
2259 | ||||
|
2260 | .wijmo-wijtooltip | |||
|
2261 | { | |||
|
2262 | background: #000; | |||
|
2263 | background: rgba(0,0,0,0.8); | |||
|
2264 | border: none; | |||
|
2265 | color: #fff; | |||
|
2266 | -moz-box-shadow: 0px 0px 8px #85b2cb, inset 0px 1px 0px #999; | |||
|
2267 | -webkit-box-shadow: 0px 0px 8px #85b2cb, inset 0px 1px 0px #999; | |||
|
2268 | box-shadow: 0px 0px 8px #85b2cb, inset 0px 1px 0px #999; | |||
|
2269 | } | |||
|
2270 | ||||
|
2271 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer-inner | |||
|
2272 | { | |||
|
2273 | border-right-color: #000 !important; | |||
|
2274 | } | |||
|
2275 | ||||
|
2276 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer-inner | |||
|
2277 | { | |||
|
2278 | border-left-color: #000 !important; | |||
|
2279 | } | |||
|
2280 | ||||
|
2281 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer-inner | |||
|
2282 | { | |||
|
2283 | border-top-color: #000 !important; | |||
|
2284 | } | |||
|
2285 | ||||
|
2286 | .wijmo-wijtooltip-arrow-tb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-tt .wijmo-wijtooltip-pointer-inner | |||
|
2287 | { | |||
|
2288 | border-bottom-color: #000 !important; | |||
|
2289 | } | |||
|
2290 | ||||
|
2291 | ||||
|
2292 | .wijmo-wijtooltip .wijmo-wijtooltip-pointer | |||
|
2293 | { | |||
|
2294 | opacity: 0.8; | |||
|
2295 | } |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
This diff has been collapsed as it changes many lines, (574 lines changed) Show them Hide them | |||||
@@ -0,0 +1,574 b'' | |||||
|
1 | /* | |||
|
2 | * jQuery UI CSS Framework 1.8.6 | |||
|
3 | * | |||
|
4 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
5 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
6 | * http://jquery.org/license | |||
|
7 | * | |||
|
8 | * http://docs.jquery.com/UI/Theming/API | |||
|
9 | */ | |||
|
10 | ||||
|
11 | ||||
|
12 | ||||
|
13 | /* Layout helpers | |||
|
14 | ----------------------------------*/ | |||
|
15 | .ui-helper-hidden { display: none; } | |||
|
16 | .ui-helper-hidden-accessible { position: absolute; left: -99999999px; } | |||
|
17 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } | |||
|
18 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } | |||
|
19 | .ui-helper-clearfix { display: inline-block; } | |||
|
20 | /* required comment for clearfix to work in Opera \*/ | |||
|
21 | * html .ui-helper-clearfix { height:1%; } | |||
|
22 | .ui-helper-clearfix { display:block; } | |||
|
23 | /* end clearfix */ | |||
|
24 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } | |||
|
25 | ||||
|
26 | ||||
|
27 | /* Interaction Cues | |||
|
28 | ----------------------------------*/ | |||
|
29 | .ui-state-disabled { cursor: default !important; } | |||
|
30 | ||||
|
31 | ||||
|
32 | /* Icons | |||
|
33 | ----------------------------------*/ | |||
|
34 | ||||
|
35 | /* states and images */ | |||
|
36 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } | |||
|
37 | ||||
|
38 | ||||
|
39 | /* Misc visuals | |||
|
40 | ----------------------------------*/ | |||
|
41 | ||||
|
42 | /* Overlays */ | |||
|
43 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } | |||
|
44 | ||||
|
45 | ||||
|
46 | /* | |||
|
47 | * jQuery UI CSS Framework 1.8.6 | |||
|
48 | * | |||
|
49 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
50 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
51 | * http://jquery.org/license | |||
|
52 | * | |||
|
53 | * http://docs.jquery.com/UI/Theming/API | |||
|
54 | * | |||
|
55 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Georgia,%20serif&fwDefault=normal&fsDefault=1.2em&cornerRadius=4px&bgColorHeader=32323d&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=15&borderColorHeader=515161&fcHeader=f4f4f9&iconColorHeader=f4f4f9&bgColorContent=18181f&bgTextureContent=01_flat.png&bgImgOpacityContent=100&borderColorContent=18181f&fcContent=fafafa&iconColorContent=a1ddff&bgColorDefault=191921&bgTextureDefault=03_highlight_soft.png&bgImgOpacityDefault=15&borderColorDefault=373740&fcDefault=fafafa&iconColorDefault=fafafa&bgColorHover=191921&bgTextureHover=03_highlight_soft.png&bgImgOpacityHover=35&borderColorHover=373740&fcHover=8fddff&iconColorHover=8fddff&bgColorActive=191921&bgTextureActive=05_inset_soft.png&bgImgOpacityActive=35&borderColorActive=373740&fcActive=8fddff&iconColorActive=8fddff&bgColorHighlight=3d4858&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=10&borderColorHighlight=3d4858&fcHighlight=8fddff&iconColorHighlight=8fddff&bgColorError=583d3d&bgTextureError=01_flat.png&bgImgOpacityError=100&borderColorError=583d3d&fcError=ff8f8f&iconColorError=ff8f8f&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px | |||
|
56 | */ | |||
|
57 | ||||
|
58 | ||||
|
59 | /* Component containers | |||
|
60 | ----------------------------------*/ | |||
|
61 | .ui-widget { font-family: Georgia, "Times New Roman", Times, serif; font-size: 1.2em; } | |||
|
62 | .ui-widget .ui-widget { font-size: 1em; } | |||
|
63 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Georgia, "Times New Roman", Times, serif; font-size: 1em; } | |||
|
64 | .ui-widget-content { border: 1px solid #18181f; background: #18181f url(images/ui-bg_flat_100_18181f_40x100.png) 50% 50% repeat-x; color: #dfdfe3; } | |||
|
65 | .ui-widget-content a { color: #fafafa; } | |||
|
66 | .ui-widget-header { border: 1px solid #515161; background: #32323d url(images/ui-bg_highlight-soft_15_32323d_1x100.png) 50% 50% repeat-x; color: #f4f4f9; font-weight: bold; } | |||
|
67 | .ui-widget-header a { color: #f4f4f9; } | |||
|
68 | ||||
|
69 | /* Interaction states | |||
|
70 | ----------------------------------*/ | |||
|
71 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #373740; background: #191921 url(images/ui-bg_highlight-soft_15_191921_1x100.png) 50% 50% repeat-x; font-weight: normal; color: #fafafa; } | |||
|
72 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #fafafa; text-decoration: none; } | |||
|
73 | .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #373740; background: #191921 url(images/ui-bg_highlight-soft_35_191921_1x100.png) 50% 50% repeat-x; font-weight: normal; color: #8fddff; } | |||
|
74 | .ui-state-hover a, .ui-state-hover a:hover { color: #8fddff; text-decoration: none; } | |||
|
75 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #373740; background: #191921 url(images/ui-bg_inset-soft_35_191921_1x100.png) 50% 50% repeat-x; font-weight: normal; color: #8fddff; } | |||
|
76 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #8fddff; text-decoration: none; } | |||
|
77 | .ui-widget :active { outline: none; } | |||
|
78 | ||||
|
79 | /* Interaction Cues | |||
|
80 | ----------------------------------*/ | |||
|
81 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #3d4858; background: #3d4858 url(images/ui-bg_flat_10_3d4858_40x100.png) 50% 50% repeat-x; color: #8fddff; } | |||
|
82 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #8fddff; } | |||
|
83 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #583d3d; background: #583d3d url(images/ui-bg_flat_100_583d3d_40x100.png) 50% 50% repeat-x; color: #ff8f8f; } | |||
|
84 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ff8f8f; } | |||
|
85 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ff8f8f; } | |||
|
86 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } | |||
|
87 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } | |||
|
88 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } | |||
|
89 | ||||
|
90 | /* Icons | |||
|
91 | ----------------------------------*/ | |||
|
92 | ||||
|
93 | /* states and images */ | |||
|
94 | .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_a1ddff_256x240.png); } | |||
|
95 | .ui-widget-content .ui-icon {background-image: url(images/ui-icons_a1ddff_256x240.png); } | |||
|
96 | .ui-widget-header .ui-icon {background-image: url(images/ui-icons_f4f4f9_256x240.png); } | |||
|
97 | .ui-state-default .ui-icon { background-image: url(images/ui-icons_fafafa_256x240.png); } | |||
|
98 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_8fddff_256x240.png); } | |||
|
99 | .ui-state-active .ui-icon {background-image: url(images/ui-icons_8fddff_256x240.png); } | |||
|
100 | .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_8fddff_256x240.png); } | |||
|
101 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ff8f8f_256x240.png); } | |||
|
102 | ||||
|
103 | /* positioning */ | |||
|
104 | .ui-icon-carat-1-n { background-position: 0 0; } | |||
|
105 | .ui-icon-carat-1-ne { background-position: -16px 0; } | |||
|
106 | .ui-icon-carat-1-e { background-position: -32px 0; } | |||
|
107 | .ui-icon-carat-1-se { background-position: -48px 0; } | |||
|
108 | .ui-icon-carat-1-s { background-position: -64px 0; } | |||
|
109 | .ui-icon-carat-1-sw { background-position: -80px 0; } | |||
|
110 | .ui-icon-carat-1-w { background-position: -96px 0; } | |||
|
111 | .ui-icon-carat-1-nw { background-position: -112px 0; } | |||
|
112 | .ui-icon-carat-2-n-s { background-position: -128px 0; } | |||
|
113 | .ui-icon-carat-2-e-w { background-position: -144px 0; } | |||
|
114 | .ui-icon-triangle-1-n { background-position: 0 -16px; } | |||
|
115 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } | |||
|
116 | .ui-icon-triangle-1-e { background-position: -32px -16px; } | |||
|
117 | .ui-icon-triangle-1-se { background-position: -48px -16px; } | |||
|
118 | .ui-icon-triangle-1-s { background-position: -64px -16px; } | |||
|
119 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } | |||
|
120 | .ui-icon-triangle-1-w { background-position: -96px -16px; } | |||
|
121 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } | |||
|
122 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } | |||
|
123 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } | |||
|
124 | .ui-icon-arrow-1-n { background-position: 0 -32px; } | |||
|
125 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } | |||
|
126 | .ui-icon-arrow-1-e { background-position: -32px -32px; } | |||
|
127 | .ui-icon-arrow-1-se { background-position: -48px -32px; } | |||
|
128 | .ui-icon-arrow-1-s { background-position: -64px -32px; } | |||
|
129 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } | |||
|
130 | .ui-icon-arrow-1-w { background-position: -96px -32px; } | |||
|
131 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } | |||
|
132 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } | |||
|
133 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } | |||
|
134 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } | |||
|
135 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } | |||
|
136 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } | |||
|
137 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } | |||
|
138 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } | |||
|
139 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } | |||
|
140 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } | |||
|
141 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } | |||
|
142 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } | |||
|
143 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } | |||
|
144 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } | |||
|
145 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } | |||
|
146 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } | |||
|
147 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } | |||
|
148 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } | |||
|
149 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } | |||
|
150 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } | |||
|
151 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } | |||
|
152 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } | |||
|
153 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } | |||
|
154 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } | |||
|
155 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } | |||
|
156 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } | |||
|
157 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } | |||
|
158 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } | |||
|
159 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } | |||
|
160 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } | |||
|
161 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } | |||
|
162 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } | |||
|
163 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } | |||
|
164 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } | |||
|
165 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } | |||
|
166 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } | |||
|
167 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } | |||
|
168 | .ui-icon-arrow-4 { background-position: 0 -80px; } | |||
|
169 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } | |||
|
170 | .ui-icon-extlink { background-position: -32px -80px; } | |||
|
171 | .ui-icon-newwin { background-position: -48px -80px; } | |||
|
172 | .ui-icon-refresh { background-position: -64px -80px; } | |||
|
173 | .ui-icon-shuffle { background-position: -80px -80px; } | |||
|
174 | .ui-icon-transfer-e-w { background-position: -96px -80px; } | |||
|
175 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } | |||
|
176 | .ui-icon-folder-collapsed { background-position: 0 -96px; } | |||
|
177 | .ui-icon-folder-open { background-position: -16px -96px; } | |||
|
178 | .ui-icon-document { background-position: -32px -96px; } | |||
|
179 | .ui-icon-document-b { background-position: -48px -96px; } | |||
|
180 | .ui-icon-note { background-position: -64px -96px; } | |||
|
181 | .ui-icon-mail-closed { background-position: -80px -96px; } | |||
|
182 | .ui-icon-mail-open { background-position: -96px -96px; } | |||
|
183 | .ui-icon-suitcase { background-position: -112px -96px; } | |||
|
184 | .ui-icon-comment { background-position: -128px -96px; } | |||
|
185 | .ui-icon-person { background-position: -144px -96px; } | |||
|
186 | .ui-icon-print { background-position: -160px -96px; } | |||
|
187 | .ui-icon-trash { background-position: -176px -96px; } | |||
|
188 | .ui-icon-locked { background-position: -192px -96px; } | |||
|
189 | .ui-icon-unlocked { background-position: -208px -96px; } | |||
|
190 | .ui-icon-bookmark { background-position: -224px -96px; } | |||
|
191 | .ui-icon-tag { background-position: -240px -96px; } | |||
|
192 | .ui-icon-home { background-position: 0 -112px; } | |||
|
193 | .ui-icon-flag { background-position: -16px -112px; } | |||
|
194 | .ui-icon-calendar { background-position: -32px -112px; } | |||
|
195 | .ui-icon-cart { background-position: -48px -112px; } | |||
|
196 | .ui-icon-pencil { background-position: -64px -112px; } | |||
|
197 | .ui-icon-clock { background-position: -80px -112px; } | |||
|
198 | .ui-icon-disk { background-position: -96px -112px; } | |||
|
199 | .ui-icon-calculator { background-position: -112px -112px; } | |||
|
200 | .ui-icon-zoomin { background-position: -128px -112px; } | |||
|
201 | .ui-icon-zoomout { background-position: -144px -112px; } | |||
|
202 | .ui-icon-search { background-position: -160px -112px; } | |||
|
203 | .ui-icon-wrench { background-position: -176px -112px; } | |||
|
204 | .ui-icon-gear { background-position: -192px -112px; } | |||
|
205 | .ui-icon-heart { background-position: -208px -112px; } | |||
|
206 | .ui-icon-star { background-position: -224px -112px; } | |||
|
207 | .ui-icon-link { background-position: -240px -112px; } | |||
|
208 | .ui-icon-cancel { background-position: 0 -128px; } | |||
|
209 | .ui-icon-plus { background-position: -16px -128px; } | |||
|
210 | .ui-icon-plusthick { background-position: -32px -128px; } | |||
|
211 | .ui-icon-minus { background-position: -48px -128px; } | |||
|
212 | .ui-icon-minusthick { background-position: -64px -128px; } | |||
|
213 | .ui-icon-close { background-position: -80px -128px; } | |||
|
214 | .ui-icon-closethick { background-position: -96px -128px; } | |||
|
215 | .ui-icon-key { background-position: -112px -128px; } | |||
|
216 | .ui-icon-lightbulb { background-position: -128px -128px; } | |||
|
217 | .ui-icon-scissors { background-position: -144px -128px; } | |||
|
218 | .ui-icon-clipboard { background-position: -160px -128px; } | |||
|
219 | .ui-icon-copy { background-position: -176px -128px; } | |||
|
220 | .ui-icon-contact { background-position: -192px -128px; } | |||
|
221 | .ui-icon-image { background-position: -208px -128px; } | |||
|
222 | .ui-icon-video { background-position: -224px -128px; } | |||
|
223 | .ui-icon-script { background-position: -240px -128px; } | |||
|
224 | .ui-icon-alert { background-position: 0 -144px; } | |||
|
225 | .ui-icon-info { background-position: -16px -144px; } | |||
|
226 | .ui-icon-notice { background-position: -32px -144px; } | |||
|
227 | .ui-icon-help { background-position: -48px -144px; } | |||
|
228 | .ui-icon-check { background-position: -64px -144px; } | |||
|
229 | .ui-icon-bullet { background-position: -80px -144px; } | |||
|
230 | .ui-icon-radio-off { background-position: -96px -144px; } | |||
|
231 | .ui-icon-radio-on { background-position: -112px -144px; } | |||
|
232 | .ui-icon-pin-w { background-position: -128px -144px; } | |||
|
233 | .ui-icon-pin-s { background-position: -144px -144px; } | |||
|
234 | .ui-icon-play { background-position: 0 -160px; } | |||
|
235 | .ui-icon-pause { background-position: -16px -160px; } | |||
|
236 | .ui-icon-seek-next { background-position: -32px -160px; } | |||
|
237 | .ui-icon-seek-prev { background-position: -48px -160px; } | |||
|
238 | .ui-icon-seek-end { background-position: -64px -160px; } | |||
|
239 | .ui-icon-seek-start { background-position: -80px -160px; } | |||
|
240 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ | |||
|
241 | .ui-icon-seek-first { background-position: -80px -160px; } | |||
|
242 | .ui-icon-stop { background-position: -96px -160px; } | |||
|
243 | .ui-icon-eject { background-position: -112px -160px; } | |||
|
244 | .ui-icon-volume-off { background-position: -128px -160px; } | |||
|
245 | .ui-icon-volume-on { background-position: -144px -160px; } | |||
|
246 | .ui-icon-power { background-position: 0 -176px; } | |||
|
247 | .ui-icon-signal-diag { background-position: -16px -176px; } | |||
|
248 | .ui-icon-signal { background-position: -32px -176px; } | |||
|
249 | .ui-icon-battery-0 { background-position: -48px -176px; } | |||
|
250 | .ui-icon-battery-1 { background-position: -64px -176px; } | |||
|
251 | .ui-icon-battery-2 { background-position: -80px -176px; } | |||
|
252 | .ui-icon-battery-3 { background-position: -96px -176px; } | |||
|
253 | .ui-icon-circle-plus { background-position: 0 -192px; } | |||
|
254 | .ui-icon-circle-minus { background-position: -16px -192px; } | |||
|
255 | .ui-icon-circle-close { background-position: -32px -192px; } | |||
|
256 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } | |||
|
257 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } | |||
|
258 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } | |||
|
259 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } | |||
|
260 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } | |||
|
261 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } | |||
|
262 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } | |||
|
263 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } | |||
|
264 | .ui-icon-circle-zoomin { background-position: -176px -192px; } | |||
|
265 | .ui-icon-circle-zoomout { background-position: -192px -192px; } | |||
|
266 | .ui-icon-circle-check { background-position: -208px -192px; } | |||
|
267 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } | |||
|
268 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } | |||
|
269 | .ui-icon-circlesmall-close { background-position: -32px -208px; } | |||
|
270 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } | |||
|
271 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } | |||
|
272 | .ui-icon-squaresmall-close { background-position: -80px -208px; } | |||
|
273 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } | |||
|
274 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } | |||
|
275 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } | |||
|
276 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } | |||
|
277 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } | |||
|
278 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } | |||
|
279 | ||||
|
280 | ||||
|
281 | /* Misc visuals | |||
|
282 | ----------------------------------*/ | |||
|
283 | ||||
|
284 | /* Corner radius */ | |||
|
285 | .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; } | |||
|
286 | .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; } | |||
|
287 | .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; } | |||
|
288 | .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } | |||
|
289 | .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; } | |||
|
290 | .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } | |||
|
291 | .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } | |||
|
292 | .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; } | |||
|
293 | .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } | |||
|
294 | ||||
|
295 | /* Overlays */ | |||
|
296 | .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); } | |||
|
297 | .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/* | |||
|
298 | * jQuery UI Resizable 1.8.6 | |||
|
299 | * | |||
|
300 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
301 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
302 | * http://jquery.org/license | |||
|
303 | * | |||
|
304 | * http://docs.jquery.com/UI/Resizable#theming | |||
|
305 | */ | |||
|
306 | .ui-resizable { position: relative;} | |||
|
307 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} | |||
|
308 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } | |||
|
309 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } | |||
|
310 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } | |||
|
311 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } | |||
|
312 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } | |||
|
313 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } | |||
|
314 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } | |||
|
315 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } | |||
|
316 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* | |||
|
317 | * jQuery UI Selectable 1.8.6 | |||
|
318 | * | |||
|
319 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
320 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
321 | * http://jquery.org/license | |||
|
322 | * | |||
|
323 | * http://docs.jquery.com/UI/Selectable#theming | |||
|
324 | */ | |||
|
325 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } | |||
|
326 | /* | |||
|
327 | * jQuery UI Accordion 1.8.6 | |||
|
328 | * | |||
|
329 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
330 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
331 | * http://jquery.org/license | |||
|
332 | * | |||
|
333 | * http://docs.jquery.com/UI/Accordion#theming | |||
|
334 | */ | |||
|
335 | /* IE/Win - Fix animation bug - #4615 */ | |||
|
336 | .ui-accordion { width: 100%; } | |||
|
337 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } | |||
|
338 | .ui-accordion .ui-accordion-li-fix { display: inline; } | |||
|
339 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } | |||
|
340 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } | |||
|
341 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } | |||
|
342 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } | |||
|
343 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } | |||
|
344 | .ui-accordion .ui-accordion-content-active { display: block; }/* | |||
|
345 | * jQuery UI Autocomplete 1.8.6 | |||
|
346 | * | |||
|
347 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
348 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
349 | * http://jquery.org/license | |||
|
350 | * | |||
|
351 | * http://docs.jquery.com/UI/Autocomplete#theming | |||
|
352 | */ | |||
|
353 | .ui-autocomplete { position: absolute; cursor: default; } | |||
|
354 | ||||
|
355 | /* workarounds */ | |||
|
356 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ | |||
|
357 | ||||
|
358 | /* | |||
|
359 | * jQuery UI Menu 1.8.6 | |||
|
360 | * | |||
|
361 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
362 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
363 | * http://jquery.org/license | |||
|
364 | * | |||
|
365 | * http://docs.jquery.com/UI/Menu#theming | |||
|
366 | */ | |||
|
367 | .ui-menu { | |||
|
368 | list-style:none; | |||
|
369 | padding: 2px; | |||
|
370 | margin: 0; | |||
|
371 | display:block; | |||
|
372 | float: left; | |||
|
373 | } | |||
|
374 | .ui-menu .ui-menu { | |||
|
375 | margin-top: -3px; | |||
|
376 | } | |||
|
377 | .ui-menu .ui-menu-item { | |||
|
378 | margin:0; | |||
|
379 | padding: 0; | |||
|
380 | zoom: 1; | |||
|
381 | float: left; | |||
|
382 | clear: left; | |||
|
383 | width: 100%; | |||
|
384 | } | |||
|
385 | .ui-menu .ui-menu-item a { | |||
|
386 | text-decoration:none; | |||
|
387 | display:block; | |||
|
388 | padding:.2em .4em; | |||
|
389 | line-height:1.5; | |||
|
390 | zoom:1; | |||
|
391 | } | |||
|
392 | .ui-menu .ui-menu-item a.ui-state-hover, | |||
|
393 | .ui-menu .ui-menu-item a.ui-state-active { | |||
|
394 | font-weight: normal; | |||
|
395 | margin: -1px; | |||
|
396 | } | |||
|
397 | /* | |||
|
398 | * jQuery UI Button 1.8.6 | |||
|
399 | * | |||
|
400 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
401 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
402 | * http://jquery.org/license | |||
|
403 | * | |||
|
404 | * http://docs.jquery.com/UI/Button#theming | |||
|
405 | */ | |||
|
406 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ | |||
|
407 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ | |||
|
408 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ | |||
|
409 | .ui-button-icons-only { width: 3.4em; } | |||
|
410 | button.ui-button-icons-only { width: 3.7em; } | |||
|
411 | ||||
|
412 | /*button text element */ | |||
|
413 | .ui-button .ui-button-text { display: block; line-height: 1.4; } | |||
|
414 | .ui-button-text-only .ui-button-text { padding: .4em 1em; } | |||
|
415 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } | |||
|
416 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } | |||
|
417 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } | |||
|
418 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } | |||
|
419 | /* no icon support for input elements, provide padding by default */ | |||
|
420 | input.ui-button { padding: .4em 1em; } | |||
|
421 | ||||
|
422 | /*button icon element(s) */ | |||
|
423 | .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; } | |||
|
424 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } | |||
|
425 | .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; } | |||
|
426 | .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } | |||
|
427 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } | |||
|
428 | ||||
|
429 | /*button sets*/ | |||
|
430 | .ui-buttonset { margin-right: 7px; } | |||
|
431 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } | |||
|
432 | ||||
|
433 | /* workarounds */ | |||
|
434 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ | |||
|
435 | /* | |||
|
436 | * jQuery UI Dialog 1.8.6 | |||
|
437 | * | |||
|
438 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
439 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
440 | * http://jquery.org/license | |||
|
441 | * | |||
|
442 | * http://docs.jquery.com/UI/Dialog#theming | |||
|
443 | */ | |||
|
444 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } | |||
|
445 | .ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; } | |||
|
446 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; } | |||
|
447 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } | |||
|
448 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } | |||
|
449 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } | |||
|
450 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } | |||
|
451 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } | |||
|
452 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } | |||
|
453 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } | |||
|
454 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } | |||
|
455 | .ui-draggable .ui-dialog-titlebar { cursor: move; } | |||
|
456 | /* | |||
|
457 | * jQuery UI Slider 1.8.6 | |||
|
458 | * | |||
|
459 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
460 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
461 | * http://jquery.org/license | |||
|
462 | * | |||
|
463 | * http://docs.jquery.com/UI/Slider#theming | |||
|
464 | */ | |||
|
465 | .ui-slider { position: relative; text-align: left; } | |||
|
466 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } | |||
|
467 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } | |||
|
468 | ||||
|
469 | .ui-slider-horizontal { height: .8em; } | |||
|
470 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } | |||
|
471 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } | |||
|
472 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } | |||
|
473 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } | |||
|
474 | ||||
|
475 | .ui-slider-vertical { width: .8em; height: 100px; } | |||
|
476 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } | |||
|
477 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } | |||
|
478 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } | |||
|
479 | .ui-slider-vertical .ui-slider-range-max { top: 0; }/* | |||
|
480 | * jQuery UI Tabs 1.8.6 | |||
|
481 | * | |||
|
482 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
483 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
484 | * http://jquery.org/license | |||
|
485 | * | |||
|
486 | * http://docs.jquery.com/UI/Tabs#theming | |||
|
487 | */ | |||
|
488 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | |||
|
489 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } | |||
|
490 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } | |||
|
491 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } | |||
|
492 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } | |||
|
493 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } | |||
|
494 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ | |||
|
495 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } | |||
|
496 | .ui-tabs .ui-tabs-hide { display: none !important; } | |||
|
497 | /* | |||
|
498 | * jQuery UI Datepicker 1.8.6 | |||
|
499 | * | |||
|
500 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
501 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
502 | * http://jquery.org/license | |||
|
503 | * | |||
|
504 | * http://docs.jquery.com/UI/Datepicker#theming | |||
|
505 | */ | |||
|
506 | .ui-datepicker { width: 17em; padding: .2em .2em 0; } | |||
|
507 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } | |||
|
508 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } | |||
|
509 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } | |||
|
510 | .ui-datepicker .ui-datepicker-prev { left:2px; } | |||
|
511 | .ui-datepicker .ui-datepicker-next { right:2px; } | |||
|
512 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; } | |||
|
513 | .ui-datepicker .ui-datepicker-next-hover { right:1px; } | |||
|
514 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } | |||
|
515 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } | |||
|
516 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } | |||
|
517 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} | |||
|
518 | .ui-datepicker select.ui-datepicker-month, | |||
|
519 | .ui-datepicker select.ui-datepicker-year { width: 49%;} | |||
|
520 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } | |||
|
521 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } | |||
|
522 | .ui-datepicker td { border: 0; padding: 1px; } | |||
|
523 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } | |||
|
524 | .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } | |||
|
525 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } | |||
|
526 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } | |||
|
527 | ||||
|
528 | /* with multiple calendars */ | |||
|
529 | .ui-datepicker.ui-datepicker-multi { width:auto; } | |||
|
530 | .ui-datepicker-multi .ui-datepicker-group { float:left; } | |||
|
531 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } | |||
|
532 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } | |||
|
533 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } | |||
|
534 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } | |||
|
535 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } | |||
|
536 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } | |||
|
537 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } | |||
|
538 | .ui-datepicker-row-break { clear:both; width:100%; } | |||
|
539 | ||||
|
540 | /* RTL support */ | |||
|
541 | .ui-datepicker-rtl { direction: rtl; } | |||
|
542 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } | |||
|
543 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } | |||
|
544 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } | |||
|
545 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } | |||
|
546 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } | |||
|
547 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } | |||
|
548 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } | |||
|
549 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } | |||
|
550 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } | |||
|
551 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } | |||
|
552 | ||||
|
553 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ | |||
|
554 | .ui-datepicker-cover { | |||
|
555 | display: none; /*sorry for IE5*/ | |||
|
556 | display/**/: block; /*sorry for IE5*/ | |||
|
557 | position: absolute; /*must have*/ | |||
|
558 | z-index: -1; /*must have*/ | |||
|
559 | filter: mask(); /*must have*/ | |||
|
560 | top: -4px; /*must have*/ | |||
|
561 | left: -4px; /*must have*/ | |||
|
562 | width: 200px; /*must have*/ | |||
|
563 | height: 200px; /*must have*/ | |||
|
564 | }/* | |||
|
565 | * jQuery UI Progressbar 1.8.6 | |||
|
566 | * | |||
|
567 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
568 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
569 | * http://jquery.org/license | |||
|
570 | * | |||
|
571 | * http://docs.jquery.com/UI/Progressbar#theming | |||
|
572 | */ | |||
|
573 | .ui-progressbar { height:2em; text-align: left; } | |||
|
574 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
This diff has been collapsed as it changes many lines, (2312 lines changed) Show them Hide them | |||||
@@ -0,0 +1,2312 b'' | |||||
|
1 | /* | |||
|
2 | * | |||
|
3 | * Wijmo Rocket Theme | |||
|
4 | * http://wijmo.com/ | |||
|
5 | * | |||
|
6 | * Copyright(c) ComponentOne, LLC. All rights reserved. | |||
|
7 | * | |||
|
8 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
9 | * licensing@wijmo.com | |||
|
10 | * http://wijmo.com/license | |||
|
11 | * | |||
|
12 | * | |||
|
13 | */ | |||
|
14 | ||||
|
15 | /* Layout helpers | |||
|
16 | ----------------------------------*/ | |||
|
17 | .ui-helper-hidden | |||
|
18 | { | |||
|
19 | display: none; | |||
|
20 | } | |||
|
21 | .ui-helper-hidden-accessible | |||
|
22 | { | |||
|
23 | position: absolute !important; | |||
|
24 | clip: rect(1px 1px 1px 1px); | |||
|
25 | clip: rect(1px,1px,1px,1px); | |||
|
26 | } | |||
|
27 | .ui-helper-reset | |||
|
28 | { | |||
|
29 | margin: 0; | |||
|
30 | padding: 0; | |||
|
31 | border: 0; | |||
|
32 | outline: 0; | |||
|
33 | line-height: 1.3; | |||
|
34 | text-decoration: none; | |||
|
35 | font-size: 100%; | |||
|
36 | list-style: none; | |||
|
37 | } | |||
|
38 | .ui-helper-clearfix:after | |||
|
39 | { | |||
|
40 | content: "."; | |||
|
41 | display: block; | |||
|
42 | height: 0; | |||
|
43 | clear: both; | |||
|
44 | visibility: hidden; | |||
|
45 | } | |||
|
46 | .ui-helper-clearfix | |||
|
47 | { | |||
|
48 | display: inline-block; | |||
|
49 | } | |||
|
50 | /* required comment for clearfix to work in Opera \*/ | |||
|
51 | * html .ui-helper-clearfix | |||
|
52 | { | |||
|
53 | height: 1%; | |||
|
54 | } | |||
|
55 | .ui-helper-clearfix | |||
|
56 | { | |||
|
57 | display: block; | |||
|
58 | } | |||
|
59 | /* end clearfix */ | |||
|
60 | .ui-helper-zfix | |||
|
61 | { | |||
|
62 | width: 100%; | |||
|
63 | height: 100%; | |||
|
64 | top: 0; | |||
|
65 | left: 0; | |||
|
66 | position: absolute; | |||
|
67 | opacity: 0; | |||
|
68 | filter: Alpha(Opacity=0); | |||
|
69 | } | |||
|
70 | ||||
|
71 | ||||
|
72 | /* Interaction Cues | |||
|
73 | ----------------------------------*/ | |||
|
74 | .ui-state-disabled | |||
|
75 | { | |||
|
76 | cursor: default !important; | |||
|
77 | } | |||
|
78 | ||||
|
79 | ||||
|
80 | /* Icons | |||
|
81 | ----------------------------------*/ | |||
|
82 | ||||
|
83 | /* states and images */ | |||
|
84 | .ui-icon | |||
|
85 | { | |||
|
86 | display: block; | |||
|
87 | text-indent: -99999px; | |||
|
88 | overflow: hidden; | |||
|
89 | background-repeat: no-repeat; | |||
|
90 | } | |||
|
91 | ||||
|
92 | ||||
|
93 | /* Misc visuals | |||
|
94 | ----------------------------------*/ | |||
|
95 | ||||
|
96 | /* Overlays */ | |||
|
97 | .ui-widget-overlay | |||
|
98 | { | |||
|
99 | position: absolute; | |||
|
100 | top: 0; | |||
|
101 | left: 0; | |||
|
102 | width: 100%; | |||
|
103 | height: 100%; | |||
|
104 | } | |||
|
105 | ||||
|
106 | ||||
|
107 | /* | |||
|
108 | * jQuery UI CSS Framework 1.8.7 | |||
|
109 | * | |||
|
110 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
111 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
112 | * http://jquery.org/license | |||
|
113 | * | |||
|
114 | * http://docs.jquery.com/UI/Theming/API | |||
|
115 | * | |||
|
116 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial,%20Helvetica,%20sans-serif&fwDefault=normal&fsDefault=1.2em&cornerRadius=4px&bgColorHeader=242122&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=15&borderColorHeader=404040&fcHeader=f4f4f9&iconColorHeader=f4f4f9&bgColorContent=f1f1f1&bgTextureContent=01_flat.png&bgImgOpacityContent=100&borderColorContent=e3e3e3&fcContent=404040&iconColorContent=00a6dd&bgColorDefault=242122&bgTextureDefault=03_highlight_soft.png&bgImgOpacityDefault=15&borderColorDefault=404040&fcDefault=fafafa&iconColorDefault=00a6dd&bgColorHover=00a6dd&bgTextureHover=03_highlight_soft.png&bgImgOpacityHover=35&borderColorHover=00a6dd&fcHover=fafafa&iconColorHover=fafafa&bgColorActive=242122&bgTextureActive=05_inset_soft.png&bgImgOpacityActive=15&borderColorActive=404040&fcActive=f1f1f1&iconColorActive=00a6dd&bgColorHighlight=9eca38&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=15&borderColorHighlight=9eca38&fcHighlight=eaffb9&iconColorHighlight=eaffb9&bgColorError=ca3838&bgTextureError=03_highlight_soft.png&bgImgOpacityError=15&borderColorError=ca3838&fcError=ff8f8f&iconColorError=ff8f8f&bgColorOverlay=00a6dd&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=50&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px | |||
|
117 | */ | |||
|
118 | ||||
|
119 | ||||
|
120 | /* Component containers | |||
|
121 | ----------------------------------*/ | |||
|
122 | .ui-widget | |||
|
123 | { | |||
|
124 | font-family: Arial, Helvetica, sans-serif; | |||
|
125 | font-size: 1.2em; | |||
|
126 | } | |||
|
127 | .ui-widget .ui-widget | |||
|
128 | { | |||
|
129 | font-size: 1em; | |||
|
130 | } | |||
|
131 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button | |||
|
132 | { | |||
|
133 | font-family: Arial, Helvetica, sans-serif; | |||
|
134 | font-size: 1em; | |||
|
135 | } | |||
|
136 | .ui-widget-content | |||
|
137 | { | |||
|
138 | border: 1px solid #e3e3e3; | |||
|
139 | background: #f1f1f1 url(images/ui-bg_flat_100_f1f1f1_40x100.png) 50% 50% repeat-x; | |||
|
140 | color: #404040; | |||
|
141 | } | |||
|
142 | .ui-widget-content a | |||
|
143 | { | |||
|
144 | color: #404040; | |||
|
145 | } | |||
|
146 | .ui-widget-header | |||
|
147 | { | |||
|
148 | border: 1px solid #404040; | |||
|
149 | background: #242122 url(images/ui-bg_highlight-soft_15_242122_1x100.png) 50% 50% repeat-x; | |||
|
150 | color: #f4f4f9; | |||
|
151 | font-weight: bold; | |||
|
152 | } | |||
|
153 | .ui-widget-header a | |||
|
154 | { | |||
|
155 | color: #f4f4f9; | |||
|
156 | } | |||
|
157 | ||||
|
158 | /* Interaction states | |||
|
159 | ----------------------------------*/ | |||
|
160 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default | |||
|
161 | { | |||
|
162 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
163 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
164 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
165 | border: 1px solid #404040; | |||
|
166 | background: #242122 url(images/ui-bg_highlight-soft_15_242122_1x100.png) 50% 50% repeat-x; | |||
|
167 | font-weight: normal; | |||
|
168 | color: #fafafa; | |||
|
169 | } | |||
|
170 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited | |||
|
171 | { | |||
|
172 | color: #fafafa; | |||
|
173 | text-decoration: none; | |||
|
174 | } | |||
|
175 | .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus | |||
|
176 | { | |||
|
177 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
178 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
179 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
180 | border: 1px solid #00a6dd; | |||
|
181 | background: #00a6dd url(images/ui-bg_highlight-soft_35_00a6dd_1x100.png) 50% 50% repeat-x; | |||
|
182 | font-weight: normal; | |||
|
183 | color: #fafafa; | |||
|
184 | } | |||
|
185 | .ui-state-hover a, .ui-state-hover a:hover | |||
|
186 | { | |||
|
187 | color: #fafafa; | |||
|
188 | text-decoration: none; | |||
|
189 | } | |||
|
190 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active | |||
|
191 | { | |||
|
192 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
193 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
194 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
195 | border: 1px solid transparent; | |||
|
196 | background: #606154 url(images/ui-bg_highlight-soft_15_333333_1x100.png) top repeat-x; | |||
|
197 | font-weight: normal; | |||
|
198 | color: #fafafa; | |||
|
199 | } | |||
|
200 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited | |||
|
201 | { | |||
|
202 | color: #fafafa; | |||
|
203 | text-decoration: none; | |||
|
204 | } | |||
|
205 | .ui-widget :active | |||
|
206 | { | |||
|
207 | outline: none; | |||
|
208 | } | |||
|
209 | ||||
|
210 | /* Interaction Cues | |||
|
211 | ----------------------------------*/ | |||
|
212 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight | |||
|
213 | { | |||
|
214 | background: #9eca38 url(images/ui-bg_highlight-soft_15_9eca38_1x100.png) 50% 50% repeat-x; | |||
|
215 | border: 1px solid #9eca38; | |||
|
216 | color: #304915; | |||
|
217 | -moz-box-shadow: inset 0px 1px 0 rgba(255,255,255,0.15); | |||
|
218 | -webkit-box-shadow: inset 0px 1px 0 rgba(255,255,255,0.15); | |||
|
219 | box-shadow: inset 0px 1px 0 rgba(255,255,255,0.15); | |||
|
220 | text-shadow: 1px 1px 0 rgba(255,255,255,0.50); | |||
|
221 | } | |||
|
222 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a | |||
|
223 | { | |||
|
224 | color: #eaffb9; | |||
|
225 | } | |||
|
226 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error | |||
|
227 | { | |||
|
228 | border: 1px solid #ca3838; | |||
|
229 | background: #ca3838 url(images/ui-bg_highlight-soft_15_ca3838_1x100.png) 50% top repeat-x; | |||
|
230 | color: #fafafa; | |||
|
231 | -moz-box-shadow: inset 0px 1px 0 rgba(255,255,255,0.15); | |||
|
232 | -webkit-box-shadow: inset 0px 1px 0 rgba(255,255,255,0.15); | |||
|
233 | box-shadow: inset 0px 1px 0 rgba(255,255,255,0.15); | |||
|
234 | } | |||
|
235 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a | |||
|
236 | { | |||
|
237 | color: #ff8f8f; | |||
|
238 | } | |||
|
239 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text | |||
|
240 | { | |||
|
241 | color: #ff8f8f; | |||
|
242 | } | |||
|
243 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary | |||
|
244 | { | |||
|
245 | font-weight: bold; | |||
|
246 | } | |||
|
247 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary | |||
|
248 | { | |||
|
249 | opacity: .7; | |||
|
250 | filter: Alpha(Opacity=70); | |||
|
251 | font-weight: normal; | |||
|
252 | } | |||
|
253 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled | |||
|
254 | { | |||
|
255 | opacity: .35; | |||
|
256 | filter: Alpha(Opacity=35); | |||
|
257 | background-image: none; | |||
|
258 | } | |||
|
259 | ||||
|
260 | /* Icons | |||
|
261 | ----------------------------------*/ | |||
|
262 | ||||
|
263 | /* states and images */ | |||
|
264 | .ui-icon | |||
|
265 | { | |||
|
266 | width: 16px; | |||
|
267 | height: 16px; | |||
|
268 | background-image: url(images/ui-icons_00a6dd_256x240.png); | |||
|
269 | } | |||
|
270 | .ui-widget-content .ui-icon | |||
|
271 | { | |||
|
272 | background-image: url(images/ui-icons_00a6dd_256x240.png); | |||
|
273 | } | |||
|
274 | .ui-widget-header .ui-icon | |||
|
275 | { | |||
|
276 | background-image: url(images/ui-icons_f4f4f9_256x240.png); | |||
|
277 | } | |||
|
278 | .ui-state-default .ui-icon | |||
|
279 | { | |||
|
280 | background-image: url(images/ui-icons_00a6dd_256x240.png); | |||
|
281 | } | |||
|
282 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon | |||
|
283 | { | |||
|
284 | background-image: url(images/ui-icons_fafafa_256x240.png); | |||
|
285 | } | |||
|
286 | .ui-state-active .ui-icon | |||
|
287 | { | |||
|
288 | background-image: url(images/ui-icons_00a6dd_256x240.png); | |||
|
289 | } | |||
|
290 | .ui-state-highlight .ui-icon | |||
|
291 | { | |||
|
292 | background-image: url(images/ui-icons_304915_256x240.png); | |||
|
293 | } | |||
|
294 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon | |||
|
295 | { | |||
|
296 | background-image: url(images/ui-icons_ff8f8f_256x240.png); | |||
|
297 | } | |||
|
298 | ||||
|
299 | /* positioning */ | |||
|
300 | .ui-icon-carat-1-n | |||
|
301 | { | |||
|
302 | background-position: 0 0; | |||
|
303 | } | |||
|
304 | .ui-icon-carat-1-ne | |||
|
305 | { | |||
|
306 | background-position: -16px 0; | |||
|
307 | } | |||
|
308 | .ui-icon-carat-1-e | |||
|
309 | { | |||
|
310 | background-position: -32px 0; | |||
|
311 | } | |||
|
312 | .ui-icon-carat-1-se | |||
|
313 | { | |||
|
314 | background-position: -48px 0; | |||
|
315 | } | |||
|
316 | .ui-icon-carat-1-s | |||
|
317 | { | |||
|
318 | background-position: -64px 0; | |||
|
319 | } | |||
|
320 | .ui-icon-carat-1-sw | |||
|
321 | { | |||
|
322 | background-position: -80px 0; | |||
|
323 | } | |||
|
324 | .ui-icon-carat-1-w | |||
|
325 | { | |||
|
326 | background-position: -96px 0; | |||
|
327 | } | |||
|
328 | .ui-icon-carat-1-nw | |||
|
329 | { | |||
|
330 | background-position: -112px 0; | |||
|
331 | } | |||
|
332 | .ui-icon-carat-2-n-s | |||
|
333 | { | |||
|
334 | background-position: -128px 0; | |||
|
335 | } | |||
|
336 | .ui-icon-carat-2-e-w | |||
|
337 | { | |||
|
338 | background-position: -144px 0; | |||
|
339 | } | |||
|
340 | .ui-icon-triangle-1-n | |||
|
341 | { | |||
|
342 | background-position: 0 -16px; | |||
|
343 | } | |||
|
344 | .ui-icon-triangle-1-ne | |||
|
345 | { | |||
|
346 | background-position: -16px -16px; | |||
|
347 | } | |||
|
348 | .ui-icon-triangle-1-e | |||
|
349 | { | |||
|
350 | background-position: -32px -16px; | |||
|
351 | } | |||
|
352 | .ui-icon-triangle-1-se | |||
|
353 | { | |||
|
354 | background-position: -48px -16px; | |||
|
355 | } | |||
|
356 | .ui-icon-triangle-1-s | |||
|
357 | { | |||
|
358 | background-position: -64px -16px; | |||
|
359 | } | |||
|
360 | .ui-icon-triangle-1-sw | |||
|
361 | { | |||
|
362 | background-position: -80px -16px; | |||
|
363 | } | |||
|
364 | .ui-icon-triangle-1-w | |||
|
365 | { | |||
|
366 | background-position: -96px -16px; | |||
|
367 | } | |||
|
368 | .ui-icon-triangle-1-nw | |||
|
369 | { | |||
|
370 | background-position: -112px -16px; | |||
|
371 | } | |||
|
372 | .ui-icon-triangle-2-n-s | |||
|
373 | { | |||
|
374 | background-position: -128px -16px; | |||
|
375 | } | |||
|
376 | .ui-icon-triangle-2-e-w | |||
|
377 | { | |||
|
378 | background-position: -144px -16px; | |||
|
379 | } | |||
|
380 | .ui-icon-arrow-1-n | |||
|
381 | { | |||
|
382 | background-position: 0 -32px; | |||
|
383 | } | |||
|
384 | .ui-icon-arrow-1-ne | |||
|
385 | { | |||
|
386 | background-position: -16px -32px; | |||
|
387 | } | |||
|
388 | .ui-icon-arrow-1-e | |||
|
389 | { | |||
|
390 | background-position: -32px -32px; | |||
|
391 | } | |||
|
392 | .ui-icon-arrow-1-se | |||
|
393 | { | |||
|
394 | background-position: -48px -32px; | |||
|
395 | } | |||
|
396 | .ui-icon-arrow-1-s | |||
|
397 | { | |||
|
398 | background-position: -64px -32px; | |||
|
399 | } | |||
|
400 | .ui-icon-arrow-1-sw | |||
|
401 | { | |||
|
402 | background-position: -80px -32px; | |||
|
403 | } | |||
|
404 | .ui-icon-arrow-1-w | |||
|
405 | { | |||
|
406 | background-position: -96px -32px; | |||
|
407 | } | |||
|
408 | .ui-icon-arrow-1-nw | |||
|
409 | { | |||
|
410 | background-position: -112px -32px; | |||
|
411 | } | |||
|
412 | .ui-icon-arrow-2-n-s | |||
|
413 | { | |||
|
414 | background-position: -128px -32px; | |||
|
415 | } | |||
|
416 | .ui-icon-arrow-2-ne-sw | |||
|
417 | { | |||
|
418 | background-position: -144px -32px; | |||
|
419 | } | |||
|
420 | .ui-icon-arrow-2-e-w | |||
|
421 | { | |||
|
422 | background-position: -160px -32px; | |||
|
423 | } | |||
|
424 | .ui-icon-arrow-2-se-nw | |||
|
425 | { | |||
|
426 | background-position: -176px -32px; | |||
|
427 | } | |||
|
428 | .ui-icon-arrowstop-1-n | |||
|
429 | { | |||
|
430 | background-position: -192px -32px; | |||
|
431 | } | |||
|
432 | .ui-icon-arrowstop-1-e | |||
|
433 | { | |||
|
434 | background-position: -208px -32px; | |||
|
435 | } | |||
|
436 | .ui-icon-arrowstop-1-s | |||
|
437 | { | |||
|
438 | background-position: -224px -32px; | |||
|
439 | } | |||
|
440 | .ui-icon-arrowstop-1-w | |||
|
441 | { | |||
|
442 | background-position: -240px -32px; | |||
|
443 | } | |||
|
444 | .ui-icon-arrowthick-1-n | |||
|
445 | { | |||
|
446 | background-position: 0 -48px; | |||
|
447 | } | |||
|
448 | .ui-icon-arrowthick-1-ne | |||
|
449 | { | |||
|
450 | background-position: -16px -48px; | |||
|
451 | } | |||
|
452 | .ui-icon-arrowthick-1-e | |||
|
453 | { | |||
|
454 | background-position: -32px -48px; | |||
|
455 | } | |||
|
456 | .ui-icon-arrowthick-1-se | |||
|
457 | { | |||
|
458 | background-position: -48px -48px; | |||
|
459 | } | |||
|
460 | .ui-icon-arrowthick-1-s | |||
|
461 | { | |||
|
462 | background-position: -64px -48px; | |||
|
463 | } | |||
|
464 | .ui-icon-arrowthick-1-sw | |||
|
465 | { | |||
|
466 | background-position: -80px -48px; | |||
|
467 | } | |||
|
468 | .ui-icon-arrowthick-1-w | |||
|
469 | { | |||
|
470 | background-position: -96px -48px; | |||
|
471 | } | |||
|
472 | .ui-icon-arrowthick-1-nw | |||
|
473 | { | |||
|
474 | background-position: -112px -48px; | |||
|
475 | } | |||
|
476 | .ui-icon-arrowthick-2-n-s | |||
|
477 | { | |||
|
478 | background-position: -128px -48px; | |||
|
479 | } | |||
|
480 | .ui-icon-arrowthick-2-ne-sw | |||
|
481 | { | |||
|
482 | background-position: -144px -48px; | |||
|
483 | } | |||
|
484 | .ui-icon-arrowthick-2-e-w | |||
|
485 | { | |||
|
486 | background-position: -160px -48px; | |||
|
487 | } | |||
|
488 | .ui-icon-arrowthick-2-se-nw | |||
|
489 | { | |||
|
490 | background-position: -176px -48px; | |||
|
491 | } | |||
|
492 | .ui-icon-arrowthickstop-1-n | |||
|
493 | { | |||
|
494 | background-position: -192px -48px; | |||
|
495 | } | |||
|
496 | .ui-icon-arrowthickstop-1-e | |||
|
497 | { | |||
|
498 | background-position: -208px -48px; | |||
|
499 | } | |||
|
500 | .ui-icon-arrowthickstop-1-s | |||
|
501 | { | |||
|
502 | background-position: -224px -48px; | |||
|
503 | } | |||
|
504 | .ui-icon-arrowthickstop-1-w | |||
|
505 | { | |||
|
506 | background-position: -240px -48px; | |||
|
507 | } | |||
|
508 | .ui-icon-arrowreturnthick-1-w | |||
|
509 | { | |||
|
510 | background-position: 0 -64px; | |||
|
511 | } | |||
|
512 | .ui-icon-arrowreturnthick-1-n | |||
|
513 | { | |||
|
514 | background-position: -16px -64px; | |||
|
515 | } | |||
|
516 | .ui-icon-arrowreturnthick-1-e | |||
|
517 | { | |||
|
518 | background-position: -32px -64px; | |||
|
519 | } | |||
|
520 | .ui-icon-arrowreturnthick-1-s | |||
|
521 | { | |||
|
522 | background-position: -48px -64px; | |||
|
523 | } | |||
|
524 | .ui-icon-arrowreturn-1-w | |||
|
525 | { | |||
|
526 | background-position: -64px -64px; | |||
|
527 | } | |||
|
528 | .ui-icon-arrowreturn-1-n | |||
|
529 | { | |||
|
530 | background-position: -80px -64px; | |||
|
531 | } | |||
|
532 | .ui-icon-arrowreturn-1-e | |||
|
533 | { | |||
|
534 | background-position: -96px -64px; | |||
|
535 | } | |||
|
536 | .ui-icon-arrowreturn-1-s | |||
|
537 | { | |||
|
538 | background-position: -112px -64px; | |||
|
539 | } | |||
|
540 | .ui-icon-arrowrefresh-1-w | |||
|
541 | { | |||
|
542 | background-position: -128px -64px; | |||
|
543 | } | |||
|
544 | .ui-icon-arrowrefresh-1-n | |||
|
545 | { | |||
|
546 | background-position: -144px -64px; | |||
|
547 | } | |||
|
548 | .ui-icon-arrowrefresh-1-e | |||
|
549 | { | |||
|
550 | background-position: -160px -64px; | |||
|
551 | } | |||
|
552 | .ui-icon-arrowrefresh-1-s | |||
|
553 | { | |||
|
554 | background-position: -176px -64px; | |||
|
555 | } | |||
|
556 | .ui-icon-arrow-4 | |||
|
557 | { | |||
|
558 | background-position: 0 -80px; | |||
|
559 | } | |||
|
560 | .ui-icon-arrow-4-diag | |||
|
561 | { | |||
|
562 | background-position: -16px -80px; | |||
|
563 | } | |||
|
564 | .ui-icon-extlink | |||
|
565 | { | |||
|
566 | background-position: -32px -80px; | |||
|
567 | } | |||
|
568 | .ui-icon-newwin | |||
|
569 | { | |||
|
570 | background-position: -48px -80px; | |||
|
571 | } | |||
|
572 | .ui-icon-refresh | |||
|
573 | { | |||
|
574 | background-position: -64px -80px; | |||
|
575 | } | |||
|
576 | .ui-icon-shuffle | |||
|
577 | { | |||
|
578 | background-position: -80px -80px; | |||
|
579 | } | |||
|
580 | .ui-icon-transfer-e-w | |||
|
581 | { | |||
|
582 | background-position: -96px -80px; | |||
|
583 | } | |||
|
584 | .ui-icon-transferthick-e-w | |||
|
585 | { | |||
|
586 | background-position: -112px -80px; | |||
|
587 | } | |||
|
588 | .ui-icon-folder-collapsed | |||
|
589 | { | |||
|
590 | background-position: 0 -96px; | |||
|
591 | } | |||
|
592 | .ui-icon-folder-open | |||
|
593 | { | |||
|
594 | background-position: -16px -96px; | |||
|
595 | } | |||
|
596 | .ui-icon-document | |||
|
597 | { | |||
|
598 | background-position: -32px -96px; | |||
|
599 | } | |||
|
600 | .ui-icon-document-b | |||
|
601 | { | |||
|
602 | background-position: -48px -96px; | |||
|
603 | } | |||
|
604 | .ui-icon-note | |||
|
605 | { | |||
|
606 | background-position: -64px -96px; | |||
|
607 | } | |||
|
608 | .ui-icon-mail-closed | |||
|
609 | { | |||
|
610 | background-position: -80px -96px; | |||
|
611 | } | |||
|
612 | .ui-icon-mail-open | |||
|
613 | { | |||
|
614 | background-position: -96px -96px; | |||
|
615 | } | |||
|
616 | .ui-icon-suitcase | |||
|
617 | { | |||
|
618 | background-position: -112px -96px; | |||
|
619 | } | |||
|
620 | .ui-icon-comment | |||
|
621 | { | |||
|
622 | background-position: -128px -96px; | |||
|
623 | } | |||
|
624 | .ui-icon-person | |||
|
625 | { | |||
|
626 | background-position: -144px -96px; | |||
|
627 | } | |||
|
628 | .ui-icon-print | |||
|
629 | { | |||
|
630 | background-position: -160px -96px; | |||
|
631 | } | |||
|
632 | .ui-icon-trash | |||
|
633 | { | |||
|
634 | background-position: -176px -96px; | |||
|
635 | } | |||
|
636 | .ui-icon-locked | |||
|
637 | { | |||
|
638 | background-position: -192px -96px; | |||
|
639 | } | |||
|
640 | .ui-icon-unlocked | |||
|
641 | { | |||
|
642 | background-position: -208px -96px; | |||
|
643 | } | |||
|
644 | .ui-icon-bookmark | |||
|
645 | { | |||
|
646 | background-position: -224px -96px; | |||
|
647 | } | |||
|
648 | .ui-icon-tag | |||
|
649 | { | |||
|
650 | background-position: -240px -96px; | |||
|
651 | } | |||
|
652 | .ui-icon-home | |||
|
653 | { | |||
|
654 | background-position: 0 -112px; | |||
|
655 | } | |||
|
656 | .ui-icon-flag | |||
|
657 | { | |||
|
658 | background-position: -16px -112px; | |||
|
659 | } | |||
|
660 | .ui-icon-calendar | |||
|
661 | { | |||
|
662 | background-position: -32px -112px; | |||
|
663 | } | |||
|
664 | .ui-icon-cart | |||
|
665 | { | |||
|
666 | background-position: -48px -112px; | |||
|
667 | } | |||
|
668 | .ui-icon-pencil | |||
|
669 | { | |||
|
670 | background-position: -64px -112px; | |||
|
671 | } | |||
|
672 | .ui-icon-clock | |||
|
673 | { | |||
|
674 | background-position: -80px -112px; | |||
|
675 | } | |||
|
676 | .ui-icon-disk | |||
|
677 | { | |||
|
678 | background-position: -96px -112px; | |||
|
679 | } | |||
|
680 | .ui-icon-calculator | |||
|
681 | { | |||
|
682 | background-position: -112px -112px; | |||
|
683 | } | |||
|
684 | .ui-icon-zoomin | |||
|
685 | { | |||
|
686 | background-position: -128px -112px; | |||
|
687 | } | |||
|
688 | .ui-icon-zoomout | |||
|
689 | { | |||
|
690 | background-position: -144px -112px; | |||
|
691 | } | |||
|
692 | .ui-icon-search | |||
|
693 | { | |||
|
694 | background-position: -160px -112px; | |||
|
695 | } | |||
|
696 | .ui-icon-wrench | |||
|
697 | { | |||
|
698 | background-position: -176px -112px; | |||
|
699 | } | |||
|
700 | .ui-icon-gear | |||
|
701 | { | |||
|
702 | background-position: -192px -112px; | |||
|
703 | } | |||
|
704 | .ui-icon-heart | |||
|
705 | { | |||
|
706 | background-position: -208px -112px; | |||
|
707 | } | |||
|
708 | .ui-icon-star | |||
|
709 | { | |||
|
710 | background-position: -224px -112px; | |||
|
711 | } | |||
|
712 | .ui-icon-link | |||
|
713 | { | |||
|
714 | background-position: -240px -112px; | |||
|
715 | } | |||
|
716 | .ui-icon-cancel | |||
|
717 | { | |||
|
718 | background-position: 0 -128px; | |||
|
719 | } | |||
|
720 | .ui-icon-plus | |||
|
721 | { | |||
|
722 | background-position: -16px -128px; | |||
|
723 | } | |||
|
724 | .ui-icon-plusthick | |||
|
725 | { | |||
|
726 | background-position: -32px -128px; | |||
|
727 | } | |||
|
728 | .ui-icon-minus | |||
|
729 | { | |||
|
730 | background-position: -48px -128px; | |||
|
731 | } | |||
|
732 | .ui-icon-minusthick | |||
|
733 | { | |||
|
734 | background-position: -64px -128px; | |||
|
735 | } | |||
|
736 | .ui-icon-close | |||
|
737 | { | |||
|
738 | background-position: -80px -128px; | |||
|
739 | } | |||
|
740 | .ui-icon-closethick | |||
|
741 | { | |||
|
742 | background-position: -96px -128px; | |||
|
743 | } | |||
|
744 | .ui-icon-key | |||
|
745 | { | |||
|
746 | background-position: -112px -128px; | |||
|
747 | } | |||
|
748 | .ui-icon-lightbulb | |||
|
749 | { | |||
|
750 | background-position: -128px -128px; | |||
|
751 | } | |||
|
752 | .ui-icon-scissors | |||
|
753 | { | |||
|
754 | background-position: -144px -128px; | |||
|
755 | } | |||
|
756 | .ui-icon-clipboard | |||
|
757 | { | |||
|
758 | background-position: -160px -128px; | |||
|
759 | } | |||
|
760 | .ui-icon-copy | |||
|
761 | { | |||
|
762 | background-position: -176px -128px; | |||
|
763 | } | |||
|
764 | .ui-icon-contact | |||
|
765 | { | |||
|
766 | background-position: -192px -128px; | |||
|
767 | } | |||
|
768 | .ui-icon-image | |||
|
769 | { | |||
|
770 | background-position: -208px -128px; | |||
|
771 | } | |||
|
772 | .ui-icon-video | |||
|
773 | { | |||
|
774 | background-position: -224px -128px; | |||
|
775 | } | |||
|
776 | .ui-icon-script | |||
|
777 | { | |||
|
778 | background-position: -240px -128px; | |||
|
779 | } | |||
|
780 | .ui-icon-alert | |||
|
781 | { | |||
|
782 | background-position: 0 -144px; | |||
|
783 | } | |||
|
784 | .ui-icon-info | |||
|
785 | { | |||
|
786 | background-position: -16px -144px; | |||
|
787 | } | |||
|
788 | .ui-icon-notice | |||
|
789 | { | |||
|
790 | background-position: -32px -144px; | |||
|
791 | } | |||
|
792 | .ui-icon-help | |||
|
793 | { | |||
|
794 | background-position: -48px -144px; | |||
|
795 | } | |||
|
796 | .ui-icon-check | |||
|
797 | { | |||
|
798 | background-position: -64px -144px; | |||
|
799 | } | |||
|
800 | .ui-icon-bullet | |||
|
801 | { | |||
|
802 | background-position: -80px -144px; | |||
|
803 | } | |||
|
804 | .ui-icon-radio-off | |||
|
805 | { | |||
|
806 | background-position: -96px -144px; | |||
|
807 | } | |||
|
808 | .ui-icon-radio-on | |||
|
809 | { | |||
|
810 | background-position: -112px -144px; | |||
|
811 | } | |||
|
812 | .ui-icon-pin-w | |||
|
813 | { | |||
|
814 | background-position: -128px -144px; | |||
|
815 | } | |||
|
816 | .ui-icon-pin-s | |||
|
817 | { | |||
|
818 | background-position: -144px -144px; | |||
|
819 | } | |||
|
820 | .ui-icon-play | |||
|
821 | { | |||
|
822 | background-position: 0 -160px; | |||
|
823 | } | |||
|
824 | .ui-icon-pause | |||
|
825 | { | |||
|
826 | background-position: -16px -160px; | |||
|
827 | } | |||
|
828 | .ui-icon-seek-next | |||
|
829 | { | |||
|
830 | background-position: -32px -160px; | |||
|
831 | } | |||
|
832 | .ui-icon-seek-prev | |||
|
833 | { | |||
|
834 | background-position: -48px -160px; | |||
|
835 | } | |||
|
836 | .ui-icon-seek-end | |||
|
837 | { | |||
|
838 | background-position: -64px -160px; | |||
|
839 | } | |||
|
840 | .ui-icon-seek-start | |||
|
841 | { | |||
|
842 | background-position: -80px -160px; | |||
|
843 | } | |||
|
844 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ | |||
|
845 | .ui-icon-seek-first | |||
|
846 | { | |||
|
847 | background-position: -80px -160px; | |||
|
848 | } | |||
|
849 | .ui-icon-stop | |||
|
850 | { | |||
|
851 | background-position: -96px -160px; | |||
|
852 | } | |||
|
853 | .ui-icon-eject | |||
|
854 | { | |||
|
855 | background-position: -112px -160px; | |||
|
856 | } | |||
|
857 | .ui-icon-volume-off | |||
|
858 | { | |||
|
859 | background-position: -128px -160px; | |||
|
860 | } | |||
|
861 | .ui-icon-volume-on | |||
|
862 | { | |||
|
863 | background-position: -144px -160px; | |||
|
864 | } | |||
|
865 | .ui-icon-power | |||
|
866 | { | |||
|
867 | background-position: 0 -176px; | |||
|
868 | } | |||
|
869 | .ui-icon-signal-diag | |||
|
870 | { | |||
|
871 | background-position: -16px -176px; | |||
|
872 | } | |||
|
873 | .ui-icon-signal | |||
|
874 | { | |||
|
875 | background-position: -32px -176px; | |||
|
876 | } | |||
|
877 | .ui-icon-battery-0 | |||
|
878 | { | |||
|
879 | background-position: -48px -176px; | |||
|
880 | } | |||
|
881 | .ui-icon-battery-1 | |||
|
882 | { | |||
|
883 | background-position: -64px -176px; | |||
|
884 | } | |||
|
885 | .ui-icon-battery-2 | |||
|
886 | { | |||
|
887 | background-position: -80px -176px; | |||
|
888 | } | |||
|
889 | .ui-icon-battery-3 | |||
|
890 | { | |||
|
891 | background-position: -96px -176px; | |||
|
892 | } | |||
|
893 | .ui-icon-circle-plus | |||
|
894 | { | |||
|
895 | background-position: 0 -192px; | |||
|
896 | } | |||
|
897 | .ui-icon-circle-minus | |||
|
898 | { | |||
|
899 | background-position: -16px -192px; | |||
|
900 | } | |||
|
901 | .ui-icon-circle-close | |||
|
902 | { | |||
|
903 | background-position: -32px -192px; | |||
|
904 | } | |||
|
905 | .ui-icon-circle-triangle-e | |||
|
906 | { | |||
|
907 | background-position: -48px -192px; | |||
|
908 | } | |||
|
909 | .ui-icon-circle-triangle-s | |||
|
910 | { | |||
|
911 | background-position: -64px -192px; | |||
|
912 | } | |||
|
913 | .ui-icon-circle-triangle-w | |||
|
914 | { | |||
|
915 | background-position: -80px -192px; | |||
|
916 | } | |||
|
917 | .ui-icon-circle-triangle-n | |||
|
918 | { | |||
|
919 | background-position: -96px -192px; | |||
|
920 | } | |||
|
921 | .ui-icon-circle-arrow-e | |||
|
922 | { | |||
|
923 | background-position: -112px -192px; | |||
|
924 | } | |||
|
925 | .ui-icon-circle-arrow-s | |||
|
926 | { | |||
|
927 | background-position: -128px -192px; | |||
|
928 | } | |||
|
929 | .ui-icon-circle-arrow-w | |||
|
930 | { | |||
|
931 | background-position: -144px -192px; | |||
|
932 | } | |||
|
933 | .ui-icon-circle-arrow-n | |||
|
934 | { | |||
|
935 | background-position: -160px -192px; | |||
|
936 | } | |||
|
937 | .ui-icon-circle-zoomin | |||
|
938 | { | |||
|
939 | background-position: -176px -192px; | |||
|
940 | } | |||
|
941 | .ui-icon-circle-zoomout | |||
|
942 | { | |||
|
943 | background-position: -192px -192px; | |||
|
944 | } | |||
|
945 | .ui-icon-circle-check | |||
|
946 | { | |||
|
947 | background-position: -208px -192px; | |||
|
948 | } | |||
|
949 | .ui-icon-circlesmall-plus | |||
|
950 | { | |||
|
951 | background-position: 0 -208px; | |||
|
952 | } | |||
|
953 | .ui-icon-circlesmall-minus | |||
|
954 | { | |||
|
955 | background-position: -16px -208px; | |||
|
956 | } | |||
|
957 | .ui-icon-circlesmall-close | |||
|
958 | { | |||
|
959 | background-position: -32px -208px; | |||
|
960 | } | |||
|
961 | .ui-icon-squaresmall-plus | |||
|
962 | { | |||
|
963 | background-position: -48px -208px; | |||
|
964 | } | |||
|
965 | .ui-icon-squaresmall-minus | |||
|
966 | { | |||
|
967 | background-position: -64px -208px; | |||
|
968 | } | |||
|
969 | .ui-icon-squaresmall-close | |||
|
970 | { | |||
|
971 | background-position: -80px -208px; | |||
|
972 | } | |||
|
973 | .ui-icon-grip-dotted-vertical | |||
|
974 | { | |||
|
975 | background-position: 0 -224px; | |||
|
976 | } | |||
|
977 | .ui-icon-grip-dotted-horizontal | |||
|
978 | { | |||
|
979 | background-position: -16px -224px; | |||
|
980 | } | |||
|
981 | .ui-icon-grip-solid-vertical | |||
|
982 | { | |||
|
983 | background-position: -32px -224px; | |||
|
984 | } | |||
|
985 | .ui-icon-grip-solid-horizontal | |||
|
986 | { | |||
|
987 | background-position: -48px -224px; | |||
|
988 | } | |||
|
989 | .ui-icon-gripsmall-diagonal-se | |||
|
990 | { | |||
|
991 | background-position: -64px -224px; | |||
|
992 | } | |||
|
993 | .ui-icon-grip-diagonal-se | |||
|
994 | { | |||
|
995 | background-position: -80px -224px; | |||
|
996 | } | |||
|
997 | ||||
|
998 | ||||
|
999 | /* Misc visuals | |||
|
1000 | ----------------------------------*/ | |||
|
1001 | ||||
|
1002 | /* Corner radius */ | |||
|
1003 | .ui-corner-tl | |||
|
1004 | { | |||
|
1005 | -moz-border-radius-topleft: 4px; | |||
|
1006 | -webkit-border-top-left-radius: 4px; | |||
|
1007 | border-top-left-radius: 4px; | |||
|
1008 | } | |||
|
1009 | .ui-corner-tr | |||
|
1010 | { | |||
|
1011 | -moz-border-radius-topright: 4px; | |||
|
1012 | -webkit-border-top-right-radius: 4px; | |||
|
1013 | border-top-right-radius: 4px; | |||
|
1014 | } | |||
|
1015 | .ui-corner-bl | |||
|
1016 | { | |||
|
1017 | -moz-border-radius-bottomleft: 4px; | |||
|
1018 | -webkit-border-bottom-left-radius: 4px; | |||
|
1019 | border-bottom-left-radius: 4px; | |||
|
1020 | } | |||
|
1021 | .ui-corner-br | |||
|
1022 | { | |||
|
1023 | -moz-border-radius-bottomright: 4px; | |||
|
1024 | -webkit-border-bottom-right-radius: 4px; | |||
|
1025 | border-bottom-right-radius: 4px; | |||
|
1026 | } | |||
|
1027 | .ui-corner-top | |||
|
1028 | { | |||
|
1029 | -moz-border-radius-topleft: 4px; | |||
|
1030 | -webkit-border-top-left-radius: 4px; | |||
|
1031 | border-top-left-radius: 4px; | |||
|
1032 | -moz-border-radius-topright: 4px; | |||
|
1033 | -webkit-border-top-right-radius: 4px; | |||
|
1034 | border-top-right-radius: 4px; | |||
|
1035 | } | |||
|
1036 | .ui-corner-bottom | |||
|
1037 | { | |||
|
1038 | -moz-border-radius-bottomleft: 4px; | |||
|
1039 | -webkit-border-bottom-left-radius: 4px; | |||
|
1040 | border-bottom-left-radius: 4px; | |||
|
1041 | -moz-border-radius-bottomright: 4px; | |||
|
1042 | -webkit-border-bottom-right-radius: 4px; | |||
|
1043 | border-bottom-right-radius: 4px; | |||
|
1044 | } | |||
|
1045 | .ui-corner-right | |||
|
1046 | { | |||
|
1047 | -moz-border-radius-topright: 4px; | |||
|
1048 | -webkit-border-top-right-radius: 4px; | |||
|
1049 | border-top-right-radius: 4px; | |||
|
1050 | -moz-border-radius-bottomright: 4px; | |||
|
1051 | -webkit-border-bottom-right-radius: 4px; | |||
|
1052 | border-bottom-right-radius: 4px; | |||
|
1053 | } | |||
|
1054 | .ui-corner-left | |||
|
1055 | { | |||
|
1056 | -moz-border-radius-topleft: 4px; | |||
|
1057 | -webkit-border-top-left-radius: 4px; | |||
|
1058 | border-top-left-radius: 4px; | |||
|
1059 | -moz-border-radius-bottomleft: 4px; | |||
|
1060 | -webkit-border-bottom-left-radius: 4px; | |||
|
1061 | border-bottom-left-radius: 4px; | |||
|
1062 | } | |||
|
1063 | .ui-corner-all | |||
|
1064 | { | |||
|
1065 | -moz-border-radius: 4px; | |||
|
1066 | -webkit-border-radius: 4px; | |||
|
1067 | border-radius: 4px; | |||
|
1068 | } | |||
|
1069 | ||||
|
1070 | /* Overlays */ | |||
|
1071 | .ui-widget-overlay | |||
|
1072 | { | |||
|
1073 | background: #00a6dd url(images/ui-bg_diagonals-thick_50_00a6dd_40x40.png) 50% 50% repeat; | |||
|
1074 | opacity: .30; | |||
|
1075 | filter: Alpha(Opacity=30); | |||
|
1076 | } | |||
|
1077 | .ui-widget-shadow | |||
|
1078 | { | |||
|
1079 | margin: -8px 0 0 -8px; | |||
|
1080 | padding: 8px; | |||
|
1081 | background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; | |||
|
1082 | opacity: .30; | |||
|
1083 | filter: Alpha(Opacity=30); | |||
|
1084 | -moz-border-radius: 8px; | |||
|
1085 | -webkit-border-radius: 8px; | |||
|
1086 | border-radius: 8px; | |||
|
1087 | } | |||
|
1088 | /* | |||
|
1089 | * jQuery UI Resizable 1.8.7 | |||
|
1090 | * | |||
|
1091 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1092 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1093 | * http://jquery.org/license | |||
|
1094 | * | |||
|
1095 | * http://docs.jquery.com/UI/Resizable#theming | |||
|
1096 | */ | |||
|
1097 | .ui-resizable | |||
|
1098 | { | |||
|
1099 | position: relative; | |||
|
1100 | } | |||
|
1101 | .ui-resizable-handle | |||
|
1102 | { | |||
|
1103 | position: absolute; | |||
|
1104 | font-size: 0.1px; | |||
|
1105 | z-index: 99999; | |||
|
1106 | display: block; | |||
|
1107 | } | |||
|
1108 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle | |||
|
1109 | { | |||
|
1110 | display: none; | |||
|
1111 | } | |||
|
1112 | .ui-resizable-n | |||
|
1113 | { | |||
|
1114 | cursor: n-resize; | |||
|
1115 | height: 7px; | |||
|
1116 | width: 100%; | |||
|
1117 | top: -5px; | |||
|
1118 | left: 0; | |||
|
1119 | } | |||
|
1120 | .ui-resizable-s | |||
|
1121 | { | |||
|
1122 | cursor: s-resize; | |||
|
1123 | height: 7px; | |||
|
1124 | width: 100%; | |||
|
1125 | bottom: -5px; | |||
|
1126 | left: 0; | |||
|
1127 | } | |||
|
1128 | .ui-resizable-e | |||
|
1129 | { | |||
|
1130 | cursor: e-resize; | |||
|
1131 | width: 7px; | |||
|
1132 | right: -5px; | |||
|
1133 | top: 0; | |||
|
1134 | height: 100%; | |||
|
1135 | } | |||
|
1136 | .ui-resizable-w | |||
|
1137 | { | |||
|
1138 | cursor: w-resize; | |||
|
1139 | width: 7px; | |||
|
1140 | left: -5px; | |||
|
1141 | top: 0; | |||
|
1142 | height: 100%; | |||
|
1143 | } | |||
|
1144 | .ui-resizable-se | |||
|
1145 | { | |||
|
1146 | cursor: se-resize; | |||
|
1147 | width: 12px; | |||
|
1148 | height: 12px; | |||
|
1149 | right: 1px; | |||
|
1150 | bottom: 1px; | |||
|
1151 | } | |||
|
1152 | .ui-resizable-sw | |||
|
1153 | { | |||
|
1154 | cursor: sw-resize; | |||
|
1155 | width: 9px; | |||
|
1156 | height: 9px; | |||
|
1157 | left: -5px; | |||
|
1158 | bottom: -5px; | |||
|
1159 | } | |||
|
1160 | .ui-resizable-nw | |||
|
1161 | { | |||
|
1162 | cursor: nw-resize; | |||
|
1163 | width: 9px; | |||
|
1164 | height: 9px; | |||
|
1165 | left: -5px; | |||
|
1166 | top: -5px; | |||
|
1167 | } | |||
|
1168 | .ui-resizable-ne | |||
|
1169 | { | |||
|
1170 | cursor: ne-resize; | |||
|
1171 | width: 9px; | |||
|
1172 | height: 9px; | |||
|
1173 | right: -5px; | |||
|
1174 | top: -5px; | |||
|
1175 | } | |||
|
1176 | /* | |||
|
1177 | * jQuery UI Selectable 1.8.7 | |||
|
1178 | * | |||
|
1179 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1180 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1181 | * http://jquery.org/license | |||
|
1182 | * | |||
|
1183 | * http://docs.jquery.com/UI/Selectable#theming | |||
|
1184 | */ | |||
|
1185 | .ui-selectable-helper | |||
|
1186 | { | |||
|
1187 | position: absolute; | |||
|
1188 | z-index: 100; | |||
|
1189 | border: 1px dotted black; | |||
|
1190 | } | |||
|
1191 | /* | |||
|
1192 | * jQuery UI Accordion 1.8.7 | |||
|
1193 | * | |||
|
1194 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1195 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1196 | * http://jquery.org/license | |||
|
1197 | * | |||
|
1198 | * http://docs.jquery.com/UI/Accordion#theming | |||
|
1199 | */ | |||
|
1200 | /* IE/Win - Fix animation bug - #4615 */ | |||
|
1201 | .ui-accordion | |||
|
1202 | { | |||
|
1203 | width: 100%; | |||
|
1204 | } | |||
|
1205 | .ui-accordion .ui-accordion-header | |||
|
1206 | { | |||
|
1207 | cursor: pointer; | |||
|
1208 | position: relative; | |||
|
1209 | margin-top: 1px; | |||
|
1210 | zoom: 1; | |||
|
1211 | } | |||
|
1212 | .ui-accordion .ui-accordion-li-fix | |||
|
1213 | { | |||
|
1214 | display: inline; | |||
|
1215 | } | |||
|
1216 | .ui-accordion .ui-accordion-header-active | |||
|
1217 | { | |||
|
1218 | border-bottom: 0 !important; | |||
|
1219 | } | |||
|
1220 | .ui-accordion .ui-accordion-header a | |||
|
1221 | { | |||
|
1222 | display: block; | |||
|
1223 | font-size: 1em; | |||
|
1224 | padding: .5em .5em .5em .7em; | |||
|
1225 | } | |||
|
1226 | .ui-accordion-icons .ui-accordion-header a | |||
|
1227 | { | |||
|
1228 | padding-left: 2.2em; | |||
|
1229 | } | |||
|
1230 | .ui-accordion .ui-accordion-header .ui-icon | |||
|
1231 | { | |||
|
1232 | position: absolute; | |||
|
1233 | left: .5em; | |||
|
1234 | top: 50%; | |||
|
1235 | margin-top: -8px; | |||
|
1236 | } | |||
|
1237 | .ui-accordion .ui-accordion-content | |||
|
1238 | { | |||
|
1239 | padding: 1em 2.2em; | |||
|
1240 | border-top: 0; | |||
|
1241 | margin-top: -2px; | |||
|
1242 | position: relative; | |||
|
1243 | top: 1px; | |||
|
1244 | margin-bottom: 2px; | |||
|
1245 | overflow: auto; | |||
|
1246 | display: none; | |||
|
1247 | zoom: 1; | |||
|
1248 | } | |||
|
1249 | .ui-accordion .ui-accordion-content-active | |||
|
1250 | { | |||
|
1251 | display: block; | |||
|
1252 | } | |||
|
1253 | /* | |||
|
1254 | * jQuery UI Autocomplete 1.8.7 | |||
|
1255 | * | |||
|
1256 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1257 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1258 | * http://jquery.org/license | |||
|
1259 | * | |||
|
1260 | * http://docs.jquery.com/UI/Autocomplete#theming | |||
|
1261 | */ | |||
|
1262 | .ui-autocomplete | |||
|
1263 | { | |||
|
1264 | position: absolute; | |||
|
1265 | cursor: default; | |||
|
1266 | } | |||
|
1267 | ||||
|
1268 | /* workarounds */ | |||
|
1269 | * html .ui-autocomplete | |||
|
1270 | { | |||
|
1271 | width: 1px; | |||
|
1272 | } | |||
|
1273 | /* without this, the menu expands to 100% in IE6 */ | |||
|
1274 | ||||
|
1275 | /* | |||
|
1276 | * jQuery UI Menu 1.8.7 | |||
|
1277 | * | |||
|
1278 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1279 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1280 | * http://jquery.org/license | |||
|
1281 | * | |||
|
1282 | * http://docs.jquery.com/UI/Menu#theming | |||
|
1283 | */ | |||
|
1284 | .ui-menu | |||
|
1285 | { | |||
|
1286 | list-style: none; | |||
|
1287 | padding: 2px; | |||
|
1288 | margin: 0; | |||
|
1289 | display: block; | |||
|
1290 | float: left; | |||
|
1291 | } | |||
|
1292 | .ui-menu .ui-menu | |||
|
1293 | { | |||
|
1294 | margin-top: -3px; | |||
|
1295 | } | |||
|
1296 | .ui-menu .ui-menu-item | |||
|
1297 | { | |||
|
1298 | margin: 0; | |||
|
1299 | padding: 0; | |||
|
1300 | zoom: 1; | |||
|
1301 | float: left; | |||
|
1302 | clear: left; | |||
|
1303 | width: 100%; | |||
|
1304 | } | |||
|
1305 | .ui-menu .ui-menu-item a | |||
|
1306 | { | |||
|
1307 | text-decoration: none; | |||
|
1308 | display: block; | |||
|
1309 | padding: .2em .4em; | |||
|
1310 | line-height: 1.5; | |||
|
1311 | zoom: 1; | |||
|
1312 | } | |||
|
1313 | .ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active | |||
|
1314 | { | |||
|
1315 | font-weight: normal; | |||
|
1316 | margin: -1px; | |||
|
1317 | } | |||
|
1318 | /* | |||
|
1319 | * jQuery UI Button 1.8.7 | |||
|
1320 | * | |||
|
1321 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1322 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1323 | * http://jquery.org/license | |||
|
1324 | * | |||
|
1325 | * http://docs.jquery.com/UI/Button#theming | |||
|
1326 | */ | |||
|
1327 | .ui-button | |||
|
1328 | { | |||
|
1329 | display: inline-block; | |||
|
1330 | position: relative; | |||
|
1331 | padding: 0; | |||
|
1332 | margin-right: .1em; | |||
|
1333 | text-decoration: none !important; | |||
|
1334 | cursor: pointer; | |||
|
1335 | text-align: center; | |||
|
1336 | zoom: 1; | |||
|
1337 | overflow: visible; | |||
|
1338 | } | |||
|
1339 | /* the overflow property removes extra width in IE */ | |||
|
1340 | .ui-button-icon-only | |||
|
1341 | { | |||
|
1342 | width: 2.2em; | |||
|
1343 | } | |||
|
1344 | /* to make room for the icon, a width needs to be set here */ | |||
|
1345 | button.ui-button-icon-only | |||
|
1346 | { | |||
|
1347 | width: 2.4em; | |||
|
1348 | } | |||
|
1349 | /* button elements seem to need a little more width */ | |||
|
1350 | .ui-button-icons-only | |||
|
1351 | { | |||
|
1352 | width: 3.4em; | |||
|
1353 | } | |||
|
1354 | button.ui-button-icons-only | |||
|
1355 | { | |||
|
1356 | width: 3.7em; | |||
|
1357 | } | |||
|
1358 | ||||
|
1359 | /*button text element */ | |||
|
1360 | .ui-button .ui-button-text | |||
|
1361 | { | |||
|
1362 | display: block; | |||
|
1363 | line-height: 1.4; | |||
|
1364 | } | |||
|
1365 | .ui-button-text-only .ui-button-text | |||
|
1366 | { | |||
|
1367 | padding: .4em 1em; | |||
|
1368 | } | |||
|
1369 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text | |||
|
1370 | { | |||
|
1371 | padding: .4em; | |||
|
1372 | text-indent: -9999999px; | |||
|
1373 | } | |||
|
1374 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text | |||
|
1375 | { | |||
|
1376 | padding: .4em 1em .4em 2.1em; | |||
|
1377 | } | |||
|
1378 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text | |||
|
1379 | { | |||
|
1380 | padding: .4em 2.1em .4em 1em; | |||
|
1381 | } | |||
|
1382 | .ui-button-text-icons .ui-button-text | |||
|
1383 | { | |||
|
1384 | padding-left: 2.1em; | |||
|
1385 | padding-right: 2.1em; | |||
|
1386 | } | |||
|
1387 | /* no icon support for input elements, provide padding by default */ | |||
|
1388 | input.ui-button | |||
|
1389 | { | |||
|
1390 | padding: .4em 1em; | |||
|
1391 | } | |||
|
1392 | ||||
|
1393 | /*button icon element(s) */ | |||
|
1394 | .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon | |||
|
1395 | { | |||
|
1396 | position: absolute; | |||
|
1397 | top: 50%; | |||
|
1398 | margin-top: -8px; | |||
|
1399 | } | |||
|
1400 | .ui-button-icon-only .ui-icon | |||
|
1401 | { | |||
|
1402 | left: 50%; | |||
|
1403 | margin-left: -8px; | |||
|
1404 | } | |||
|
1405 | .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary | |||
|
1406 | { | |||
|
1407 | left: .5em; | |||
|
1408 | } | |||
|
1409 | .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary | |||
|
1410 | { | |||
|
1411 | right: .5em; | |||
|
1412 | } | |||
|
1413 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary | |||
|
1414 | { | |||
|
1415 | right: .5em; | |||
|
1416 | } | |||
|
1417 | ||||
|
1418 | /*button sets*/ | |||
|
1419 | .ui-buttonset | |||
|
1420 | { | |||
|
1421 | margin-right: 7px; | |||
|
1422 | } | |||
|
1423 | .ui-buttonset .ui-button | |||
|
1424 | { | |||
|
1425 | margin-left: 0; | |||
|
1426 | margin-right: -.3em; | |||
|
1427 | } | |||
|
1428 | ||||
|
1429 | /* workarounds */ | |||
|
1430 | button.ui-button::-moz-focus-inner | |||
|
1431 | { | |||
|
1432 | border: 0; | |||
|
1433 | padding: 0; | |||
|
1434 | } | |||
|
1435 | /* reset extra padding in Firefox */ | |||
|
1436 | /* | |||
|
1437 | * jQuery UI Dialog 1.8.7 | |||
|
1438 | * | |||
|
1439 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1440 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1441 | * http://jquery.org/license | |||
|
1442 | * | |||
|
1443 | * http://docs.jquery.com/UI/Dialog#theming | |||
|
1444 | */ | |||
|
1445 | .ui-dialog | |||
|
1446 | { | |||
|
1447 | position: absolute; | |||
|
1448 | padding: .2em; | |||
|
1449 | width: 300px; | |||
|
1450 | overflow: hidden; | |||
|
1451 | } | |||
|
1452 | .ui-dialog .ui-dialog-titlebar | |||
|
1453 | { | |||
|
1454 | padding: .5em 1em .3em; | |||
|
1455 | position: relative; | |||
|
1456 | } | |||
|
1457 | .ui-dialog .ui-dialog-title | |||
|
1458 | { | |||
|
1459 | float: left; | |||
|
1460 | margin: .1em 16px .2em 0; | |||
|
1461 | } | |||
|
1462 | .ui-dialog .ui-dialog-titlebar-close | |||
|
1463 | { | |||
|
1464 | position: absolute; | |||
|
1465 | right: .3em; | |||
|
1466 | top: 50%; | |||
|
1467 | width: 19px; | |||
|
1468 | margin: -10px 0 0 0; | |||
|
1469 | padding: 1px; | |||
|
1470 | height: 18px; | |||
|
1471 | } | |||
|
1472 | .ui-dialog .ui-dialog-titlebar-close span | |||
|
1473 | { | |||
|
1474 | display: block; | |||
|
1475 | margin: 1px; | |||
|
1476 | } | |||
|
1477 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus | |||
|
1478 | { | |||
|
1479 | padding: 0; | |||
|
1480 | } | |||
|
1481 | .ui-dialog .ui-dialog-content | |||
|
1482 | { | |||
|
1483 | position: relative; | |||
|
1484 | border: 0; | |||
|
1485 | padding: .5em 1em; | |||
|
1486 | background: none; | |||
|
1487 | overflow: auto; | |||
|
1488 | zoom: 1; | |||
|
1489 | } | |||
|
1490 | .ui-dialog .ui-dialog-buttonpane | |||
|
1491 | { | |||
|
1492 | text-align: left; | |||
|
1493 | border-width: 1px 0 0 0; | |||
|
1494 | background-image: none; | |||
|
1495 | margin: .5em 0 0 0; | |||
|
1496 | padding: .3em 1em .5em .4em; | |||
|
1497 | } | |||
|
1498 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset | |||
|
1499 | { | |||
|
1500 | float: right; | |||
|
1501 | } | |||
|
1502 | .ui-dialog .ui-dialog-buttonpane button | |||
|
1503 | { | |||
|
1504 | margin: .5em .4em .5em 0; | |||
|
1505 | cursor: pointer; | |||
|
1506 | } | |||
|
1507 | .ui-dialog .ui-resizable-se | |||
|
1508 | { | |||
|
1509 | width: 14px; | |||
|
1510 | height: 14px; | |||
|
1511 | right: 3px; | |||
|
1512 | bottom: 3px; | |||
|
1513 | } | |||
|
1514 | .ui-draggable .ui-dialog-titlebar | |||
|
1515 | { | |||
|
1516 | cursor: move; | |||
|
1517 | } | |||
|
1518 | /* | |||
|
1519 | * jQuery UI Slider 1.8.7 | |||
|
1520 | * | |||
|
1521 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1522 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1523 | * http://jquery.org/license | |||
|
1524 | * | |||
|
1525 | * http://docs.jquery.com/UI/Slider#theming | |||
|
1526 | */ | |||
|
1527 | .ui-slider | |||
|
1528 | { | |||
|
1529 | position: relative; | |||
|
1530 | text-align: left; | |||
|
1531 | } | |||
|
1532 | .ui-slider .ui-slider-handle | |||
|
1533 | { | |||
|
1534 | position: absolute; | |||
|
1535 | z-index: 2; | |||
|
1536 | width: 1.2em; | |||
|
1537 | height: 1.2em; | |||
|
1538 | cursor: default; | |||
|
1539 | } | |||
|
1540 | .ui-slider .ui-slider-range | |||
|
1541 | { | |||
|
1542 | position: absolute; | |||
|
1543 | z-index: 1; | |||
|
1544 | font-size: .7em; | |||
|
1545 | display: block; | |||
|
1546 | border: 0; | |||
|
1547 | background-position: 0 0; | |||
|
1548 | } | |||
|
1549 | ||||
|
1550 | .ui-slider-horizontal | |||
|
1551 | { | |||
|
1552 | height: .8em; | |||
|
1553 | } | |||
|
1554 | .ui-slider-horizontal .ui-slider-handle | |||
|
1555 | { | |||
|
1556 | top: -.3em; | |||
|
1557 | margin-left: -.6em; | |||
|
1558 | } | |||
|
1559 | .ui-slider-horizontal .ui-slider-range | |||
|
1560 | { | |||
|
1561 | top: 0; | |||
|
1562 | height: 100%; | |||
|
1563 | } | |||
|
1564 | .ui-slider-horizontal .ui-slider-range-min | |||
|
1565 | { | |||
|
1566 | left: 0; | |||
|
1567 | } | |||
|
1568 | .ui-slider-horizontal .ui-slider-range-max | |||
|
1569 | { | |||
|
1570 | right: 0; | |||
|
1571 | } | |||
|
1572 | ||||
|
1573 | .ui-slider-vertical | |||
|
1574 | { | |||
|
1575 | width: .8em; | |||
|
1576 | height: 100px; | |||
|
1577 | } | |||
|
1578 | .ui-slider-vertical .ui-slider-handle | |||
|
1579 | { | |||
|
1580 | left: -.3em; | |||
|
1581 | margin-left: 0; | |||
|
1582 | margin-bottom: -.6em; | |||
|
1583 | } | |||
|
1584 | .ui-slider-vertical .ui-slider-range | |||
|
1585 | { | |||
|
1586 | left: 0; | |||
|
1587 | width: 100%; | |||
|
1588 | } | |||
|
1589 | .ui-slider-vertical .ui-slider-range-min | |||
|
1590 | { | |||
|
1591 | bottom: 0; | |||
|
1592 | } | |||
|
1593 | .ui-slider-vertical .ui-slider-range-max | |||
|
1594 | { | |||
|
1595 | top: 0; | |||
|
1596 | } | |||
|
1597 | /* | |||
|
1598 | * jQuery UI Tabs 1.8.7 | |||
|
1599 | * | |||
|
1600 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1601 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1602 | * http://jquery.org/license | |||
|
1603 | * | |||
|
1604 | * http://docs.jquery.com/UI/Tabs#theming | |||
|
1605 | */ | |||
|
1606 | .ui-tabs | |||
|
1607 | { | |||
|
1608 | position: relative; | |||
|
1609 | padding: .2em; | |||
|
1610 | zoom: 1; | |||
|
1611 | } | |||
|
1612 | /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | |||
|
1613 | .ui-tabs .ui-tabs-nav | |||
|
1614 | { | |||
|
1615 | margin: 0; | |||
|
1616 | padding: .2em .2em 0; | |||
|
1617 | } | |||
|
1618 | .ui-tabs .ui-tabs-nav li | |||
|
1619 | { | |||
|
1620 | list-style: none; | |||
|
1621 | float: left; | |||
|
1622 | position: relative; | |||
|
1623 | top: 1px; | |||
|
1624 | margin: 0 .2em 1px 0; | |||
|
1625 | border-bottom: 0 !important; | |||
|
1626 | padding: 0; | |||
|
1627 | white-space: nowrap; | |||
|
1628 | } | |||
|
1629 | .ui-tabs .ui-tabs-nav li a | |||
|
1630 | { | |||
|
1631 | float: left; | |||
|
1632 | padding: .5em 1em; | |||
|
1633 | text-decoration: none; | |||
|
1634 | } | |||
|
1635 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected | |||
|
1636 | { | |||
|
1637 | margin-bottom: 0; | |||
|
1638 | padding-bottom: 1px; | |||
|
1639 | } | |||
|
1640 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a | |||
|
1641 | { | |||
|
1642 | cursor: text; | |||
|
1643 | } | |||
|
1644 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a | |||
|
1645 | { | |||
|
1646 | cursor: pointer; | |||
|
1647 | } | |||
|
1648 | /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ | |||
|
1649 | .ui-tabs .ui-tabs-panel | |||
|
1650 | { | |||
|
1651 | display: block; | |||
|
1652 | border-width: 0; | |||
|
1653 | padding: 1em 1.4em; | |||
|
1654 | background: none; | |||
|
1655 | } | |||
|
1656 | .ui-tabs .ui-tabs-hide | |||
|
1657 | { | |||
|
1658 | display: none !important; | |||
|
1659 | } | |||
|
1660 | /* | |||
|
1661 | * jQuery UI Datepicker 1.8.7 | |||
|
1662 | * | |||
|
1663 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1664 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1665 | * http://jquery.org/license | |||
|
1666 | * | |||
|
1667 | * http://docs.jquery.com/UI/Datepicker#theming | |||
|
1668 | */ | |||
|
1669 | .ui-datepicker | |||
|
1670 | { | |||
|
1671 | width: 17em; | |||
|
1672 | padding: .2em .2em 0; | |||
|
1673 | display: none; | |||
|
1674 | } | |||
|
1675 | .ui-datepicker .ui-datepicker-header | |||
|
1676 | { | |||
|
1677 | position: relative; | |||
|
1678 | padding: .2em 0; | |||
|
1679 | } | |||
|
1680 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next | |||
|
1681 | { | |||
|
1682 | position: absolute; | |||
|
1683 | top: 2px; | |||
|
1684 | width: 1.8em; | |||
|
1685 | height: 1.8em; | |||
|
1686 | } | |||
|
1687 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover | |||
|
1688 | { | |||
|
1689 | top: 1px; | |||
|
1690 | } | |||
|
1691 | .ui-datepicker .ui-datepicker-prev | |||
|
1692 | { | |||
|
1693 | left: 2px; | |||
|
1694 | } | |||
|
1695 | .ui-datepicker .ui-datepicker-next | |||
|
1696 | { | |||
|
1697 | right: 2px; | |||
|
1698 | } | |||
|
1699 | .ui-datepicker .ui-datepicker-prev-hover | |||
|
1700 | { | |||
|
1701 | left: 1px; | |||
|
1702 | } | |||
|
1703 | .ui-datepicker .ui-datepicker-next-hover | |||
|
1704 | { | |||
|
1705 | right: 1px; | |||
|
1706 | } | |||
|
1707 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span | |||
|
1708 | { | |||
|
1709 | display: block; | |||
|
1710 | position: absolute; | |||
|
1711 | left: 50%; | |||
|
1712 | margin-left: -8px; | |||
|
1713 | top: 50%; | |||
|
1714 | margin-top: -8px; | |||
|
1715 | } | |||
|
1716 | .ui-datepicker .ui-datepicker-title | |||
|
1717 | { | |||
|
1718 | margin: 0 2.3em; | |||
|
1719 | line-height: 1.8em; | |||
|
1720 | text-align: center; | |||
|
1721 | } | |||
|
1722 | .ui-datepicker .ui-datepicker-title select | |||
|
1723 | { | |||
|
1724 | font-size: 1em; | |||
|
1725 | margin: 1px 0; | |||
|
1726 | } | |||
|
1727 | .ui-datepicker select.ui-datepicker-month-year | |||
|
1728 | { | |||
|
1729 | width: 100%; | |||
|
1730 | } | |||
|
1731 | .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year | |||
|
1732 | { | |||
|
1733 | width: 49%; | |||
|
1734 | } | |||
|
1735 | .ui-datepicker table | |||
|
1736 | { | |||
|
1737 | width: 100%; | |||
|
1738 | font-size: .9em; | |||
|
1739 | border-collapse: collapse; | |||
|
1740 | margin: 0 0 .4em; | |||
|
1741 | } | |||
|
1742 | .ui-datepicker th | |||
|
1743 | { | |||
|
1744 | padding: .7em .3em; | |||
|
1745 | text-align: center; | |||
|
1746 | font-weight: bold; | |||
|
1747 | border: 0; | |||
|
1748 | } | |||
|
1749 | .ui-datepicker td | |||
|
1750 | { | |||
|
1751 | border: 0; | |||
|
1752 | padding: 1px; | |||
|
1753 | } | |||
|
1754 | .ui-datepicker td span, .ui-datepicker td a | |||
|
1755 | { | |||
|
1756 | display: block; | |||
|
1757 | padding: .2em; | |||
|
1758 | text-align: right; | |||
|
1759 | text-decoration: none; | |||
|
1760 | } | |||
|
1761 | .ui-datepicker .ui-datepicker-buttonpane | |||
|
1762 | { | |||
|
1763 | background-image: none; | |||
|
1764 | margin: .7em 0 0 0; | |||
|
1765 | padding: 0 .2em; | |||
|
1766 | border-left: 0; | |||
|
1767 | border-right: 0; | |||
|
1768 | border-bottom: 0; | |||
|
1769 | } | |||
|
1770 | .ui-datepicker .ui-datepicker-buttonpane button | |||
|
1771 | { | |||
|
1772 | float: right; | |||
|
1773 | margin: .5em .2em .4em; | |||
|
1774 | cursor: pointer; | |||
|
1775 | padding: .2em .6em .3em .6em; | |||
|
1776 | width: auto; | |||
|
1777 | overflow: visible; | |||
|
1778 | } | |||
|
1779 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current | |||
|
1780 | { | |||
|
1781 | float: left; | |||
|
1782 | } | |||
|
1783 | ||||
|
1784 | /* with multiple calendars */ | |||
|
1785 | .ui-datepicker.ui-datepicker-multi | |||
|
1786 | { | |||
|
1787 | width: auto; | |||
|
1788 | } | |||
|
1789 | .ui-datepicker-multi .ui-datepicker-group | |||
|
1790 | { | |||
|
1791 | float: left; | |||
|
1792 | } | |||
|
1793 | .ui-datepicker-multi .ui-datepicker-group table | |||
|
1794 | { | |||
|
1795 | width: 95%; | |||
|
1796 | margin: 0 auto .4em; | |||
|
1797 | } | |||
|
1798 | .ui-datepicker-multi-2 .ui-datepicker-group | |||
|
1799 | { | |||
|
1800 | width: 50%; | |||
|
1801 | } | |||
|
1802 | .ui-datepicker-multi-3 .ui-datepicker-group | |||
|
1803 | { | |||
|
1804 | width: 33.3%; | |||
|
1805 | } | |||
|
1806 | .ui-datepicker-multi-4 .ui-datepicker-group | |||
|
1807 | { | |||
|
1808 | width: 25%; | |||
|
1809 | } | |||
|
1810 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header | |||
|
1811 | { | |||
|
1812 | border-left-width: 0; | |||
|
1813 | } | |||
|
1814 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header | |||
|
1815 | { | |||
|
1816 | border-left-width: 0; | |||
|
1817 | } | |||
|
1818 | .ui-datepicker-multi .ui-datepicker-buttonpane | |||
|
1819 | { | |||
|
1820 | clear: left; | |||
|
1821 | } | |||
|
1822 | .ui-datepicker-row-break | |||
|
1823 | { | |||
|
1824 | clear: both; | |||
|
1825 | width: 100%; | |||
|
1826 | } | |||
|
1827 | ||||
|
1828 | /* RTL support */ | |||
|
1829 | .ui-datepicker-rtl | |||
|
1830 | { | |||
|
1831 | direction: rtl; | |||
|
1832 | } | |||
|
1833 | .ui-datepicker-rtl .ui-datepicker-prev | |||
|
1834 | { | |||
|
1835 | right: 2px; | |||
|
1836 | left: auto; | |||
|
1837 | } | |||
|
1838 | .ui-datepicker-rtl .ui-datepicker-next | |||
|
1839 | { | |||
|
1840 | left: 2px; | |||
|
1841 | right: auto; | |||
|
1842 | } | |||
|
1843 | .ui-datepicker-rtl .ui-datepicker-prev:hover | |||
|
1844 | { | |||
|
1845 | right: 1px; | |||
|
1846 | left: auto; | |||
|
1847 | } | |||
|
1848 | .ui-datepicker-rtl .ui-datepicker-next:hover | |||
|
1849 | { | |||
|
1850 | left: 1px; | |||
|
1851 | right: auto; | |||
|
1852 | } | |||
|
1853 | .ui-datepicker-rtl .ui-datepicker-buttonpane | |||
|
1854 | { | |||
|
1855 | clear: right; | |||
|
1856 | } | |||
|
1857 | .ui-datepicker-rtl .ui-datepicker-buttonpane button | |||
|
1858 | { | |||
|
1859 | float: left; | |||
|
1860 | } | |||
|
1861 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current | |||
|
1862 | { | |||
|
1863 | float: right; | |||
|
1864 | } | |||
|
1865 | .ui-datepicker-rtl .ui-datepicker-group | |||
|
1866 | { | |||
|
1867 | float: right; | |||
|
1868 | } | |||
|
1869 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header | |||
|
1870 | { | |||
|
1871 | border-right-width: 0; | |||
|
1872 | border-left-width: 1px; | |||
|
1873 | } | |||
|
1874 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header | |||
|
1875 | { | |||
|
1876 | border-right-width: 0; | |||
|
1877 | border-left-width: 1px; | |||
|
1878 | } | |||
|
1879 | ||||
|
1880 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ | |||
|
1881 | .ui-datepicker-cover | |||
|
1882 | { | |||
|
1883 | display: none; /*sorry for IE5*/ | |||
|
1884 | display: /**/ block; /*sorry for IE5*/ | |||
|
1885 | position: absolute; /*must have*/ | |||
|
1886 | z-index: -1; /*must have*/ | |||
|
1887 | filter: mask(); /*must have*/ | |||
|
1888 | top: -4px; /*must have*/ | |||
|
1889 | left: -4px; /*must have*/ | |||
|
1890 | width: 200px; /*must have*/ | |||
|
1891 | height: 200px; /*must have*/ | |||
|
1892 | } | |||
|
1893 | /* | |||
|
1894 | * jQuery UI Progressbar 1.8.7 | |||
|
1895 | * | |||
|
1896 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
1897 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
1898 | * http://jquery.org/license | |||
|
1899 | * | |||
|
1900 | * http://docs.jquery.com/UI/Progressbar#theming | |||
|
1901 | */ | |||
|
1902 | .ui-progressbar | |||
|
1903 | { | |||
|
1904 | height: 2em; | |||
|
1905 | text-align: left; | |||
|
1906 | } | |||
|
1907 | .ui-progressbar .ui-progressbar-value | |||
|
1908 | { | |||
|
1909 | margin: -1px; | |||
|
1910 | height: 100%; | |||
|
1911 | } | |||
|
1912 | ||||
|
1913 | /* Custom */ | |||
|
1914 | ||||
|
1915 | ||||
|
1916 | ||||
|
1917 | ||||
|
1918 | .wijmo-dropdown-trigger | |||
|
1919 | { | |||
|
1920 | -moz-border-radius-topright: 2px; | |||
|
1921 | -webkit-border-top-right-radius: 2px; | |||
|
1922 | border-top-right-radius: 2px; | |||
|
1923 | -moz-border-radius-bottomright: 2px; | |||
|
1924 | -webkit-border-bottom-right-radius: 2px; | |||
|
1925 | border-bottom-right-radius: 2px; | |||
|
1926 | } | |||
|
1927 | ||||
|
1928 | ||||
|
1929 | .wijmo-wijdropdown label.wijmo-dropdown-label | |||
|
1930 | { | |||
|
1931 | -moz-border-radius: 2px; | |||
|
1932 | -webkit-border-radius: 2px; | |||
|
1933 | border-radius: 2px; | |||
|
1934 | } | |||
|
1935 | ||||
|
1936 | .wijmo-wijinput, .wijmo-wijtextbox, .wijmo-checkbox-box, .wijmo-wijradio-box, .wijmo-wijgrid .wijmo-wijinput | |||
|
1937 | { | |||
|
1938 | /*background: #242122 url(images/ui-bg_inset-soft_15_242122_1x100.png) 50% 50% repeat-x !important;*/ /*background: #e1e1e1 url(images/ui-bg_inset-soft_100_e1e1e1_1x100.png) 50% 50% repeat-x !important;*/ | |||
|
1939 | background: #f1f1f1 !important; | |||
|
1940 | color: #404040; | |||
|
1941 | border: solid 1px #e1e1e1; | |||
|
1942 | } | |||
|
1943 | .wijmo-wijinput.ui-state-focus, .wijmo-wijtextbox.ui-state-focus | |||
|
1944 | { | |||
|
1945 | /*background: #e1e1e1 url(images/ui-bg_inset-soft_100_e1e1e1_1x100.png) 50% 50% repeat-x !important;*/ | |||
|
1946 | background: #fafafa !important; | |||
|
1947 | color: #404040 !important; | |||
|
1948 | } | |||
|
1949 | ||||
|
1950 | .wijmo-checkbox .ui-state-hover, .wijmo-wijradio .ui-state-hover | |||
|
1951 | { | |||
|
1952 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
1953 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
1954 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
1955 | border: 1px solid #00a6dd; | |||
|
1956 | background: #00a6dd url(images/ui-bg_highlight-soft_35_00a6dd_1x100.png) 50% 50% repeat-x; | |||
|
1957 | font-weight: normal; | |||
|
1958 | color: #fafafa; | |||
|
1959 | text-shadow: none; | |||
|
1960 | } | |||
|
1961 | ||||
|
1962 | .wijmo-checkbox .ui-state-active, .wijmo-wijradio .ui-state-active | |||
|
1963 | { | |||
|
1964 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
1965 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
1966 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
1967 | border: 1px solid transparent; | |||
|
1968 | background: #606154 url(images/ui-bg_highlight-soft_15_333333_1x100.png) top repeat-x; | |||
|
1969 | font-weight: normal; | |||
|
1970 | color: #fafafa; | |||
|
1971 | } | |||
|
1972 | ||||
|
1973 | ||||
|
1974 | ||||
|
1975 | .wijmo-wijgrid .wijmo-wijgrid-table .wijmo-wijgrid-filter-input | |||
|
1976 | { | |||
|
1977 | background: #e1e1e1 url(images/ui-bg_inset-soft_100_e1e1e1_1x100.png) 50% 50% repeat-x !important; | |||
|
1978 | color: #404040 !important; | |||
|
1979 | } | |||
|
1980 | ||||
|
1981 | .wijmo-wijgrid-row .ui-state-highlight | |||
|
1982 | { | |||
|
1983 | border-right: solid 1px transparent !important; | |||
|
1984 | } | |||
|
1985 | ||||
|
1986 | .wijmo-wijmenu .wijmo-wijmenu-list .wijmo-wijmenu-item | |||
|
1987 | { | |||
|
1988 | -moz-box-shadow: none; | |||
|
1989 | -webkit-box-shadow: none; | |||
|
1990 | box-shadow: none; | |||
|
1991 | } | |||
|
1992 | ||||
|
1993 | .wijmo-wijdropdown .wijmo-dropdown, .wijmo-wijmenu-child, .wijmo-wijcombobox-list, .wijmo-wijgrid-filterlist | |||
|
1994 | { | |||
|
1995 | -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.15); | |||
|
1996 | -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.15); | |||
|
1997 | box-shadow: 3px 3px 3px rgba(0,0,0,0.15); | |||
|
1998 | } | |||
|
1999 | ||||
|
2000 | .wijmo-wijmenu-child .ui-state-default .wijmo-wijmenu-text, .wijmo-wijmenu-child a.wijmo-wijmenu-text | |||
|
2001 | { | |||
|
2002 | color: #404040; | |||
|
2003 | } | |||
|
2004 | .wijmo-wijmenu-ipod .wijmo-wijmenu-list .ui-state-default .wijmo-wijmenu-text | |||
|
2005 | { | |||
|
2006 | color: #fafafa; | |||
|
2007 | } | |||
|
2008 | .wijmo-wijmenu-ipod .wijmo-wijmenu-list | |||
|
2009 | { | |||
|
2010 | -moz-box-shadow: none; | |||
|
2011 | -webkit-box-shadow: none; | |||
|
2012 | box-shadow: none; | |||
|
2013 | } | |||
|
2014 | ||||
|
2015 | .wijmo-wijmenu .wijmo-wijsuperpanel | |||
|
2016 | { | |||
|
2017 | background: none !important; | |||
|
2018 | } | |||
|
2019 | ||||
|
2020 | ||||
|
2021 | .wijmo-wijmenu-child .ui-state-hover .wijmo-wijmenu-text, .wijmo-wijmenu-child .ui-state-active .wijmo-wijmenu-text, .wijmo-wijmenu-child .ui-state-focus .wijmo-wijmenu-text | |||
|
2022 | { | |||
|
2023 | color: #fafafa; | |||
|
2024 | } | |||
|
2025 | ||||
|
2026 | ||||
|
2027 | .wijmo-wijmenu-child a:hover | |||
|
2028 | { | |||
|
2029 | color: #fafafa !important; | |||
|
2030 | } | |||
|
2031 | ||||
|
2032 | .wijmo-wijmenu-child a:focus, .wijmo-wijmenu-child a:active | |||
|
2033 | { | |||
|
2034 | color: #fafafa !important; | |||
|
2035 | } | |||
|
2036 | ||||
|
2037 | .ui-progressbar-value, .ui-slider-range | |||
|
2038 | { | |||
|
2039 | border: 1px solid #00a6dd; | |||
|
2040 | background: #00a6dd url(images/ui-bg_highlight-soft_35_00a6dd_1x100.png) 50% 50% repeat-x; | |||
|
2041 | font-weight: normal; | |||
|
2042 | color: #fafafa; | |||
|
2043 | } | |||
|
2044 | ||||
|
2045 | .wijmo-wijsuperpanel-vbarcontainer, .wijmo-wijsuperpanel-hbarcontainer | |||
|
2046 | { | |||
|
2047 | background: #888978; | |||
|
2048 | } | |||
|
2049 | ||||
|
2050 | .wijmo-wijsuperpanel-vbarcontainer | |||
|
2051 | { | |||
|
2052 | -moz-box-shadow: inset 3px 0 10px rgba(0,0,0,0.25); | |||
|
2053 | -webkit-box-shadow: inset 3px 0 10px rgba(0,0,0,0.25); | |||
|
2054 | box-shadow: inset 3px 0 10px rgba(0,0,0,0.25); | |||
|
2055 | } | |||
|
2056 | ||||
|
2057 | ||||
|
2058 | .wijmo-wijsuperpanel-hbarcontainer | |||
|
2059 | { | |||
|
2060 | -moz-box-shadow: inset 0 3px 10px rgba(0,0,0,0.25); | |||
|
2061 | -webkit-box-shadow: inset 0 3px 10px rgba(0,0,0,0.25); | |||
|
2062 | box-shadow: inset 0 3px 10px rgba(0,0,0,0.25); | |||
|
2063 | } | |||
|
2064 | ||||
|
2065 | .wijmo-wijcalendar | |||
|
2066 | { | |||
|
2067 | display: block; | |||
|
2068 | } | |||
|
2069 | ||||
|
2070 | ||||
|
2071 | .wijmo-wijgrid .ui-state-highlight | |||
|
2072 | { | |||
|
2073 | -moz-box-shadow: none; | |||
|
2074 | -webkit-box-shadow: none; | |||
|
2075 | box-shadow: none; | |||
|
2076 | background: transparent url(images/ui-bg_highlight-soft_15_9eca38_1x100_50.png) 50% 50% repeat-x; | |||
|
2077 | text-shadow: none; | |||
|
2078 | color: inherit; | |||
|
2079 | } | |||
|
2080 | ||||
|
2081 | ||||
|
2082 | .wijmo-wijgrid .wijmo-wijgrid-currency-cell | |||
|
2083 | { | |||
|
2084 | -moz-box-shadow: none; | |||
|
2085 | -webkit-box-shadow: none; | |||
|
2086 | box-shadow: none; | |||
|
2087 | background: transparent url(images/ui-bg_highlight-soft_15_333333_1x100_50.png) repeat-x scroll center top; | |||
|
2088 | text-shadow: none; | |||
|
2089 | color: inherit; | |||
|
2090 | border-top: solid 1px #d3d3d3; | |||
|
2091 | } | |||
|
2092 | ||||
|
2093 | .wijmo-wijcalendar-day-selectable .ui-state-default | |||
|
2094 | { | |||
|
2095 | background: none; | |||
|
2096 | border: solid 1px transparent; | |||
|
2097 | color: #404040; | |||
|
2098 | } | |||
|
2099 | ||||
|
2100 | .wijmo-wijcalendar-day-selectable .ui-state-highlight | |||
|
2101 | { | |||
|
2102 | background: #9eca38 url(images/ui-bg_highlight-soft_15_9eca38_1x100.png) 50% 50% repeat-x; | |||
|
2103 | border: 1px solid #9eca38; | |||
|
2104 | color: #304915; | |||
|
2105 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.25); | |||
|
2106 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.25); | |||
|
2107 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.25); | |||
|
2108 | text-shadow: 1px 1px 0 rgba(255,255,255,0.50); | |||
|
2109 | } | |||
|
2110 | ||||
|
2111 | ||||
|
2112 | ||||
|
2113 | .wijmo-wijcalendar-day-selectable .ui-state-hover | |||
|
2114 | { | |||
|
2115 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
2116 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
2117 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
2118 | border: 1px solid #00a6dd; | |||
|
2119 | background: #00a6dd url(images/ui-bg_highlight-soft_35_00a6dd_1x100.png) 50% 50% repeat-x; | |||
|
2120 | font-weight: normal; | |||
|
2121 | color: #fafafa; | |||
|
2122 | text-shadow: none; | |||
|
2123 | } | |||
|
2124 | ||||
|
2125 | .wijmo-wijmenu .wijmo-wijmenu-separator | |||
|
2126 | { | |||
|
2127 | border: 1px solid #00a6dd; | |||
|
2128 | background: #00a6dd url(images/ui-bg_highlight-soft_35_00a6dd_1x100.png) 50% 50% repeat-x; | |||
|
2129 | } | |||
|
2130 | ||||
|
2131 | .wijmo-wijmenu .wij-menu-breadcrumb a | |||
|
2132 | { | |||
|
2133 | color: #fafafa; | |||
|
2134 | line-height: 22px; | |||
|
2135 | } | |||
|
2136 | ||||
|
2137 | .wijmo-wijcalendar-day-selectable .ui-state-active | |||
|
2138 | { | |||
|
2139 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
2140 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
2141 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15); | |||
|
2142 | border: 1px solid transparent; | |||
|
2143 | background: #606154 url(images/ui-bg_highlight-soft_15_333333_1x100.png) top repeat-x; | |||
|
2144 | font-weight: normal; | |||
|
2145 | color: #fafafa; | |||
|
2146 | } | |||
|
2147 | ||||
|
2148 | .wijmo-wijcalendar-day-selectable .ui-priority-secondary | |||
|
2149 | { | |||
|
2150 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
2151 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
2152 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
2153 | border: 1px solid #404040; | |||
|
2154 | background: #242122 url(images/ui-bg_highlight-soft_15_242122_1x100.png) 50% 50% repeat-x; | |||
|
2155 | font-weight: normal; | |||
|
2156 | color: #fafafa; | |||
|
2157 | opacity: 0.25; | |||
|
2158 | } | |||
|
2159 | .wijmo-wijcombobox .wijmo-wijcombobox-input | |||
|
2160 | { | |||
|
2161 | background: #f1f1f1; | |||
|
2162 | -moz-border-radius: 2px; | |||
|
2163 | -webkit-border-radius: 2px; | |||
|
2164 | border-radius: 2px; | |||
|
2165 | color: #404040; | |||
|
2166 | } | |||
|
2167 | ||||
|
2168 | .ui-expander-top .ui-expander-content | |||
|
2169 | { | |||
|
2170 | border-top: solid 1px #E3E3E3 !important; | |||
|
2171 | } | |||
|
2172 | ||||
|
2173 | .ui-expander-right .ui-expander-content | |||
|
2174 | { | |||
|
2175 | border-top: solid 1px #E3E3E3 !important; | |||
|
2176 | border-right: solid 1px #E3E3E3 !important; | |||
|
2177 | border-bottom: solid 1px #E3E3E3 !important; | |||
|
2178 | padding: 0 1em !important; | |||
|
2179 | } | |||
|
2180 | ||||
|
2181 | .ui-expander-left .ui-expander-content | |||
|
2182 | { | |||
|
2183 | border-top: solid 1px #E3E3E3 !important; | |||
|
2184 | border-left: solid 1px #E3E3E3 !important; | |||
|
2185 | border-bottom: solid 1px #E3E3E3 !important; | |||
|
2186 | padding: 0 1em !important; | |||
|
2187 | } | |||
|
2188 | ||||
|
2189 | .ui-accordion-top .ui-accordion-content | |||
|
2190 | { | |||
|
2191 | border-top: solid 1px #E3E3E3 !important; | |||
|
2192 | } | |||
|
2193 | ||||
|
2194 | .ui-accordion-right .ui-accordion-content | |||
|
2195 | { | |||
|
2196 | border-top: solid 1px #E3E3E3 !important; | |||
|
2197 | border-right: solid 1px #E3E3E3 !important; | |||
|
2198 | border-bottom: solid 1px #E3E3E3 !important; | |||
|
2199 | padding: 0 1em !important; | |||
|
2200 | } | |||
|
2201 | ||||
|
2202 | .ui-accordion-left .ui-accordion-content | |||
|
2203 | { | |||
|
2204 | border-top: solid 1px #E3E3E3 !important; | |||
|
2205 | border-left: solid 1px #E3E3E3 !important; | |||
|
2206 | border-bottom: solid 1px #E3E3E3 !important; | |||
|
2207 | padding: 0 1em !important; | |||
|
2208 | } | |||
|
2209 | ||||
|
2210 | ||||
|
2211 | .ui-tabs .ui-tabs-nav | |||
|
2212 | { | |||
|
2213 | -moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
2214 | -webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
2215 | box-shadow: inset 1px 1px 0 rgba(255,255,255,0.05); | |||
|
2216 | border: 1px solid #404040; | |||
|
2217 | background: #242122 url(images/ui-bg_highlight-soft_15_242122_1x100_bottom.png) 50% 50% repeat-x; | |||
|
2218 | font-weight: normal; | |||
|
2219 | color: #fafafa; | |||
|
2220 | } | |||
|
2221 | ||||
|
2222 | .wijmo-wijgrid .wijmo-wijcombobox-wrapper .wijmo-wijcombobox-input | |||
|
2223 | { | |||
|
2224 | -moz-border-radius: 0; | |||
|
2225 | -webkit-border-radius: 0; | |||
|
2226 | border-radius: 0; | |||
|
2227 | } | |||
|
2228 | ||||
|
2229 | ||||
|
2230 | .wijmo-wijgrid .wijmo-wijcombobox-trigger .ui-icon, .wijmo-wijgrid .wijmo-wijinput .ui-icon | |||
|
2231 | { | |||
|
2232 | background-image: url(images/ui-icons_fafafa_256x240.png); | |||
|
2233 | } | |||
|
2234 | ||||
|
2235 | .wijmo-wijgrid .wijmo-wijcombobox-wrapper | |||
|
2236 | { | |||
|
2237 | background: none; | |||
|
2238 | } | |||
|
2239 | ||||
|
2240 | .wijmo-wijgrid .ui-input-spinner-right .wijmo-wijinput-spinup | |||
|
2241 | { | |||
|
2242 | -moz-border-radius: 0; | |||
|
2243 | -webkit-border-radius: 0; | |||
|
2244 | border-radius: 0; | |||
|
2245 | } | |||
|
2246 | ||||
|
2247 | .wijmo-wijgrid .ui-input-spinner-right .wijmo-wijinput-spindown | |||
|
2248 | { | |||
|
2249 | -moz-border-radius: 0; | |||
|
2250 | -webkit-border-radius: 0; | |||
|
2251 | border-radius: 0; | |||
|
2252 | } | |||
|
2253 | ||||
|
2254 | .ui-datepicker-group .ui-datepicker-header | |||
|
2255 | { | |||
|
2256 | -moz-border-radius: 0; | |||
|
2257 | border: none; | |||
|
2258 | } | |||
|
2259 | ||||
|
2260 | .ui-datepicker-group .ui-datepicker-header .ui-datepicker-title | |||
|
2261 | { | |||
|
2262 | -moz-box-shadow: none; | |||
|
2263 | -webkit-box-shadow: none; | |||
|
2264 | box-shadow: none; | |||
|
2265 | } | |||
|
2266 | ||||
|
2267 | .ui-datepicker-group-first .ui-datepicker-header | |||
|
2268 | { | |||
|
2269 | -moz-border-radius-topleft: 4px; | |||
|
2270 | -webkit-border-top-left-radius: 4px; | |||
|
2271 | border-top-left-radius: 4px; | |||
|
2272 | -moz-border-radius-bottomleft: 4px; | |||
|
2273 | -webkit-border-bottom-left-radius: 4px; | |||
|
2274 | border-bottom-left-radius: 4px; | |||
|
2275 | } | |||
|
2276 | ||||
|
2277 | .ui-datepicker-group-last .ui-datepicker-header | |||
|
2278 | { | |||
|
2279 | -moz-border-radius-topright: 4px; | |||
|
2280 | -webkit-border-top-right-radius: 4px; | |||
|
2281 | border-top-right-radius: 4px; | |||
|
2282 | -moz-border-radius-bottomright: 4px; | |||
|
2283 | -webkit-border-bottom-right-radius: 4px; | |||
|
2284 | border-bottom-right-radius: 4px; | |||
|
2285 | } | |||
|
2286 | ||||
|
2287 | a.ui-button:link, a.ui-button | |||
|
2288 | { | |||
|
2289 | color: #fafafa; | |||
|
2290 | } | |||
|
2291 | ||||
|
2292 | .wijmo-wijwizard .wijmo-wijsuperpanel | |||
|
2293 | { | |||
|
2294 | background: none; | |||
|
2295 | border: none; | |||
|
2296 | } | |||
|
2297 | ||||
|
2298 | .wijmo-wijmenu .wijmo-wijmenu-link .wijmo-wijmenu-icon-right | |||
|
2299 | { | |||
|
2300 | color: #404040; | |||
|
2301 | } | |||
|
2302 | ||||
|
2303 | .wijmo-wijmenu .wijmo-wijmenu-link:hover .wijmo-wijmenu-icon-right | |||
|
2304 | { | |||
|
2305 | color: #fafafa; | |||
|
2306 | } | |||
|
2307 | ||||
|
2308 | ||||
|
2309 | .wijmo-wijmenu .wijmo-wijmenu-link label | |||
|
2310 | { | |||
|
2311 | color: #404040; | |||
|
2312 | } |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
This diff has been collapsed as it changes many lines, (573 lines changed) Show them Hide them | |||||
@@ -0,0 +1,573 b'' | |||||
|
1 | /* | |||
|
2 | * jQuery UI CSS Framework 1.8.10 | |||
|
3 | * | |||
|
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
5 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
6 | * http://jquery.org/license | |||
|
7 | * | |||
|
8 | * http://docs.jquery.com/UI/Theming/API | |||
|
9 | */ | |||
|
10 | ||||
|
11 | /* Layout helpers | |||
|
12 | ----------------------------------*/ | |||
|
13 | .ui-helper-hidden { display: none; } | |||
|
14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } | |||
|
15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } | |||
|
16 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } | |||
|
17 | .ui-helper-clearfix { display: inline-block; } | |||
|
18 | /* required comment for clearfix to work in Opera \*/ | |||
|
19 | * html .ui-helper-clearfix { height:1%; } | |||
|
20 | .ui-helper-clearfix { display:block; } | |||
|
21 | /* end clearfix */ | |||
|
22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } | |||
|
23 | ||||
|
24 | ||||
|
25 | /* Interaction Cues | |||
|
26 | ----------------------------------*/ | |||
|
27 | .ui-state-disabled { cursor: default !important; } | |||
|
28 | ||||
|
29 | ||||
|
30 | /* Icons | |||
|
31 | ----------------------------------*/ | |||
|
32 | ||||
|
33 | /* states and images */ | |||
|
34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } | |||
|
35 | ||||
|
36 | ||||
|
37 | /* Misc visuals | |||
|
38 | ----------------------------------*/ | |||
|
39 | ||||
|
40 | /* Overlays */ | |||
|
41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } | |||
|
42 | ||||
|
43 | ||||
|
44 | /* | |||
|
45 | * jQuery UI CSS Framework 1.8.10 | |||
|
46 | * | |||
|
47 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
48 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
49 | * http://jquery.org/license | |||
|
50 | * | |||
|
51 | * http://docs.jquery.com/UI/Theming/API | |||
|
52 | * | |||
|
53 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,%20Tahoma,%20Verdana,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=01_flat.png&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px | |||
|
54 | */ | |||
|
55 | ||||
|
56 | ||||
|
57 | /* Component containers | |||
|
58 | ----------------------------------*/ | |||
|
59 | .ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; } | |||
|
60 | .ui-widget .ui-widget { font-size: 1em; } | |||
|
61 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; } | |||
|
62 | .ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; } | |||
|
63 | .ui-widget-content a { color: #333333; } | |||
|
64 | .ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; } | |||
|
65 | .ui-widget-header a { color: #ffffff; } | |||
|
66 | ||||
|
67 | /* Interaction states | |||
|
68 | ----------------------------------*/ | |||
|
69 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; } | |||
|
70 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; } | |||
|
71 | .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; } | |||
|
72 | .ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; } | |||
|
73 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; } | |||
|
74 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; text-decoration: none; } | |||
|
75 | .ui-widget :active { outline: none; } | |||
|
76 | ||||
|
77 | /* Interaction Cues | |||
|
78 | ----------------------------------*/ | |||
|
79 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; } | |||
|
80 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; } | |||
|
81 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; } | |||
|
82 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; } | |||
|
83 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; } | |||
|
84 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } | |||
|
85 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } | |||
|
86 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } | |||
|
87 | ||||
|
88 | /* Icons | |||
|
89 | ----------------------------------*/ | |||
|
90 | ||||
|
91 | /* states and images */ | |||
|
92 | .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); } | |||
|
93 | .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); } | |||
|
94 | .ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); } | |||
|
95 | .ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); } | |||
|
96 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); } | |||
|
97 | .ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); } | |||
|
98 | .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); } | |||
|
99 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); } | |||
|
100 | ||||
|
101 | /* positioning */ | |||
|
102 | .ui-icon-carat-1-n { background-position: 0 0; } | |||
|
103 | .ui-icon-carat-1-ne { background-position: -16px 0; } | |||
|
104 | .ui-icon-carat-1-e { background-position: -32px 0; } | |||
|
105 | .ui-icon-carat-1-se { background-position: -48px 0; } | |||
|
106 | .ui-icon-carat-1-s { background-position: -64px 0; } | |||
|
107 | .ui-icon-carat-1-sw { background-position: -80px 0; } | |||
|
108 | .ui-icon-carat-1-w { background-position: -96px 0; } | |||
|
109 | .ui-icon-carat-1-nw { background-position: -112px 0; } | |||
|
110 | .ui-icon-carat-2-n-s { background-position: -128px 0; } | |||
|
111 | .ui-icon-carat-2-e-w { background-position: -144px 0; } | |||
|
112 | .ui-icon-triangle-1-n { background-position: 0 -16px; } | |||
|
113 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } | |||
|
114 | .ui-icon-triangle-1-e { background-position: -32px -16px; } | |||
|
115 | .ui-icon-triangle-1-se { background-position: -48px -16px; } | |||
|
116 | .ui-icon-triangle-1-s { background-position: -64px -16px; } | |||
|
117 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } | |||
|
118 | .ui-icon-triangle-1-w { background-position: -96px -16px; } | |||
|
119 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } | |||
|
120 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } | |||
|
121 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } | |||
|
122 | .ui-icon-arrow-1-n { background-position: 0 -32px; } | |||
|
123 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } | |||
|
124 | .ui-icon-arrow-1-e { background-position: -32px -32px; } | |||
|
125 | .ui-icon-arrow-1-se { background-position: -48px -32px; } | |||
|
126 | .ui-icon-arrow-1-s { background-position: -64px -32px; } | |||
|
127 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } | |||
|
128 | .ui-icon-arrow-1-w { background-position: -96px -32px; } | |||
|
129 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } | |||
|
130 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } | |||
|
131 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } | |||
|
132 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } | |||
|
133 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } | |||
|
134 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } | |||
|
135 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } | |||
|
136 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } | |||
|
137 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } | |||
|
138 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } | |||
|
139 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } | |||
|
140 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } | |||
|
141 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } | |||
|
142 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } | |||
|
143 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } | |||
|
144 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } | |||
|
145 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } | |||
|
146 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } | |||
|
147 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } | |||
|
148 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } | |||
|
149 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } | |||
|
150 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } | |||
|
151 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } | |||
|
152 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } | |||
|
153 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } | |||
|
154 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } | |||
|
155 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } | |||
|
156 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } | |||
|
157 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } | |||
|
158 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } | |||
|
159 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } | |||
|
160 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } | |||
|
161 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } | |||
|
162 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } | |||
|
163 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } | |||
|
164 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } | |||
|
165 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } | |||
|
166 | .ui-icon-arrow-4 { background-position: 0 -80px; } | |||
|
167 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } | |||
|
168 | .ui-icon-extlink { background-position: -32px -80px; } | |||
|
169 | .ui-icon-newwin { background-position: -48px -80px; } | |||
|
170 | .ui-icon-refresh { background-position: -64px -80px; } | |||
|
171 | .ui-icon-shuffle { background-position: -80px -80px; } | |||
|
172 | .ui-icon-transfer-e-w { background-position: -96px -80px; } | |||
|
173 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } | |||
|
174 | .ui-icon-folder-collapsed { background-position: 0 -96px; } | |||
|
175 | .ui-icon-folder-open { background-position: -16px -96px; } | |||
|
176 | .ui-icon-document { background-position: -32px -96px; } | |||
|
177 | .ui-icon-document-b { background-position: -48px -96px; } | |||
|
178 | .ui-icon-note { background-position: -64px -96px; } | |||
|
179 | .ui-icon-mail-closed { background-position: -80px -96px; } | |||
|
180 | .ui-icon-mail-open { background-position: -96px -96px; } | |||
|
181 | .ui-icon-suitcase { background-position: -112px -96px; } | |||
|
182 | .ui-icon-comment { background-position: -128px -96px; } | |||
|
183 | .ui-icon-person { background-position: -144px -96px; } | |||
|
184 | .ui-icon-print { background-position: -160px -96px; } | |||
|
185 | .ui-icon-trash { background-position: -176px -96px; } | |||
|
186 | .ui-icon-locked { background-position: -192px -96px; } | |||
|
187 | .ui-icon-unlocked { background-position: -208px -96px; } | |||
|
188 | .ui-icon-bookmark { background-position: -224px -96px; } | |||
|
189 | .ui-icon-tag { background-position: -240px -96px; } | |||
|
190 | .ui-icon-home { background-position: 0 -112px; } | |||
|
191 | .ui-icon-flag { background-position: -16px -112px; } | |||
|
192 | .ui-icon-calendar { background-position: -32px -112px; } | |||
|
193 | .ui-icon-cart { background-position: -48px -112px; } | |||
|
194 | .ui-icon-pencil { background-position: -64px -112px; } | |||
|
195 | .ui-icon-clock { background-position: -80px -112px; } | |||
|
196 | .ui-icon-disk { background-position: -96px -112px; } | |||
|
197 | .ui-icon-calculator { background-position: -112px -112px; } | |||
|
198 | .ui-icon-zoomin { background-position: -128px -112px; } | |||
|
199 | .ui-icon-zoomout { background-position: -144px -112px; } | |||
|
200 | .ui-icon-search { background-position: -160px -112px; } | |||
|
201 | .ui-icon-wrench { background-position: -176px -112px; } | |||
|
202 | .ui-icon-gear { background-position: -192px -112px; } | |||
|
203 | .ui-icon-heart { background-position: -208px -112px; } | |||
|
204 | .ui-icon-star { background-position: -224px -112px; } | |||
|
205 | .ui-icon-link { background-position: -240px -112px; } | |||
|
206 | .ui-icon-cancel { background-position: 0 -128px; } | |||
|
207 | .ui-icon-plus { background-position: -16px -128px; } | |||
|
208 | .ui-icon-plusthick { background-position: -32px -128px; } | |||
|
209 | .ui-icon-minus { background-position: -48px -128px; } | |||
|
210 | .ui-icon-minusthick { background-position: -64px -128px; } | |||
|
211 | .ui-icon-close { background-position: -80px -128px; } | |||
|
212 | .ui-icon-closethick { background-position: -96px -128px; } | |||
|
213 | .ui-icon-key { background-position: -112px -128px; } | |||
|
214 | .ui-icon-lightbulb { background-position: -128px -128px; } | |||
|
215 | .ui-icon-scissors { background-position: -144px -128px; } | |||
|
216 | .ui-icon-clipboard { background-position: -160px -128px; } | |||
|
217 | .ui-icon-copy { background-position: -176px -128px; } | |||
|
218 | .ui-icon-contact { background-position: -192px -128px; } | |||
|
219 | .ui-icon-image { background-position: -208px -128px; } | |||
|
220 | .ui-icon-video { background-position: -224px -128px; } | |||
|
221 | .ui-icon-script { background-position: -240px -128px; } | |||
|
222 | .ui-icon-alert { background-position: 0 -144px; } | |||
|
223 | .ui-icon-info { background-position: -16px -144px; } | |||
|
224 | .ui-icon-notice { background-position: -32px -144px; } | |||
|
225 | .ui-icon-help { background-position: -48px -144px; } | |||
|
226 | .ui-icon-check { background-position: -64px -144px; } | |||
|
227 | .ui-icon-bullet { background-position: -80px -144px; } | |||
|
228 | .ui-icon-radio-off { background-position: -96px -144px; } | |||
|
229 | .ui-icon-radio-on { background-position: -112px -144px; } | |||
|
230 | .ui-icon-pin-w { background-position: -128px -144px; } | |||
|
231 | .ui-icon-pin-s { background-position: -144px -144px; } | |||
|
232 | .ui-icon-play { background-position: 0 -160px; } | |||
|
233 | .ui-icon-pause { background-position: -16px -160px; } | |||
|
234 | .ui-icon-seek-next { background-position: -32px -160px; } | |||
|
235 | .ui-icon-seek-prev { background-position: -48px -160px; } | |||
|
236 | .ui-icon-seek-end { background-position: -64px -160px; } | |||
|
237 | .ui-icon-seek-start { background-position: -80px -160px; } | |||
|
238 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ | |||
|
239 | .ui-icon-seek-first { background-position: -80px -160px; } | |||
|
240 | .ui-icon-stop { background-position: -96px -160px; } | |||
|
241 | .ui-icon-eject { background-position: -112px -160px; } | |||
|
242 | .ui-icon-volume-off { background-position: -128px -160px; } | |||
|
243 | .ui-icon-volume-on { background-position: -144px -160px; } | |||
|
244 | .ui-icon-power { background-position: 0 -176px; } | |||
|
245 | .ui-icon-signal-diag { background-position: -16px -176px; } | |||
|
246 | .ui-icon-signal { background-position: -32px -176px; } | |||
|
247 | .ui-icon-battery-0 { background-position: -48px -176px; } | |||
|
248 | .ui-icon-battery-1 { background-position: -64px -176px; } | |||
|
249 | .ui-icon-battery-2 { background-position: -80px -176px; } | |||
|
250 | .ui-icon-battery-3 { background-position: -96px -176px; } | |||
|
251 | .ui-icon-circle-plus { background-position: 0 -192px; } | |||
|
252 | .ui-icon-circle-minus { background-position: -16px -192px; } | |||
|
253 | .ui-icon-circle-close { background-position: -32px -192px; } | |||
|
254 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } | |||
|
255 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } | |||
|
256 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } | |||
|
257 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } | |||
|
258 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } | |||
|
259 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } | |||
|
260 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } | |||
|
261 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } | |||
|
262 | .ui-icon-circle-zoomin { background-position: -176px -192px; } | |||
|
263 | .ui-icon-circle-zoomout { background-position: -192px -192px; } | |||
|
264 | .ui-icon-circle-check { background-position: -208px -192px; } | |||
|
265 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } | |||
|
266 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } | |||
|
267 | .ui-icon-circlesmall-close { background-position: -32px -208px; } | |||
|
268 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } | |||
|
269 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } | |||
|
270 | .ui-icon-squaresmall-close { background-position: -80px -208px; } | |||
|
271 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } | |||
|
272 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } | |||
|
273 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } | |||
|
274 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } | |||
|
275 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } | |||
|
276 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } | |||
|
277 | ||||
|
278 | ||||
|
279 | /* Misc visuals | |||
|
280 | ----------------------------------*/ | |||
|
281 | ||||
|
282 | /* Corner radius */ | |||
|
283 | .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; } | |||
|
284 | .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; } | |||
|
285 | .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; } | |||
|
286 | .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } | |||
|
287 | .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; } | |||
|
288 | .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } | |||
|
289 | .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } | |||
|
290 | .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; } | |||
|
291 | .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } | |||
|
292 | ||||
|
293 | /* Overlays */ | |||
|
294 | .ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); } | |||
|
295 | .ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/* | |||
|
296 | * jQuery UI Resizable 1.8.10 | |||
|
297 | * | |||
|
298 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
299 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
300 | * http://jquery.org/license | |||
|
301 | * | |||
|
302 | * http://docs.jquery.com/UI/Resizable#theming | |||
|
303 | */ | |||
|
304 | .ui-resizable { position: relative;} | |||
|
305 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} | |||
|
306 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } | |||
|
307 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } | |||
|
308 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } | |||
|
309 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } | |||
|
310 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } | |||
|
311 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } | |||
|
312 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } | |||
|
313 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } | |||
|
314 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* | |||
|
315 | * jQuery UI Selectable 1.8.10 | |||
|
316 | * | |||
|
317 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
318 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
319 | * http://jquery.org/license | |||
|
320 | * | |||
|
321 | * http://docs.jquery.com/UI/Selectable#theming | |||
|
322 | */ | |||
|
323 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } | |||
|
324 | /* | |||
|
325 | * jQuery UI Accordion 1.8.10 | |||
|
326 | * | |||
|
327 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
328 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
329 | * http://jquery.org/license | |||
|
330 | * | |||
|
331 | * http://docs.jquery.com/UI/Accordion#theming | |||
|
332 | */ | |||
|
333 | /* IE/Win - Fix animation bug - #4615 */ | |||
|
334 | .ui-accordion { width: 100%; } | |||
|
335 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } | |||
|
336 | .ui-accordion .ui-accordion-li-fix { display: inline; } | |||
|
337 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } | |||
|
338 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } | |||
|
339 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } | |||
|
340 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } | |||
|
341 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } | |||
|
342 | .ui-accordion .ui-accordion-content-active { display: block; } | |||
|
343 | /* | |||
|
344 | * jQuery UI Autocomplete 1.8.10 | |||
|
345 | * | |||
|
346 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
347 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
348 | * http://jquery.org/license | |||
|
349 | * | |||
|
350 | * http://docs.jquery.com/UI/Autocomplete#theming | |||
|
351 | */ | |||
|
352 | .ui-autocomplete { position: absolute; cursor: default; } | |||
|
353 | ||||
|
354 | /* workarounds */ | |||
|
355 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ | |||
|
356 | ||||
|
357 | /* | |||
|
358 | * jQuery UI Menu 1.8.10 | |||
|
359 | * | |||
|
360 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) | |||
|
361 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
362 | * http://jquery.org/license | |||
|
363 | * | |||
|
364 | * http://docs.jquery.com/UI/Menu#theming | |||
|
365 | */ | |||
|
366 | .ui-menu { | |||
|
367 | list-style:none; | |||
|
368 | padding: 2px; | |||
|
369 | margin: 0; | |||
|
370 | display:block; | |||
|
371 | float: left; | |||
|
372 | } | |||
|
373 | .ui-menu .ui-menu { | |||
|
374 | margin-top: -3px; | |||
|
375 | } | |||
|
376 | .ui-menu .ui-menu-item { | |||
|
377 | margin:0; | |||
|
378 | padding: 0; | |||
|
379 | zoom: 1; | |||
|
380 | float: left; | |||
|
381 | clear: left; | |||
|
382 | width: 100%; | |||
|
383 | } | |||
|
384 | .ui-menu .ui-menu-item a { | |||
|
385 | text-decoration:none; | |||
|
386 | display:block; | |||
|
387 | padding:.2em .4em; | |||
|
388 | line-height:1.5; | |||
|
389 | zoom:1; | |||
|
390 | } | |||
|
391 | .ui-menu .ui-menu-item a.ui-state-hover, | |||
|
392 | .ui-menu .ui-menu-item a.ui-state-active { | |||
|
393 | font-weight: normal; | |||
|
394 | margin: -1px; | |||
|
395 | } | |||
|
396 | /* | |||
|
397 | * jQuery UI Button 1.8.10 | |||
|
398 | * | |||
|
399 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
400 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
401 | * http://jquery.org/license | |||
|
402 | * | |||
|
403 | * http://docs.jquery.com/UI/Button#theming | |||
|
404 | */ | |||
|
405 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ | |||
|
406 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ | |||
|
407 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ | |||
|
408 | .ui-button-icons-only { width: 3.4em; } | |||
|
409 | button.ui-button-icons-only { width: 3.7em; } | |||
|
410 | ||||
|
411 | /*button text element */ | |||
|
412 | .ui-button .ui-button-text { display: block; line-height: 1.4; } | |||
|
413 | .ui-button-text-only .ui-button-text { padding: .4em 1em; } | |||
|
414 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } | |||
|
415 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } | |||
|
416 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } | |||
|
417 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } | |||
|
418 | /* no icon support for input elements, provide padding by default */ | |||
|
419 | input.ui-button { padding: .4em 1em; } | |||
|
420 | ||||
|
421 | /*button icon element(s) */ | |||
|
422 | .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; } | |||
|
423 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } | |||
|
424 | .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; } | |||
|
425 | .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } | |||
|
426 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } | |||
|
427 | ||||
|
428 | /*button sets*/ | |||
|
429 | .ui-buttonset { margin-right: 7px; } | |||
|
430 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } | |||
|
431 | ||||
|
432 | /* workarounds */ | |||
|
433 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ | |||
|
434 | /* | |||
|
435 | * jQuery UI Dialog 1.8.10 | |||
|
436 | * | |||
|
437 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
438 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
439 | * http://jquery.org/license | |||
|
440 | * | |||
|
441 | * http://docs.jquery.com/UI/Dialog#theming | |||
|
442 | */ | |||
|
443 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } | |||
|
444 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } | |||
|
445 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } | |||
|
446 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } | |||
|
447 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } | |||
|
448 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } | |||
|
449 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } | |||
|
450 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } | |||
|
451 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } | |||
|
452 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } | |||
|
453 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } | |||
|
454 | .ui-draggable .ui-dialog-titlebar { cursor: move; } | |||
|
455 | /* | |||
|
456 | * jQuery UI Slider 1.8.10 | |||
|
457 | * | |||
|
458 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
459 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
460 | * http://jquery.org/license | |||
|
461 | * | |||
|
462 | * http://docs.jquery.com/UI/Slider#theming | |||
|
463 | */ | |||
|
464 | .ui-slider { position: relative; text-align: left; } | |||
|
465 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } | |||
|
466 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } | |||
|
467 | ||||
|
468 | .ui-slider-horizontal { height: .8em; } | |||
|
469 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } | |||
|
470 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } | |||
|
471 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } | |||
|
472 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } | |||
|
473 | ||||
|
474 | .ui-slider-vertical { width: .8em; height: 100px; } | |||
|
475 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } | |||
|
476 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } | |||
|
477 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } | |||
|
478 | .ui-slider-vertical .ui-slider-range-max { top: 0; }/* | |||
|
479 | * jQuery UI Tabs 1.8.10 | |||
|
480 | * | |||
|
481 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
482 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
483 | * http://jquery.org/license | |||
|
484 | * | |||
|
485 | * http://docs.jquery.com/UI/Tabs#theming | |||
|
486 | */ | |||
|
487 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | |||
|
488 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } | |||
|
489 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } | |||
|
490 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } | |||
|
491 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } | |||
|
492 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } | |||
|
493 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ | |||
|
494 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } | |||
|
495 | .ui-tabs .ui-tabs-hide { display: none !important; } | |||
|
496 | /* | |||
|
497 | * jQuery UI Datepicker 1.8.10 | |||
|
498 | * | |||
|
499 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
500 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
501 | * http://jquery.org/license | |||
|
502 | * | |||
|
503 | * http://docs.jquery.com/UI/Datepicker#theming | |||
|
504 | */ | |||
|
505 | .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } | |||
|
506 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } | |||
|
507 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } | |||
|
508 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } | |||
|
509 | .ui-datepicker .ui-datepicker-prev { left:2px; } | |||
|
510 | .ui-datepicker .ui-datepicker-next { right:2px; } | |||
|
511 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; } | |||
|
512 | .ui-datepicker .ui-datepicker-next-hover { right:1px; } | |||
|
513 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } | |||
|
514 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } | |||
|
515 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } | |||
|
516 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} | |||
|
517 | .ui-datepicker select.ui-datepicker-month, | |||
|
518 | .ui-datepicker select.ui-datepicker-year { width: 49%;} | |||
|
519 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } | |||
|
520 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } | |||
|
521 | .ui-datepicker td { border: 0; padding: 1px; } | |||
|
522 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } | |||
|
523 | .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } | |||
|
524 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } | |||
|
525 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } | |||
|
526 | ||||
|
527 | /* with multiple calendars */ | |||
|
528 | .ui-datepicker.ui-datepicker-multi { width:auto; } | |||
|
529 | .ui-datepicker-multi .ui-datepicker-group { float:left; } | |||
|
530 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } | |||
|
531 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } | |||
|
532 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } | |||
|
533 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } | |||
|
534 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } | |||
|
535 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } | |||
|
536 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } | |||
|
537 | .ui-datepicker-row-break { clear:both; width:100%; } | |||
|
538 | ||||
|
539 | /* RTL support */ | |||
|
540 | .ui-datepicker-rtl { direction: rtl; } | |||
|
541 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } | |||
|
542 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } | |||
|
543 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } | |||
|
544 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } | |||
|
545 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } | |||
|
546 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } | |||
|
547 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } | |||
|
548 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } | |||
|
549 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } | |||
|
550 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } | |||
|
551 | ||||
|
552 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ | |||
|
553 | .ui-datepicker-cover { | |||
|
554 | display: none; /*sorry for IE5*/ | |||
|
555 | display/**/: block; /*sorry for IE5*/ | |||
|
556 | position: absolute; /*must have*/ | |||
|
557 | z-index: -1; /*must have*/ | |||
|
558 | filter: mask(); /*must have*/ | |||
|
559 | top: -4px; /*must have*/ | |||
|
560 | left: -4px; /*must have*/ | |||
|
561 | width: 200px; /*must have*/ | |||
|
562 | height: 200px; /*must have*/ | |||
|
563 | }/* | |||
|
564 | * jQuery UI Progressbar 1.8.10 | |||
|
565 | * | |||
|
566 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) | |||
|
567 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
568 | * http://jquery.org/license | |||
|
569 | * | |||
|
570 | * http://docs.jquery.com/UI/Progressbar#theming | |||
|
571 | */ | |||
|
572 | .ui-progressbar { height:2em; text-align: left; } | |||
|
573 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } No newline at end of file |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
1 | NO CONTENT: new file 100755, binary diff hidden |
|
NO CONTENT: new file 100755, binary diff hidden |
@@ -0,0 +1,115 b'' | |||||
|
1 | /*.wijmo-wijaccordion.ui-helper-horizontal > .ui-widget-content | |||
|
2 | { | |||
|
3 | width: 200px; | |||
|
4 | height: 200px; | |||
|
5 | padding-top:0; | |||
|
6 | padding-bottom:0; | |||
|
7 | margin-top:0; | |||
|
8 | margin-bottom:0; | |||
|
9 | } | |||
|
10 | ||||
|
11 | .wijmo-wijaccordion.ui-helper-horizontal > .ui-accordion-header | |||
|
12 | { | |||
|
13 | height: 200px; | |||
|
14 | padding-top:0; | |||
|
15 | padding-bottom:0; | |||
|
16 | margin-top:0; | |||
|
17 | margin-bottom:0; | |||
|
18 | }*/ | |||
|
19 | ||||
|
20 | ||||
|
21 | .ui-accordion a | |||
|
22 | { | |||
|
23 | outline: none; | |||
|
24 | } | |||
|
25 | ||||
|
26 | /* RIGHT */ | |||
|
27 | ||||
|
28 | .ui-accordion-right .ui-accordion-header | |||
|
29 | { | |||
|
30 | margin-top: 0; | |||
|
31 | margin-left: 1px; | |||
|
32 | width: 2em; | |||
|
33 | height: 12em; | |||
|
34 | overflow: hidden; | |||
|
35 | } | |||
|
36 | ||||
|
37 | .ui-accordion-right .ui-accordion-content | |||
|
38 | { | |||
|
39 | margin: 0; | |||
|
40 | height: 200px; | |||
|
41 | width: 36em; | |||
|
42 | height: 12em; | |||
|
43 | padding: 0 2.2em; | |||
|
44 | } | |||
|
45 | .ui-accordion-right .ui-accordion-content | |||
|
46 | { | |||
|
47 | top: 0; | |||
|
48 | margin-left: -2px; | |||
|
49 | padding: 1px; | |||
|
50 | border: none; | |||
|
51 | } | |||
|
52 | ||||
|
53 | ||||
|
54 | .ui-accordion-right .ui-state-active | |||
|
55 | { | |||
|
56 | border-right: none; | |||
|
57 | } | |||
|
58 | ||||
|
59 | .ui-accordion-right .ui-accordion-header a | |||
|
60 | { | |||
|
61 | padding: 2.2em 0 0 0; | |||
|
62 | text-align: center; | |||
|
63 | } | |||
|
64 | ||||
|
65 | ||||
|
66 | .ui-accordion-right .ui-accordion-header .ui-icon | |||
|
67 | { | |||
|
68 | top: 10%; | |||
|
69 | } | |||
|
70 | ||||
|
71 | ||||
|
72 | /* LEFT */ | |||
|
73 | ||||
|
74 | .ui-accordion-left .ui-accordion-header | |||
|
75 | { | |||
|
76 | margin-top: 0; | |||
|
77 | margin-right: 1px; | |||
|
78 | width: 2em; | |||
|
79 | height: 12em; | |||
|
80 | overflow: hidden; | |||
|
81 | } | |||
|
82 | ||||
|
83 | .ui-accordion-left .ui-accordion-content | |||
|
84 | { | |||
|
85 | margin: 0; | |||
|
86 | height: 200px; | |||
|
87 | width: 36em; | |||
|
88 | height: 12em; | |||
|
89 | padding: 0 2.2em; | |||
|
90 | } | |||
|
91 | .ui-accordion-left .ui-accordion-content | |||
|
92 | { | |||
|
93 | border: none; | |||
|
94 | padding: 1px; | |||
|
95 | top: 0; | |||
|
96 | margin-right: -2px; | |||
|
97 | } | |||
|
98 | ||||
|
99 | ||||
|
100 | .ui-accordion-left .ui-state-active | |||
|
101 | { | |||
|
102 | border-left: none; | |||
|
103 | } | |||
|
104 | ||||
|
105 | .ui-accordion-left .ui-accordion-header a | |||
|
106 | { | |||
|
107 | padding: 2.2em 0 0 0; | |||
|
108 | text-align: center; | |||
|
109 | } | |||
|
110 | ||||
|
111 | ||||
|
112 | .ui-accordion-left .ui-accordion-header .ui-icon | |||
|
113 | { | |||
|
114 | top: 10%; | |||
|
115 | } |
@@ -0,0 +1,116 b'' | |||||
|
1 | .wijmo-wijcalendar | |||
|
2 | { | |||
|
3 | -webkit-user-select: none; | |||
|
4 | -moz-user-select: none; | |||
|
5 | display:block; | |||
|
6 | } | |||
|
7 | ||||
|
8 | .wijmo-wijcalendar-header | |||
|
9 | { | |||
|
10 | position: relative; | |||
|
11 | } | |||
|
12 | ||||
|
13 | .wijmo-wijcalendar-header-inner | |||
|
14 | { | |||
|
15 | margin: 0 1.8em; | |||
|
16 | line-height: 1.8em; | |||
|
17 | } | |||
|
18 | ||||
|
19 | .wijmo-wijcalendar .ui-datepicker-header | |||
|
20 | { | |||
|
21 | padding: 1px; | |||
|
22 | } | |||
|
23 | ||||
|
24 | .wijmo-wijcalendar .ui-datepicker-header .ui-state-default | |||
|
25 | { | |||
|
26 | border-color: transparent; | |||
|
27 | background: none; | |||
|
28 | color: inherit; | |||
|
29 | } | |||
|
30 | ||||
|
31 | .wijmo-wijcalendar .wijmo-wijcalendar-table | |||
|
32 | { | |||
|
33 | table-layout: fixed; | |||
|
34 | } | |||
|
35 | ||||
|
36 | .wijmo-wijcalendar-prevpreview-button, .wijmo-wijcalendar-nextpreview-button | |||
|
37 | { | |||
|
38 | width: 16px; | |||
|
39 | margin-top: 35%; | |||
|
40 | float: left; | |||
|
41 | } | |||
|
42 | ||||
|
43 | .wijmo-wijcalendar-nextpreview-button | |||
|
44 | { | |||
|
45 | float: right; | |||
|
46 | } | |||
|
47 | ||||
|
48 | .wijmo-wijcalendar-preview-wrapper .wijmo-wijcalendar | |||
|
49 | { | |||
|
50 | float: left; | |||
|
51 | width: 18em; | |||
|
52 | } | |||
|
53 | ||||
|
54 | .wijmo-wijcalendar-preview-wrapper .wijmo-wijcalendar .ui-datepicker-calendar | |||
|
55 | { | |||
|
56 | width: 80%; | |||
|
57 | float: left; | |||
|
58 | } | |||
|
59 | ||||
|
60 | .wijmo-wijcalendar-title, .wijmo-wijcalendar-selectable | |||
|
61 | { | |||
|
62 | cursor: pointer; | |||
|
63 | } | |||
|
64 | ||||
|
65 | .ui-datepicker-other-month | |||
|
66 | { | |||
|
67 | text-align: right; | |||
|
68 | } | |||
|
69 | ||||
|
70 | .wijmo-wijcalendar-mygrid td span, .wijmo-wijcalendar-mygrid td a | |||
|
71 | { | |||
|
72 | display: block; | |||
|
73 | text-align: center; | |||
|
74 | text-decoration: none; | |||
|
75 | padding: 0; | |||
|
76 | } | |||
|
77 | ||||
|
78 | .wijmo-wijcalendar-mygrid .ui-state-default a, .wijmo-wijcalendar-mygrid .ui-state-default a:hover, .wijmo-wijcalendar-mygrid .ui-state-hover a, .wijmo-wijcalendar-mygrid .ui-state-hover a:hover | |||
|
79 | { | |||
|
80 | color: inherit; | |||
|
81 | } | |||
|
82 | ||||
|
83 | .ui-header-custom img, .ui-footer-custom img | |||
|
84 | { | |||
|
85 | width: 100%; | |||
|
86 | } | |||
|
87 | ||||
|
88 | .wijmo-wijcalendar table.wijmo-wijcalendar-mygrid | |||
|
89 | { | |||
|
90 | margin-top: 2px; | |||
|
91 | border-collapse: separate; | |||
|
92 | table-layout: fixed; | |||
|
93 | } | |||
|
94 | ||||
|
95 | .wijmo-wijcalendar table.wijmo-wijcalendar-mygrid .ui-datepicker-week-day | |||
|
96 | { | |||
|
97 | cursor: pointer; | |||
|
98 | } | |||
|
99 | ||||
|
100 | .wijmo-wijcalendar-aniwrapper | |||
|
101 | { | |||
|
102 | position: relative; | |||
|
103 | left: 0; | |||
|
104 | top: 0; | |||
|
105 | } | |||
|
106 | ||||
|
107 | .wijmo-wijcalendar-multi-aniwrapper | |||
|
108 | { | |||
|
109 | position: absolute; | |||
|
110 | overflow: hidden; | |||
|
111 | } | |||
|
112 | ||||
|
113 | .ui-datepicker-rtl .ui-datepicker-prev .ui-icon, .ui-datepicker-rtl .ui-datepicker-next .ui-icon | |||
|
114 | { | |||
|
115 | direction: rtl; | |||
|
116 | } |
@@ -0,0 +1,44 b'' | |||||
|
1 | .wijmo-checkbox | |||
|
2 | { | |||
|
3 | position: relative; /*float: left;*/ | |||
|
4 | margin: 3px 0; | |||
|
5 | line-height: 16px; | |||
|
6 | width: 16px; | |||
|
7 | } | |||
|
8 | .wijmo-checkbox .wijmo-checkbox-inputwrapper | |||
|
9 | { | |||
|
10 | width: 0; | |||
|
11 | height: 0; | |||
|
12 | overflow: hidden; | |||
|
13 | } | |||
|
14 | .wijmo-checkbox label | |||
|
15 | { | |||
|
16 | display: block; | |||
|
17 | position: relative; | |||
|
18 | margin: 0; | |||
|
19 | cursor: pointer; | |||
|
20 | z-index: 1; | |||
|
21 | padding: 0 0 0 1.4em; | |||
|
22 | outline: none; | |||
|
23 | margin: 0 3px; | |||
|
24 | width: 8em; | |||
|
25 | } | |||
|
26 | .wijmo-checkbox .wijmo-checkbox-box | |||
|
27 | { | |||
|
28 | position: absolute; | |||
|
29 | bottom: 0; | |||
|
30 | left: 0; | |||
|
31 | width: 16px; | |||
|
32 | height: 16px; | |||
|
33 | -moz-border-radius: 2px; | |||
|
34 | -webkit-border-radius: 2px; | |||
|
35 | border-radius: 2px; | |||
|
36 | margin-right: 3px; | |||
|
37 | } | |||
|
38 | ||||
|
39 | .wijmo-checkbox .wijmo-checkbox-relative | |||
|
40 | { | |||
|
41 | position: relative; | |||
|
42 | float: left; | |||
|
43 | margin-right: 3px; | |||
|
44 | } |
@@ -0,0 +1,29 b'' | |||||
|
1 | .wijmo-wijdialog-captionbutton { | |||
|
2 | height:18px; | |||
|
3 | padding:1px; | |||
|
4 | width:19px; | |||
|
5 | display: inline-block; | |||
|
6 | margin-right:.2em; | |||
|
7 | outline:none; | |||
|
8 | text-align: left; | |||
|
9 | } | |||
|
10 | .wijmo-wijdialog-captionbutton:hover, | |||
|
11 | .wijmo-wijdialog-captionbutton .ui-state-focus { | |||
|
12 | padding: 0; | |||
|
13 | } | |||
|
14 | .wijmo-wijdialog-captionbutton .ui-icon{ | |||
|
15 | margin:1px; | |||
|
16 | } | |||
|
17 | .wijmo-wijdialog .wijmo-wijdialog-hasframe{ | |||
|
18 | padding: 0; | |||
|
19 | } | |||
|
20 | .wijmo-wijdialog-defaultdockingzone { position:fixed; bottom: 0px;left:0px; } | |||
|
21 | ||||
|
22 | .ui-dialog-titlebar {/* extend jquery.ui.dialog.css*/ | |||
|
23 | text-align: right; | |||
|
24 | } | |||
|
25 | ||||
|
26 | /* for ie 6 minimize*/ | |||
|
27 | * html .wijmo-wijdialog-defaultdockingzone .ui-dialog-titlebar { | |||
|
28 | float:left; | |||
|
29 | } |
@@ -0,0 +1,80 b'' | |||||
|
1 | .wijmo-wijdropdown | |||
|
2 | { | |||
|
3 | display: inline-block; | |||
|
4 | position: relative; | |||
|
5 | width: auto; | |||
|
6 | zoom: 1; | |||
|
7 | *display: inline; | |||
|
8 | width:200px; | |||
|
9 | /*z-index: 101;*/ | |||
|
10 | } | |||
|
11 | ||||
|
12 | ||||
|
13 | ||||
|
14 | ||||
|
15 | .wijmo-wijdropdown div.wijmo-dropdown-trigger | |||
|
16 | { | |||
|
17 | border-right: none; | |||
|
18 | border-top: none; | |||
|
19 | border-bottom: none; | |||
|
20 | cursor: pointer; | |||
|
21 | width: 16px; | |||
|
22 | height: 100%; | |||
|
23 | position: absolute; | |||
|
24 | right: 0; | |||
|
25 | top: 0; | |||
|
26 | padding: 0 3px; | |||
|
27 | } | |||
|
28 | ||||
|
29 | .wijmo-wijdropdown .wijmo-dropdown-trigger .ui-icon | |||
|
30 | { | |||
|
31 | margin-top: 3px; | |||
|
32 | } | |||
|
33 | ||||
|
34 | .wijmo-wijdropdown label.wijmo-dropdown-label | |||
|
35 | { | |||
|
36 | display: block; | |||
|
37 | padding: 3px 26px 3px 5px; | |||
|
38 | width: auto; | |||
|
39 | border: none; | |||
|
40 | } | |||
|
41 | ||||
|
42 | .wijmo-wijdropdown .wijmo-dropdown | |||
|
43 | { | |||
|
44 | position: absolute; height:250px; | |||
|
45 | } | |||
|
46 | ||||
|
47 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-list | |||
|
48 | { | |||
|
49 | padding: 0.4em; | |||
|
50 | border: 0 none; | |||
|
51 | } | |||
|
52 | ||||
|
53 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-item | |||
|
54 | { | |||
|
55 | border:1px solid transparent; | |||
|
56 | cursor:pointer; | |||
|
57 | font-weight:normal; | |||
|
58 | margin:1px 0; | |||
|
59 | padding:3px 5px; | |||
|
60 | text-align:left; | |||
|
61 | *border-color: white; | |||
|
62 | *filter: chroma(color=white); | |||
|
63 | ||||
|
64 | } | |||
|
65 | ||||
|
66 | /* | |||
|
67 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-optgroup .wijmo-dropdown-items | |||
|
68 | { | |||
|
69 | margin-left: 15%; | |||
|
70 | }*/ | |||
|
71 | ||||
|
72 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-dropdown-optgroup .wijmo-dropdown-items li | |||
|
73 | { | |||
|
74 | padding-left: 10%; | |||
|
75 | } | |||
|
76 | ||||
|
77 | .wijmo-wijdropdown .wijmo-dropdown .wijmo-optgroup-header | |||
|
78 | { | |||
|
79 | font-style: italic; | |||
|
80 | } |
@@ -0,0 +1,185 b'' | |||||
|
1 | .wijmo-wijexpander | |||
|
2 | { | |||
|
3 | margin: 1px; | |||
|
4 | padding: 0; | |||
|
5 | display: block; | |||
|
6 | } | |||
|
7 | ||||
|
8 | .wijmo-wijexpander a | |||
|
9 | { | |||
|
10 | outline: none; | |||
|
11 | } | |||
|
12 | ||||
|
13 | .wijmo-wijexpander .ui-expander-header | |||
|
14 | { | |||
|
15 | cursor: pointer; | |||
|
16 | margin-top: 1px; | |||
|
17 | position: relative; | |||
|
18 | } | |||
|
19 | /*.wijmo-wijexpander.ui-helper-horizontal > .ui-expander-header | |||
|
20 | { | |||
|
21 | cursor: pointer; | |||
|
22 | width: 20px; | |||
|
23 | height: 200px; | |||
|
24 | } | |||
|
25 | .wijmo-wijexpander.ui-state-disabled > .ui-expander-header | |||
|
26 | { | |||
|
27 | cursor: default; | |||
|
28 | } | |||
|
29 | .wijmo-wijexpander > .ui-widget-content | |||
|
30 | { | |||
|
31 | height: 100px; | |||
|
32 | overflow: auto; | |||
|
33 | } | |||
|
34 | .wijmo-wijexpander.ui-state-disabled > .ui-widget-content | |||
|
35 | { | |||
|
36 | }*/ | |||
|
37 | ||||
|
38 | ||||
|
39 | .ui-expander .ui-expander-content | |||
|
40 | { | |||
|
41 | border-top: 0 none; | |||
|
42 | display: none; | |||
|
43 | margin-bottom: 2px; | |||
|
44 | margin-top: -2px; | |||
|
45 | overflow: auto; | |||
|
46 | padding: 1em 2.2em; | |||
|
47 | position: relative; | |||
|
48 | top: 1px; | |||
|
49 | } | |||
|
50 | ||||
|
51 | ||||
|
52 | .wijmo-wijexpander .ui-expander-header a | |||
|
53 | { | |||
|
54 | display: block; | |||
|
55 | font-size: 1em; | |||
|
56 | padding: 0.5em 0.5em 0.5em 0.7em; | |||
|
57 | } | |||
|
58 | ||||
|
59 | .wijmo-wijexpander .ui-expander-header .ui-icon | |||
|
60 | { | |||
|
61 | left: 0.5em; | |||
|
62 | margin-top: -8px; | |||
|
63 | position: absolute; | |||
|
64 | top: 50%; | |||
|
65 | } | |||
|
66 | ||||
|
67 | .wijmo-wijexpander .ui-expander-content-active | |||
|
68 | { | |||
|
69 | display: block; | |||
|
70 | border-top: 0 none; | |||
|
71 | padding: 1em 2.2em; | |||
|
72 | } | |||
|
73 | ||||
|
74 | ||||
|
75 | .wijmo-wijexpander .ui-expander-header > a | |||
|
76 | { | |||
|
77 | padding-left: 2.2em; | |||
|
78 | } | |||
|
79 | ||||
|
80 | .ui-helper-horizontal.wijmo-wijexpander .ui-expander-header .ui-icon | |||
|
81 | { | |||
|
82 | left: inherit; | |||
|
83 | margin-top: inherit; | |||
|
84 | margin-left: -8px; | |||
|
85 | position: absolute; | |||
|
86 | top: 0.5em; | |||
|
87 | left: 50%; | |||
|
88 | } | |||
|
89 | ||||
|
90 | .ui-helper-horizontal.wijmo-wijexpander .ui-expander-header > a | |||
|
91 | { | |||
|
92 | padding-left: inherit; | |||
|
93 | padding-top: 2.2em; | |||
|
94 | display: inline-block; | |||
|
95 | } | |||
|
96 | ||||
|
97 | ||||
|
98 | /* RIGHT */ | |||
|
99 | ||||
|
100 | .ui-expander-right .ui-expander-header | |||
|
101 | { | |||
|
102 | margin: 0 1px; | |||
|
103 | width: 2em; | |||
|
104 | height: 12em; | |||
|
105 | overflow: hidden; | |||
|
106 | } | |||
|
107 | ||||
|
108 | .ui-expander-right .ui-expander-content | |||
|
109 | { | |||
|
110 | margin: 0; | |||
|
111 | height: 200px; | |||
|
112 | width: 12em; | |||
|
113 | height: 12em; | |||
|
114 | padding: 0 2.2em; | |||
|
115 | } | |||
|
116 | .ui-expander-right .ui-expander-content | |||
|
117 | { | |||
|
118 | top: 0; | |||
|
119 | margin-left: -2px; | |||
|
120 | padding: 1px; | |||
|
121 | border: none; | |||
|
122 | margin-right: 1px; | |||
|
123 | } | |||
|
124 | ||||
|
125 | ||||
|
126 | .ui-expander-right .ui-state-active | |||
|
127 | { | |||
|
128 | border-right: none; | |||
|
129 | } | |||
|
130 | ||||
|
131 | .ui-expander-right .ui-expander-header a | |||
|
132 | { | |||
|
133 | padding: 2.2em 0 0 0; | |||
|
134 | } | |||
|
135 | ||||
|
136 | ||||
|
137 | .ui-expander-right .ui-expander-header .ui-icon | |||
|
138 | { | |||
|
139 | top: 10%; | |||
|
140 | } | |||
|
141 | ||||
|
142 | ||||
|
143 | /* LEFT */ | |||
|
144 | ||||
|
145 | .ui-expander-left .ui-expander-header | |||
|
146 | { | |||
|
147 | margin: 0 1px; | |||
|
148 | width: 2em; | |||
|
149 | height: 12em; | |||
|
150 | overflow: hidden; | |||
|
151 | } | |||
|
152 | ||||
|
153 | .ui-expander-left .ui-expander-content | |||
|
154 | { | |||
|
155 | margin: 0; | |||
|
156 | height: 200px; | |||
|
157 | width: 12em; | |||
|
158 | height: 12em; | |||
|
159 | padding: 0 2.2em; | |||
|
160 | } | |||
|
161 | .ui-expander-left .ui-expander-content | |||
|
162 | { | |||
|
163 | border: none; | |||
|
164 | padding: 1px; | |||
|
165 | top: 0; | |||
|
166 | margin-right: -2px; | |||
|
167 | margin-left: 1px; | |||
|
168 | } | |||
|
169 | ||||
|
170 | ||||
|
171 | .ui-expander-left .ui-state-active | |||
|
172 | { | |||
|
173 | border-left: none; | |||
|
174 | } | |||
|
175 | ||||
|
176 | .ui-expander-left .ui-expander-header a | |||
|
177 | { | |||
|
178 | padding: 2.2em 0 0 0; | |||
|
179 | } | |||
|
180 | ||||
|
181 | ||||
|
182 | .ui-expander-left .ui-expander-header .ui-icon | |||
|
183 | { | |||
|
184 | top: 10%; | |||
|
185 | } |
@@ -0,0 +1,35 b'' | |||||
|
1 | .wijmo-wijlist-list | |||
|
2 | { | |||
|
3 | cursor: default; | |||
|
4 | overflow: hidden; | |||
|
5 | } | |||
|
6 | .wijmo-wijlist-ul | |||
|
7 | { | |||
|
8 | list-style: none; | |||
|
9 | padding: 2px; | |||
|
10 | margin: 0; | |||
|
11 | display: block; | |||
|
12 | border: 0px; | |||
|
13 | overflow: hidden; | |||
|
14 | } | |||
|
15 | .wijmo-wijlist-ul .wijmo-wijlist-item | |||
|
16 | { | |||
|
17 | margin: 1px 0; | |||
|
18 | padding: 3px 5px; | |||
|
19 | /*white-space: nowrap;*/ | |||
|
20 | cursor: pointer; | |||
|
21 | text-align: left; | |||
|
22 | font-weight: normal; | |||
|
23 | border: solid 1px transparent; | |||
|
24 | } | |||
|
25 | .wijmo-wijlist-ul .wijmo-wijlist-item.ui-state-hover | |||
|
26 | { | |||
|
27 | font-weight: normal; | |||
|
28 | } | |||
|
29 | ||||
|
30 | .wijmo-wijlist .ui-resizable-se | |||
|
31 | { | |||
|
32 | width: 7px; | |||
|
33 | height: 7px; | |||
|
34 | background: none; | |||
|
35 | } |
@@ -0,0 +1,253 b'' | |||||
|
1 | .wijmo-wijmenu { | |||
|
2 | width:150px; | |||
|
3 | padding:0.3em; | |||
|
4 | position:relative; | |||
|
5 | } | |||
|
6 | ||||
|
7 | .wijmo-wijmenu .wijmo-wijsuperpanel { | |||
|
8 | border:none; | |||
|
9 | background: inherit; | |||
|
10 | padding:0; | |||
|
11 | } | |||
|
12 | ||||
|
13 | .wijmo-wijmenu-list { | |||
|
14 | position:static; | |||
|
15 | } | |||
|
16 | ||||
|
17 | .wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child { | |||
|
18 | display:none; | |||
|
19 | width:150px; | |||
|
20 | padding:0.3em; | |||
|
21 | } | |||
|
22 | ||||
|
23 | .wijmo-wijmenu .wijmo-wijmenu-parent { | |||
|
24 | position:relative; | |||
|
25 | } | |||
|
26 | ||||
|
27 | .wijmo-wijmenu .wijmo-wijmenu-child { | |||
|
28 | position:relative; | |||
|
29 | left:150px; | |||
|
30 | top:0; | |||
|
31 | } | |||
|
32 | ||||
|
33 | .wijmo-wijmenu .wijmo-wijmenu-item { | |||
|
34 | width:100%; | |||
|
35 | float:left; | |||
|
36 | clear:both; | |||
|
37 | margin:1px 0; | |||
|
38 | padding:0; | |||
|
39 | } | |||
|
40 | ||||
|
41 | .wijmo-wijmenu .wijmo-wijmenu-list .wijmo-wijmenu-item { | |||
|
42 | background:none; | |||
|
43 | border:none; | |||
|
44 | } | |||
|
45 | ||||
|
46 | .wijmo-wijmenu .wijmo-wijmenu-link { | |||
|
47 | display:block; | |||
|
48 | width:92%; | |||
|
49 | outline:none; | |||
|
50 | text-decoration:none; | |||
|
51 | font-weight:400; | |||
|
52 | border:solid 1px transparent; | |||
|
53 | float:left; | |||
|
54 | line-height:16px; | |||
|
55 | padding:0.3em; | |||
|
56 | } | |||
|
57 | ||||
|
58 | .wijmo-wijmenu-horizontal { | |||
|
59 | width:auto; | |||
|
60 | } | |||
|
61 | ||||
|
62 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-item { | |||
|
63 | width:auto; | |||
|
64 | clear:none; | |||
|
65 | margin-right:3px; | |||
|
66 | } | |||
|
67 | ||||
|
68 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child .wijmo-wijmenu-item { | |||
|
69 | width:100%; | |||
|
70 | } | |||
|
71 | ||||
|
72 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child { | |||
|
73 | top:25px; | |||
|
74 | left:0; | |||
|
75 | } | |||
|
76 | ||||
|
77 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-link { | |||
|
78 | width:auto; | |||
|
79 | padding:0.4em 0.3em; | |||
|
80 | } | |||
|
81 | ||||
|
82 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child .wijmo-wijmenu-link { | |||
|
83 | width:92%; | |||
|
84 | } | |||
|
85 | ||||
|
86 | .wijmo-wijmenu .wijmo-wijmenu-list .ui-widget-header { | |||
|
87 | clear:both; | |||
|
88 | float:left; | |||
|
89 | width:98%; | |||
|
90 | font-size:12px; | |||
|
91 | margin:1px 0; | |||
|
92 | } | |||
|
93 | ||||
|
94 | .wijmo-wijmenu-horizontal .ui-widget-header { | |||
|
95 | clear:none; | |||
|
96 | width:auto; | |||
|
97 | margin:0 3px 0 0; | |||
|
98 | } | |||
|
99 | ||||
|
100 | .wijmo-wijmenu .ui-widget-header h1,.wijmo-wijmenu .ui-widget-header h2,.wijmo-wijmenu .ui-widget-header h3,.wijmo-wijmenu .ui-widget-header h4,.wijmo-wijmenu .ui-widget-header h5,.wijmo-wijmenu .ui-widget-header h6 { | |||
|
101 | float:left; | |||
|
102 | display:block; | |||
|
103 | font-size:1em; | |||
|
104 | margin:0 auto; | |||
|
105 | padding:0.3em 3%; | |||
|
106 | } | |||
|
107 | ||||
|
108 | .wijmo-wijmenu-horizontal .ui-widget-header h1,.wijmo-wijmenu-horizontal .ui-widget-header h2,.wijmo-wijmenu-horizontal .ui-widget-header h3,.wijmo-wijmenu-horizontal .ui-widget-header h4,.wijmo-wijmenu-horizontal .ui-widget-header h5,.wijmo-wijmenu-horizontal .ui-widget-header h6 { | |||
|
109 | padding:0.4em 0.3em; | |||
|
110 | } | |||
|
111 | ||||
|
112 | .wijmo-wijmenu a.ui-state-default:link,.wijmo-wijmenu a.ui-state-default:visited,.wijmo-wijmenu a.ui-state-default:hover,.wijmo-wijmenu a.ui-state-default:active,.wijmo-wijmenu a.ui-state-hover:link,.wijmo-wijmenu a.ui-state-hover:visited,.wijmo-wijmenu a.ui-state-hover:hover,.wijmo-wijmenu a.ui-state-hover:active,.wijmo-wijmenu a.ui-state-active:link,.wijmo-wijmenu a.ui-state-active:visited,.wijmo-wijmenu a.ui-state-active:hover,.wijmo-wijmenu a.ui-state-active:active { | |||
|
113 | font-weight:400; | |||
|
114 | border-style:solid; | |||
|
115 | } | |||
|
116 | ||||
|
117 | .wijmo-wijmenu .wijmo-wijmenu-child .ui-state-hover { | |||
|
118 | font-weight:400; | |||
|
119 | } | |||
|
120 | ||||
|
121 | .wijmo-wijmenu .wijmo-wijmenu-separator { | |||
|
122 | clear:both; | |||
|
123 | float:left; | |||
|
124 | height:1px; | |||
|
125 | text-indent:-9999px; | |||
|
126 | width:98%; | |||
|
127 | margin:1px 0; | |||
|
128 | font-size:0; | |||
|
129 | } | |||
|
130 | ||||
|
131 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-separator { | |||
|
132 | height:auto; | |||
|
133 | clear:none; | |||
|
134 | width:1px; | |||
|
135 | text-indent:-9999px; | |||
|
136 | margin:0 3px 0 0; | |||
|
137 | padding:0.4em 0; | |||
|
138 | } | |||
|
139 | ||||
|
140 | .wijmo-wijmenu-horizontal .wijmo-wijmenu-child .wijmo-wijmenu-separator { | |||
|
141 | clear:both; | |||
|
142 | float:left; | |||
|
143 | height:1px; | |||
|
144 | text-indent:-9999px; | |||
|
145 | width:98%; | |||
|
146 | margin:1px 0; | |||
|
147 | padding:0; | |||
|
148 | } | |||
|
149 | ||||
|
150 | .wijmo-wijmenu .wijmo-wijmenu-group { | |||
|
151 | clear:both; | |||
|
152 | float:left; | |||
|
153 | width:98%; | |||
|
154 | margin:3px 0; | |||
|
155 | padding:0 0.4em; | |||
|
156 | } | |||
|
157 | ||||
|
158 | .wijmo-wijmenu-ipod { | |||
|
159 | width:180px; | |||
|
160 | } | |||
|
161 | ||||
|
162 | .wijmo-wijmenu-container { | |||
|
163 | overflow:hidden; | |||
|
164 | } | |||
|
165 | ||||
|
166 | .wijmo-wijmenu-ipod .wijmo-wijmenu-list { | |||
|
167 | background:inherit; | |||
|
168 | position:absolute; | |||
|
169 | border-width:0; | |||
|
170 | -moz-box-shadow: none; | |||
|
171 | -webkit-box-shadow:none; | |||
|
172 | } | |||
|
173 | ||||
|
174 | .wijmo-wijmenu-breadcrumb { | |||
|
175 | margin:0; | |||
|
176 | padding:0; | |||
|
177 | } | |||
|
178 | ||||
|
179 | .wijmo-wijmenu-footer { | |||
|
180 | margin-top:3px; | |||
|
181 | } | |||
|
182 | ||||
|
183 | .wijmo-wijmenu-footer .ui-icon { | |||
|
184 | margin:3px 0; | |||
|
185 | } | |||
|
186 | ||||
|
187 | .wijmo-wijmenu-header { | |||
|
188 | margin-bottom:3px; | |||
|
189 | } | |||
|
190 | ||||
|
191 | .wijmo-wijmenu-breadcrumb li { | |||
|
192 | float:left; | |||
|
193 | list-style:none; | |||
|
194 | font-size:.9em; | |||
|
195 | margin:0; | |||
|
196 | padding:0 .2em; | |||
|
197 | } | |||
|
198 | ||||
|
199 | .wijmo-wijmenu-breadcrumb li.wijmo-wijmenu-prev-list,.wijmo-wijmenu-breadcrumb li.wijmo-wijmenu-current-crumb { | |||
|
200 | clear:left; | |||
|
201 | float:none; | |||
|
202 | opacity:1; | |||
|
203 | } | |||
|
204 | ||||
|
205 | .wijmo-wijmenu-breadcrumb li.wijmo-wijmenu-current-crumb { | |||
|
206 | padding-top:.2em; | |||
|
207 | } | |||
|
208 | ||||
|
209 | .wijmo-wijmenu-footer a:link,.wijmo-wijmenu-footer a:visited { | |||
|
210 | float:left; | |||
|
211 | width:100%; | |||
|
212 | text-decoration:none; | |||
|
213 | } | |||
|
214 | ||||
|
215 | .wijmo-wijmenu-footer a span { | |||
|
216 | float:left; | |||
|
217 | cursor:pointer; | |||
|
218 | } | |||
|
219 | ||||
|
220 | .wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:link,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:visited,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:hover,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a:active { | |||
|
221 | background-image:none; | |||
|
222 | text-decoration:none; | |||
|
223 | } | |||
|
224 | ||||
|
225 | .wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a { | |||
|
226 | float:left; | |||
|
227 | padding-right:.4em; | |||
|
228 | } | |||
|
229 | ||||
|
230 | .wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:link,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:visited,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:hover,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-current-crumb a:active { | |||
|
231 | display:block; | |||
|
232 | background-image:none; | |||
|
233 | font-size:1.3em; | |||
|
234 | text-decoration:none; | |||
|
235 | } | |||
|
236 | ||||
|
237 | .wijmo-wijmenu .wijmo-wijmenu-parent .ui-icon,.wijmo-wijmenu-horizontal .wijmo-wijmenu-child .ui-icon,.wijmo-wijmenu-ipod .ui-icon-triangle-1-e { | |||
|
238 | float:right; | |||
|
239 | } | |||
|
240 | ||||
|
241 | .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-text,.wijmo-wijmenu-horizontal .wijmo-wijmenu-parent .ui-icon,.wijmo-wijmenu-breadcrumb a,.wijmo-wijmenu-breadcrumb span,.wijmo-wijmenu-breadcrumb .wijmo-wijmenu-prev-list a .ui-icon { | |||
|
242 | float:left; | |||
|
243 | } | |||
|
244 | ||||
|
245 | .wijmo-wijmenu .wijmo-wijmenu-link .wijmo-wijmenu-icon-left { | |||
|
246 | display:inline-block; | |||
|
247 | float:left; | |||
|
248 | } | |||
|
249 | ||||
|
250 | .wijmo-wijmenu .wijmo-wijmenu-link .wijmo-wijmenu-icon-right { | |||
|
251 | display:inline-block; | |||
|
252 | float:right; | |||
|
253 | } No newline at end of file |
@@ -0,0 +1,126 b'' | |||||
|
1 | ||||
|
2 | .wijmo-wijprogressbar | |||
|
3 | { | |||
|
4 | moz-user-select: none; | |||
|
5 | text-align: left; | |||
|
6 | float: left; | |||
|
7 | position: relative; | |||
|
8 | overflow: hidden; | |||
|
9 | } | |||
|
10 | ||||
|
11 | .wijmo-wijprogressbar .ui-progressbar-value | |||
|
12 | { | |||
|
13 | position: absolute; | |||
|
14 | border-width: 0; | |||
|
15 | margin: 0; | |||
|
16 | } | |||
|
17 | ||||
|
18 | div.wijmo-wijprogressbar-east | |||
|
19 | { | |||
|
20 | width: 200px; | |||
|
21 | height: 1.1em; | |||
|
22 | } | |||
|
23 | div.wijmo-wijprogressbar-west | |||
|
24 | { | |||
|
25 | width: 200px; | |||
|
26 | height: 1.1em; | |||
|
27 | } | |||
|
28 | div.wijmo-wijprogressbar-south | |||
|
29 | { | |||
|
30 | height: 200px; | |||
|
31 | width: 1.1em; | |||
|
32 | line-height: 100%; | |||
|
33 | } | |||
|
34 | ||||
|
35 | div.wijmo-wijprogressbar-north | |||
|
36 | { | |||
|
37 | height: 200px; | |||
|
38 | width: 1.1em; | |||
|
39 | line-height: 100%; | |||
|
40 | } | |||
|
41 | ||||
|
42 | .wijmo-wijprogressbar-east .ui-progressbar-value | |||
|
43 | { | |||
|
44 | left: 0; | |||
|
45 | height: 100%; | |||
|
46 | } | |||
|
47 | .wijmo-wijprogressbar-west .ui-progressbar-value | |||
|
48 | { | |||
|
49 | right: 0; | |||
|
50 | height: 100%; | |||
|
51 | } | |||
|
52 | .wijmo-wijprogressbar-south .ui-progressbar-value | |||
|
53 | { | |||
|
54 | top: 0; | |||
|
55 | width: 100%; | |||
|
56 | } | |||
|
57 | ||||
|
58 | .wijmo-wijprogressbar-north .ui-progressbar-value | |||
|
59 | { | |||
|
60 | bottom: 0; | |||
|
61 | width: 100%; | |||
|
62 | } | |||
|
63 | ||||
|
64 | .wijmo-wijprogressbar .lb_west, .wijmo-wijprogressbar .lb_east, .wijmo-wijprogressbar .lb_south, .wijmo-wijprogressbar .lb_north, .wijmo-wijprogressbar .lb_center | |||
|
65 | { | |||
|
66 | display: block; position:absolute; | |||
|
67 | } | |||
|
68 | ||||
|
69 | .wijmo-wijprogressbar .lb_west | |||
|
70 | { | |||
|
71 | text-align: left; | |||
|
72 | } | |||
|
73 | .wijmo-wijprogressbar .lb_east | |||
|
74 | { | |||
|
75 | text-align: right; | |||
|
76 | } | |||
|
77 | .wijmo-wijprogressbar .lb_south | |||
|
78 | { | |||
|
79 | width: 100%; | |||
|
80 | text-align: center; | |||
|
81 | position: absolute; | |||
|
82 | bottom: 0; | |||
|
83 | } | |||
|
84 | .wijmo-wijprogressbar .lb_north | |||
|
85 | { | |||
|
86 | width: 100%; | |||
|
87 | text-align: center; | |||
|
88 | top: 0; | |||
|
89 | } | |||
|
90 | .wijmo-wijprogressbar .lb_center | |||
|
91 | { | |||
|
92 | width: 100%; | |||
|
93 | text-align: center; | |||
|
94 | } | |||
|
95 | .wijmo-wijprogressbar .lb_running | |||
|
96 | { | |||
|
97 | position: absolute; | |||
|
98 | left: auto; | |||
|
99 | top: auto; | |||
|
100 | } | |||
|
101 | ||||
|
102 | .wijmo-wijprogressbar-east .lb_running, .wijmo-wijprogressbar-west .lb_running | |||
|
103 | { | |||
|
104 | width: auto; | |||
|
105 | height: 100%; | |||
|
106 | } | |||
|
107 | .wijmo-wijprogressbar-south .lb_running, .wijmo-wijprogressbar-north .lb_running | |||
|
108 | { | |||
|
109 | width: 100%; | |||
|
110 | height: auto; | |||
|
111 | text-align: center; | |||
|
112 | -webkit-transform: rotate(-90deg); | |||
|
113 | -moz-transform: rotate(-90deg); | |||
|
114 | } | |||
|
115 | ||||
|
116 | .wijmo-wijprogressbar-west .ui-progressbar-label | |||
|
117 | { | |||
|
118 | position: absolute; | |||
|
119 | right: 0; | |||
|
120 | } | |||
|
121 | .wijmo-wijprogressbar-north .ui-progressbar-label, .wijmo-wijprogressbar-south .ui-progressbar-label | |||
|
122 | { | |||
|
123 | position: absolute; | |||
|
124 | -webkit-transform: rotate(-90deg); | |||
|
125 | -moz-transform: rotate(-90deg); | |||
|
126 | } |
@@ -0,0 +1,44 b'' | |||||
|
1 | .wijmo-wijradio | |||
|
2 | { | |||
|
3 | position: relative; /*float: left;*/ | |||
|
4 | margin: 3px 0; | |||
|
5 | width: 16px; | |||
|
6 | line-height: 16px; | |||
|
7 | } | |||
|
8 | .wijmo-wijradio .wijmo-wijradio-inputwrapper | |||
|
9 | { | |||
|
10 | width: 0; | |||
|
11 | height: 0; | |||
|
12 | overflow: hidden; | |||
|
13 | } | |||
|
14 | .wijmo-wijradio label | |||
|
15 | { | |||
|
16 | display: block; | |||
|
17 | position: relative; | |||
|
18 | margin: 0; | |||
|
19 | cursor: pointer; | |||
|
20 | z-index: 1; | |||
|
21 | padding: 0 0 0 1.4em; | |||
|
22 | outline: none; | |||
|
23 | margin: 0 3px; | |||
|
24 | width: 8em; | |||
|
25 | } | |||
|
26 | .wijmo-wijradio .wijmo-wijradio-box | |||
|
27 | { | |||
|
28 | position: absolute; | |||
|
29 | bottom: 0; | |||
|
30 | left: 0; | |||
|
31 | width: 16px; | |||
|
32 | height: 16px; | |||
|
33 | line-height: 16px; | |||
|
34 | -moz-border-radius: 10px; | |||
|
35 | -webkit-border-radius: 10px; | |||
|
36 | border-radius: 10px; | |||
|
37 | } | |||
|
38 | .wijmo-wijradio .wijmo-wijradio-relative | |||
|
39 | { | |||
|
40 | position: relative; | |||
|
41 | float: left; | |||
|
42 | margin-right: 3px; | |||
|
43 | } | |||
|
44 |
@@ -0,0 +1,55 b'' | |||||
|
1 | /* WijSlider horizontal | |||
|
2 | ----------------------------------*/ | |||
|
3 | .wijmo-wijslider-horizontal | |||
|
4 | { | |||
|
5 | position: relative; | |||
|
6 | } | |||
|
7 | ||||
|
8 | .wijmo-wijslider-horizontal .wijmo-wijslider-track | |||
|
9 | { | |||
|
10 | ||||
|
11 | } | |||
|
12 | ||||
|
13 | .wijmo-wijslider-horizontal .wijmo-wijslider-decbutton | |||
|
14 | { | |||
|
15 | position: absolute; | |||
|
16 | left: 0px; | |||
|
17 | right: auto; | |||
|
18 | cursor:pointer; | |||
|
19 | } | |||
|
20 | ||||
|
21 | .wijmo-wijslider-horizontal .wijmo-wijslider-incbutton | |||
|
22 | { | |||
|
23 | position: absolute; | |||
|
24 | left: auto; | |||
|
25 | right: 0px; | |||
|
26 | cursor:pointer; | |||
|
27 | } | |||
|
28 | ||||
|
29 | /* WijSlider vertical | |||
|
30 | ----------------------------------*/ | |||
|
31 | .wijmo-wijslider-vertical | |||
|
32 | { | |||
|
33 | position: relative; | |||
|
34 | } | |||
|
35 | ||||
|
36 | .wijmo-wijslider-vertical .wijmo-wijslider-track | |||
|
37 | { | |||
|
38 | ||||
|
39 | } | |||
|
40 | ||||
|
41 | .wijmo-wijslider-vertical .wijmo-wijslider-decbutton | |||
|
42 | { | |||
|
43 | position: absolute; | |||
|
44 | top: 0px; | |||
|
45 | bottom: auto; | |||
|
46 | cursor:pointer; | |||
|
47 | } | |||
|
48 | ||||
|
49 | .wijmo-wijslider-vertical .wijmo-wijslider-incbutton | |||
|
50 | { | |||
|
51 | position: absolute; | |||
|
52 | top: auto; | |||
|
53 | bottom: 0px; | |||
|
54 | cursor:pointer; | |||
|
55 | } No newline at end of file |
@@ -0,0 +1,160 b'' | |||||
|
1 | /* WijSplitter | |||
|
2 | ----------------------------------*/ | |||
|
3 | ||||
|
4 | .wijmo-wijsplitter-vertical | |||
|
5 | { | |||
|
6 | overflow: hidden; | |||
|
7 | /* fixed bug for IE6.7 */ | |||
|
8 | position: relative; | |||
|
9 | } | |||
|
10 | .wijmo-wijsplitter-v-panel1 | |||
|
11 | { | |||
|
12 | float: left; | |||
|
13 | position: relative; | |||
|
14 | } | |||
|
15 | .wijmo-wijsplitter-v-panel1-content | |||
|
16 | { | |||
|
17 | position: relative; | |||
|
18 | } | |||
|
19 | .wijmo-wijsplitter-v-bar | |||
|
20 | { | |||
|
21 | float: left; | |||
|
22 | position: relative; | |||
|
23 | font-size: 1px; | |||
|
24 | width: 2px; | |||
|
25 | z-index:99; | |||
|
26 | } | |||
|
27 | ||||
|
28 | .wijmo-wijsplitter-vertical .ui-resizable-e | |||
|
29 | { | |||
|
30 | right:-7px; | |||
|
31 | width:10px; | |||
|
32 | z-index:999; | |||
|
33 | display:block; | |||
|
34 | background-color:white; | |||
|
35 | filter:alpha(opacity=0); | |||
|
36 | -moz-opacity:0; | |||
|
37 | opacity: 0; | |||
|
38 | } | |||
|
39 | ||||
|
40 | *html .wijmo-wijsplitter-vertical .ui-resizable-e | |||
|
41 | { | |||
|
42 | right:-4px; | |||
|
43 | } | |||
|
44 | ||||
|
45 | *+html .wijmo-wijsplitter-vertical .ui-resizable-e | |||
|
46 | { | |||
|
47 | right:-4px; | |||
|
48 | } | |||
|
49 | ||||
|
50 | .wijmo-wijsplitter-v-expander | |||
|
51 | { | |||
|
52 | position: absolute; | |||
|
53 | z-index: 999; | |||
|
54 | } | |||
|
55 | ||||
|
56 | .wijmo-wijsplitter-v-expanded .wijmo-wijsplitter-v-expander | |||
|
57 | { | |||
|
58 | left: -18px; | |||
|
59 | z-index: 999; | |||
|
60 | } | |||
|
61 | ||||
|
62 | .wijmo-wijsplitter-v-collapsed .wijmo-wijsplitter-v-expander | |||
|
63 | { | |||
|
64 | right: -18px; | |||
|
65 | z-index: 999; | |||
|
66 | } | |||
|
67 | ||||
|
68 | .wijmo-wijsplitter-v-panel2 | |||
|
69 | { | |||
|
70 | float: left; | |||
|
71 | } | |||
|
72 | .wijmo-wijsplitter-v-panel2-content | |||
|
73 | { | |||
|
74 | position: relative; | |||
|
75 | } | |||
|
76 | .wijmo-wijsplitter-v-resize-hepler | |||
|
77 | { | |||
|
78 | border-right: dotted 1px black; | |||
|
79 | overflow: hidden; | |||
|
80 | border-bottom: dotted 0 black; | |||
|
81 | } | |||
|
82 | ||||
|
83 | .wijmo-wijsplitter-horizontal | |||
|
84 | { | |||
|
85 | overflow: hidden; | |||
|
86 | /* fixed bug for IE6.7 */ | |||
|
87 | position: relative; | |||
|
88 | } | |||
|
89 | .wijmo-wijsplitter-h-panel1 | |||
|
90 | { | |||
|
91 | position: relative; | |||
|
92 | } | |||
|
93 | .wijmo-wijsplitter-h-panel1-content | |||
|
94 | { | |||
|
95 | overflow: auto; | |||
|
96 | position: relative; | |||
|
97 | } | |||
|
98 | .wijmo-wijsplitter-h-bar | |||
|
99 | { | |||
|
100 | position: relative; | |||
|
101 | font-size: 1px; | |||
|
102 | height: 2px; | |||
|
103 | z-index:999; | |||
|
104 | } | |||
|
105 | ||||
|
106 | .wijmo-wijsplitter-horizontal .ui-resizable-s | |||
|
107 | { | |||
|
108 | bottom:-7px; | |||
|
109 | height:10px; | |||
|
110 | z-index:999; | |||
|
111 | display:block; | |||
|
112 | background-color:white; | |||
|
113 | filter:alpha(opacity=0); | |||
|
114 | -moz-opacity:0; | |||
|
115 | opacity: 0; | |||
|
116 | } | |||
|
117 | ||||
|
118 | *html .wijmo-wijsplitter-horizontal .ui-resizable-s | |||
|
119 | { | |||
|
120 | bottom:-4px; | |||
|
121 | } | |||
|
122 | ||||
|
123 | *+html .wijmo-wijsplitter-horizontal .ui-resizable-s | |||
|
124 | { | |||
|
125 | bottom:-4px; | |||
|
126 | } | |||
|
127 | ||||
|
128 | .wijmo-wijsplitter-h-expander | |||
|
129 | { | |||
|
130 | position: absolute; | |||
|
131 | z-index: 999; | |||
|
132 | } | |||
|
133 | ||||
|
134 | ||||
|
135 | .wijmo-wijsplitter-h-expanded .wijmo-wijsplitter-h-expander | |||
|
136 | { | |||
|
137 | top: -18px; | |||
|
138 | } | |||
|
139 | ||||
|
140 | .wijmo-wijsplitter-h-collapsed .wijmo-wijsplitter-h-expander | |||
|
141 | { | |||
|
142 | bottom: -18px; | |||
|
143 | } | |||
|
144 | ||||
|
145 | .wijmo-wijsplitter-h-panel2 | |||
|
146 | { | |||
|
147 | } | |||
|
148 | .wijmo-wijsplitter-h-panel2-content | |||
|
149 | { | |||
|
150 | overflow: auto; | |||
|
151 | position: relative; | |||
|
152 | } | |||
|
153 | .wijmo-wijsplitter-h-resize-hepler | |||
|
154 | { | |||
|
155 | border-bottom: dotted 1px black; | |||
|
156 | overflow: hidden; | |||
|
157 | border-right: dotted 0 black; | |||
|
158 | } | |||
|
159 | ||||
|
160 |
@@ -0,0 +1,97 b'' | |||||
|
1 | /* SuperPanel | |||
|
2 | ----------------------------------*/ | |||
|
3 | .wijmo-wijsuperpanel | |||
|
4 | { | |||
|
5 | overflow: hidden; | |||
|
6 | outline: none; | |||
|
7 | background-image: none; | |||
|
8 | } | |||
|
9 | .wijmo-wijsuperpanel-statecontainer | |||
|
10 | { | |||
|
11 | overflow: hidden; | |||
|
12 | position: relative; | |||
|
13 | zoom:1; | |||
|
14 | } | |||
|
15 | .wijmo-wijsuperpanel-contentwrapper | |||
|
16 | { | |||
|
17 | position: absolute; | |||
|
18 | overflow: hidden; | |||
|
19 | ||||
|
20 | } | |||
|
21 | .wijmo-wijsuperpanel-hbarcontainer, .wijmo-wijsuperpanel-vbarcontainer | |||
|
22 | { | |||
|
23 | font-size: 0px; | |||
|
24 | border:0; | |||
|
25 | } | |||
|
26 | .wijmo-wijsuperpanel-templateouterwrapper | |||
|
27 | { | |||
|
28 | position: relative; | |||
|
29 | /* overflow:auto; */ | |||
|
30 | zoom: 1; | |||
|
31 | } | |||
|
32 | ||||
|
33 | .wijmo-wijsuperpanel-vbarcontainer .ui-state-default, .wijmo-wijsuperpanel-hbarcontainer .ui-state-default | |||
|
34 | { | |||
|
35 | width: 16px; | |||
|
36 | height: 16px; | |||
|
37 | position: absolute; | |||
|
38 | } | |||
|
39 | .wijmo-wijsuperpanel .wijmo-wijsuperpanel-vbarcontainer | |||
|
40 | { | |||
|
41 | position: absolute; | |||
|
42 | width: 18px; | |||
|
43 | padding-top: 18px; | |||
|
44 | padding-bottom: 18px; | |||
|
45 | border: none; | |||
|
46 | } | |||
|
47 | .wijmo-wijsuperpanel .wijmo-wijsuperpanel-hbarcontainer | |||
|
48 | { | |||
|
49 | position: absolute; | |||
|
50 | height: 18px; | |||
|
51 | padding-left: 18px; | |||
|
52 | padding-right: 18px; | |||
|
53 | border: none; | |||
|
54 | } | |||
|
55 | .wijmo-wijsuperpanel-handle | |||
|
56 | { | |||
|
57 | position: absolute; | |||
|
58 | font-size:0px; | |||
|
59 | overflow:hidden; | |||
|
60 | } | |||
|
61 | .wijmo-wijsuperpanel-handle * | |||
|
62 | { | |||
|
63 | font-size:0px; | |||
|
64 | } | |||
|
65 | .wijmo-wijsuperpanel-helper | |||
|
66 | { | |||
|
67 | border-style: dotted; | |||
|
68 | background: transparent; | |||
|
69 | } | |||
|
70 | ||||
|
71 | .wijmo-wijsuperpanel-button | |||
|
72 | { | |||
|
73 | position: absolute; | |||
|
74 | padding: 4px; | |||
|
75 | } | |||
|
76 | .wijmo-wijsuperpanel .ui-icon-gripsmall-diagonal-se | |||
|
77 | { | |||
|
78 | background: none; | |||
|
79 | width: 7px; | |||
|
80 | height: 7px; | |||
|
81 | } | |||
|
82 | .wijmo-wijsuperpanel-hbar-buttonleft | |||
|
83 | { | |||
|
84 | left: 0; | |||
|
85 | } | |||
|
86 | .wijmo-wijsuperpanel-hbar-buttonright | |||
|
87 | { | |||
|
88 | right: 0; | |||
|
89 | } | |||
|
90 | .wijmo-wijsuperpanel-vbar-buttontop | |||
|
91 | { | |||
|
92 | top: 0; | |||
|
93 | } | |||
|
94 | .wijmo-wijsuperpanel-vbar-buttonbottom | |||
|
95 | { | |||
|
96 | bottom: 0; | |||
|
97 | } |
@@ -0,0 +1,146 b'' | |||||
|
1 | ||||
|
2 | .ui-tabs .ui-tabs-nav li | |||
|
3 | { | |||
|
4 | top: 1px; | |||
|
5 | } | |||
|
6 | ||||
|
7 | /* BOTTOM */ | |||
|
8 | ||||
|
9 | .ui-tabs-bottom .ui-tabs-nav li | |||
|
10 | { | |||
|
11 | top: -3px; | |||
|
12 | padding: 0; | |||
|
13 | margin: 1px .2em 0 0; | |||
|
14 | } | |||
|
15 | ||||
|
16 | .ui-tabs-bottom .ui-tabs-nav li.ui-tabs-selected | |||
|
17 | { | |||
|
18 | margin-top: -1px; | |||
|
19 | padding-bottom: 2px; | |||
|
20 | } | |||
|
21 | ||||
|
22 | .ui-tabs .ui-tabs-nav li | |||
|
23 | { | |||
|
24 | border: none; | |||
|
25 | } | |||
|
26 | ||||
|
27 | /* LEFT */ | |||
|
28 | .ui-tabs-left .ui-tabs-nav | |||
|
29 | { | |||
|
30 | float: left; | |||
|
31 | overflow: hidden; | |||
|
32 | } | |||
|
33 | ||||
|
34 | .ui-tabs-left .ui-tabs-nav li | |||
|
35 | { | |||
|
36 | white-space: normal; | |||
|
37 | float: right; | |||
|
38 | display: block; | |||
|
39 | width: 98%; | |||
|
40 | } | |||
|
41 | ||||
|
42 | .ui-tabs-left .ui-tabs-nav li a, .ui-tabs-right .ui-tabs-nav li a | |||
|
43 | { | |||
|
44 | float: none; | |||
|
45 | display: block; | |||
|
46 | } | |||
|
47 | ||||
|
48 | .ui-tabs-left .ui-tabs-nav li | |||
|
49 | { | |||
|
50 | top: -1px; | |||
|
51 | left: 3px; | |||
|
52 | margin-bottom: 2px; | |||
|
53 | } | |||
|
54 | ||||
|
55 | .ui-tabs-left .ui-tabs-panel | |||
|
56 | { | |||
|
57 | padding: 1.6em; | |||
|
58 | } | |||
|
59 | ||||
|
60 | .ui-tabs-left .ui-tabs-nav li.ui-tabs-selected | |||
|
61 | { | |||
|
62 | border-right: medium none; | |||
|
63 | margin-bottom: 2px; | |||
|
64 | } | |||
|
65 | .ui-tabs-left .ui-tabs-nav | |||
|
66 | { | |||
|
67 | padding: 0.2em 0 0 0; | |||
|
68 | } | |||
|
69 | ||||
|
70 | .ui-tabs-left .wijmo-wijtabs-content | |||
|
71 | { | |||
|
72 | float: right; | |||
|
73 | width: 75%; | |||
|
74 | overflow: hidden; | |||
|
75 | } | |||
|
76 | ||||
|
77 | .ui-tabs-left .ui-tabs-nav | |||
|
78 | { | |||
|
79 | min-height: 300px; | |||
|
80 | width: 23%; | |||
|
81 | height: 100%; | |||
|
82 | } | |||
|
83 | ||||
|
84 | /* RIGHT */ | |||
|
85 | ||||
|
86 | .ui-tabs-right .ui-tabs-nav | |||
|
87 | { | |||
|
88 | float: right; | |||
|
89 | overflow: hidden; | |||
|
90 | } | |||
|
91 | ||||
|
92 | .ui-tabs-right .ui-tabs-nav li | |||
|
93 | { | |||
|
94 | white-space: normal; | |||
|
95 | float: left; | |||
|
96 | display: block; | |||
|
97 | width: 98%; | |||
|
98 | } | |||
|
99 | ||||
|
100 | .ui-tabs-right .ui-tabs-nav li | |||
|
101 | { | |||
|
102 | top: -1px; | |||
|
103 | left: 0; | |||
|
104 | margin-bottom: 2px; | |||
|
105 | } | |||
|
106 | ||||
|
107 | .ui-tabs-right .ui-tabs-panel | |||
|
108 | { | |||
|
109 | padding: 1.6em; | |||
|
110 | } | |||
|
111 | ||||
|
112 | .ui-tabs-right .ui-tabs-nav li.ui-tabs-selected | |||
|
113 | { | |||
|
114 | border-left: medium none; | |||
|
115 | margin-bottom: 2px; | |||
|
116 | } | |||
|
117 | .ui-tabs-right .ui-tabs-nav | |||
|
118 | { | |||
|
119 | padding: 0.2em 0 0 0; | |||
|
120 | } | |||
|
121 | ||||
|
122 | .ui-tabs-right .wijmo-wijtabs-content | |||
|
123 | { | |||
|
124 | float: left; | |||
|
125 | width: 75%; | |||
|
126 | overflow: hidden; | |||
|
127 | } | |||
|
128 | ||||
|
129 | .ui-tabs-right .ui-tabs-nav | |||
|
130 | { | |||
|
131 | min-height: 300px; | |||
|
132 | width: 23%; | |||
|
133 | } | |||
|
134 | ||||
|
135 | ||||
|
136 | .ui-tabs-left .ui-tabs-nav li.ui-tabs-selected | |||
|
137 | { | |||
|
138 | margin-right: 2px; | |||
|
139 | padding-right: 1px; | |||
|
140 | } | |||
|
141 | ||||
|
142 | .ui-tabs-right .ui-tabs-nav li.ui-tabs-selected | |||
|
143 | { | |||
|
144 | margin-left: -1px; | |||
|
145 | padding-left: 1px; | |||
|
146 | } |
@@ -0,0 +1,257 b'' | |||||
|
1 | .wijmo-wijtooltip { | |||
|
2 | position: absolute; | |||
|
3 | z-index: 9999; | |||
|
4 | margin:0; | |||
|
5 | } | |||
|
6 | ||||
|
7 | ||||
|
8 | .wijmo-wijtooltip .wijmo-wijtooltip-close | |||
|
9 | { | |||
|
10 | background:none repeat scroll 0 0 transparent; | |||
|
11 | border:medium none; | |||
|
12 | display:block; | |||
|
13 | height:16px; | |||
|
14 | position:absolute; | |||
|
15 | right:3px; | |||
|
16 | top:3px; | |||
|
17 | width:16px; | |||
|
18 | } | |||
|
19 | ||||
|
20 | .wijmo-wijtooltip .wijmo-wijtooltip-title | |||
|
21 | { | |||
|
22 | background:none repeat scroll 0 0 transparent; | |||
|
23 | border:medium none; | |||
|
24 | color:inherit; | |||
|
25 | padding:0.4em; | |||
|
26 | } | |||
|
27 | .wijmo-wijtooltip .wijmo-wijtooltip-container | |||
|
28 | { | |||
|
29 | padding: 1em; | |||
|
30 | overflow: hidden; | |||
|
31 | } | |||
|
32 | ||||
|
33 | .wijmo-wijtooltip { | |||
|
34 | border-width: 2px; | |||
|
35 | } | |||
|
36 | ||||
|
37 | .wijmo-wijtooltip .wijmo-wijtooltip-pointer, .wijmo-wijtooltip .wijmo-wijtooltip-pointer-inner { | |||
|
38 | background: none; | |||
|
39 | height: 0; | |||
|
40 | position: absolute; | |||
|
41 | width: 0; | |||
|
42 | } | |||
|
43 | ||||
|
44 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer { | |||
|
45 | border-bottom-width: 14px; | |||
|
46 | border-top: 0 none; | |||
|
47 | top: -14px; | |||
|
48 | ||||
|
49 | } | |||
|
50 | ||||
|
51 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer { | |||
|
52 | border-left: 18px solid transparent; | |||
|
53 | border-right: 0 none; | |||
|
54 | right: 10px; | |||
|
55 | } | |||
|
56 | ||||
|
57 | .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer { | |||
|
58 | border-left: 10px solid transparent; | |||
|
59 | border-right: 10px solid transparent; | |||
|
60 | left: 50%; | |||
|
61 | margin-left: -10px; | |||
|
62 | } | |||
|
63 | ||||
|
64 | .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer { | |||
|
65 | border-left: 0 none; | |||
|
66 | border-right: 18px solid transparent; | |||
|
67 | left: 10px; | |||
|
68 | } | |||
|
69 | ||||
|
70 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer-inner { | |||
|
71 | border-bottom-color: inherit; | |||
|
72 | border-bottom-style: solid; | |||
|
73 | border-bottom-width: 10px; | |||
|
74 | bottom: -14px; | |||
|
75 | *font-size:0;line-height:0; | |||
|
76 | } | |||
|
77 | ||||
|
78 | .wijmo-wijtooltip-arrow-tr .wijmo-wijtooltip-pointer-inner { | |||
|
79 | border-left: 12px solid transparent; | |||
|
80 | border-right: 0 none; | |||
|
81 | right: 2px; | |||
|
82 | } | |||
|
83 | ||||
|
84 | .wijmo-wijtooltip-arrow-tc .wijmo-wijtooltip-pointer-inner { | |||
|
85 | border-left: 8px solid transparent; | |||
|
86 | border-right: 8px solid transparent; | |||
|
87 | left: -8px; | |||
|
88 | } | |||
|
89 | ||||
|
90 | .wijmo-wijtooltip-arrow-tl .wijmo-wijtooltip-pointer-inner { | |||
|
91 | border-left: 0 none; | |||
|
92 | border-right-style: solid; | |||
|
93 | border-right-color: inherit; | |||
|
94 | border-right-width: 12px; | |||
|
95 | left: 2px; | |||
|
96 | } | |||
|
97 | ||||
|
98 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer { | |||
|
99 | border-left-width: 14px; | |||
|
100 | border-right: 0 none; | |||
|
101 | right: -14px; | |||
|
102 | } | |||
|
103 | ||||
|
104 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer { | |||
|
105 | border-bottom: 0 none; | |||
|
106 | border-top: 18px solid transparent; | |||
|
107 | bottom: 10px; | |||
|
108 | } | |||
|
109 | ||||
|
110 | .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer { | |||
|
111 | border-bottom: 10px solid transparent; | |||
|
112 | border-top: 10px solid transparent; | |||
|
113 | bottom: 50%; | |||
|
114 | margin-bottom: -10px; | |||
|
115 | } | |||
|
116 | ||||
|
117 | .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer { | |||
|
118 | border-bottom: 18px solid transparent; | |||
|
119 | border-top: 0 none; | |||
|
120 | top: 10px; | |||
|
121 | } | |||
|
122 | ||||
|
123 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer-inner { | |||
|
124 | border-left-color: inherit; | |||
|
125 | border-left-style: solid; | |||
|
126 | border-left-width: 10px; | |||
|
127 | left: -14px; | |||
|
128 | *font-size:0;line-height:0; | |||
|
129 | } | |||
|
130 | ||||
|
131 | ||||
|
132 | .wijmo-wijtooltip-arrow-rb .wijmo-wijtooltip-pointer-inner { | |||
|
133 | border-bottom: 0 none; | |||
|
134 | border-top-style: solid; | |||
|
135 | border-top-color: inherit; | |||
|
136 | border-top-width: 12px; | |||
|
137 | bottom: 2px; | |||
|
138 | } | |||
|
139 | ||||
|
140 | .wijmo-wijtooltip-arrow-rc .wijmo-wijtooltip-pointer-inner { | |||
|
141 | border-bottom: 8px solid transparent; | |||
|
142 | border-top: 8px solid transparent; | |||
|
143 | bottom: -8px; | |||
|
144 | } | |||
|
145 | ||||
|
146 | .wijmo-wijtooltip-arrow-rt .wijmo-wijtooltip-pointer-inner { | |||
|
147 | border-bottom-style: solid; | |||
|
148 | border-bottom-color: inherit; | |||
|
149 | border-bottom-width: 12px; | |||
|
150 | border-top: 0 none; | |||
|
151 | top: 2px; | |||
|
152 | } | |||
|
153 | ||||
|
154 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer { | |||
|
155 | border-bottom: 0 none; | |||
|
156 | border-top-width: 14px; | |||
|
157 | bottom: -14px; | |||
|
158 | ||||
|
159 | } | |||
|
160 | ||||
|
161 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer { | |||
|
162 | border-left: 18px solid transparent; | |||
|
163 | border-right: 0 none; | |||
|
164 | right: 10px; | |||
|
165 | } | |||
|
166 | ||||
|
167 | .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer { | |||
|
168 | border-left: 10px solid transparent; | |||
|
169 | border-right: 10px solid transparent; | |||
|
170 | left: 50%; | |||
|
171 | margin-left: -10px; | |||
|
172 | } | |||
|
173 | ||||
|
174 | .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer { | |||
|
175 | border-left: 0 none; | |||
|
176 | border-right: 18px solid transparent; | |||
|
177 | left: 10px; | |||
|
178 | } | |||
|
179 | ||||
|
180 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer-inner { | |||
|
181 | border-top-color: inherit; | |||
|
182 | border-top-style: solid; | |||
|
183 | border-top-width: 10px; | |||
|
184 | top: -14px; | |||
|
185 | *font-size:0;line-height:0; | |||
|
186 | } | |||
|
187 | ||||
|
188 | .wijmo-wijtooltip-arrow-br .wijmo-wijtooltip-pointer-inner { | |||
|
189 | border-left: 12px solid transparent; | |||
|
190 | border-right: 0 none; | |||
|
191 | right: 2px; | |||
|
192 | } | |||
|
193 | ||||
|
194 | .wijmo-wijtooltip-arrow-bc .wijmo-wijtooltip-pointer-inner { | |||
|
195 | border-left: 8px solid transparent; | |||
|
196 | border-right: 8px solid transparent; | |||
|
197 | left: -8px; | |||
|
198 | } | |||
|
199 | ||||
|
200 | .wijmo-wijtooltip-arrow-bl .wijmo-wijtooltip-pointer-inner { | |||
|
201 | border-left: 0 none; | |||
|
202 | border-right: 12px solid transparent; | |||
|
203 | left: 2px; | |||
|
204 | } | |||
|
205 | ||||
|
206 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer, .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer { | |||
|
207 | border-left: 0 none; | |||
|
208 | border-right-width: 14px; | |||
|
209 | left: -14px; | |||
|
210 | } | |||
|
211 | ||||
|
212 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer { | |||
|
213 | border-bottom: 0 none; | |||
|
214 | border-top: 18px solid transparent; | |||
|
215 | bottom: 10px; | |||
|
216 | } | |||
|
217 | ||||
|
218 | .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer { | |||
|
219 | border-bottom: 10px solid transparent; | |||
|
220 | border-top: 10px solid transparent; | |||
|
221 | bottom: 50%; | |||
|
222 | margin-bottom: -10px; | |||
|
223 | } | |||
|
224 | ||||
|
225 | .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer { | |||
|
226 | border-bottom: 18px solid transparent; | |||
|
227 | border-top: 0 none; | |||
|
228 | top: 10px; | |||
|
229 | } | |||
|
230 | ||||
|
231 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer-inner, .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer-inner { | |||
|
232 | border-right-color: inherit; | |||
|
233 | border-right-style: solid; | |||
|
234 | border-right-width: 10px; | |||
|
235 | right: -14px; | |||
|
236 | *font-size:0;line-height:0; | |||
|
237 | } | |||
|
238 | ||||
|
239 | .wijmo-wijtooltip-arrow-lb .wijmo-wijtooltip-pointer-inner { | |||
|
240 | border-bottom: 0 none; | |||
|
241 | border-top: 12px solid transparent; | |||
|
242 | bottom: 2px; | |||
|
243 | } | |||
|
244 | ||||
|
245 | .wijmo-wijtooltip-arrow-lc .wijmo-wijtooltip-pointer-inner { | |||
|
246 | border-bottom: 8px solid transparent; | |||
|
247 | border-top: 8px solid transparent; | |||
|
248 | bottom: -8px; | |||
|
249 | } | |||
|
250 | ||||
|
251 | .wijmo-wijtooltip-arrow-lt .wijmo-wijtooltip-pointer-inner { | |||
|
252 | border-bottom-style: solid; | |||
|
253 | border-bottom-color: inherit; | |||
|
254 | border-bottom-width: 12px; | |||
|
255 | border-top: 0 none; | |||
|
256 | top: 2px; | |||
|
257 | } |
@@ -0,0 +1,13 b'' | |||||
|
1 | .ui-helper-horizontal > DIV, | |||
|
2 | .ui-helper-horizontal > LI, | |||
|
3 | .ui-helper-horizontal > SPAN, | |||
|
4 | .ui-helper-horizontal > LABEL, | |||
|
5 | .ui-helper-horizontal > H1, | |||
|
6 | .ui-helper-horizontal > H2, | |||
|
7 | .ui-helper-horizontal > H3, | |||
|
8 | .ui-helper-horizontal > H4 | |||
|
9 | { | |||
|
10 | float: left; | |||
|
11 | clear: none; | |||
|
12 | display: block; | |||
|
13 | } No newline at end of file |
@@ -0,0 +1,95 b'' | |||||
|
1 | /* | |||
|
2 | * jQuery autoResize (textarea auto-resizer) | |||
|
3 | * @copyright James Padolsey http://james.padolsey.com | |||
|
4 | * @version 1.04 | |||
|
5 | */ | |||
|
6 | ||||
|
7 | (function($){ | |||
|
8 | ||||
|
9 | $.fn.autoResize = function(options) { | |||
|
10 | ||||
|
11 | // Just some abstracted details, | |||
|
12 | // to make plugin users happy: | |||
|
13 | var settings = $.extend({ | |||
|
14 | onResize : function(){}, | |||
|
15 | animate : true, | |||
|
16 | animateDuration : 150, | |||
|
17 | animateCallback : function(){}, | |||
|
18 | extraSpace : 20, | |||
|
19 | limit: 1000 | |||
|
20 | }, options); | |||
|
21 | ||||
|
22 | // Only textarea's auto-resize: | |||
|
23 | this.filter('textarea').each(function(){ | |||
|
24 | console.log("Hi") | |||
|
25 | // Get rid of scrollbars and disable WebKit resizing: | |||
|
26 | var textarea = $(this).css({resize:'none','overflow-y':'hidden'}), | |||
|
27 | ||||
|
28 | // Cache original height, for use later: | |||
|
29 | origHeight = textarea.height(), | |||
|
30 | ||||
|
31 | // Need clone of textarea, hidden off screen: | |||
|
32 | clone = (function(){ | |||
|
33 | ||||
|
34 | // Properties which may effect space taken up by chracters: | |||
|
35 | var props = ['height','width','lineHeight','textDecoration','letterSpacing'], | |||
|
36 | propOb = {}; | |||
|
37 | ||||
|
38 | // Create object of styles to apply: | |||
|
39 | $.each(props, function(i, prop){ | |||
|
40 | propOb[prop] = textarea.css(prop); | |||
|
41 | }); | |||
|
42 | ||||
|
43 | // Clone the actual textarea removing unique properties | |||
|
44 | // and insert before original textarea: | |||
|
45 | return textarea.clone().removeAttr('id').removeAttr('name').css({ | |||
|
46 | position: 'absolute', | |||
|
47 | top: 0, | |||
|
48 | left: -9999 | |||
|
49 | }).css(propOb).attr('tabIndex','-1').insertBefore(textarea); | |||
|
50 | ||||
|
51 | })(), | |||
|
52 | lastScrollTop = null, | |||
|
53 | updateSize = function() { | |||
|
54 | ||||
|
55 | // Prepare the clone: | |||
|
56 | clone.height(0).val($(this).val()).scrollTop(10000); | |||
|
57 | ||||
|
58 | // Find the height of text: | |||
|
59 | var scrollTop = Math.max(clone.scrollTop(), origHeight) + settings.extraSpace, | |||
|
60 | toChange = $(this).add(clone); | |||
|
61 | ||||
|
62 | // Don't do anything if scrollTip hasen't changed: | |||
|
63 | if (lastScrollTop === scrollTop) { return; } | |||
|
64 | lastScrollTop = scrollTop; | |||
|
65 | ||||
|
66 | // Check for limit: | |||
|
67 | if ( scrollTop >= settings.limit ) { | |||
|
68 | $(this).css('overflow-y',''); | |||
|
69 | return; | |||
|
70 | } | |||
|
71 | // Fire off callback: | |||
|
72 | settings.onResize.call(this); | |||
|
73 | ||||
|
74 | // Either animate or directly apply height: | |||
|
75 | settings.animate && textarea.css('display') === 'block' ? | |||
|
76 | toChange.stop().animate({height:scrollTop}, settings.animateDuration, settings.animateCallback) | |||
|
77 | : toChange.height(scrollTop); | |||
|
78 | }; | |||
|
79 | ||||
|
80 | // Bind namespaced handlers to appropriate events: | |||
|
81 | textarea | |||
|
82 | .unbind('.dynSiz') | |||
|
83 | .bind('keyup.dynSiz', updateSize) | |||
|
84 | .bind('keydown.dynSiz', updateSize) | |||
|
85 | .bind('change.dynSiz', updateSize); | |||
|
86 | }); | |||
|
87 | ||||
|
88 | // Chain: | |||
|
89 | return this; | |||
|
90 | ||||
|
91 | }; | |||
|
92 | ||||
|
93 | ||||
|
94 | ||||
|
95 | })(jQuery); No newline at end of file |
@@ -0,0 +1,16 b'' | |||||
|
1 | /*! | |||
|
2 | * jQuery JavaScript Library v1.5.1 | |||
|
3 | * http://jquery.com/ | |||
|
4 | * | |||
|
5 | * Copyright 2011, John Resig | |||
|
6 | * Dual licensed under the MIT or GPL Version 2 licenses. | |||
|
7 | * http://jquery.org/license | |||
|
8 | * | |||
|
9 | * Includes Sizzle.js | |||
|
10 | * http://sizzlejs.com/ | |||
|
11 | * Copyright 2011, The Dojo Foundation | |||
|
12 | * Released under the MIT, BSD, and GPL Licenses. | |||
|
13 | * | |||
|
14 | * Date: Wed Feb 23 13:55:29 2011 -0500 | |||
|
15 | */ | |||
|
16 | (function(a,b){function cg(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){if(!bZ[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h==="string"&&(f[h.toLowerCase()]=a.converters[h]);l=k,k=e[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=f[m]||f["* "+k];if(!n){p=b;for(o in f){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=f[j[1]+" "+k];if(p){o=f[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&d.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bP(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bO(a,b,c,e){if(d.isArray(b)&&b.length)d.each(b,function(b,f){c||bq.test(a)?e(a,f):bO(a+"["+(typeof f==="object"||d.isArray(f)?b:"")+"]",f,c,e)});else if(c||b==null||typeof b!=="object")e(a,b);else if(d.isArray(b)||d.isEmptyObject(b))e(a,"");else for(var f in b)bO(a+"["+f+"]",b[f],c,e)}function bN(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bH,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l==="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bN(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bN(a,c,d,e,"*",g));return l}function bM(a){return function(b,c){typeof b!=="string"&&(c=b,b="*");if(d.isFunction(c)){var e=b.toLowerCase().split(bB),f=0,g=e.length,h,i,j;for(;f<g;f++)h=e[f],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bo(a,b,c){var e=b==="width"?bi:bj,f=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return f;d.each(e,function(){c||(f-=parseFloat(d.css(a,"padding"+this))||0),c==="margin"?f+=parseFloat(d.css(a,"margin"+this))||0:f-=parseFloat(d.css(a,"border"+this+"Width"))||0});return f}function ba(a,b){b.src?d.ajax({url:b.src,async:!1,dataType:"script"}):d.globalEval(b.text||b.textContent||b.innerHTML||""),b.parentNode&&b.parentNode.removeChild(b)}function _(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function $(a,b){if(b.nodeType===1){var c=b.nodeName.toLowerCase();b.clearAttributes(),b.mergeAttributes(a);if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(d.expando)}}function Z(a,b){if(b.nodeType===1&&d.hasData(a)){var c=d.expando,e=d.data(a),f=d.data(b,e);if(e=e[c]){var g=e.events;f=f[c]=d.extend({},e);if(g){delete f.handle,f.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)d.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function Y(a,b){return d.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function O(a,b,c){if(d.isFunction(b))return d.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return d.grep(a,function(a,d){return a===b===c});if(typeof b==="string"){var e=d.grep(a,function(a){return a.nodeType===1});if(J.test(b))return d.filter(b,e,!c);b=d.filter(b,e)}return d.grep(a,function(a,e){return d.inArray(a,b)>=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;i<t.length;i++)g=t[i],g.origType.replace(p,"")===a.type?r.push(g.selector):t.splice(i--,1);f=d(a.target).closest(r,a.currentTarget);for(j=0,k=f.length;j<k;j++){m=f[j];for(i=0;i<t.length;i++){g=t[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,e=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,e=d(a.relatedTarget).closest(g.selector)[0];(!e||e!==h)&&q.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=q.length;j<k;j++){f=q[j];if(c&&f.level>c)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){e=i[c],f=a[c];if(i===f)continue;l&&f&&(d.isPlainObject(f)||(g=d.isArray(f)))?(g?(g=!1,h=e&&d.isArray(e)?e:[]):h=e&&d.isPlainObject(e)?e:{},i[c]=d.extend(l,h,f)):f!==b&&(i[c]=f)}return i},d.extend({noConflict:function(b){a.$=f,b&&(a.jQuery=e);return d},isReady:!1,readyWait:1,ready:function(a){a===!0&&d.readyWait--;if(!d.readyWait||a!==!0&&!d.isReady){if(!c.body)return setTimeout(d.ready,1);d.isReady=!0;if(a!==!0&&--d.readyWait>0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g<h;)if(c.apply(a[g++],e)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(var j=a[0];g<h&&c.call(j,g,j)!==!1;j=a[++g]){}return a},trim:F?function(a){return a==null?"":F.call(a)}:function(a){return a==null?"":(a+"").replace(j,"").replace(k,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var e=d.type(a);a.length==null||e==="string"||e==="function"||e==="regexp"||d.isWindow(a)?D.call(c,a):d.merge(c,a)}return c},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length==="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,b,c){var d=[],e;for(var f=0,g=a.length;f<g;f++)e=b(a[f],f,c),e!=null&&(d[d.length]=e);return d.concat.apply([],d)},guid:1,proxy:function(a,c,e){arguments.length===2&&(typeof c==="string"?(e=a,a=e[c],c=b):c&&!d.isFunction(c)&&(e=c,c=b)),!c&&a&&(c=function(){return a.apply(e||this,arguments)}),a&&(c.guid=a.guid=a.guid||c.guid||d.guid++);return c},access:function(a,c,e,f,g,h){var i=a.length;if(typeof c==="object"){for(var j in c)d.access(a,j,c[j],f,g,e);return a}if(e!==b){f=!h&&f&&d.isFunction(e);for(var k=0;k<i;k++)g(a[k],c,f?e.call(a[k],k,g(a[k],c)):e,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},_Deferred:function(){var a=[],b,c,e,f={done:function(){if(!e){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=d.type(i),j==="array"?f.done.apply(f,i):j==="function"&&a.push(i);k&&f.resolveWith(k[0],k[1])}return this},resolveWith:function(d,f){if(!e&&!b&&!c){c=1;try{while(a[0])a.shift().apply(d,f)}catch(g){throw g}finally{b=[d,f],c=0}}return this},resolve:function(){f.resolveWith(d.isFunction(this.promise)?this.promise():this,arguments);return this},isResolved:function(){return c||b},cancel:function(){e=1,a=[];return this}};return f},Deferred:function(a){var b=d._Deferred(),c=d._Deferred(),e;d.extend(b,{then:function(a,c){b.done(a).fail(c);return this},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,promise:function(a){if(a==null){if(e)return e;e=a={}}var c=z.length;while(c--)a[z[c]]=b[z[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){var b=arguments.length,c=b<=1&&a&&d.isFunction(a.promise)?a:d.Deferred(),e=c.promise();if(b>1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML=" <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i<j;i++)h=g[i].name,h.indexOf("data-")===0&&(h=h.substr(5),f(this[0],h,e[h]))}}return e}if(typeof a==="object")return this.each(function(){d.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(c===b){e=this.triggerHandler("getData"+k[1]+"!",[k[0]]),e===b&&this.length&&(e=d.data(this[0],a),e=f(this[0],a,e));return e===b&&k[1]?this.data(k[0]):e}return this.each(function(){var b=d(this),e=[k[0],c];b.triggerHandler("setData"+k[1]+"!",e),d.data(this,a,c),b.triggerHandler("changeData"+k[1]+"!",e)})},removeData:function(a){return this.each(function(){d.removeData(this,a)})}}),d.extend({queue:function(a,b,c){if(a){b=(b||"fx")+"queue";var e=d._data(a,b);if(!c)return e||[];!e||d.isArray(c)?e=d._data(a,b,d.makeArray(c)):e.push(c);return e}},dequeue:function(a,b){b=b||"fx";var c=d.queue(a,b),e=c.shift();e==="inprogress"&&(e=c.shift()),e&&(b==="fx"&&c.unshift("inprogress"),e.call(a,function(){d.dequeue(a,b)})),c.length||d.removeData(a,b+"queue",!0)}}),d.fn.extend({queue:function(a,c){typeof a!=="string"&&(c=a,a="fx");if(c===b)return d.queue(this[0],a);return this.each(function(b){var e=d.queue(this,a,c);a==="fx"&&e[0]!=="inprogress"&&d.dequeue(this,a)})},dequeue:function(a){return this.each(function(){d.dequeue(this,a)})},delay:function(a,b){a=d.fx?d.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){d.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var h=/[\n\t\r]/g,i=/\s+/,j=/\r/g,k=/^(?:href|src|style)$/,l=/^(?:button|input)$/i,m=/^(?:button|input|object|select|textarea)$/i,n=/^a(?:rea)?$/i,o=/^(?:radio|checkbox)$/i;d.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"},d.fn.extend({attr:function(a,b){return d.access(this,a,b,!0,d.attr)},removeAttr:function(a,b){return this.each(function(){d.attr(this,a,""),this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.addClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"){var b=(a||"").split(i);for(var c=0,e=this.length;c<e;c++){var f=this[c];if(f.nodeType===1)if(f.className){var g=" "+f.className+" ",h=f.className;for(var j=0,k=b.length;j<k;j++)g.indexOf(" "+b[j]+" ")<0&&(h+=" "+b[j]);f.className=d.trim(h)}else f.className=a}}return this},removeClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"||a===b){var c=(a||"").split(i);for(var e=0,f=this.length;e<f;e++){var g=this[e];if(g.nodeType===1&&g.className)if(a){var j=(" "+g.className+" ").replace(h," ");for(var k=0,l=c.length;k<l;k++)j=j.replace(" "+c[k]+" "," ");g.className=d.trim(j)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,e=typeof b==="boolean";if(d.isFunction(a))return this.each(function(c){var e=d(this);e.toggleClass(a.call(this,c,e.attr("class"),b),b)});return this.each(function(){if(c==="string"){var f,g=0,h=d(this),j=b,k=a.split(i);while(f=k[g++])j=e?j:!h.hasClass(f),h[j?"addClass":"removeClass"](f)}else if(c==="undefined"||c==="boolean")this.className&&d._data(this,"__className__",this.className),this.className=this.className||a===!1?"":d._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(h," ").indexOf(b)>-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k<l;k++){var m=h[k];if(m.selected&&(d.support.optDisabled?!m.disabled:m.getAttribute("disabled")===null)&&(!m.parentNode.disabled||!d.nodeName(m.parentNode,"optgroup"))){a=d(m).val();if(i)return a;g.push(a)}}if(i&&!g.length&&h.length)return d(h[f]).val();return g}if(o.test(c.type)&&!d.support.checkOn)return c.getAttribute("value")===null?"on":c.value;return(c.value||"").replace(j,"")}return b}var n=d.isFunction(a);return this.each(function(b){var c=d(this),e=a;if(this.nodeType===1){n&&(e=a.call(this,b,c.val())),e==null?e="":typeof e==="number"?e+="":d.isArray(e)&&(e=d.map(e,function(a){return a==null?"":a+""}));if(d.isArray(e)&&o.test(this.type))this.checked=d.inArray(c.val(),e)>=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))d.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=d.event.special[h]||{};for(j=f||0;j<p.length;j++){q=p[j];if(e.guid===q.guid){if(l||n.test(q.namespace))f==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(f!=null)break}}if(p.length===0||f!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&d.removeEvent(a,h,s.handle),g=null,delete t[h]}if(d.isEmptyObject(t)){var w=s.handle;w&&(w.elem=null),delete s.events,delete s.handle,d.isEmptyObject(s)&&d.removeData(a,b,!0)}}},trigger:function(a,c,e){var f=a.type||a,g=arguments[3];if(!g){a=typeof a==="object"?a[d.expando]?a:d.extend(d.Event(f),a):d.Event(f),f.indexOf("!")>=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l<m;l++){var n=f[l];if(e||h.test(n.namespace)){c.handler=n.handler,c.data=n.data,c.handleObj=n;var o=n.handler.apply(this,k);o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[d.expando])return a;var e=a;a=d.Event(e);for(var f=this.props.length,g;f;)g=this.props[--f],a[g]=e[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=c.documentElement,i=c.body;a.pageX=a.clientX+(h&&h.scrollLeft||i&&i.scrollLeft||0)-(h&&h.clientLeft||i&&i.clientLeft||0),a.pageY=a.clientY+(h&&h.scrollTop||i&&i.scrollTop||0)-(h&&h.clientTop||i&&i.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:d.proxy,special:{ready:{setup:d.bindReady,teardown:d.noop},live:{add:function(a){d.event.add(this,F(a.origType,a.selector),d.extend({},a,{handler:E,guid:a.handler.guid}))},remove:function(a){d.event.remove(this,F(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){d.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},d.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},d.Event=function(a){if(!this.preventDefault)return new d.Event(a);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?w:v):this.type=a,this.timeStamp=d.now(),this[d.expando]=!0},d.Event.prototype={preventDefault:function(){this.isDefaultPrevented=w;var a=this.originalEvent;a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=w;var a=this.originalEvent;a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=w,this.stopPropagation()},isDefaultPrevented:v,isPropagationStopped:v,isImmediatePropagationStopped:v};var x=function(a){var b=a.relatedTarget;try{if(b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&(a.type=a.data,d.event.handle.apply(this,arguments))}catch(e){}},y=function(a){a.type=a.data,d.event.handle.apply(this,arguments)};d.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){d.event.special[a]={setup:function(c){d.event.add(this,b,c&&c.selector?y:x,a)},teardown:function(a){d.event.remove(this,b,a&&a.selector?y:x)}}}),d.support.submitBubbles||(d.event.special.submit={setup:function(a,b){if(this.nodeName&&this.nodeName.toLowerCase()!=="form")d.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&d(b).closest("form").length&&C("submit",this,arguments)}),d.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&d(b).closest("form").length&&a.keyCode===13&&C("submit",this,arguments)});else return!1},teardown:function(a){d.event.remove(this,".specialSubmit")}});if(!d.support.changeBubbles){var z,A=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i<j;i++)d.event.add(this[i],a,h,e);return this}}),d.fn.extend({unbind:function(a,b){if(typeof a!=="object"||a.preventDefault)for(var e=0,f=this.length;e<f;e++)d.event.remove(this[e],a,b);else for(var c in a)this.unbind(c,a[c]);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){d.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var c=d.Event(a);c.preventDefault(),c.stopPropagation(),d.event.trigger(c,b,this[0]);return c.result}},toggle:function(a){var b=arguments,c=1;while(c<b.length)d.proxy(a,b[c++]);return this.click(d.proxy(a,function(e){var f=(d._data(this,"lastToggle"+a.guid)||0)%c;d._data(this,"lastToggle"+a.guid,f+1),e.preventDefault();return b[f].apply(this,arguments)||!1}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var D={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};d.each(["live","die"],function(a,c){d.fn[c]=function(a,e,f,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:d(this.context);if(typeof a==="object"&&!a.preventDefault){for(var o in a)n[c](o,e,a[o],m);return this}d.isFunction(e)&&(f=e,e=b),a=(a||"").split(" ");while((h=a[i++])!=null){j=p.exec(h),k="",j&&(k=j[0],h=h.replace(p,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,h==="focus"||h==="blur"?(a.push(D[h]+k),h=h+k):h=(D[h]||h)+k;if(c==="live")for(var q=0,r=n.length;q<r;q++)d.event.add(n[q],"live."+F(h,m),{data:e,selector:m,handler:f,origType:h,origHandler:f,preType:l});else n.unbind("live."+F(h,m),f)}return this}}),d.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){d.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!=="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!=="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(f){if(f===!0)continue}else g=o=!0}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b==="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1){}a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!=="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!=="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!=="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(a===b){g=!0;return 0}if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};d.find=k,d.expr=k.selectors,d.expr[":"]=d.expr.filters,d.unique=k.uniqueSort,d.text=k.getText,d.isXMLDoc=k.isXML,d.contains=k.contains}();var G=/Until$/,H=/^(?:parents|prevUntil|prevAll)/,I=/,/,J=/^.[^:#\[\.,]*$/,K=Array.prototype.slice,L=d.expr.match.POS,M={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({find:function(a){var b=this.pushStack("","find",a),c=0;for(var e=0,f=this.length;e<f;e++){c=b.length,d.find(a,this[e],b);if(e>0)for(var g=c;g<b.length;g++)for(var h=0;h<c;h++)if(b[h]===b[g]){b.splice(g--,1);break}}return b},has:function(a){var b=d(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(d.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(O(this,a,!1),"not",a)},filter:function(a){return this.pushStack(O(this,a,!0),"filter",a)},is:function(a){return!!a&&d.filter(a,this).length>0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e<f;e++)i=a[e],j[i]||(j[i]=d.expr.match.POS.test(i)?d(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e<f;e++){g=this[e];while(g){if(l?l.index(g)>-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/<tbody/i,U=/<|&#?\w+;/,V=/<(?:script|object|embed|option|style)/i,W=/checked\s*(?:[^=]|=\s*.checked.)/i,X={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div<div>","</div>"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1></$2>");try{for(var c=0,e=this.length;c<e;c++)this[c].nodeType===1&&(d.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(f){this.empty().append(a)}}return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(d.isFunction(a))return this.each(function(b){var c=d(this),e=c.html();c.replaceWith(a.call(this,b,e))});typeof a!=="string"&&(a=d(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;d(this).remove(),b?d(b).before(a):d(c).append(a)})}return this.pushStack(d(d.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,e){var f,g,h,i,j=a[0],k=[];if(!d.support.checkClone&&arguments.length===3&&typeof j==="string"&&W.test(j))return this.each(function(){d(this).domManip(a,c,e,!0)});if(d.isFunction(j))return this.each(function(f){var g=d(this);a[0]=j.call(this,f,c?g.html():b),g.domManip(a,c,e)});if(this[0]){i=j&&j.parentNode,d.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?f={fragment:i}:f=d.buildFragment(a,this,k),h=f.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&d.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)e.call(c?Y(this[l],g):this[l],f.cacheable||m>1&&l<n?d.clone(h,!0,!0):h)}k.length&&d.each(k,ba)}return this}}),d.buildFragment=function(a,b,e){var f,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]==="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!V.test(a[0])&&(d.support.checkClone||!W.test(a[0]))&&(g=!0,h=d.fragments[a[0]],h&&(h!==1&&(f=h))),f||(f=i.createDocumentFragment(),d.clean(a,i,f,e)),g&&(d.fragments[a[0]]=h?f:1);return{fragment:f,cacheable:g}},d.fragments={},d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(c){var e=[],f=d(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&f.length===1){f[b](this[0]);return this}for(var h=0,i=f.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1></$2>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]==="<table>"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={},bI={},bJ,bK;try{bJ=c.location.href}catch(bL){bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("<div>").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(br,"\r\n")}}):{name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bQ(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){c&&c(0,1)}}}});var bZ={},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)e=this[g],f=e.style.display,!d._data(e,"olddisplay")&&f==="none"&&(f=e.style.display=""),f===""&&d.css(e,"display")==="none"&&d._data(e,"olddisplay",cd(e.nodeName));for(g=0;g<h;g++){e=this[g],f=e.style.display;if(f===""||f==="none")e.style.display=d._data(e,"olddisplay")||""}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cc("hide",3),a,b,c);for(var e=0,f=this.length;e<f;e++){var g=d.css(this[e],"display");g!=="none"&&!d._data(this[e],"olddisplay")&&d._data(this[e],"olddisplay",g)}for(e=0;e<f;e++)this[e].style.display="none";return this},_toggle:d.fn.toggle,toggle:function(a,b,c){var e=typeof a==="boolean";d.isFunction(a)&&d.isFunction(b)?this._toggle.apply(this,arguments):a==null||e?this.each(function(){var b=e?a:d(this).is(":hidden");d(this)[b?"show":"hide"]()}):this.animate(cc("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,e){var f=d.speed(b,c,e);if(d.isEmptyObject(a))return this.each(f.complete);return this[f.queue===!1?"each":"queue"](function(){var b=d.extend({},f),c,e=this.nodeType===1,g=e&&d(this).is(":hidden"),h=this;for(c in a){var i=d.camelCase(c);c!==i&&(a[i]=a[c],delete a[c],c=i);if(a[c]==="hide"&&g||a[c]==="show"&&!g)return b.complete.call(this);if(e&&(c==="height"||c==="width")){b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(d.css(this,"display")==="inline"&&d.css(this,"float")==="none")if(d.support.inlineBlockNeedsLayout){var j=cd(this.nodeName);j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)}else this.style.display="inline-block"}d.isArray(a[c])&&((b.specialEasing=b.specialEasing||{})[c]=a[c][1],a[c]=a[c][0])}b.overflow!=null&&(this.style.overflow="hidden"),b.curAnim=d.extend({},a),d.each(a,function(c,e){var f=new d.fx(h,b,c);if(b$.test(e))f[e==="toggle"?g?"show":"hide":e](a);else{var i=b_.exec(e),j=f.cur();if(i){var k=parseFloat(i[2]),l=i[3]||(d.cssNumber[c]?"":"px");l!=="px"&&(d.style(h,c,(k||1)+l),j=(k||1)/f.cur()*j,d.style(h,c,j+l)),i[1]&&(k=(i[1]==="-="?-1:1)*k+j),f.custom(j,k,l)}else f.custom(j,e,"")}});return!0})},stop:function(a,b){var c=d.timers;a&&this.queue([]),this.each(function(){for(var a=c.length-1;a>=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||d.fx.stop()},interval:13,stop:function(){clearInterval(ca),ca=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){d.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),d.expr&&d.expr.filters&&(d.expr.filters.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length});var ce=/^t(?:able|d|h)$/i,cf=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?d.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,g=f.documentElement;if(!c||!d.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=f.body,i=cg(f),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||d.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||d.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:d.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);d.offset.initialize();var c,e=b.offsetParent,f=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(d.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===e&&(l+=b.offsetTop,m+=b.offsetLeft,d.offset.doesNotAddBorder&&(!d.offset.doesAddBorderForTableAndCells||!ce.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),f=e,e=b.offsetParent),d.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;d.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},d.offset={initialize:function(){var a=c.body,b=c.createElement("div"),e,f,g,h,i=parseFloat(d.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window); No newline at end of file |
1 | NO CONTENT: new file 100755 |
|
NO CONTENT: new file 100755 | ||
The requested commit or file is too big and content was truncated. Show full diff |
1 | NO CONTENT: new file 100644 |
|
NO CONTENT: new file 100644 | ||
The requested commit or file is too big and content was truncated. Show full diff |
1 | NO CONTENT: new file 100644 |
|
NO CONTENT: new file 100644 | ||
The requested commit or file is too big and content was truncated. Show full diff |
1 | NO CONTENT: new file 100755 |
|
NO CONTENT: new file 100755 | ||
The requested commit or file is too big and content was truncated. Show full diff |
1 | NO CONTENT: new file 100644 |
|
NO CONTENT: new file 100644 | ||
The requested commit or file is too big and content was truncated. Show full diff |
1 | NO CONTENT: new file 100644 |
|
NO CONTENT: new file 100644 | ||
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now