bakery-core 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/Rakefile +2 -0
- data/app/helpers/bakery_theme/object_list_helper.rb +100 -0
- data/app/helpers/bakery_theme/toolbar_helper.rb +390 -0
- data/app/helpers/bakery_theme_helper.rb +10 -0
- data/app/helpers/platform/asset_tag_helper.rb +76 -0
- data/app/helpers/platform_helper.rb +7 -0
- data/app/models/platform/site_configuration.rb +63 -0
- data/app/models/platform/site_manager.rb +112 -0
- data/bakery-core.gemspec +23 -0
- data/config/.gitkeep +0 -0
- data/lib/bakery-core.rb +8 -0
- data/lib/bakery-core/version.rb +5 -0
- data/lib/engine.rb +8 -0
- data/lib/generators/website/USAGE +18 -0
- data/lib/generators/website/templates/config.yml +221 -0
- data/lib/generators/website/templates/layout.html.haml +9 -0
- data/lib/generators/website/templates/style.css +5 -0
- data/lib/generators/website/templates/template.html.haml +14 -0
- data/lib/generators/website/templates/theme/images/bg_wood_eureka.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_flat_55_999999_40x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_flat_55_ffffff_40x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_flat_75_000000_40x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_flat_75_103b53_40x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_flat_75_70a9c5_40x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_gloss-wave_45_e14f1c_500x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_highlight-hard_70_9fc7db_1x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_highlight-soft_70_103b53_1x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-bg_inset-hard_100_e9dfc4_1x100.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_0c3d58_256x240.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_103b53_256x240.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_58a4ca_256x240.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_9fc7db_256x240.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_fcd113_256x240.png +0 -0
- data/lib/generators/website/templates/theme/images/ui-icons_ffffff_256x240.png +0 -0
- data/lib/generators/website/templates/theme/ui.theme.css +1100 -0
- data/lib/generators/website/website_generator.rb +40 -0
- metadata +135 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
%h1= page.title
|
2
|
+
|
3
|
+
= editable_page_content_for :free_content, :allow => [:text, :picture, :picture_serie], :options_for => {
|
4
|
+
:text => {
|
5
|
+
:html => true,
|
6
|
+
:deny => :publish #,
|
7
|
+
#:columns => 3
|
8
|
+
},
|
9
|
+
:picture => {
|
10
|
+
:size => [200, 150],
|
11
|
+
:max_size => [600, 400],
|
12
|
+
:deny => :publish
|
13
|
+
}
|
14
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,1100 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery UI CSS Framework
|
3
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
4
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
5
|
+
*/
|
6
|
+
|
7
|
+
/* Layout helpers
|
8
|
+
----------------------------------*/
|
9
|
+
.ui-helper-hidden {
|
10
|
+
display: none;
|
11
|
+
}
|
12
|
+
|
13
|
+
.ui-helper-hidden-accessible {
|
14
|
+
position: absolute;
|
15
|
+
left: -99999999px;
|
16
|
+
}
|
17
|
+
|
18
|
+
.ui-helper-reset {
|
19
|
+
margin: 0;
|
20
|
+
padding: 0;
|
21
|
+
border: 0;
|
22
|
+
outline: 0;
|
23
|
+
line-height: 1.3;
|
24
|
+
text-decoration: none;
|
25
|
+
font-size: 100%;
|
26
|
+
list-style: none;
|
27
|
+
}
|
28
|
+
|
29
|
+
.ui-helper-clearfix:after {
|
30
|
+
content: ".";
|
31
|
+
display: block;
|
32
|
+
height: 0;
|
33
|
+
clear: both;
|
34
|
+
visibility: hidden;
|
35
|
+
}
|
36
|
+
|
37
|
+
.ui-helper-clearfix {
|
38
|
+
display: inline-block;
|
39
|
+
}
|
40
|
+
|
41
|
+
/* required comment for clearfix to work in Opera \*/
|
42
|
+
* html .ui-helper-clearfix {
|
43
|
+
height: 1%;
|
44
|
+
}
|
45
|
+
|
46
|
+
.ui-helper-clearfix {
|
47
|
+
display: block;
|
48
|
+
}
|
49
|
+
|
50
|
+
/* end clearfix */
|
51
|
+
.ui-helper-zfix {
|
52
|
+
width: 100%;
|
53
|
+
height: 100%;
|
54
|
+
top: 0;
|
55
|
+
left: 0;
|
56
|
+
position: absolute;
|
57
|
+
opacity: 0;
|
58
|
+
filter: Alpha(Opacity = 0);
|
59
|
+
}
|
60
|
+
|
61
|
+
/* Interaction Cues
|
62
|
+
----------------------------------*/
|
63
|
+
.ui-state-disabled {
|
64
|
+
cursor: default !important;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* Icons
|
68
|
+
----------------------------------*/
|
69
|
+
|
70
|
+
/* states and images */
|
71
|
+
.ui-icon {
|
72
|
+
display: block;
|
73
|
+
text-indent: -99999px;
|
74
|
+
overflow: hidden;
|
75
|
+
background-repeat: no-repeat;
|
76
|
+
}
|
77
|
+
|
78
|
+
/* Misc visuals
|
79
|
+
----------------------------------*/
|
80
|
+
|
81
|
+
/* Overlays */
|
82
|
+
.ui-widget-overlay {
|
83
|
+
position: absolute;
|
84
|
+
top: 0;
|
85
|
+
left: 0;
|
86
|
+
width: 100%;
|
87
|
+
height: 100%;
|
88
|
+
}
|
89
|
+
|
90
|
+
/*
|
91
|
+
* jQuery UI CSS Framework
|
92
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
93
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
94
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=103b53&bgTextureHeader=01_flat.png&bgImgOpacityHeader=75&borderColorHeader=222222&fcHeader=eaf5f7&iconColorHeader=d8e7f3&bgColorContent=e9dfc4&bgTextureContent=06_inset_hard.png&bgImgOpacityContent=100&borderColorContent=0c3d58&fcContent=222222&iconColorContent=58a4ca&bgColorDefault=9fc7db&bgTextureDefault=04_highlight_hard.png&bgImgOpacityDefault=70&borderColorDefault=222222&fcDefault=103b53&iconColorDefault=103b53&bgColorHover=70a9c5&bgTextureHover=01_flat.png&bgImgOpacityHover=75&borderColorHover=222222&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=103b53&bgTextureActive=03_highlight_soft.png&bgImgOpacityActive=70&borderColorActive=222222&fcActive=ffffff&iconColorActive=9fc7db&bgColorHighlight=ffffff&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=55&borderColorHighlight=0c3d58&fcHighlight=0c3d58&iconColorHighlight=0c3d58&bgColorError=e14f1c&bgTextureError=12_gloss_wave.png&bgImgOpacityError=45&borderColorError=cd0a0a&fcError=ffffff&iconColorError=fcd113&bgColorOverlay=000000&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=75&opacityOverlay=20&bgColorShadow=999999&bgTextureShadow=01_flat.png&bgImgOpacityShadow=55&opacityShadow=65&thicknessShadow=0px&offsetTopShadow=5px&offsetLeftShadow=5px&cornerRadiusShadow=5px
|
95
|
+
*/
|
96
|
+
|
97
|
+
/* Component containers
|
98
|
+
----------------------------------*/
|
99
|
+
.ui-widget {
|
100
|
+
font-family: Verdana, Arial, sans-serif;
|
101
|
+
font-size: 1.1em;
|
102
|
+
}
|
103
|
+
|
104
|
+
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
|
105
|
+
font-family: Verdana, Arial, sans-serif;
|
106
|
+
font-size: 1em;
|
107
|
+
}
|
108
|
+
|
109
|
+
.ui-widget-content {
|
110
|
+
border: 1px solid #0c3d58;
|
111
|
+
background: #e9dfc4 url(images/ui-bg_inset-hard_100_e9dfc4_1x100.png) 50% bottom repeat-x;
|
112
|
+
color: #222222;
|
113
|
+
}
|
114
|
+
|
115
|
+
.ui-widget-content a {
|
116
|
+
color: #222222;
|
117
|
+
}
|
118
|
+
|
119
|
+
.ui-widget-header {
|
120
|
+
border: 1px solid #222222;
|
121
|
+
background: #103b53 url(images/ui-bg_flat_75_103b53_40x100.png) 50% 50% repeat-x;
|
122
|
+
color: #eaf5f7;
|
123
|
+
font-weight: bold;
|
124
|
+
}
|
125
|
+
|
126
|
+
.ui-widget-header a {
|
127
|
+
color: #eaf5f7;
|
128
|
+
}
|
129
|
+
|
130
|
+
/* Interaction states
|
131
|
+
----------------------------------*/
|
132
|
+
.ui-state-default, .ui-widget-content .ui-state-default {
|
133
|
+
border: 1px solid #222222;
|
134
|
+
background: #9fc7db url(images/ui-bg_highlight-hard_70_9fc7db_1x100.png) 50% 50% repeat-x;
|
135
|
+
font-weight: normal;
|
136
|
+
color: #103b53;
|
137
|
+
outline: none;
|
138
|
+
}
|
139
|
+
|
140
|
+
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
|
141
|
+
color: #103b53;
|
142
|
+
text-decoration: none;
|
143
|
+
outline: none;
|
144
|
+
}
|
145
|
+
|
146
|
+
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus {
|
147
|
+
border: 1px solid #222222;
|
148
|
+
background: #70a9c5 url(images/ui-bg_flat_75_70a9c5_40x100.png) 50% 50% repeat-x;
|
149
|
+
font-weight: normal;
|
150
|
+
color: #ffffff;
|
151
|
+
outline: none;
|
152
|
+
}
|
153
|
+
|
154
|
+
.ui-state-hover a, .ui-state-hover a:hover {
|
155
|
+
color: #ffffff;
|
156
|
+
text-decoration: none;
|
157
|
+
outline: none;
|
158
|
+
}
|
159
|
+
|
160
|
+
.ui-state-active, .ui-widget-content .ui-state-active {
|
161
|
+
border: 1px solid #222222;
|
162
|
+
background: #103b53 url(images/ui-bg_highlight-soft_70_103b53_1x100.png) 50% 50% repeat-x;
|
163
|
+
font-weight: normal;
|
164
|
+
color: #ffffff;
|
165
|
+
outline: none;
|
166
|
+
}
|
167
|
+
|
168
|
+
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
|
169
|
+
color: #ffffff;
|
170
|
+
outline: none;
|
171
|
+
text-decoration: none;
|
172
|
+
}
|
173
|
+
|
174
|
+
/* Interaction Cues
|
175
|
+
----------------------------------*/
|
176
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight {
|
177
|
+
border: 1px solid #0c3d58;
|
178
|
+
background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x;
|
179
|
+
color: #0c3d58;
|
180
|
+
}
|
181
|
+
|
182
|
+
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a {
|
183
|
+
color: #0c3d58;
|
184
|
+
}
|
185
|
+
|
186
|
+
.ui-state-error, .ui-widget-content .ui-state-error {
|
187
|
+
border: 1px solid #cd0a0a;
|
188
|
+
background: #e14f1c url(images/ui-bg_gloss-wave_45_e14f1c_500x100.png) 50% top repeat-x;
|
189
|
+
color: #ffffff;
|
190
|
+
}
|
191
|
+
|
192
|
+
.ui-state-error a, .ui-widget-content .ui-state-error a {
|
193
|
+
color: #ffffff;
|
194
|
+
}
|
195
|
+
|
196
|
+
.ui-state-error-text, .ui-widget-content .ui-state-error-text {
|
197
|
+
color: #ffffff;
|
198
|
+
}
|
199
|
+
|
200
|
+
.ui-state-disabled, .ui-widget-content .ui-state-disabled {
|
201
|
+
opacity: .35;
|
202
|
+
filter: Alpha(Opacity = 35);
|
203
|
+
background-image: none;
|
204
|
+
}
|
205
|
+
|
206
|
+
.ui-priority-primary, .ui-widget-content .ui-priority-primary {
|
207
|
+
font-weight: bold;
|
208
|
+
}
|
209
|
+
|
210
|
+
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary {
|
211
|
+
opacity: .7;
|
212
|
+
filter: Alpha(Opacity = 70);
|
213
|
+
font-weight: normal;
|
214
|
+
}
|
215
|
+
|
216
|
+
/* Icons
|
217
|
+
----------------------------------*/
|
218
|
+
|
219
|
+
/* states and images */
|
220
|
+
.ui-icon {
|
221
|
+
width: 16px;
|
222
|
+
height: 16px;
|
223
|
+
background-image: url(images/ui-icons_58a4ca_256x240.png);
|
224
|
+
}
|
225
|
+
|
226
|
+
.ui-widget-content .ui-icon {
|
227
|
+
background-image: url(images/ui-icons_58a4ca_256x240.png);
|
228
|
+
}
|
229
|
+
|
230
|
+
.ui-widget-header .ui-icon {
|
231
|
+
background-image: url(images/ui-icons_d8e7f3_256x240.png);
|
232
|
+
}
|
233
|
+
|
234
|
+
.ui-state-default .ui-icon {
|
235
|
+
background-image: url(images/ui-icons_103b53_256x240.png);
|
236
|
+
}
|
237
|
+
|
238
|
+
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
|
239
|
+
background-image: url(images/ui-icons_ffffff_256x240.png);
|
240
|
+
}
|
241
|
+
|
242
|
+
.ui-state-active .ui-icon {
|
243
|
+
background-image: url(images/ui-icons_9fc7db_256x240.png);
|
244
|
+
}
|
245
|
+
|
246
|
+
.ui-state-highlight .ui-icon {
|
247
|
+
background-image: url(images/ui-icons_0c3d58_256x240.png);
|
248
|
+
}
|
249
|
+
|
250
|
+
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
|
251
|
+
background-image: url(images/ui-icons_fcd113_256x240.png);
|
252
|
+
}
|
253
|
+
|
254
|
+
/* positioning */
|
255
|
+
.ui-icon-carat-1-n {
|
256
|
+
background-position: 0 0;
|
257
|
+
}
|
258
|
+
|
259
|
+
.ui-icon-carat-1-ne {
|
260
|
+
background-position: -16px 0;
|
261
|
+
}
|
262
|
+
|
263
|
+
.ui-icon-carat-1-e {
|
264
|
+
background-position: -32px 0;
|
265
|
+
}
|
266
|
+
|
267
|
+
.ui-icon-carat-1-se {
|
268
|
+
background-position: -48px 0;
|
269
|
+
}
|
270
|
+
|
271
|
+
.ui-icon-carat-1-s {
|
272
|
+
background-position: -64px 0;
|
273
|
+
}
|
274
|
+
|
275
|
+
.ui-icon-carat-1-sw {
|
276
|
+
background-position: -80px 0;
|
277
|
+
}
|
278
|
+
|
279
|
+
.ui-icon-carat-1-w {
|
280
|
+
background-position: -96px 0;
|
281
|
+
}
|
282
|
+
|
283
|
+
.ui-icon-carat-1-nw {
|
284
|
+
background-position: -112px 0;
|
285
|
+
}
|
286
|
+
|
287
|
+
.ui-icon-carat-2-n-s {
|
288
|
+
background-position: -128px 0;
|
289
|
+
}
|
290
|
+
|
291
|
+
.ui-icon-carat-2-e-w {
|
292
|
+
background-position: -144px 0;
|
293
|
+
}
|
294
|
+
|
295
|
+
.ui-icon-triangle-1-n {
|
296
|
+
background-position: 0 -16px;
|
297
|
+
}
|
298
|
+
|
299
|
+
.ui-icon-triangle-1-ne {
|
300
|
+
background-position: -16px -16px;
|
301
|
+
}
|
302
|
+
|
303
|
+
.ui-icon-triangle-1-e {
|
304
|
+
background-position: -32px -16px;
|
305
|
+
}
|
306
|
+
|
307
|
+
.ui-icon-triangle-1-se {
|
308
|
+
background-position: -48px -16px;
|
309
|
+
}
|
310
|
+
|
311
|
+
.ui-icon-triangle-1-s {
|
312
|
+
background-position: -64px -16px;
|
313
|
+
}
|
314
|
+
|
315
|
+
.ui-icon-triangle-1-sw {
|
316
|
+
background-position: -80px -16px;
|
317
|
+
}
|
318
|
+
|
319
|
+
.ui-icon-triangle-1-w {
|
320
|
+
background-position: -96px -16px;
|
321
|
+
}
|
322
|
+
|
323
|
+
.ui-icon-triangle-1-nw {
|
324
|
+
background-position: -112px -16px;
|
325
|
+
}
|
326
|
+
|
327
|
+
.ui-icon-triangle-2-n-s {
|
328
|
+
background-position: -128px -16px;
|
329
|
+
}
|
330
|
+
|
331
|
+
.ui-icon-triangle-2-e-w {
|
332
|
+
background-position: -144px -16px;
|
333
|
+
}
|
334
|
+
|
335
|
+
.ui-icon-arrow-1-n {
|
336
|
+
background-position: 0 -32px;
|
337
|
+
}
|
338
|
+
|
339
|
+
.ui-icon-arrow-1-ne {
|
340
|
+
background-position: -16px -32px;
|
341
|
+
}
|
342
|
+
|
343
|
+
.ui-icon-arrow-1-e {
|
344
|
+
background-position: -32px -32px;
|
345
|
+
}
|
346
|
+
|
347
|
+
.ui-icon-arrow-1-se {
|
348
|
+
background-position: -48px -32px;
|
349
|
+
}
|
350
|
+
|
351
|
+
.ui-icon-arrow-1-s {
|
352
|
+
background-position: -64px -32px;
|
353
|
+
}
|
354
|
+
|
355
|
+
.ui-icon-arrow-1-sw {
|
356
|
+
background-position: -80px -32px;
|
357
|
+
}
|
358
|
+
|
359
|
+
.ui-icon-arrow-1-w {
|
360
|
+
background-position: -96px -32px;
|
361
|
+
}
|
362
|
+
|
363
|
+
.ui-icon-arrow-1-nw {
|
364
|
+
background-position: -112px -32px;
|
365
|
+
}
|
366
|
+
|
367
|
+
.ui-icon-arrow-2-n-s {
|
368
|
+
background-position: -128px -32px;
|
369
|
+
}
|
370
|
+
|
371
|
+
.ui-icon-arrow-2-ne-sw {
|
372
|
+
background-position: -144px -32px;
|
373
|
+
}
|
374
|
+
|
375
|
+
.ui-icon-arrow-2-e-w {
|
376
|
+
background-position: -160px -32px;
|
377
|
+
}
|
378
|
+
|
379
|
+
.ui-icon-arrow-2-se-nw {
|
380
|
+
background-position: -176px -32px;
|
381
|
+
}
|
382
|
+
|
383
|
+
.ui-icon-arrowstop-1-n {
|
384
|
+
background-position: -192px -32px;
|
385
|
+
}
|
386
|
+
|
387
|
+
.ui-icon-arrowstop-1-e {
|
388
|
+
background-position: -208px -32px;
|
389
|
+
}
|
390
|
+
|
391
|
+
.ui-icon-arrowstop-1-s {
|
392
|
+
background-position: -224px -32px;
|
393
|
+
}
|
394
|
+
|
395
|
+
.ui-icon-arrowstop-1-w {
|
396
|
+
background-position: -240px -32px;
|
397
|
+
}
|
398
|
+
|
399
|
+
.ui-icon-arrowthick-1-n {
|
400
|
+
background-position: 0 -48px;
|
401
|
+
}
|
402
|
+
|
403
|
+
.ui-icon-arrowthick-1-ne {
|
404
|
+
background-position: -16px -48px;
|
405
|
+
}
|
406
|
+
|
407
|
+
.ui-icon-arrowthick-1-e {
|
408
|
+
background-position: -32px -48px;
|
409
|
+
}
|
410
|
+
|
411
|
+
.ui-icon-arrowthick-1-se {
|
412
|
+
background-position: -48px -48px;
|
413
|
+
}
|
414
|
+
|
415
|
+
.ui-icon-arrowthick-1-s {
|
416
|
+
background-position: -64px -48px;
|
417
|
+
}
|
418
|
+
|
419
|
+
.ui-icon-arrowthick-1-sw {
|
420
|
+
background-position: -80px -48px;
|
421
|
+
}
|
422
|
+
|
423
|
+
.ui-icon-arrowthick-1-w {
|
424
|
+
background-position: -96px -48px;
|
425
|
+
}
|
426
|
+
|
427
|
+
.ui-icon-arrowthick-1-nw {
|
428
|
+
background-position: -112px -48px;
|
429
|
+
}
|
430
|
+
|
431
|
+
.ui-icon-arrowthick-2-n-s {
|
432
|
+
background-position: -128px -48px;
|
433
|
+
}
|
434
|
+
|
435
|
+
.ui-icon-arrowthick-2-ne-sw {
|
436
|
+
background-position: -144px -48px;
|
437
|
+
}
|
438
|
+
|
439
|
+
.ui-icon-arrowthick-2-e-w {
|
440
|
+
background-position: -160px -48px;
|
441
|
+
}
|
442
|
+
|
443
|
+
.ui-icon-arrowthick-2-se-nw {
|
444
|
+
background-position: -176px -48px;
|
445
|
+
}
|
446
|
+
|
447
|
+
.ui-icon-arrowthickstop-1-n {
|
448
|
+
background-position: -192px -48px;
|
449
|
+
}
|
450
|
+
|
451
|
+
.ui-icon-arrowthickstop-1-e {
|
452
|
+
background-position: -208px -48px;
|
453
|
+
}
|
454
|
+
|
455
|
+
.ui-icon-arrowthickstop-1-s {
|
456
|
+
background-position: -224px -48px;
|
457
|
+
}
|
458
|
+
|
459
|
+
.ui-icon-arrowthickstop-1-w {
|
460
|
+
background-position: -240px -48px;
|
461
|
+
}
|
462
|
+
|
463
|
+
.ui-icon-arrowreturnthick-1-w {
|
464
|
+
background-position: 0 -64px;
|
465
|
+
}
|
466
|
+
|
467
|
+
.ui-icon-arrowreturnthick-1-n {
|
468
|
+
background-position: -16px -64px;
|
469
|
+
}
|
470
|
+
|
471
|
+
.ui-icon-arrowreturnthick-1-e {
|
472
|
+
background-position: -32px -64px;
|
473
|
+
}
|
474
|
+
|
475
|
+
.ui-icon-arrowreturnthick-1-s {
|
476
|
+
background-position: -48px -64px;
|
477
|
+
}
|
478
|
+
|
479
|
+
.ui-icon-arrowreturn-1-w {
|
480
|
+
background-position: -64px -64px;
|
481
|
+
}
|
482
|
+
|
483
|
+
.ui-icon-arrowreturn-1-n {
|
484
|
+
background-position: -80px -64px;
|
485
|
+
}
|
486
|
+
|
487
|
+
.ui-icon-arrowreturn-1-e {
|
488
|
+
background-position: -96px -64px;
|
489
|
+
}
|
490
|
+
|
491
|
+
.ui-icon-arrowreturn-1-s {
|
492
|
+
background-position: -112px -64px;
|
493
|
+
}
|
494
|
+
|
495
|
+
.ui-icon-arrowrefresh-1-w {
|
496
|
+
background-position: -128px -64px;
|
497
|
+
}
|
498
|
+
|
499
|
+
.ui-icon-arrowrefresh-1-n {
|
500
|
+
background-position: -144px -64px;
|
501
|
+
}
|
502
|
+
|
503
|
+
.ui-icon-arrowrefresh-1-e {
|
504
|
+
background-position: -160px -64px;
|
505
|
+
}
|
506
|
+
|
507
|
+
.ui-icon-arrowrefresh-1-s {
|
508
|
+
background-position: -176px -64px;
|
509
|
+
}
|
510
|
+
|
511
|
+
.ui-icon-arrow-4 {
|
512
|
+
background-position: 0 -80px;
|
513
|
+
}
|
514
|
+
|
515
|
+
.ui-icon-arrow-4-diag {
|
516
|
+
background-position: -16px -80px;
|
517
|
+
}
|
518
|
+
|
519
|
+
.ui-icon-extlink {
|
520
|
+
background-position: -32px -80px;
|
521
|
+
}
|
522
|
+
|
523
|
+
.ui-icon-newwin {
|
524
|
+
background-position: -48px -80px;
|
525
|
+
}
|
526
|
+
|
527
|
+
.ui-icon-refresh {
|
528
|
+
background-position: -64px -80px;
|
529
|
+
}
|
530
|
+
|
531
|
+
.ui-icon-shuffle {
|
532
|
+
background-position: -80px -80px;
|
533
|
+
}
|
534
|
+
|
535
|
+
.ui-icon-transfer-e-w {
|
536
|
+
background-position: -96px -80px;
|
537
|
+
}
|
538
|
+
|
539
|
+
.ui-icon-transferthick-e-w {
|
540
|
+
background-position: -112px -80px;
|
541
|
+
}
|
542
|
+
|
543
|
+
.ui-icon-folder-collapsed {
|
544
|
+
background-position: 0 -96px;
|
545
|
+
}
|
546
|
+
|
547
|
+
.ui-icon-folder-open {
|
548
|
+
background-position: -16px -96px;
|
549
|
+
}
|
550
|
+
|
551
|
+
.ui-icon-document {
|
552
|
+
background-position: -32px -96px;
|
553
|
+
}
|
554
|
+
|
555
|
+
.ui-icon-document-b {
|
556
|
+
background-position: -48px -96px;
|
557
|
+
}
|
558
|
+
|
559
|
+
.ui-icon-note {
|
560
|
+
background-position: -64px -96px;
|
561
|
+
}
|
562
|
+
|
563
|
+
.ui-icon-mail-closed {
|
564
|
+
background-position: -80px -96px;
|
565
|
+
}
|
566
|
+
|
567
|
+
.ui-icon-mail-open {
|
568
|
+
background-position: -96px -96px;
|
569
|
+
}
|
570
|
+
|
571
|
+
.ui-icon-suitcase {
|
572
|
+
background-position: -112px -96px;
|
573
|
+
}
|
574
|
+
|
575
|
+
.ui-icon-comment {
|
576
|
+
background-position: -128px -96px;
|
577
|
+
}
|
578
|
+
|
579
|
+
.ui-icon-person {
|
580
|
+
background-position: -144px -96px;
|
581
|
+
}
|
582
|
+
|
583
|
+
.ui-icon-print {
|
584
|
+
background-position: -160px -96px;
|
585
|
+
}
|
586
|
+
|
587
|
+
.ui-icon-trash {
|
588
|
+
background-position: -176px -96px;
|
589
|
+
}
|
590
|
+
|
591
|
+
.ui-icon-locked {
|
592
|
+
background-position: -192px -96px;
|
593
|
+
}
|
594
|
+
|
595
|
+
.ui-icon-unlocked {
|
596
|
+
background-position: -208px -96px;
|
597
|
+
}
|
598
|
+
|
599
|
+
.ui-icon-bookmark {
|
600
|
+
background-position: -224px -96px;
|
601
|
+
}
|
602
|
+
|
603
|
+
.ui-icon-tag {
|
604
|
+
background-position: -240px -96px;
|
605
|
+
}
|
606
|
+
|
607
|
+
.ui-icon-home {
|
608
|
+
background-position: 0 -112px;
|
609
|
+
}
|
610
|
+
|
611
|
+
.ui-icon-flag {
|
612
|
+
background-position: -16px -112px;
|
613
|
+
}
|
614
|
+
|
615
|
+
.ui-icon-calendar {
|
616
|
+
background-position: -32px -112px;
|
617
|
+
}
|
618
|
+
|
619
|
+
.ui-icon-cart {
|
620
|
+
background-position: -48px -112px;
|
621
|
+
}
|
622
|
+
|
623
|
+
.ui-icon-pencil {
|
624
|
+
background-position: -64px -112px;
|
625
|
+
}
|
626
|
+
|
627
|
+
.ui-icon-clock {
|
628
|
+
background-position: -80px -112px;
|
629
|
+
}
|
630
|
+
|
631
|
+
.ui-icon-disk {
|
632
|
+
background-position: -96px -112px;
|
633
|
+
}
|
634
|
+
|
635
|
+
.ui-icon-calculator {
|
636
|
+
background-position: -112px -112px;
|
637
|
+
}
|
638
|
+
|
639
|
+
.ui-icon-zoomin {
|
640
|
+
background-position: -128px -112px;
|
641
|
+
}
|
642
|
+
|
643
|
+
.ui-icon-zoomout {
|
644
|
+
background-position: -144px -112px;
|
645
|
+
}
|
646
|
+
|
647
|
+
.ui-icon-search {
|
648
|
+
background-position: -160px -112px;
|
649
|
+
}
|
650
|
+
|
651
|
+
.ui-icon-wrench {
|
652
|
+
background-position: -176px -112px;
|
653
|
+
}
|
654
|
+
|
655
|
+
.ui-icon-gear {
|
656
|
+
background-position: -192px -112px;
|
657
|
+
}
|
658
|
+
|
659
|
+
.ui-icon-heart {
|
660
|
+
background-position: -208px -112px;
|
661
|
+
}
|
662
|
+
|
663
|
+
.ui-icon-star {
|
664
|
+
background-position: -224px -112px;
|
665
|
+
}
|
666
|
+
|
667
|
+
.ui-icon-link {
|
668
|
+
background-position: -240px -112px;
|
669
|
+
}
|
670
|
+
|
671
|
+
.ui-icon-cancel {
|
672
|
+
background-position: 0 -128px;
|
673
|
+
}
|
674
|
+
|
675
|
+
.ui-icon-plus {
|
676
|
+
background-position: -16px -128px;
|
677
|
+
}
|
678
|
+
|
679
|
+
.ui-icon-plusthick {
|
680
|
+
background-position: -32px -128px;
|
681
|
+
}
|
682
|
+
|
683
|
+
.ui-icon-minus {
|
684
|
+
background-position: -48px -128px;
|
685
|
+
}
|
686
|
+
|
687
|
+
.ui-icon-minusthick {
|
688
|
+
background-position: -64px -128px;
|
689
|
+
}
|
690
|
+
|
691
|
+
.ui-icon-close {
|
692
|
+
background-position: -80px -128px;
|
693
|
+
}
|
694
|
+
|
695
|
+
.ui-icon-closethick {
|
696
|
+
background-position: -96px -128px;
|
697
|
+
}
|
698
|
+
|
699
|
+
.ui-icon-key {
|
700
|
+
background-position: -112px -128px;
|
701
|
+
}
|
702
|
+
|
703
|
+
.ui-icon-lightbulb {
|
704
|
+
background-position: -128px -128px;
|
705
|
+
}
|
706
|
+
|
707
|
+
.ui-icon-scissors {
|
708
|
+
background-position: -144px -128px;
|
709
|
+
}
|
710
|
+
|
711
|
+
.ui-icon-clipboard {
|
712
|
+
background-position: -160px -128px;
|
713
|
+
}
|
714
|
+
|
715
|
+
.ui-icon-copy {
|
716
|
+
background-position: -176px -128px;
|
717
|
+
}
|
718
|
+
|
719
|
+
.ui-icon-contact {
|
720
|
+
background-position: -192px -128px;
|
721
|
+
}
|
722
|
+
|
723
|
+
.ui-icon-image {
|
724
|
+
background-position: -208px -128px;
|
725
|
+
}
|
726
|
+
|
727
|
+
.ui-icon-video {
|
728
|
+
background-position: -224px -128px;
|
729
|
+
}
|
730
|
+
|
731
|
+
.ui-icon-script {
|
732
|
+
background-position: -240px -128px;
|
733
|
+
}
|
734
|
+
|
735
|
+
.ui-icon-alert {
|
736
|
+
background-position: 0 -144px;
|
737
|
+
}
|
738
|
+
|
739
|
+
.ui-icon-info {
|
740
|
+
background-position: -16px -144px;
|
741
|
+
}
|
742
|
+
|
743
|
+
.ui-icon-notice {
|
744
|
+
background-position: -32px -144px;
|
745
|
+
}
|
746
|
+
|
747
|
+
.ui-icon-help {
|
748
|
+
background-position: -48px -144px;
|
749
|
+
}
|
750
|
+
|
751
|
+
.ui-icon-check {
|
752
|
+
background-position: -64px -144px;
|
753
|
+
}
|
754
|
+
|
755
|
+
.ui-icon-bullet {
|
756
|
+
background-position: -80px -144px;
|
757
|
+
}
|
758
|
+
|
759
|
+
.ui-icon-radio-off {
|
760
|
+
background-position: -96px -144px;
|
761
|
+
}
|
762
|
+
|
763
|
+
.ui-icon-radio-on {
|
764
|
+
background-position: -112px -144px;
|
765
|
+
}
|
766
|
+
|
767
|
+
.ui-icon-pin-w {
|
768
|
+
background-position: -128px -144px;
|
769
|
+
}
|
770
|
+
|
771
|
+
.ui-icon-pin-s {
|
772
|
+
background-position: -144px -144px;
|
773
|
+
}
|
774
|
+
|
775
|
+
.ui-icon-play {
|
776
|
+
background-position: 0 -160px;
|
777
|
+
}
|
778
|
+
|
779
|
+
.ui-icon-pause {
|
780
|
+
background-position: -16px -160px;
|
781
|
+
}
|
782
|
+
|
783
|
+
.ui-icon-seek-next {
|
784
|
+
background-position: -32px -160px;
|
785
|
+
}
|
786
|
+
|
787
|
+
.ui-icon-seek-prev {
|
788
|
+
background-position: -48px -160px;
|
789
|
+
}
|
790
|
+
|
791
|
+
.ui-icon-seek-end {
|
792
|
+
background-position: -64px -160px;
|
793
|
+
}
|
794
|
+
|
795
|
+
.ui-icon-seek-first {
|
796
|
+
background-position: -80px -160px;
|
797
|
+
}
|
798
|
+
|
799
|
+
.ui-icon-stop {
|
800
|
+
background-position: -96px -160px;
|
801
|
+
}
|
802
|
+
|
803
|
+
.ui-icon-eject {
|
804
|
+
background-position: -112px -160px;
|
805
|
+
}
|
806
|
+
|
807
|
+
.ui-icon-volume-off {
|
808
|
+
background-position: -128px -160px;
|
809
|
+
}
|
810
|
+
|
811
|
+
.ui-icon-volume-on {
|
812
|
+
background-position: -144px -160px;
|
813
|
+
}
|
814
|
+
|
815
|
+
.ui-icon-power {
|
816
|
+
background-position: 0 -176px;
|
817
|
+
}
|
818
|
+
|
819
|
+
.ui-icon-signal-diag {
|
820
|
+
background-position: -16px -176px;
|
821
|
+
}
|
822
|
+
|
823
|
+
.ui-icon-signal {
|
824
|
+
background-position: -32px -176px;
|
825
|
+
}
|
826
|
+
|
827
|
+
.ui-icon-battery-0 {
|
828
|
+
background-position: -48px -176px;
|
829
|
+
}
|
830
|
+
|
831
|
+
.ui-icon-battery-1 {
|
832
|
+
background-position: -64px -176px;
|
833
|
+
}
|
834
|
+
|
835
|
+
.ui-icon-battery-2 {
|
836
|
+
background-position: -80px -176px;
|
837
|
+
}
|
838
|
+
|
839
|
+
.ui-icon-battery-3 {
|
840
|
+
background-position: -96px -176px;
|
841
|
+
}
|
842
|
+
|
843
|
+
.ui-icon-circle-plus {
|
844
|
+
background-position: 0 -192px;
|
845
|
+
}
|
846
|
+
|
847
|
+
.ui-icon-circle-minus {
|
848
|
+
background-position: -16px -192px;
|
849
|
+
}
|
850
|
+
|
851
|
+
.ui-icon-circle-close {
|
852
|
+
background-position: -32px -192px;
|
853
|
+
}
|
854
|
+
|
855
|
+
.ui-icon-circle-triangle-e {
|
856
|
+
background-position: -48px -192px;
|
857
|
+
}
|
858
|
+
|
859
|
+
.ui-icon-circle-triangle-s {
|
860
|
+
background-position: -64px -192px;
|
861
|
+
}
|
862
|
+
|
863
|
+
.ui-icon-circle-triangle-w {
|
864
|
+
background-position: -80px -192px;
|
865
|
+
}
|
866
|
+
|
867
|
+
.ui-icon-circle-triangle-n {
|
868
|
+
background-position: -96px -192px;
|
869
|
+
}
|
870
|
+
|
871
|
+
.ui-icon-circle-arrow-e {
|
872
|
+
background-position: -112px -192px;
|
873
|
+
}
|
874
|
+
|
875
|
+
.ui-icon-circle-arrow-s {
|
876
|
+
background-position: -128px -192px;
|
877
|
+
}
|
878
|
+
|
879
|
+
.ui-icon-circle-arrow-w {
|
880
|
+
background-position: -144px -192px;
|
881
|
+
}
|
882
|
+
|
883
|
+
.ui-icon-circle-arrow-n {
|
884
|
+
background-position: -160px -192px;
|
885
|
+
}
|
886
|
+
|
887
|
+
.ui-icon-circle-zoomin {
|
888
|
+
background-position: -176px -192px;
|
889
|
+
}
|
890
|
+
|
891
|
+
.ui-icon-circle-zoomout {
|
892
|
+
background-position: -192px -192px;
|
893
|
+
}
|
894
|
+
|
895
|
+
.ui-icon-circle-check {
|
896
|
+
background-position: -208px -192px;
|
897
|
+
}
|
898
|
+
|
899
|
+
.ui-icon-circlesmall-plus {
|
900
|
+
background-position: 0 -208px;
|
901
|
+
}
|
902
|
+
|
903
|
+
.ui-icon-circlesmall-minus {
|
904
|
+
background-position: -16px -208px;
|
905
|
+
}
|
906
|
+
|
907
|
+
.ui-icon-circlesmall-close {
|
908
|
+
background-position: -32px -208px;
|
909
|
+
}
|
910
|
+
|
911
|
+
.ui-icon-squaresmall-plus {
|
912
|
+
background-position: -48px -208px;
|
913
|
+
}
|
914
|
+
|
915
|
+
.ui-icon-squaresmall-minus {
|
916
|
+
background-position: -64px -208px;
|
917
|
+
}
|
918
|
+
|
919
|
+
.ui-icon-squaresmall-close {
|
920
|
+
background-position: -80px -208px;
|
921
|
+
}
|
922
|
+
|
923
|
+
.ui-icon-grip-dotted-vertical {
|
924
|
+
background-position: 0 -224px;
|
925
|
+
}
|
926
|
+
|
927
|
+
.ui-icon-grip-dotted-horizontal {
|
928
|
+
background-position: -16px -224px;
|
929
|
+
}
|
930
|
+
|
931
|
+
.ui-icon-grip-solid-vertical {
|
932
|
+
background-position: -32px -224px;
|
933
|
+
}
|
934
|
+
|
935
|
+
.ui-icon-grip-solid-horizontal {
|
936
|
+
background-position: -48px -224px;
|
937
|
+
}
|
938
|
+
|
939
|
+
.ui-icon-gripsmall-diagonal-se {
|
940
|
+
background-position: -64px -224px;
|
941
|
+
}
|
942
|
+
|
943
|
+
.ui-icon-grip-diagonal-se {
|
944
|
+
background-position: -80px -224px;
|
945
|
+
}
|
946
|
+
|
947
|
+
/* Misc visuals
|
948
|
+
----------------------------------*/
|
949
|
+
|
950
|
+
/* Corner radius */
|
951
|
+
.ui-corner-tl {
|
952
|
+
-moz-border-radius-topleft: 5px;
|
953
|
+
-webkit-border-top-left-radius: 5px;
|
954
|
+
}
|
955
|
+
|
956
|
+
.ui-corner-tr {
|
957
|
+
-moz-border-radius-topright: 5px;
|
958
|
+
-webkit-border-top-right-radius: 5px;
|
959
|
+
}
|
960
|
+
|
961
|
+
.ui-corner-bl {
|
962
|
+
-moz-border-radius-bottomleft: 5px;
|
963
|
+
-webkit-border-bottom-left-radius: 5px;
|
964
|
+
}
|
965
|
+
|
966
|
+
.ui-corner-br {
|
967
|
+
-moz-border-radius-bottomright: 5px;
|
968
|
+
-webkit-border-bottom-right-radius: 5px;
|
969
|
+
}
|
970
|
+
|
971
|
+
.ui-corner-top {
|
972
|
+
-moz-border-radius-topleft: 5px;
|
973
|
+
-webkit-border-top-left-radius: 5px;
|
974
|
+
-moz-border-radius-topright: 5px;
|
975
|
+
-webkit-border-top-right-radius: 5px;
|
976
|
+
}
|
977
|
+
|
978
|
+
.ui-corner-bottom {
|
979
|
+
-moz-border-radius-bottomleft: 5px;
|
980
|
+
-webkit-border-bottom-left-radius: 5px;
|
981
|
+
-moz-border-radius-bottomright: 5px;
|
982
|
+
-webkit-border-bottom-right-radius: 5px;
|
983
|
+
}
|
984
|
+
|
985
|
+
.ui-corner-right {
|
986
|
+
-moz-border-radius-topright: 5px;
|
987
|
+
-webkit-border-top-right-radius: 5px;
|
988
|
+
-moz-border-radius-bottomright: 5px;
|
989
|
+
-webkit-border-bottom-right-radius: 5px;
|
990
|
+
}
|
991
|
+
|
992
|
+
.ui-corner-left {
|
993
|
+
-moz-border-radius-topleft: 5px;
|
994
|
+
-webkit-border-top-left-radius: 5px;
|
995
|
+
-moz-border-radius-bottomleft: 5px;
|
996
|
+
-webkit-border-bottom-left-radius: 5px;
|
997
|
+
}
|
998
|
+
|
999
|
+
.ui-corner-all {
|
1000
|
+
-moz-border-radius: 5px;
|
1001
|
+
-webkit-border-radius: 5px;
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
/* Overlays */
|
1005
|
+
.ui-widget-overlay {
|
1006
|
+
background: #000000 url(images/ui-bg_flat_75_000000_40x100.png) 50% 50% repeat-x;
|
1007
|
+
opacity: .20;
|
1008
|
+
filter: Alpha(Opacity = 20);
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
.ui-widget-shadow {
|
1012
|
+
margin: 5px 0 0 5px;
|
1013
|
+
padding: 0px;
|
1014
|
+
background: #999999 url(images/ui-bg_flat_55_999999_40x100.png) 50% 50% repeat-x;
|
1015
|
+
opacity: .65;
|
1016
|
+
filter: Alpha(Opacity = 65);
|
1017
|
+
-moz-border-radius: 5px;
|
1018
|
+
-webkit-border-radius: 5px;
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
/* Resizable
|
1022
|
+
----------------------------------*/
|
1023
|
+
.ui-resizable {
|
1024
|
+
position: relative;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
.ui-resizable-handle {
|
1028
|
+
position: absolute;
|
1029
|
+
font-size: 0.1px;
|
1030
|
+
z-index: 99999;
|
1031
|
+
display: block;
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
|
1035
|
+
display: none;
|
1036
|
+
}
|
1037
|
+
|
1038
|
+
.ui-resizable-n {
|
1039
|
+
cursor: n-resize;
|
1040
|
+
height: 7px;
|
1041
|
+
width: 100%;
|
1042
|
+
top: -5px;
|
1043
|
+
left: 0px;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
.ui-resizable-s {
|
1047
|
+
cursor: s-resize;
|
1048
|
+
height: 7px;
|
1049
|
+
width: 100%;
|
1050
|
+
bottom: -5px;
|
1051
|
+
left: 0px;
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
.ui-resizable-e {
|
1055
|
+
cursor: e-resize;
|
1056
|
+
width: 7px;
|
1057
|
+
right: -5px;
|
1058
|
+
top: 0px;
|
1059
|
+
height: 100%;
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
.ui-resizable-w {
|
1063
|
+
cursor: w-resize;
|
1064
|
+
width: 7px;
|
1065
|
+
left: -5px;
|
1066
|
+
top: 0px;
|
1067
|
+
height: 100%;
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
.ui-resizable-se {
|
1071
|
+
cursor: se-resize;
|
1072
|
+
width: 12px;
|
1073
|
+
height: 12px;
|
1074
|
+
right: 1px;
|
1075
|
+
bottom: 1px;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.ui-resizable-sw {
|
1079
|
+
cursor: sw-resize;
|
1080
|
+
width: 9px;
|
1081
|
+
height: 9px;
|
1082
|
+
left: -5px;
|
1083
|
+
bottom: -5px;
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
.ui-resizable-nw {
|
1087
|
+
cursor: nw-resize;
|
1088
|
+
width: 9px;
|
1089
|
+
height: 9px;
|
1090
|
+
left: -5px;
|
1091
|
+
top: -5px;
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
.ui-resizable-ne {
|
1095
|
+
cursor: ne-resize;
|
1096
|
+
width: 9px;
|
1097
|
+
height: 9px;
|
1098
|
+
right: -5px;
|
1099
|
+
top: -5px;
|
1100
|
+
}
|