alchemy_cms 2.1.rc6 → 2.1

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.
Files changed (57) hide show
  1. data/app/assets/images/alchemy/lupe.cur +0 -0
  2. data/app/assets/javascripts/alchemy/alchemy.buttons.js +1 -1
  3. data/app/assets/javascripts/alchemy/alchemy.page_sorter.js +1 -0
  4. data/app/assets/stylesheets/alchemy/alchemy.css +11 -0
  5. data/app/assets/stylesheets/alchemy/base.css.scss +447 -2446
  6. data/app/assets/stylesheets/alchemy/buttons.css.scss +354 -0
  7. data/app/assets/stylesheets/alchemy/dashboard.css.scss +76 -0
  8. data/app/assets/stylesheets/alchemy/flags.css.scss +1 -1
  9. data/app/assets/stylesheets/alchemy/flash.css.scss +54 -0
  10. data/app/assets/stylesheets/alchemy/frame.css.scss +287 -0
  11. data/app/assets/stylesheets/alchemy/icons.css.scss +300 -0
  12. data/app/assets/stylesheets/alchemy/jquery-ui.alchemy.css.scss +3 -2
  13. data/app/assets/stylesheets/alchemy/jquery.sb.css.scss +1 -1
  14. data/app/assets/stylesheets/alchemy/login.css.scss +53 -0
  15. data/app/assets/stylesheets/alchemy/menubar.css.scss +26 -11
  16. data/app/assets/stylesheets/alchemy/modules.css.scss +31 -0
  17. data/app/assets/stylesheets/alchemy/pagination.css.scss +56 -0
  18. data/app/assets/stylesheets/alchemy/sitemap.css.scss +285 -0
  19. data/app/assets/stylesheets/alchemy/tables.css.scss +150 -0
  20. data/app/assets/stylesheets/alchemy/upload.css.scss +92 -0
  21. data/app/controllers/alchemy/admin/dashboard_controller.rb +1 -1
  22. data/app/controllers/alchemy/admin/pages_controller.rb +1 -1
  23. data/app/controllers/alchemy/admin/resources_controller.rb +35 -2
  24. data/app/controllers/alchemy/user_sessions_controller.rb +3 -0
  25. data/app/helpers/alchemy/admin/attachments_helper.rb +1 -1
  26. data/app/helpers/alchemy/admin/base_helper.rb +69 -20
  27. data/app/helpers/alchemy/pages_helper.rb +0 -55
  28. data/app/views/alchemy/admin/attachments/_attachment.html.erb +1 -1
  29. data/app/views/alchemy/admin/clipboard/index.html.erb +4 -1
  30. data/app/views/alchemy/admin/dashboard/index.html.erb +16 -11
  31. data/app/views/alchemy/admin/elements/_new_element_form.html.erb +4 -1
  32. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +1 -20
  33. data/app/views/alchemy/admin/layoutpages/index.html.erb +1 -1
  34. data/app/views/alchemy/admin/pages/index.html.erb +3 -3
  35. data/app/views/alchemy/admin/partials/_search_form.html.erb +7 -1
  36. data/app/views/alchemy/admin/resources/_form.html.erb +1 -1
  37. data/app/views/alchemy/admin/resources/_resource.html.erb +8 -5
  38. data/app/views/alchemy/admin/resources/_table.html.erb +1 -1
  39. data/app/views/alchemy/admin/resources/index.html.erb +4 -3
  40. data/app/views/alchemy/admin/trash/index.html.erb +3 -2
  41. data/app/views/alchemy/user_sessions/login.html.erb +2 -1
  42. data/app/views/layouts/alchemy/admin.html.erb +3 -4
  43. data/app/views/layouts/alchemy/login.html.erb +9 -8
  44. data/config/authorization_rules.rb +0 -1
  45. data/config/locales/alchemy.de.yml +1 -0
  46. data/config/locales/alchemy.en.yml +1 -0
  47. data/lib/alchemy/seeder.rb +1 -1
  48. data/lib/alchemy/version.rb +1 -1
  49. data/spec/integration/admin/pages_controller_spec.rb +45 -57
  50. data/spec/integration/admin/resources_spec.rb +19 -0
  51. data/spec/models/content_spec.rb +6 -5
  52. data/spec/support/alchemy/controller_hacks.rb +41 -0
  53. data/spec/support/alchemy/specs_helpers.rb +32 -0
  54. data/vendor/assets/javascripts/tiny_mce/plugins/autoresize/editor_plugin.js +137 -1
  55. metadata +55 -37
  56. data/app/views/alchemy/admin/languages/_language.html.erb +0 -36
  57. data/spec/support/controller_hacks.rb +0 -37
@@ -19,7 +19,7 @@ if (typeof(Alchemy) === 'undefined') {
19
19
  $clone.attr({disabled: true, href: 'javascript:void(0)'})
20
20
  .addClass('disabled cloned-button')
21
21
  .css({width: width})
22
- .html('<img src="/assets/alchemy/ajax_loader.gif">')
22
+ .html('<img src="/assets/alchemy/ajax_loader.gif" style="width: 16px; height: 16px">')
23
23
  .show();
24
24
  return true;
25
25
  },
@@ -31,6 +31,7 @@ if (typeof(Alchemy) === 'undefined') {
31
31
  $.post(Alchemy.routes.order_admin_pages_path, params);
32
32
  return false;
33
33
  });
34
+ $('#bottom_buttons .button').click(Alchemy.pleaseWaitOverlay);
34
35
  Alchemy.PageSorter.disableButton();
35
36
  Alchemy.resizeFrame();
36
37
  },
@@ -1,8 +1,19 @@
1
1
  /* Alchemy CMS Sprockets Manifest
2
2
  * -------------------------------
3
3
  *= require alchemy/base
4
+ *= require alchemy/buttons
5
+ *= require alchemy/dashboard
4
6
  *= require alchemy/elements
5
7
  *= require alchemy/flags
8
+ *= require alchemy/flash
9
+ *= require alchemy/frame
10
+ *= require alchemy/icons
11
+ *= require alchemy/login
12
+ *= require alchemy/modules
13
+ *= require alchemy/pagination
14
+ *= require alchemy/sitemap
15
+ *= require alchemy/tables
16
+ *= require alchemy/upload
6
17
  *= require alchemy/jquery-ui.alchemy
7
18
  *= require alchemy/jquery.Jcrop
8
19
  *= require alchemy/jquery.sb
@@ -1,2374 +1,665 @@
1
1
  @import "alchemy/defaults";
2
2
 
3
- html {
4
- height: 100%;
3
+ h1 {
4
+ margin: 0 0 10px;
5
+ padding: 0;
6
+ font-weight: bold;
7
+ font-size: 12px;
5
8
  }
6
9
 
7
- #sitemap_heading span.page_name {
8
- margin-left: 24px;
9
- line-height: 28px;
10
+ h2 {
11
+ margin: 5px 0;
12
+ padding-bottom: 5px;
13
+ clear: both;
14
+ font-weight: bold;
15
+ font-size: 12px;
10
16
  }
11
17
 
12
- body#alchemy {
13
- margin: 0;
18
+ h3 {
19
+ margin: 5px 0;
20
+ padding-bottom: 5px;
21
+ font-size: 12px;
22
+ font-weight: bold;
23
+ }
24
+
25
+ p {
26
+ margin: 0 0 5px;
14
27
  padding: 0;
15
- color: $text-color;
16
- font: $default-font-style;
17
- background-color: $light-gray;
18
- height: 100%;
19
- cursor: default;
28
+ font-size: 12px;
20
29
  }
21
30
 
22
31
  a {
23
32
  color: $text-color;
24
33
  text-decoration: none;
34
+
35
+ &:hover {
36
+ text-decoration: underline;
37
+ }
38
+
39
+ img {
40
+ border: none;
41
+ }
25
42
  }
26
43
 
27
- a:hover {
28
- text-decoration: underline;
29
- }
30
-
31
- a img {
32
- border: none;
44
+ form {
45
+ margin-bottom: 0;
33
46
  }
34
47
 
35
- /* @group Flash Notices */
36
-
37
- div#flash_notices {
38
- position: fixed;
39
- right: 0;
40
- z-index: 400000;
41
- width: 348px;
42
- top: 0;
48
+ ul {
49
+ padding-left: 16px;
50
+ margin-top: 1em;
51
+ margin-bottom: 1em;
52
+
53
+ li {
54
+ margin-bottom: 0.5em;
55
+ }
43
56
  }
44
57
 
45
- div.flash {
46
- @include rounded-corner;
47
- @include opacity(95);
48
- padding: 8px 8px 8px 30px;
49
- font-weight: bold;
50
- border-width: 1px;
51
- border-style: solid;
52
- z-index: 1000;
53
- margin: $default-margin;
54
- position: relative;
55
- min-height: 1.3em;
58
+ .float_right {
59
+ float: right;
56
60
  }
57
61
 
58
- div.flash span.icon {
59
- position: absolute;
60
- top: 8px;
61
- left: 8px;
62
+ .float_left {
63
+ float: left;
62
64
  }
63
65
 
64
- div.flash.notice {
65
- border-color: #9cc4a1;
66
- color: #2e5934;
67
- background-color: #e2efd3;
68
- }
66
+ /* @group overlay */
69
67
 
70
- div.flash.error {
71
- border-color: #c49c9c;
72
- color: #592e2e;
73
- background-color: #efd3d3;
68
+ #user_list li.table_row div.table_left span.icon img {
69
+ width: 16px;
70
+ height: 16px;
71
+ position: relative;
72
+ top: 1px;
73
+ left: -1px;
74
74
  }
75
75
 
76
- div.flash.info {
77
- border-color: #8392b5;
78
- color: #233772;
79
- background-color: #cadbf3;
76
+ span.updated_at {
77
+ float: right;
80
78
  }
81
79
 
82
- div.flash.warn,
83
- div.flash.warning {
84
- border-color: #c4c19c;
85
- color: #726d23;
86
- background-color: #f3f0c1;
80
+ a.drop_down_select img {
81
+ float: left;
82
+ position: relative;
83
+ top: 2px;
84
+ margin-right: 4px;
87
85
  }
88
86
 
89
- div.login_signup_box {
90
- width: 360px;
91
- padding: 4*$default-padding;
92
- border: $default-border;
93
- background-color: $medium-gray;
87
+ #alchemy a.search_field_clear {
88
+ width: 16px;
89
+ height: 16px;
90
+ background: image-url('alchemy/ui-icons_666666_256x240.png') no-repeat -80px -128px;
91
+ position: absolute;
92
+ right: 8px;
93
+ top: 4px;
94
94
  @include rounded-corner;
95
- margin: 2em auto;
96
95
  }
97
96
 
98
- div.login_signup_box select {
99
- width: 220px;
97
+ #language_select {
98
+ margin-bottom: 4px;
100
99
  }
101
100
 
102
- /* @end */
103
-
104
- /* @group Pagination */
105
-
106
- div.archive_pagination_links {
101
+ .js_filter_field_box {
107
102
  position: relative;
108
- margin-bottom: 16px;
109
- margin-top: 8px;
110
- height: 19px;
111
- text-align: center;
112
- line-height: 21px;
103
+ float: right;
104
+ margin-left: 4px;
113
105
  }
114
106
 
115
- div.archive_pagination_links span.pagination_current_page {
116
- background-position: 0 -21px;
117
- font-weight: bold;
118
- color: $text-color;
107
+ .js_filter_field_box .js_filter_field {
108
+ width: 170px;
109
+ text-align: left;
110
+ @include rounded-search-field;
111
+ padding: 3px 24px 2px;
112
+ height: 19px;
119
113
  }
120
114
 
121
- div.archive_pagination_links .first_page {
122
- position: absolute;
123
- left: 8px;
124
- top: -2px;
115
+ .js_filter_field_box label {
116
+ text-shadow: #fefefe 1px 1px 0;
117
+ font-size: 10px;
118
+ display: inline-block;
119
+ text-align: center;
125
120
  }
126
121
 
127
- .archive_pagination_links .last_page {
122
+ .js_filter_field_box .js_filter_field_clear {
123
+ width: 15px;
124
+ height: 15px;
125
+ background: image-url('alchemy/icons.png') no-repeat 0 -70px;
128
126
  position: absolute;
129
127
  right: 8px;
130
- top: -2px;
131
- }
132
-
133
- .archive_pagination_links .previous_page {
134
- position: absolute;
135
- left: 32px;
136
- top: -2px;
137
- }
138
-
139
- .archive_pagination_links .next_page {
140
- position: absolute;
141
- right: 32px;
142
- top: -2px;
143
- }
144
-
145
- .archive_pagination_links span, .archive_pagination_links a {
146
- padding: 0;
147
- color: $text-color;
128
+ top: 4px;
148
129
  @include rounded-corner;
149
- width: 21px;
150
- height: 21px;
151
- display: inline-block;
152
- background: image-url('alchemy/shading.png') no-repeat 0 0;
153
- }
154
-
155
- .archive_pagination_links span {
156
- color: #9a9a9a;
157
- }
158
-
159
- div.archive_pagination_links a:active {
160
- text-decoration: none;
161
- background-position: 0 -21px;
162
130
  }
163
131
 
164
- div.pagination {
165
- clear: both;
166
- zoom: 1;
167
- text-align: right;
168
- line-height: 24px;
169
- height: 24px;
132
+ div.source_editor textarea{
170
133
  width: 100%;
171
- margin-top: 4*$default-padding;
172
- }
173
-
174
- div.pagination a, div.pagination span, div.pagination em {
175
- font-size: 12px;
176
- height: 25px;
177
- line-height: 25px;
178
- padding: $default-padding;
134
+ height: 358px;
179
135
  }
180
136
 
181
- div.pagination a:hover {
182
- color: #000;
183
- text-shadow: none;
184
- text-decoration: underline;
137
+ div.edit_source_buttons {
138
+ height: 18px;
139
+ margin-top: 8px;
140
+ float: right;
141
+ clear: both;
185
142
  }
186
143
 
187
- div.pagination .current {
188
- @include button-styles;
189
- background: $button-hover-bg-color;
144
+ div.info {
145
+ padding: 8px 8px 8px 32px;
146
+ line-height: 17px;
190
147
  color: $text-color;
191
- border: 1px solid #888;
192
- text-shadow: 0px 1px 1px #fff;
193
- cursor: default;
194
- }
195
-
196
- div.pagination .previous_page {
197
- margin-right: 2*$default-padding;
198
- }
199
-
200
- div.pagination .next_page {
201
- margin-left: 2*$default-padding;
202
- }
203
-
204
- div.pagination .disabled {
205
- color: #c0c0c0;
206
- }
207
-
208
- div.pagination span.gap {
209
- border: none;
210
- background: transparent;
211
- cursor: default;
212
- }
213
-
214
- #assign_image_list div.pagination {
148
+ border: 1px solid #0b5c84;
149
+ @include rounded-corner;
150
+ background-color: #eaf4f9;
151
+ position: relative;
215
152
  margin-bottom: 8px;
216
- text-align: center;
217
153
  }
218
154
 
219
- /* @end */
220
-
221
- #login_box {
222
- height: 310px;
223
- width: 394px;
224
- margin-top: -230px;
225
- margin-left: -197px;
226
- position: absolute;
227
- top: 50%;
228
- left: 50%;
229
- }
230
-
231
- #login table tbody tr td.label {
232
- width: 155px;
233
- text-align: right;
234
- }
235
-
236
- #alchemy_greeting h1 {
237
- margin-top: 1em;
238
- margin-bottom: 0;
239
- font-size: 1.2em;
155
+ div.info.footnote {
156
+ font-size: 10px;
157
+ margin: 16px;
240
158
  }
241
159
 
242
- form#login.new_user_session {
243
- text-align: right;
160
+ div#page {
161
+ height: auto !important;
162
+ height: 100%;
163
+ min-height: 100%;
164
+ position: relative;
165
+ /* needed for footer positioning*/
244
166
  }
245
167
 
246
- .float_right {
247
- float: right;
168
+ #archive_all .edit_images_bottom span {
169
+ width: 19px;
170
+ height: 19px;
171
+ float: left;
172
+ margin-right: 4px;
248
173
  }
249
174
 
250
- .float_left {
251
- float: left;
175
+ #archive_all .edit_images_bottom span a{
176
+ display: block;
177
+ height: 19px;
178
+ width: 19px;
179
+ background-repeat: no-repeat;
180
+ text-decoration: none;
181
+ background-position: left;
252
182
  }
253
183
 
254
- /* @group overlay */
255
-
256
- div#overlay {
257
- visibility: hidden;
258
- position: absolute;
259
- left: 0px;
260
- top: 0px;
261
- width: 100%;
262
- height: 100%;
263
- z-index: 400000;
264
- background-color: rgba(229,229,229,0.4);
265
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#40E5E5E5, endColorstr=#40E5E5E5);
184
+ #archive_all .edit_images_bottom span a:hover {
185
+ background-position: right;
266
186
  }
267
187
 
268
- #user_list li.table_row div.table_left span.icon img {
188
+ .picture_tool_delete {
269
189
  width: 16px;
270
190
  height: 16px;
271
- position: relative;
272
- top: 1px;
273
- left: -1px;
274
- }
275
-
276
- div#overlay_text_box {
277
- color: $text-color;
278
- font-size: 18px;
279
- text-align: center;
280
- margin-top: 25%;
281
- }
282
-
283
- div#overlay_text_box img {
284
- position: relative;
285
- top: 9px;
286
- }
287
-
288
- /* @end */
289
-
290
- /* @group top_frame */
291
-
292
- #preview_frame {
191
+ position: absolute;
293
192
  background-color: white;
294
- width: 100%;
295
- height: 100%;
296
- position: relative;
297
- top: 84px;
193
+ top: 3px;
194
+ right: 4px;
195
+ padding: 1px;
196
+ z-index: 1;
197
+ display: none;
298
198
  }
299
199
 
300
- div#top_menu {
301
- position: fixed;
302
- top: 0;
303
- left: 65px;
304
- z-index: 5;
305
- width: 93%;
200
+ .picture_tool_delete a {
201
+ display: block;
202
+ width: 16px;
203
+ height: 16px;
204
+ background: image-url('alchemy/icons.png') no-repeat -63px -72px;
205
+ cursor: pointer;
306
206
  }
307
207
 
308
- #main_menu {
309
- white-space: nowrap;
310
- z-index: 2;
311
- height: 100%;
312
- position: fixed;
313
- top: 0;
314
- left: 0;
315
- width: 65px;
316
- overflow: hidden;
317
- border-right: $default-border;
318
- }
319
-
320
- #main_menu_background {
321
- height: 100%;
322
- background: $light-blue;
323
- width: 65px;
324
- z-index: 0;
325
- position: absolute;
326
- }
327
-
328
- #logout {
329
- position: absolute;
330
- z-index: 1;
331
- bottom: 0;
332
- left: 0;
333
- text-align: center;
334
- width: 65px;
335
- padding-top: 4px;
336
- padding-bottom: 8px;
337
- }
338
-
339
- #logout a {
340
- display: block;
341
- }
342
-
343
- #logout a:hover {
344
- text-decoration: none;
345
- }
346
-
347
- #logout img {
348
- margin-bottom: 4px;
349
- }
350
-
351
- /* @end */
352
-
353
- #main_content {
354
- background-color: $light-gray;
355
- position: absolute;
356
- left: 65px;
357
- z-index: 0;
358
- width: 93%;
359
- height: 100%;
360
- }
361
-
362
- div#user_info {
363
- position: absolute;
364
- z-index: 10;
365
- line-height: 27px;
366
- font-size: 11px;
367
- right: 10px;
368
- top: 0;
369
- }
370
-
371
- div#sideboard {
372
- float: right;
373
- width: 240px;
374
- padding-right: 16px;
375
- }
376
-
377
- div#license {
378
- overflow: auto;
379
- height: 24em;
380
- background-color: white;
381
- }
382
-
383
- ul {
384
- padding-left: 16px;
385
- margin-top: 1em;
386
- margin-bottom: 1em;
387
- }
388
-
389
- ul li {
390
- margin-bottom: 0.5em;
391
- }
392
-
393
- #dashboard {
394
- overflow: auto;
395
- float: left;
396
- padding: 0 16px 16px;
397
- width: 50%;
398
- }
399
-
400
- span.updated_at {
401
- float: right;
402
- }
403
-
404
- div.widget {
405
- padding: 2*$default-padding;
406
- margin: 16px 0;
407
- background-color: $medium-gray;
408
- border: $default-border;
409
- @include rounded-corner;
410
- }
411
-
412
- div.widget p {
413
- margin: 4px 0;
414
- }
415
-
416
- /* @group Dashboard */
417
-
418
- #dashboard div.widget ul {
419
- padding: 0;
420
- list-style-type: none;
421
- @include rounded-corner;
422
- margin-right: -9px;
423
- margin-left: -9px;
424
- margin-bottom: -9px;
425
- border: $default-border;
426
- }
427
-
428
- #dashboard div.widget ul li {
429
- padding: 2*$default-padding;
430
- margin-bottom: 0;
431
- }
432
-
433
- #dashboard div.widget ul li form {
434
- display: inline;
435
- position: relative;
436
- }
437
-
438
- #dashboard div.widget ul li button {
439
- position: relative;
440
- top: 1px;
441
- }
442
-
443
- #dashboard div.widget ul li button .icon {
444
- position: relative;
445
- top: -1px;
446
- right: 1px;
447
- }
448
-
449
- #dashboard div.widget h2 {
450
- padding-bottom: 0;
451
- margin-bottom: 0;
452
- }
453
-
454
- #dashboard h2 {
455
- padding: 0;
456
- margin-bottom: 2em;
457
- }
458
-
459
- #dashboard h1 {
460
- font-size: 2em;
461
- margin-bottom: 0;
462
- text-shadow: #fff 1px 1px 2px;
463
- }
464
-
465
- /* @end */
466
-
467
- div#alchemy_greeting {
468
- width: 370px;
469
- margin-right: auto;
470
- margin-left: auto;
471
- padding: 2*$default-padding;
472
- margin-top: 1em;
473
- text-align: center;
474
- }
475
-
476
- #alchemy_greeting p {
477
- margin-top: 1em;
478
- margin-bottom: 1em;
479
- }
480
-
481
- #main_navi a.homepage_link {
482
- color: white;
483
- margin-left: 10px;
484
- line-height: 32px;
485
- }
486
-
487
- a.drop_down_select img {
488
- float: left;
489
- position: relative;
490
- top: 2px;
491
- margin-right: 4px;
492
- }
493
-
494
- #alchemy a.search_field_clear {
495
- width: 16px;
496
- height: 16px;
497
- background: image-url('alchemy/ui-icons_666666_256x240.png') no-repeat -80px -128px;
498
- position: absolute;
499
- right: 8px;
500
- top: 4px;
501
- @include rounded-corner;
502
- }
503
-
504
- #language_select {
505
- margin-bottom: 4px;
506
- }
507
-
508
- .js_filter_field_box {
509
- position: relative;
510
- float: right;
511
- margin-left: 4px;
512
- }
513
-
514
- .js_filter_field_box .js_filter_field {
515
- width: 170px;
516
- text-align: left;
517
- @include rounded-search-field;
518
- padding: 3px 24px 2px;
519
- height: 19px;
520
- }
521
-
522
- #flags a img {
523
- float: left;
524
- position: relative;
525
- top: 2px;
526
- margin-right: 4px;
527
- }
528
-
529
- .js_filter_field_box label {
530
- text-shadow: #fefefe 1px 1px 0;
531
- font-size: 10px;
532
- display: inline-block;
533
- text-align: center;
534
- }
535
-
536
- .js_filter_field_box .js_filter_field_clear {
537
- width: 15px;
538
- height: 15px;
539
- background: image-url('alchemy/icons.png') no-repeat 0 -70px;
540
- position: absolute;
541
- right: 8px;
542
- top: 4px;
543
- @include rounded-corner;
544
- }
545
-
546
- h1 {
547
- margin: 0 0 10px;
548
- padding: 0;
549
- font-weight: bold;
550
- font-size: 12px;
551
- }
552
-
553
- div.source_editor textarea{
554
- width: 100%;
555
- height: 358px;
556
- }
557
-
558
- div.edit_source_buttons {
559
- height: 18px;
560
- margin-top: 8px;
561
- float: right;
562
- clear: both;
563
- }
564
-
565
- table td.rights {
566
- width: 60px;
567
- }
568
-
569
- h2 {
570
- margin: 5px 0;
571
- padding-bottom: 5px;
572
- clear: both;
573
- font-weight: bold;
574
- font-size: 12px;
575
- }
576
-
577
- h3 {
578
- margin: 5px 0;
579
- padding-bottom: 5px;
580
- font-size: 12px;
581
- font-weight: bold;
582
- }
583
-
584
- p {
585
- margin: 0 0 5px;
586
- padding: 0;
587
- font-size: 12px;
588
- }
589
-
590
- div.info {
591
- padding: 8px 8px 8px 32px;
592
- line-height: 17px;
593
- color: $text-color;
594
- border: 1px solid #0b5c84;
595
- @include rounded-corner;
596
- background-color: #eaf4f9;
597
- position: relative;
598
- margin-bottom: 8px;
599
- }
600
-
601
- div.info.footnote {
602
- font-size: 10px;
603
- margin: 16px;
604
- }
605
-
606
- div#bottom_panel {
607
- position: fixed;
608
- bottom: 0;
609
- right: 0;
610
- width: 100%;
611
- z-index: 10;
612
- background: $medium-gray image-url('alchemy/shading.png') repeat-x 0 0;
613
- }
614
-
615
- div#bottom_panel div.info {
616
- margin: 16px 16px 8px 81px;
617
- width: 720px;
618
- }
619
-
620
- div#bottom_buttons {
621
- padding: 0 16px 16px;
622
- margin-left: 65px;
623
- }
624
-
625
- p.no_padding {
626
- padding: 0;
627
- margin: 0;
628
- }
629
-
630
- p.padding_bottom {
631
- padding-bottom: 5px;
632
- }
633
-
634
- .padding_leftright {
635
- padding-left: 8px;
636
- padding-right: 8px;
637
- }
638
-
639
- .cancel_button_paddingleft {
640
- padding-left: 5px;
641
- }
642
-
643
- div#page {
644
- height: auto !important;
645
- height: 100%;
646
- min-height: 100%;
647
- position: relative;
648
- /* needed for footer positioning*/
649
- }
650
-
651
- #archive_all .edit_images_bottom span {
652
- width: 19px;
653
- height: 19px;
654
- float: left;
655
- margin-right: 4px;
656
- }
657
-
658
- #archive_all .edit_images_bottom span a{
659
- display: block;
660
- height: 19px;
661
- width: 19px;
662
- background-repeat: no-repeat;
663
- text-decoration: none;
664
- background-position: left;
665
- }
666
-
667
- #archive_all .edit_images_bottom span a:hover {
668
- background-position: right;
669
- }
670
-
671
- .picture_tool_delete {
672
- width: 16px;
673
- height: 16px;
674
- position: absolute;
675
- background-color: white;
676
- top: 3px;
677
- right: 4px;
678
- padding: 1px;
679
- z-index: 1;
680
- display: none;
681
- }
682
-
683
- .picture_tool_delete a {
684
- display: block;
685
- width: 16px;
686
- height: 16px;
687
- background: image-url('alchemy/icons.png') no-repeat -63px -72px;
688
- cursor: pointer;
689
- }
690
-
691
- div.tip {
692
- background-color: #eff8d0;
693
- border: 1px solid #cce21c;
208
+ div.tip {
209
+ background-color: #eff8d0;
210
+ border: 1px solid #cce21c;
694
211
  padding: 2*$default-padding;
695
212
  margin: 8px 0;
696
- @include rounded-corner;
697
- width: 450px;
698
- }
699
-
700
- #back_to_site {
701
- float: right;
702
- margin-right: 8px;
703
- }
704
-
705
- #dashboard div.dashboard_tip h1 {
706
- font-size: 1.2em;
707
- }
708
-
709
- #sub_navigation {
710
- height: 22px;
711
- line-height: 23px;
712
- padding-left: 5px;
713
- background: $light-blue;
714
- border-bottom: $default-border;
715
- padding-top: 4px;
716
- z-index: 5;
717
- position: relative;
718
- }
719
-
720
- #subnav_additions {
721
- height: 23px;
722
- overflow: hidden;
723
- }
724
-
725
- #subnav_additions label {
726
- float: left;
727
- font-size: 10px;
728
- line-height: 25px;
729
- height: 25px;
730
- margin-left: 8px;
731
- margin-right: 4px;
732
- }
733
-
734
- #sub_navigation img {
735
- float: left;
736
- }
737
-
738
- #sub_navigation span.page_status_and_name {
739
- padding: 0 8px;
740
- background-color: $medium-gray;
741
- text-shadow: #fff 0 1px 2px;
742
- -webkit-user-select: none;
743
- -moz-user-select: none;
744
- -o-user-select: none;
745
- user-select: none;
746
- cursor: default;
747
- line-height: 20px;
748
- float: left;
749
- @include top-rounded-border;
750
- border: $default-border;
751
- border-bottom-style: none;
752
- height: 22px;
753
- margin-right: 1px;
754
- }
755
-
756
- #sub_navigation span.page_status_and_name .flag {
757
- float: none;
758
- position: relative;
759
- display: inline-block;
760
- bottom: 1px;
761
- margin-right: 3px;
762
- }
763
-
764
- #sub_navigation span.page_status_and_name span.page_name {
765
- position: relative;
766
- margin-right: 16px;
767
- margin-left: 4px;
768
- line-height: 27px;
769
- bottom: 2px;
770
- }
771
-
772
- #sub_navigation div.subnavi_tab {
773
- float: left;
774
- padding: 0px 8px;
775
- height: 21px;
776
- text-shadow: #fff 0 0px 4px;
777
- background: #d6e0e6;
778
- color: #444;
779
- @include top-rounded-border;
780
- border: $default-border;
781
- border-bottom-style: none;
782
- margin-right: 1px;
783
- }
784
-
785
- #sub_navigation div.subnavi_tab.wide {
786
- position: relative;
787
- padding-right: 24px;
788
- }
789
-
790
- #sub_navigation div.subnavi_tab.wide form {
791
- position: absolute;
792
- right: 3px;
793
- top: 3px;
794
- line-height: 10px;
795
- }
796
-
797
- #sub_navigation a {
798
- display: block;
799
- }
800
-
801
- #sub_navigation div.subnavi_tab:hover {
802
- color: $text-color;
803
- text-decoration: none;
804
- }
805
-
806
- #sub_navigation div.subnavi_tab.active {
807
- float: left;
808
- position: relative;
809
- padding: 0px 8px;
810
- height: 22px;
811
- color: $text-color;
812
- background-color: $medium-gray;
813
- text-shadow: #fff 0 1px 2px;
814
- -webkit-user-select: none;
815
- -moz-user-select: none;
816
- -o-user-select: none;
817
- user-select: none;
818
- cursor: default;
819
- z-index: 10;
820
- }
821
-
822
- #sub_navigation a:hover {
823
- text-decoration: none;
824
- }
825
-
826
- #archive_upload_delete {
827
- float: right;
828
- }
829
-
830
- /* @group main_navi */
831
-
832
- #main_navi {
833
- padding-left: 4px;
834
- padding-top: 25px;
835
- position: absolute;
836
- z-index: 1;
837
- }
838
-
839
- #main_menu a {
840
- -webkit-user-select: none;
841
- -moz-user-select: none;
842
- user-select: none;
843
- font-size: 10px;
844
- }
845
-
846
- #main_navi a.main_navi_entry {
847
- color: #444;
848
- position: relative;
849
- text-align: center;
850
- overflow: hidden;
851
- display: block;
852
- padding-top: 7px;
853
- @include left-rounded-border;
854
- margin-bottom: 1px;
855
- margin-top: 1px;
856
- border: 1px none #afafaf;
857
- border-right-style: none;
858
- padding-bottom: 5px;
859
- text-shadow: #fff 0 0px 4px;
860
- padding-left: 1px;
861
- width: 60px;
862
- }
863
-
864
- #main_navi a.main_navi_entry:hover {
865
- cursor: pointer;
866
- text-decoration: none;
867
- color: $text-color;
868
- }
869
-
870
- #main_navi a.main_navi_entry img {
871
- border-style: none;
872
- height: 24px;
873
- width: 24px;
874
- display: inline-block;
875
- margin-bottom: 4px;
876
- margin-top: 2px;
877
- }
878
-
879
- #main_menu a label {
880
- display: block;
881
- }
882
-
883
- #main_navi a.main_navi_entry.active {
884
- background: #baced9;
885
- color: $text-color;
886
- cursor: default;
887
- text-shadow: #fff 0 1px 2px;
888
- border: $default-border;
889
- padding-left: 0;
890
- border-right-style: none;
891
- padding-top: 6px;
892
- padding-bottom: 4px;
893
- }
894
-
895
- #main_navi #active img {
896
- float: left;
897
- position: relative;
898
- top: 3px;
899
- }
900
-
901
- #active span {
902
- float: left;
903
- padding: 0;
904
- margin: 3px 0 0 8px;
905
- }
906
-
907
- /* @end */
908
-
909
- /* @group Sitemap */
910
-
911
- .sitemap_pagename_link {
912
- background-color: #FFFFFF;
913
- color: black;
914
- display: block;
915
- padding-left: 4px;
916
- text-decoration: none;
917
- }
918
-
919
- .sitemap_pagename_link.inactive {
920
- color: #656565;
921
- }
922
-
923
- .redirect_url {
924
- position: absolute;
925
- top: 4px;
926
- right: 184px;
927
- text-align: right;
928
- background-color: #fff0c4;
929
- line-height: 22px;
930
- padding-right: 4px;
931
- font-size: 10px;
932
- padding-left: 4px;
933
- }
934
-
935
- .sitemap_pagename_link.odd {
936
- background-color: #fff;
937
- }
938
-
939
- a.sitemap_pagename_link:hover {
940
- text-decoration: underline;
941
- }
942
-
943
- div#page_selector_container a.sitemap_pagename_link:hover {
944
- text-decoration: none;
945
- }
946
-
947
- a.sitemap_pagename_link:hover:after {
948
- content: '';
949
- width: 16px;
950
- height: 16px;
951
- float: left;
952
- margin-right: 4px;
953
- background: image-url('alchemy/icons.png') -160px -168px;
954
- margin-top: 4px;
955
- }
956
-
957
- div#page_selector_container a.sitemap_pagename_link:hover:after {
958
- display: none;
959
- }
960
-
961
- .sitemap_line_spacer {
962
- float: left;
963
- width: 20px;
964
- height: 28px;
965
- }
966
-
967
- ul#sitemap ul {
968
- margin: 0;
969
- padding: 0;
970
- display: block;
971
- }
972
-
973
- ul#sitemap li,
974
- ul#layoutpages li {
975
- list-style-type: none;
976
- display: block;
977
- margin-left: 0;
978
- margin-bottom: 0;
979
- line-height: 22px;
980
- }
981
-
982
- ul#sitemap li {
983
- padding-left: 0;
984
- li {
985
- padding-left: 22px;
986
- padding-right: 0;
987
- }
988
- }
989
-
990
- ul#layoutpages li {
991
- padding: 0;
992
- }
993
-
994
- div.sitemap_page {
995
- height: 22px;
996
- padding-bottom: 4px;
997
- padding-top: 4px;
998
- position: relative;
999
- }
1000
-
1001
- div.sitemap_page:hover a.sitemap_pagename_link {
1002
- background-color: #fdffdf;
1003
- }
1004
-
1005
- div.sitemap_left_images {
1006
- margin-top: 3px;
1007
- float: left;
1008
- margin-right: 8px;
1009
- background-color: $light-gray;
1010
- }
1011
-
1012
- #sitemap a.page_folder {
1013
- background-image: image-url('alchemy/gui/toggle.png');
1014
- background-repeat: no-repeat;
1015
- height: 9px;
1016
- width: 9px;
1017
- font-size: 0;
1018
- float: left;
1019
- margin-left: -18px;
1020
- margin-top: 3px;
1021
- }
1022
-
1023
- #sitemap a.page_folder.collapsed {
1024
- background-position: 0 0;
1025
- }
1026
-
1027
- #sitemap a.page_folder.folded {
1028
- background-position: -9px 0;
1029
- }
1030
-
1031
- div.sitemap_right_tools {
1032
- height: 22px;
1033
- background-color: $light-gray;
1034
- padding-left: 16px;
1035
- float: right;
1036
- width: 100px;
1037
- }
1038
-
1039
- div#page_selector_container div.sitemap_right_tools {
1040
- width: 24px;
1041
- }
1042
-
1043
- ul#sitemap li .sitemap_toolrow,
1044
- ul.list li .sitemap_toolrow {
1045
- margin: 0;
1046
- overflow: auto;
1047
- padding: 4px 0;
1048
- }
1049
-
1050
- ul#sitemap .sitemap_sitename,
1051
- ul.list .sitemap_sitename {
1052
- background-color: #EDEDED;
1053
- height: 22px;
1054
- line-height: 22px;
1055
- overflow: hidden;
1056
- }
1057
-
1058
- div.page_infos {
1059
- @include top-rounded-border;
1060
- background-color: #FFFFFF;
1061
- border-left: 1px solid #EDEDED;
1062
- float: right;
1063
- height: 20px;
1064
- padding: 1px;
1065
- width: 66px;
1066
- }
1067
-
1068
- .page_status {
1069
- width: 16px;
1070
- height: 16px;
1071
- background-repeat: no-repeat;
1072
- float: left;
1073
- margin: 2px 2px 0 4px;
1074
- }
1075
-
1076
- #sub_navigation span.page_status_and_name span.page_status {
1077
- float: none;
1078
- display: inline-block;
1079
- position: relative;
1080
- top: 1px;
1081
- margin-left: 2px;
1082
- }
1083
-
1084
- span.page_status.restricted {
1085
- background: image-url('alchemy/icons.png') -258px -39px;
1086
- }
1087
-
1088
- span.page_status.not_restricted {
1089
- background: image-url('alchemy/icons.png') -290px -39px;
1090
- @include opacity(30);
1091
- }
1092
-
1093
- span.page_status.visible {
1094
- background: image-url('alchemy/icons.png') -128px -39px;
1095
- }
1096
-
1097
- span.page_status.not_visible {
1098
- background: image-url('alchemy/icons.png') -160px -39px;
1099
- @include opacity(30);
1100
- }
1101
-
1102
- span.page_status.public {
1103
- background: image-url('alchemy/icons.png') -192px -39px;
1104
- }
1105
-
1106
- span.page_status.not_public {
1107
- background: image-url('alchemy/icons.png') -224px -39px;
1108
- @include opacity(30);
1109
- }
1110
-
1111
- #sideboard div.sideboard_widget img {
1112
- margin-bottom: 16px;
1113
- float: none;
1114
- }
1115
-
1116
- .site_status {
1117
- float: left;
1118
- width: 16px;
1119
- height: 16px;
1120
- background: image-url('alchemy/icons.png') no-repeat 0 -40px;
1121
- }
1122
-
1123
- .locked .site_status {
1124
- background-position: -32px -40px;
1125
- }
1126
-
1127
- #sub_navigation span.page_status_and_name span.site_status {
1128
- float: none;
1129
- display: inline-block;
1130
- margin-right: 4px;
1131
- margin-left: 0;
1132
- margin-bottom: 0;
1133
- }
1134
-
1135
- #sitemap img.link_arrow {
1136
- float: right;
1137
- text-align: right;
1138
- }
1139
-
1140
- ul#sitemap li img {
1141
- border-width: 0;
1142
- border-style: none;
1143
- float: left;
1144
- }
1145
-
1146
- .sitemap_sitestatus {
1147
- float: right;
1148
- margin-top: 4px;
1149
- }
1150
-
1151
- /* @group site_tools */
1152
-
1153
- a.folder_link {
1154
- text-decoration: none;
1155
- outline: none;
1156
- }
1157
-
1158
- .sitemap_sitetools {
1159
- padding: 0;
1160
- float: left;
1161
- width: 70px;
1162
- margin-left: 8px;
1163
- }
1164
-
1165
- .sitemap_right_tools a {
1166
- float: left;
1167
- width: 21px;
1168
- height: 21px;
1169
- }
1170
-
1171
- .sitemap_sitetools .icon.blank {
1172
- margin-left: 2px;
1173
- float: left;
1174
- margin-top: 3px;
1175
- margin-right: 3px;
1176
- }
1177
-
1178
- .sitemap_right_tools span.icon {
1179
- margin-top: 3px;
1180
- margin-left: 2px;
1181
- }
1182
-
1183
- /* @end */
1184
-
1185
- /* @end */
1186
-
1187
- /* @group page_editing */
1188
-
1189
- /*#page_names td {
1190
- height: 22px;
1191
- padding-bottom: 4px;
1192
- }*/
1193
-
1194
- #page_names textarea {
1195
- height: 78px;
1196
- }
1197
-
1198
- /* @end */
1199
-
1200
- div#new_page_from_clipboard {
1201
- display: none;
1202
- }
1203
-
1204
- div#new_page_from_clipboard input.button {
1205
- float: right;
1206
- }
1207
-
1208
- div#new_page_from_clipboard span {
1209
- float: left;
1210
- line-height: 25px;
1211
- }
1212
-
1213
- #page_editing_head .site_status {
1214
- margin: 0 4px 0 0;
1215
- float: left;
1216
- }
1217
-
1218
- div#page_status_options {
1219
- float: left;
1220
- }
1221
-
1222
- form {
1223
- margin-bottom: 0;
1224
- }
1225
-
1226
- div#page_editing_menu {
1227
- overflow: auto;
1228
- padding-left: 1px;
1229
- padding-right: 1px;
1230
- }
1231
-
1232
- h2#sitemap_heading {
1233
- padding: 0;
1234
- }
1235
-
1236
- div#userinfo {
1237
- text-align: right;
1238
- float: right;
1239
- margin-right: 8px;
1240
- }
1241
-
1242
- #userinfo img {
1243
- position: relative;
1244
- top: 1px;
1245
- }
1246
-
1247
- div#user_list_legend {
1248
- overflow: auto;
1249
- padding: 1px 1px 4px;
1250
- margin-bottom: 5px;
1251
- border-bottom: 1px solid black;
1252
- width: 370px;
1253
- }
1254
-
1255
- #toolbar {
1256
- z-index: 10;
1257
- padding: 6px;
1258
- height: 40px;
1259
- background: $medium-gray image-url('alchemy/shading.png') repeat-x 0 -40px;
1260
- margin-right: 0px;
1261
- border: $default-border;
1262
- border-top-style: none;
1263
- border-right-style: none;
1264
- @include bottom-left-rounded-border;
1265
- position: relative;
1266
- margin-left: 5px;
1267
- }
1268
-
1269
- #toolbar form {
1270
- margin: 0 0 0 8px;
1271
- float: right;
1272
- text-align: center;
1273
- }
1274
-
1275
- #toolbar div.button_with_label form {
1276
- float: none;
1277
- margin: 0;
1278
- display: inline-block;
1279
- line-height: 5px;
1280
- }
1281
-
1282
- #toolbar div.button_with_label form label {
1283
- margin-top: $default-margin;
1284
- }
1285
-
1286
- #toolbar div.search_field {
1287
- position: relative;
1288
- float: left;
1289
- margin-bottom: $default-margin;
1290
- }
1291
-
1292
- #toolbar div p {
1293
- float: right;
1294
- margin: 3px $default-margin 0 0;
1295
- padding: 0;
1296
- }
1297
-
1298
- div#toolbar div.toolbar_spacer {
1299
- float: left;
1300
- width: 1px;
1301
- height: 37px;
1302
- border-right-style: dotted;
1303
- border-right-width: 1px;
1304
- margin-right: 2*$default-margin;
1305
- margin-left: $default-margin;
1306
- }
1307
-
1308
- div#toolbar a.button {
1309
- width: 25px;
1310
- height: 21px;
1311
- text-decoration: none;
1312
- float: right;
1313
- border-width: 0;
1314
- border-style: none;
1315
- font-size: 0;
1316
- padding: 0;
1317
- background-repeat: no-repeat;
1318
- background-position: 0 0;
1319
- }
1320
-
1321
- div#toolbar a.button:active {
1322
- text-decoration: none;
1323
- background-position: 0 -21px;
1324
- }
1325
-
1326
- /* @group add, edit and delete buttons */
1327
-
1328
- button.icon_button {
1329
- @include button-styles;
1330
- padding: $default-padding;
1331
- height: 25px;
1332
- line-height: 19px;
1333
- font-size: 0;
1334
- width: 25px;
1335
- }
1336
-
1337
- button.icon_button.small {
1338
- background: transparent;
1339
- padding: 0;
1340
- width: 17px;
1341
- height: 17px;
1342
- border: none;
1343
- }
1344
-
1345
- button.icon_button.small:hover {
1346
- background-color: #e6f0f5;
1347
- color: $dark-gray;
1348
- border: 1px solid #888;
1349
- text-shadow: 0 1px 4px #fff;
1350
- text-decoration: none;
1351
- }
1352
-
1353
- button.icon_button:hover {
1354
- background-color: #e6f0f5;
1355
- color: $dark-gray;
1356
- border: 1px solid #888;
1357
- text-shadow: 0 1px 4px #fff;
1358
- text-decoration: none;
1359
- }
1360
-
1361
- button.icon_button:active {
1362
- background-color: #cdd6db;
1363
- }
1364
-
1365
- button.icon_button img {
1366
- margin: 0;
1367
- border-style: none;
1368
- border-width: 0;
1369
- }
1370
-
1371
- a.icon_button {
1372
- float: left;
1373
- width: 23px;
1374
- height: 23px;
1375
- background-color: #f7f7f7;
1376
- background-image: image-url('alchemy/shading.png');
1377
- background-repeat: repeat-x;
1378
- background-position: 0 -75px;
1379
- margin-right: 8px;
1380
- border: 1px solid #9a9a9a;
1381
- @include rounded-corner;
1382
- -webkit-user-select: none;
1383
- -moz-user-select: none;
1384
- user-select: none;
1385
- overflow: hidden;
1386
- position: relative;
1387
- }
1388
-
1389
- div.sitemap_right_tools a.icon_button {
1390
- }
1391
-
1392
- div.sitemap_right_tools .sitemap_sitetools a.icon_button {
1393
- margin-right: 4px;
1394
- }
1395
-
1396
- a.icon_button.small {
1397
- width: 11px;
1398
- height: 11px;
1399
- float: none;
1400
- display: inline-block;
1401
- background-position: 0 -8px;
1402
- vertical-align: -1px;
1403
- }
1404
-
1405
- a.icon_button.old_icon {
1406
- width: 20px;
1407
- height: 19px;
1408
- }
1409
-
1410
- a.icon_button:hover {
1411
- background-color: #e6f0f5;
1412
- color: $dark-gray;
1413
- border: 1px solid #888;
1414
- text-shadow: 0 1px 4px #fff;
1415
- text-decoration: none;
1416
- }
1417
-
1418
- a.icon_button:active {
1419
- background-color: #cdd6db;
1420
- border-style: inset;
1421
- border-color: #bfbfbf;
1422
- }
1423
-
1424
- a.icon_button img {
1425
- position: absolute;
1426
- top: 2px;
1427
- left: 3px;
1428
- }
1429
-
1430
- .icon.blank {
1431
- background: transparent;
1432
- }
1433
-
1434
- span.icon.sort {
1435
- background-position: -128px -168px;
1436
- }
1437
-
1438
- #page_sorting_panel p {
1439
- margin-top: 1em;
1440
- }
1441
-
1442
- div.info span.icon.info {
1443
- position: absolute;
1444
- top: 8px;
1445
- left: 8px;
1446
- }
1447
-
1448
- span.icon.module {
1449
- width: 24px;
1450
- height: 24px;
1451
- margin-bottom: 4px;
1452
- }
1453
-
1454
- span.module.dashboard {
1455
- background-position: -240px 0;
1456
- }
1457
-
1458
- span.module.pages {
1459
- background-position: -40px 0;
1460
- }
1461
-
1462
- span.module.users {
1463
- background-position: -80px 0;
1464
- }
1465
-
1466
- span.module.library {
1467
- background-position: -120px 0;
1468
- }
1469
-
1470
- span.module.languages {
1471
- background-position: -200px 0;
1472
- }
1473
-
1474
- span.module.exit {
1475
- background-position: -160px 0;
1476
- }
1477
-
1478
- a.icon_button span.icon {
1479
- position: absolute;
1480
- left: 4px;
1481
- top: 4px;
1482
- }
1483
-
1484
- span.icon.zoom-out {
1485
- background: image-url('alchemy/icons.png') -416px -72px;
1486
- }
1487
-
1488
- span.icon.zoom-equal {
1489
- background: image-url('alchemy/icons.png') -448px -72px;
1490
- }
1491
-
1492
- span.icon.zoom-in {
1493
- background: image-url('alchemy/icons.png') -480px -72px;
1494
- }
1495
-
1496
- a.icon_button.small span.icon {
1497
- top: 2px;
1498
- left: 2px;
1499
- width: 9px;
1500
- height: 9px;
1501
- background-position: -4px -4px;
1502
- }
1503
-
1504
- span.icon.delete-small {
1505
- background: image-url('alchemy/icons.png') 0 -72px;
1506
- }
1507
-
1508
- a.icon_button span.old_icon {
1509
- position: relative;
1510
- background-repeat: no-repeat;
1511
- width: 22px;
1512
- height: 20px;
1513
- display: inline-block;
1514
- top: -1px;
1515
- left: -1px;
1516
- }
1517
-
1518
- a.icon_button.old_icon img {
1519
- top: 0;
1520
- left: 1px;
1521
- }
1522
-
1523
- div.table_right span.tools a.icon_button img {
1524
- left: -1px;
1525
- }
1526
-
1527
- /* @end */
1528
-
1529
- #user_edit form {
1530
- margin: 0;
1531
- padding: 2*$default-padding;
1532
- }
1533
-
1534
- table {
1535
- border-style: none;
1536
- border-spacing: 0 $default-padding;
1537
- padding: 0;
1538
- font-size: inherit;
1539
- width: 100%;
1540
- }
1541
-
1542
- table.window_form {
1543
- width: 100%;
1544
- }
1545
-
1546
- table td, table th {
1547
- padding: $default-padding;
1548
- }
1549
-
1550
- table th {
1551
- text-align: left;
1552
- height: 22px;
1553
- vertical-align: top;
1554
- }
1555
-
1556
- th.login_status {
1557
- width: 16px;
1558
- }
1559
-
1560
- table tr.odd td {
1561
- background-color: #eaf3f9;
1562
- }
1563
-
1564
- table tr.even td {
1565
- background-color: white;
1566
- }
1567
-
1568
- li.even {
1569
- background-color: #fff;
1570
- }
1571
-
1572
- li.odd {
1573
- background-color: #eaf3f9;
1574
- }
1575
-
1576
- ul.list li.table_row {
1577
- display: block;
1578
- margin: 0 0 8px;
1579
- background-color: #ffffff;
1580
- position: relative;
1581
- line-height: 18px;
1582
- float: left;
1583
- width: 100%;
1584
- }
1585
-
1586
- ul.list {
1587
- margin: 0;
1588
- padding: 2*$default-padding;
1589
- list-style-type: none;
1590
- }
1591
-
1592
- ul#layoutpages.list {
1593
- margin-top: 16px;
1594
- }
1595
-
1596
- ul#layoutpages.list li {
1597
- margin-left: 8px;
1598
- }
1599
-
1600
- ul#sitemap.list {
1601
- padding: 0;
1602
- }
1603
-
1604
- ul.list li {
1605
- list-style-type: none;
1606
- border-width: 0;
1607
- border-style: none;
1608
- display: block;
1609
- }
1610
-
1611
- ul.list li.legend {
1612
- background-color: transparent;
1613
- font-weight: bold;
1614
- }
1615
-
1616
- #layoutpages li img.site_status {
1617
- float: left;
1618
- }
1619
-
1620
- ul.list div.detail_row {
1621
- background-color: $medium-gray;
1622
- font-size: 10px;
1623
- margin-top: 3px;
1624
- padding: $default-padding;
1625
- overflow: hidden;
1626
- }
1627
-
1628
- ul.list div.detail_row div {
1629
- padding-top: 1px;
1630
- padding-bottom: 1px;
1631
- }
1632
-
1633
- ul.list span.right {
1634
- float: right;
1635
- }
1636
-
1637
- #sitemap li.legend span.right {
1638
- margin-right: 52px;
1639
- }
1640
-
1641
- #sitemap li.legend span.right span.page_move {
1642
- display: inline-block;
1643
- width: 74px;
1644
- text-align: center;
1645
- }
1646
-
1647
- h2#sitemap_heading span.page_infos {
1648
- margin-right: 120px;
1649
- width: 40px;
1650
- text-align: center;
1651
- float: right;
1652
- line-height: 28px;
1653
- }
1654
-
1655
- .handle {
1656
- cursor: move;
1657
- }
1658
-
1659
- #userinfo p {
1660
- padding: 0;
1661
- margin: 0;
1662
- font-weight: bold;
1663
- }
1664
-
1665
- /* @group image_upload */
1666
-
1667
- table td.tools .icon, table td.icon .icon {
1668
- width: 16px;
1669
- height: 16px;
1670
- -webkit-user-select: none;
1671
- -moz-user-select: none;
1672
- user-select: none;
1673
- margin-top: 0;
1674
- background-repeat: no-repeat;
1675
- display: inline;
1676
- display: inline-block;
1677
- margin-right: 4px;
1678
- }
1679
-
1680
- input#search_input_field {
1681
- width: 170px;
1682
- text-align: left;
1683
- @include rounded-search-field;
1684
- padding: 3px 24px 2px;
1685
- height: 18px;
1686
- }
1687
-
1688
- input.button,
1689
- a.button,
1690
- button.button {
1691
- @include button-styles;
1692
- }
1693
-
1694
- #new_element button.button {
1695
- float: right;
1696
- }
1697
-
1698
- input.button {
1699
- padding-left: 8px;
1700
- padding-right: 8px;
1701
- padding-bottom: 2px;
1702
- height: 25px;
1703
- }
1704
-
1705
- button.button {
1706
- line-height: 21px;
1707
- padding: 1px 8px 2px 8px;
1708
- height: 25px;
1709
- font-size: 1em;
1710
- }
1711
-
1712
- .button img {
1713
- margin-right: 0;
1714
- width: 20px;
1715
- height: 20px;
1716
- }
1717
-
1718
- #new_page_form tbody tr td.second_row .button {
1719
- float: right;
1720
- }
1721
-
1722
- input.button:hover,
1723
- input.button:focus,
1724
- a.button:hover,
1725
- a.button:focus,
1726
- button.button:hover,
1727
- button.button:focus {
1728
- @include button-hover-styles;
1729
- }
1730
-
1731
- input.button:active,
1732
- a.button:active {
1733
- text-decoration: none;
1734
- text-shadow: none;
1735
- background-color: #e5e5e5;
1736
- }
1737
-
1738
- a.button.disabled,
1739
- a.button.disabled:hover,
1740
- a.button.disabled:active,
1741
- input.button.disabled,
1742
- input.button.disabled:hover,
1743
- input.button.disabled:active,
1744
- button.button.disabled,
1745
- button.button.disabled:hover,
1746
- button.button.disabled:active {
1747
- color: $text-color;
1748
- text-shadow: none;
1749
- border-color: #ccc;
1750
- cursor: default;
1751
- background-image: none;
1752
- background-color: #f5f5f5;
1753
- padding: 1px 0 0;
1754
- }
1755
-
1756
- a.button.disabled img {
1757
- display: inline-block;
1758
- float: none;
1759
- }
1760
-
1761
- a.button.small.disabled img {
1762
- display: inline-block;
1763
- float: none;
1764
- position: relative;
1765
- height: 16px;
1766
- width: 16px;
1767
- top: -1px;
1768
- }
1769
-
1770
- a.button.disabled,
1771
- a.button.disabled:hover,
1772
- a.button.disabled:active {
1773
- padding: 2px !important;
1774
- text-align: center;
1775
- }
1776
-
1777
- label {
1778
-
1779
- }
1780
-
1781
- a.button {
1782
- padding: 5px 8px;
1783
- text-decoration: none;
1784
- float: left;
1785
- line-height: 13px;
1786
- }
1787
-
1788
- a.button.small {
1789
- height: 14px;
1790
- padding-top: 2px;
1791
- padding-bottom: 2px;
1792
- border-radius: 10px;
1793
- -o-border-radius: 10px;
1794
- -ms-border-radius: 10px;
1795
- -moz-border-radius: 10px;
1796
- -webkit-border-radius: 10px;
1797
- }
1798
-
1799
- a.small.button.with_icon span.icon {
1800
- margin-top: -5px;
1801
- position: relative;
1802
- top: 3px;
1803
- left: -1px;
1804
- }
1805
-
1806
- table tr td.tools {
1807
- width: 40px;
1808
- background-color: $light-gray;
1809
- white-space: nowrap;
1810
- }
1811
-
1812
- td.input, td.label {
1813
- padding-top: 2px;
1814
- vertical-align: top;
1815
- }
1816
-
1817
- td.input, td.submit, td.select {
1818
- text-align: right;
1819
- padding-right: 0;
1820
- }
1821
-
1822
- td.value {
1823
- padding-left: 2*$default-padding;
1824
- }
1825
-
1826
- td.label {
1827
- white-space: nowrap;
1828
- width: 80px;
1829
- padding: $default-padding 2*$default-padding 0 0;
1830
- line-height: 6*$default-padding;
1831
- }
1832
-
1833
- td.label.mandatory:after {
1834
- content: '*';
1835
- }
1836
-
1837
- td.heading {
1838
- padding: $default-padding 0;
1839
- font-weight: bold;
1840
- text-decoration: underline;
1841
- }
1842
-
1843
- td.input input[type="checkbox"], td.input input[type="radio"] {
1844
- margin-top: 6px;
1845
- }
1846
-
1847
- td.label.long {
1848
- width: 140px;
1849
- }
1850
-
1851
- td.label.very_long {
1852
- width: 230px;
1853
- }
1854
-
1855
- table tr td.tools a {
1856
- width: 19px;
1857
- height: 19px;
1858
- margin-right: 2px;
1859
- }
1860
-
1861
- table tr td.tools.long {
1862
- width: 60px;
1863
- }
1864
-
1865
- table tr td.icon {
1866
- background-color: $light-gray;
1867
- width: 20px;
1868
- text-align: center;
1869
- }
1870
-
1871
- table.list tr:hover td {
1872
- background-color: #fffdef;
1873
- }
1874
-
1875
- td.file_type {
1876
- width: 130px;
1877
- white-space: nowrap;
1878
- }
1879
-
1880
- td.file_size {
1881
- width: 80px;
1882
- }
1883
-
1884
- td.date {
1885
- width: 150px;
1886
- }
1887
-
1888
- table td.right, table th.right {
1889
- text-align: right;
1890
- }
1891
-
1892
- table td.center, table th.center {
1893
- text-align: center;
1894
- }
1895
-
1896
- .list li.table_row div.table_right span{
1897
- float: left;
1898
- text-align: left;
1899
- }
1900
-
1901
- .list li.table_row div.table_center {
1902
- float: none;
1903
- padding-left: 24px;
1904
- }
1905
-
1906
- td.login {
1907
- width: 100px;
1908
- }
1909
-
1910
- td.email {
1911
- width: 270px;
1912
- }
1913
-
1914
- td.role {
1915
- width: 70px;
1916
- padding-right: 4px;
1917
- }
1918
-
1919
- .list div.table_left {
1920
- float: left;
1921
- }
1922
-
1923
- .list div.table_right {
1924
- float: right;
1925
- }
1926
-
1927
- #archive_all {
1928
- padding: 4*$default-padding;
1929
- }
1930
-
1931
- #archive_all .padding_left_right {
1932
- padding-right: 8px;
1933
- padding-left: 8px;
1934
- }
1935
-
1936
- .inplace-edit {
1937
- background-color: $light-gray;
1938
- position: absolute;
1939
- left: -5px;
1940
- top: -8px;
1941
- width: 204px;
1942
- z-index: 10;
1943
- height: 60px;
1944
- border: $default-border;
1945
- @include rounded-corner;
1946
- }
1947
-
1948
- .inplace-edit input.save-button {
1949
- float: right;
1950
- }
1951
-
1952
- .inplace-edit div.buttons input.cancel-button {
1953
- float: left;
1954
- }
1955
-
1956
- .inplace-edit div.buttons {
1957
- margin-top: 4px;
1958
- position: absolute;
1959
- bottom: 4px;
1960
- width: 196px;
1961
- padding-right: 4px;
1962
- padding-left: 4px;
1963
- }
1964
-
1965
- .inplace-edit input.thin_border {
1966
- width: 186px;
1967
- font-family: "Courier New", Courier, mono;
1968
- position: absolute;
1969
- left: 4px;
1970
- top: 4px;
1971
- height: 18px;
1972
- }
1973
-
1974
- div.spinner {
1975
- background-color: #ffffff;
1976
- width: 100%;
1977
- height: 100%;
1978
- position: absolute;
1979
- top: 0;
1980
- left: 0;
1981
- }
1982
-
1983
- .headline_text_editor {
1984
- overflow: auto;
1985
- width: 374px;
1986
- }
1987
-
1988
- .short_content_text {
1989
- width: 374px;
1990
- background-color: white;
1991
- margin-bottom: 10px;
1992
- padding-bottom: 2px;
1993
- padding-top: 2px;
1994
- padding-left: 2px;
1995
- float: none;
1996
- }
1997
-
1998
- .short_content_text a {
1999
- color: #000000;
2000
- text-decoration: none;
2001
- font-weight: bold;
2002
- }
2003
-
2004
- .short_content_text a:hover {
2005
- color: #000000;
2006
- text-decoration: underline;
2007
- }
2008
-
2009
- .picture_tool_assign_box {
2010
- float: right;
2011
- width: 105px;
2012
- overflow: auto;
2013
- padding: 1px;
2014
- }
2015
-
2016
- /* @end */
2017
-
2018
- .short_picture {
2019
- float: left
2020
- }
2021
-
2022
- .short_element {
2023
- margin-left: 20px;
2024
- float: left;
2025
- }
2026
-
2027
- .short_element input {
2028
- width: 190px;
2029
- float: left;
2030
- font: 11px $default-font-face;
2031
- }
2032
-
2033
- .dashed_border {
2034
- border: 1px dashed;
213
+ @include rounded-corner;
214
+ width: 450px;
2035
215
  }
2036
216
 
2037
- ul#all_files {
2038
- list-style-type: none;
2039
- display: block;
2040
- margin: 0;
2041
- padding: 0;
2042
- width: 100%;
217
+ #back_to_site {
218
+ float: right;
219
+ margin-right: 8px;
2043
220
  }
2044
221
 
2045
- a.file_archive_download_file:hover {
2046
- background-position: 3px -25px;
222
+ #page_names textarea {
223
+ height: 78px;
2047
224
  }
2048
225
 
2049
- form#archive_upload_form {
2050
- padding: $default-padding;
2051
- overflow: auto;
2052
- width: 390px;
226
+ div#new_page_from_clipboard {
227
+ display: none;
2053
228
  }
2054
229
 
2055
- img.image_in_text {
2056
- position: relative;
2057
- top: 3px;
230
+ div#new_page_from_clipboard input.button {
231
+ float: right;
2058
232
  }
2059
233
 
2060
- a.archive_upload_delete:hover, a.archive_upload_delete:active {
2061
- background-position: right;
234
+ div#new_page_from_clipboard span {
235
+ float: left;
236
+ line-height: 25px;
2062
237
  }
2063
238
 
2064
- div.right_checkbox {
239
+ #page_editing_head .site_status {
240
+ margin: 0 4px 0 0;
2065
241
  float: left;
2066
242
  }
2067
243
 
2068
- div.all_rights {
244
+ div#page_status_options {
2069
245
  float: left;
2070
- clear: both;
2071
- margin-top: 10px;
2072
246
  }
2073
247
 
2074
- textarea.thin_border {
2075
- border-style: inset;
2076
- font: $default-font-style;
2077
- padding: $default-padding;
2078
- border-width: 1px;
2079
- @include rounded-corner;
2080
- height: auto;
248
+ div#page_editing_menu {
249
+ overflow: auto;
250
+ padding-left: 1px;
251
+ padding-right: 1px;
2081
252
  }
2082
253
 
2083
- .thin_border, .input_field {
2084
- margin: 0;
2085
- @include rounded-corner;
2086
- background: #fff;
2087
- border: 1px inset #e5e5e5;
2088
- width: 210px;
2089
- font-size: 12px;
2090
- line-height: 19px;
2091
- height: 25px;
2092
- padding: 1px $default-padding;
254
+ h2#sitemap_heading {
255
+ padding: 0;
2093
256
  }
2094
257
 
2095
- .thin_border.dirty {
2096
- background-color: #fff8df;
258
+ div#userinfo {
259
+ text-align: right;
260
+ float: right;
261
+ margin-right: 8px;
2097
262
  }
2098
263
 
2099
- /* @group Icons */
2100
-
2101
- span.icon {
2102
- display: inline-block;
2103
- background: image-url('alchemy/icons.png') no-repeat;
2104
- width: 16px;
2105
- height: 16px;
264
+ #userinfo img {
265
+ position: relative;
266
+ top: 1px;
2106
267
  }
2107
268
 
2108
- span.icon.user_add {
2109
- background: image-url('alchemy/icons.png') -96px -104px;
269
+ div#user_list_legend {
270
+ overflow: auto;
271
+ padding: 1px 1px 4px;
272
+ margin-bottom: 5px;
273
+ border-bottom: 1px solid black;
274
+ width: 370px;
2110
275
  }
2111
276
 
2112
- span.icon.language_add {
2113
- background: image-url('alchemy/icons.png') -47px -120px;
277
+ #toolbar {
278
+ z-index: 10;
279
+ padding: 6px;
280
+ height: 40px;
281
+ background: $medium-gray image-url('alchemy/shading.png') repeat-x 0 -40px;
282
+ margin-right: 0px;
283
+ border: $default-border;
284
+ border-top-style: none;
285
+ border-right-style: none;
286
+ @include bottom-left-rounded-border;
287
+ position: relative;
288
+ margin-left: 5px;
2114
289
  }
2115
290
 
2116
- span.icon.user {
2117
- background: image-url('alchemy/icons.png') 0 -104px;
291
+ #toolbar form {
292
+ margin: 0 0 0 8px;
293
+ float: right;
294
+ text-align: center;
2118
295
  }
2119
296
 
2120
- span.icon.language {
2121
- background: image-url('alchemy/icons.png') 0 -120px;
297
+ #toolbar div.button_with_label form {
298
+ float: none;
299
+ margin: 0;
300
+ display: inline-block;
301
+ line-height: 5px;
2122
302
  }
2123
303
 
2124
- span.icon.user.female {
2125
- background: image-url('alchemy/icons.png') -128px -104px;
304
+ #toolbar div.button_with_label form label {
305
+ margin-top: $default-margin;
2126
306
  }
2127
307
 
2128
- a.icon.user_edit {
2129
- background: image-url('alchemy/icons.png') -64px -104px;
308
+ #toolbar div.search_field {
309
+ position: relative;
310
+ float: left;
311
+ margin-bottom: $default-margin;
2130
312
  }
2131
313
 
2132
- a.icon.language_edit {
2133
- background: image-url('alchemy/icons.png') -32px -120px;
314
+ #toolbar div p {
315
+ float: right;
316
+ margin: 3px $default-margin 0 0;
317
+ padding: 0;
2134
318
  }
2135
319
 
2136
- a.icon.user_edit.female {
2137
- background: image-url('alchemy/icons.png') -192px -104px;
320
+ div#toolbar div.toolbar_spacer {
321
+ float: left;
322
+ width: 1px;
323
+ height: 37px;
324
+ border-right-style: dotted;
325
+ border-right-width: 1px;
326
+ margin-right: 2*$default-margin;
327
+ margin-left: $default-margin;
2138
328
  }
2139
329
 
2140
- span.icon.settings {
2141
- background: image-url('alchemy/icons.png') -320px -40px;
330
+ div#toolbar a.button {
331
+ width: 25px;
332
+ height: 21px;
333
+ text-decoration: none;
334
+ float: right;
335
+ border-width: 0;
336
+ border-style: none;
337
+ font-size: 0;
338
+ padding: 0;
339
+ background-repeat: no-repeat;
340
+ background-position: 0 0;
2142
341
  }
2143
342
 
2144
- span.icon.visit_page {
2145
- background: image-url('alchemy/icons.png') -32px -136px;
343
+ div#toolbar a.button:active {
344
+ text-decoration: none;
345
+ background-position: 0 -21px;
2146
346
  }
2147
347
 
2148
- span.icon.upload {
2149
- background: image-url('alchemy/icons.png') 0 -136px;
348
+ #page_sorting_panel p {
349
+ margin-top: 1em;
2150
350
  }
2151
351
 
2152
- span.icon.pdf {
2153
- background: image-url('alchemy/icons.png') -161px -136px;
352
+ div.info span.icon.info {
353
+ position: absolute;
354
+ top: 8px;
355
+ left: 8px;
2154
356
  }
2155
357
 
2156
- span.icon.text {
2157
- background: image-url('alchemy/icons.png') -448px -136px;
358
+ div.table_right span.tools a.icon_button img {
359
+ left: -1px;
2158
360
  }
2159
361
 
2160
- span.icon.archive {
2161
- background: image-url('alchemy/icons.png') -416px -136px;
362
+ #user_edit form {
363
+ margin: 0;
364
+ padding: 2*$default-padding;
2162
365
  }
2163
366
 
2164
- span.icon.audio {
2165
- background: image-url('alchemy/icons.png') -192px -136px;
367
+ li.even {
368
+ background-color: #fff;
2166
369
  }
2167
370
 
2168
- span.icon.image {
2169
- background: image-url('alchemy/icons.png') -224px -136px;
371
+ li.odd {
372
+ background-color: #eaf3f9;
2170
373
  }
2171
374
 
2172
- span.icon.vcard {
2173
- background: image-url('alchemy/icons.png') -416px -104px;
375
+ ul.list li.table_row {
376
+ display: block;
377
+ margin: 0 0 8px;
378
+ background-color: #ffffff;
379
+ position: relative;
380
+ line-height: 18px;
381
+ float: left;
382
+ width: 100%;
2174
383
  }
2175
384
 
2176
- span.icon.psd {
2177
- background: image-url('alchemy/icons.png') -128px -136px;
385
+ ul.list {
386
+ margin: 0;
387
+ padding: 2*$default-padding;
388
+ list-style-type: none;
2178
389
  }
2179
390
 
2180
- span.icon.flash {
2181
- background: image-url('alchemy/icons.png') -256px -136px;
391
+ ul#layoutpages.list {
392
+ margin-top: 16px;
2182
393
  }
2183
394
 
2184
- span.icon.video {
2185
- background: image-url('alchemy/icons.png') -288px -136px;
395
+ ul#layoutpages.list li {
396
+ margin-left: 8px;
2186
397
  }
2187
398
 
2188
- span.icon.rtf {
2189
- background: image-url('alchemy/icons.png') -320px -136px;
399
+ ul#sitemap.list {
400
+ padding: 0;
2190
401
  }
2191
402
 
2192
- span.icon.word {
2193
- background: image-url('alchemy/icons.png') -384px -136px;
403
+ ul.list li {
404
+ list-style-type: none;
405
+ border-width: 0;
406
+ border-style: none;
407
+ display: block;
2194
408
  }
2195
409
 
2196
- span.icon.excel {
2197
- background: image-url('alchemy/icons.png') -176px -72px;
410
+ ul.list li.legend {
411
+ background-color: transparent;
412
+ font-weight: bold;
2198
413
  }
2199
414
 
2200
- span.icon.file {
2201
- background: image-url('alchemy/icons.png') 0 -40px;
415
+ #layoutpages li img.site_status {
416
+ float: left;
2202
417
  }
2203
418
 
2204
- span.icon.flush {
2205
- background-position: -352px -39px;
419
+ ul.list div.detail_row {
420
+ background-color: $medium-gray;
421
+ font-size: 10px;
422
+ margin-top: 3px;
423
+ padding: $default-padding;
424
+ overflow: hidden;
2206
425
  }
2207
426
 
2208
- span.icon.publish {
2209
- background-position: -64px -136px;
427
+ ul.list div.detail_row div {
428
+ padding-top: 1px;
429
+ padding-bottom: 1px;
2210
430
  }
2211
431
 
2212
- span.icon.info {
2213
- background-position: -64px -168px;
432
+ ul.list span.right {
433
+ float: right;
2214
434
  }
2215
435
 
2216
- span.icon.close {
2217
- background-position: -416px -40px;
436
+ #sitemap li.legend span.right {
437
+ margin-right: 52px;
2218
438
  }
2219
439
 
2220
- span.icon.sync {
2221
- background-position: -96px -136px;
440
+ #sitemap li.legend span.right span.page_move {
441
+ display: inline-block;
442
+ width: 74px;
443
+ text-align: center;
2222
444
  }
2223
445
 
2224
- span.icon.close.small {
2225
- background: image-url('alchemy/ui-icons_666666_256x240.png') -84px -132px;
2226
- width: 8px;
2227
- height: 8px;
2228
- position: absolute;
2229
- right: 5px;
2230
- top: 4px;
446
+ h2#sitemap_heading span.page_infos {
447
+ margin-right: 120px;
448
+ width: 40px;
449
+ text-align: center;
450
+ float: right;
451
+ line-height: 28px;
2231
452
  }
2232
453
 
2233
- span.icon.online {
2234
- background-position: -224px -104px;
454
+ .handle {
455
+ cursor: move;
2235
456
  }
2236
457
 
2237
- span.icon.offline {
2238
- background-position: -255px -104px;
458
+ #userinfo p {
459
+ padding: 0;
460
+ margin: 0;
461
+ font-weight: bold;
2239
462
  }
2240
463
 
2241
- span.icon.tick, span.icon.true {
2242
- background-position: -32px -72px;
2243
- }
464
+ /* @group image_upload */
2244
465
 
2245
- span.icon.error {
2246
- background-position: -32px -168px;
466
+ table td.tools .icon, table td.icon .icon {
467
+ width: 16px;
468
+ height: 16px;
469
+ -webkit-user-select: none;
470
+ -moz-user-select: none;
471
+ user-select: none;
472
+ margin-top: 0;
473
+ background-repeat: no-repeat;
474
+ display: inline;
475
+ display: inline-block;
476
+ margin-right: 4px;
2247
477
  }
2248
478
 
2249
- span.icon.false {
2250
- background-image: none;
479
+ input#search_input_field {
480
+ width: 170px;
481
+ text-align: left;
482
+ @include rounded-search-field;
483
+ padding: 3px 24px 2px;
484
+ height: 18px;
2251
485
  }
2252
486
 
2253
- span.icon.link,
2254
- a.link {
2255
- background-position: -320px -72px;
487
+ .list li.table_row div.table_right span{
488
+ float: left;
489
+ text-align: left;
2256
490
  }
2257
491
 
2258
- span.icon.unlink {
2259
- background-position: -352px -72px;
492
+ .list li.table_row div.table_center {
493
+ float: none;
494
+ padding-left: 24px;
2260
495
  }
2261
496
 
2262
- .icon.swap_picture {
2263
- background-position: -288px -72px;
497
+ .list div.table_left {
498
+ float: left;
2264
499
  }
2265
500
 
2266
- .icon.crop {
2267
- background-position: -256px -72px;
501
+ .list div.table_right {
502
+ float: right;
2268
503
  }
2269
504
 
2270
- span.icon.warning, span.icon.warn {
2271
- background-position: 0 -168px;
505
+ #archive_all {
506
+ padding: 4*$default-padding;
2272
507
  }
2273
508
 
2274
- span.icon.element_public {
2275
- background-position: -94px -166px;
509
+ #archive_all .padding_left_right {
510
+ padding-right: 8px;
511
+ padding-left: 8px;
2276
512
  }
2277
513
 
2278
- span.icon.element_draft {
2279
- background-position: 1px -70px;
514
+ .inplace-edit {
515
+ background-color: $light-gray;
516
+ position: absolute;
517
+ left: -5px;
518
+ top: -8px;
519
+ width: 204px;
520
+ z-index: 10;
521
+ height: 60px;
522
+ border: $default-border;
523
+ @include rounded-corner;
2280
524
  }
2281
525
 
2282
- span.icon.new_element {
2283
- background: image-url('alchemy/icons.png') -384px -40px;
526
+ .inplace-edit input.save-button {
527
+ float: right;
2284
528
  }
2285
529
 
2286
- span.icon.element_window {
2287
- background: image-url('alchemy/icons.png') -512px -72px;
530
+ .inplace-edit div.buttons input.cancel-button {
531
+ float: left;
2288
532
  }
2289
533
 
2290
- span.icon.preview_window {
2291
- background: image-url('alchemy/icons.png') -448px -40px;
534
+ .inplace-edit div.buttons {
535
+ margin-top: 4px;
536
+ position: absolute;
537
+ bottom: 4px;
538
+ width: 196px;
539
+ padding-right: 4px;
540
+ padding-left: 4px;
2292
541
  }
2293
542
 
2294
- span.icon.clipboard {
2295
- background-position: -288px -104px;
543
+ .inplace-edit input.thin_border {
544
+ width: 186px;
545
+ font-family: "Courier New", Courier, mono;
546
+ position: absolute;
547
+ left: 4px;
548
+ top: 4px;
549
+ height: 18px;
2296
550
  }
2297
551
 
2298
- span.icon.clipboard.full {
2299
- background-position: -320px -104px;
552
+ div.spinner {
553
+ background-color: #ffffff;
554
+ width: 100%;
555
+ height: 100%;
556
+ position: absolute;
557
+ top: 0;
558
+ left: 0;
2300
559
  }
2301
560
 
2302
- span.icon.trash {
2303
- background-position: -352px -104px;
561
+ .headline_text_editor {
562
+ overflow: auto;
563
+ width: 374px;
2304
564
  }
2305
565
 
2306
- span.icon.trash.full {
2307
- background-position: -384px -104px;
566
+ .short_content_text {
567
+ width: 374px;
568
+ background-color: white;
569
+ margin-bottom: 10px;
570
+ padding-bottom: 2px;
571
+ padding-top: 2px;
572
+ padding-left: 2px;
573
+ float: none;
2308
574
  }
2309
575
 
2310
- a.icon.file_download {
2311
- background: image-url('alchemy/icons.png') -480px -136px;
576
+ .short_content_text a {
577
+ color: #000000;
578
+ text-decoration: none;
579
+ font-weight: bold;
2312
580
  }
2313
581
 
2314
- .icon.download {
2315
- background: image-url('alchemy/icons.png') -240px -72px;
582
+ .short_content_text a:hover {
583
+ color: #000000;
584
+ text-decoration: underline;
2316
585
  }
2317
586
 
2318
- a.icon.file_delete {
2319
- background: image-url('alchemy/icons.png') -64px -40px;
587
+ .picture_tool_assign_box {
588
+ float: right;
589
+ width: 105px;
590
+ overflow: auto;
591
+ padding: 1px;
2320
592
  }
2321
593
 
2322
- a.icon.file_edit {
2323
- background: image-url('alchemy/icons.png') -32px -40px;
2324
- }
594
+ /* @end */
2325
595
 
2326
- .icon.edit {
2327
- background: image-url('alchemy/icons.png') -160px -168px;
596
+ .short_picture {
597
+ float: left
2328
598
  }
2329
599
 
2330
- .icon.create {
2331
- background: image-url('alchemy/icons.png') -192px -568px;
600
+ .short_element {
601
+ margin-left: 20px;
602
+ float: left;
2332
603
  }
2333
604
 
2334
- span.icon.add_page {
2335
- background: image-url('alchemy/icons.png') -96px -40px;
605
+ .short_element input {
606
+ width: 190px;
607
+ float: left;
608
+ font: 11px $default-font-face;
2336
609
  }
2337
610
 
2338
- span.icon.copy_page {
2339
- background: image-url('alchemy/icons.png') -544px -40px;
611
+ .dashed_border {
612
+ border: 1px dashed;
2340
613
  }
2341
614
 
2342
- span.icon.delete_page {
2343
- background: image-url('alchemy/icons.png') -64px -40px;
615
+ ul#all_files {
616
+ list-style-type: none;
617
+ display: block;
618
+ margin: 0;
619
+ padding: 0;
620
+ width: 100%;
2344
621
  }
2345
622
 
2346
- a.icon.user_delete {
2347
- background: image-url('alchemy/icons.png') -32px -104px;
623
+ img.image_in_text {
624
+ position: relative;
625
+ top: 3px;
2348
626
  }
2349
627
 
2350
- a.icon.language_delete {
2351
- background: image-url('alchemy/icons.png') -16px -120px;
628
+ div.right_checkbox {
629
+ float: left;
2352
630
  }
2353
631
 
2354
- .icon.destroy {
2355
- background: image-url('alchemy/icons.png') -224px -168px;
632
+ div.all_rights {
633
+ float: left;
634
+ clear: both;
635
+ margin-top: 10px;
2356
636
  }
2357
637
 
2358
- span.icon.configure_page {
2359
- background: image-url('alchemy/icons.png') -320px -40px;
638
+ textarea.thin_border {
639
+ border-style: inset;
640
+ font: $default-font-style;
641
+ padding: $default-padding;
642
+ border-width: 1px;
643
+ @include rounded-corner;
644
+ height: auto;
2360
645
  }
2361
646
 
2362
- span.icon.search {
2363
- background: image-url('alchemy/ui-icons_666666_256x240.png') -160px -112px;
647
+ .thin_border, .input_field {
648
+ margin: 0;
649
+ @include rounded-corner;
650
+ background: #fff;
651
+ border: 1px inset #e5e5e5;
652
+ width: 210px;
653
+ font-size: 12px;
654
+ line-height: 19px;
655
+ height: 25px;
656
+ padding: 1px $default-padding;
2364
657
  }
2365
658
 
2366
- a.icon.user_delete.female {
2367
- background: image-url('alchemy/icons.png') -160px -104px;
659
+ .thin_border.dirty {
660
+ background-color: #fff8df;
2368
661
  }
2369
662
 
2370
- /* @end */
2371
-
2372
663
  select.select_box {
2373
664
  border: 1px solid #9a9a9a;
2374
665
  color: $text-color;
@@ -2408,12 +699,12 @@ select.select_box {
2408
699
  display: none;
2409
700
  }
2410
701
 
2411
- .with_medium_padding {
702
+ .with_padding {
2412
703
  padding: 2*$default-padding;
2413
704
  }
2414
705
 
2415
- .with_padding {
2416
- padding: 2*$default-padding;
706
+ .with_margin {
707
+ margin: 2*$default-padding;
2417
708
  }
2418
709
 
2419
710
  .element_spinner {
@@ -2479,138 +770,6 @@ div#toolbar_buttons_right {
2479
770
  margin-left: 8px;
2480
771
  }
2481
772
 
2482
- div.button_with_label {
2483
- text-align: center;
2484
- margin-right: 8px;
2485
- margin-left: 8px;
2486
- float: left;
2487
- min-width: 70px;
2488
- line-height: 0;
2489
-
2490
- &.active {
2491
- .icon_button {
2492
- background-color: #cdd6db;
2493
- border-style: inset;
2494
- border-color: #bfbfbf;
2495
- }
2496
- label {
2497
- color: black;
2498
- text-shadow: white 0 0 2px;
2499
- }
2500
- }
2501
-
2502
- .disabledButton {
2503
- position: absolute;
2504
- top: 0;
2505
- left: 0;
2506
- width: 100%;
2507
- height: 100%;
2508
- z-index: 1;
2509
- }
2510
-
2511
- a.icon_button {
2512
- float: none;
2513
- margin-right: auto;
2514
- margin-left: auto;
2515
- display: inline-block;
2516
- position: relative;
2517
- }
2518
-
2519
- &.disabled {
2520
- position: relative;
2521
- @include opacity(50);
2522
- cursor: default;
2523
-
2524
- a:hover, a:active {
2525
- cursor: default;
2526
- background-color: #f7f7f7;
2527
- border: 1px solid #9a9a9a;
2528
- }
2529
-
2530
- &:before {
2531
- content: '';
2532
- position: absolute;
2533
- z-index: 1;
2534
- width: 100%;
2535
- height: 100%;
2536
- background-color: transparent;
2537
- @include opacity(50);
2538
- }
2539
-
2540
- &:hover label {
2541
- color: $text-color;
2542
- cursor: default;
2543
- }
2544
-
2545
- }
2546
-
2547
- }
2548
-
2549
- .icon_button.disabled span {
2550
- position: relative;
2551
- @include opacity(30);
2552
- cursor: default;
2553
- }
2554
-
2555
- .icon_button.disabled:hover {
2556
- background-color: #f7f7f7;
2557
- border: 1px solid #9a9a9a;
2558
- cursor: default;
2559
- }
2560
-
2561
- div#toolbar label, div#overlay_toolbar label {
2562
- font-size: 10px;
2563
- text-shadow: #fff 0 1px 2px;
2564
- margin-top: $default-margin;
2565
- display: block;
2566
- line-height: 13px;
2567
- }
2568
-
2569
- div.button_with_label:hover label {
2570
- color: #000;
2571
- text-shadow: #fff 0 1px 4px;
2572
- }
2573
-
2574
- #toolbar_links a {
2575
- padding: $default-padding;
2576
- border: 1px solid #9a9a9a;
2577
- @include rounded-corner;
2578
- margin-right: $default-margin;
2579
- background: #fff image-url('alchemy/shading.png') repeat-x 0 -75px;
2580
- text-decoration: none;
2581
- }
2582
-
2583
- div.search_field span.icon,
2584
- div.js_filter_field_box span.icon {
2585
- position: absolute;
2586
- left: 6px;
2587
- top: 4px;
2588
- }
2589
-
2590
- #toolbar_links a:hover {
2591
- background-color: #e6f0f5;
2592
- color: $text-color;
2593
- border: 1px solid #888;
2594
- text-shadow: 0 1px 1px #fff;
2595
- text-decoration: none;
2596
- }
2597
-
2598
- #toolbar_links a:active {
2599
- background-color: #cdd6db;
2600
- }
2601
-
2602
- div#per_page_values {
2603
- margin-top: 2px;
2604
- margin-bottom: 6px;
2605
- }
2606
-
2607
- #toolbar_links a.active {
2608
- background-color: #e6f0f5;
2609
- color: $text-color;
2610
- border: 1px solid #888;
2611
- text-shadow: 0 1px 1px #fff;
2612
- }
2613
-
2614
773
  #errorExplanation {
2615
774
  background: #ffdfdf;
2616
775
  padding: 2*$default-padding;
@@ -2761,8 +920,9 @@ div#image_assign_filter_and_image_sizing {
2761
920
  #pictures .picture_thumbnail .thumbnail_background {
2762
921
  cursor: -webkit-zoom-in;
2763
922
  cursor: -moz-zoom-in;
923
+ cursor: -ms-zoom-in;
2764
924
  cursor: -o-zoom-in;
2765
- cursor: zoom-in;
925
+ cursor: image-url('alchemy/lupe.cur'), zoom-in, pointer;
2766
926
  }
2767
927
 
2768
928
  .essence_picture_editor .picture_thumbnail {
@@ -3020,13 +1180,6 @@ input#link_to_text {
3020
1180
  margin: 0;
3021
1181
  }
3022
1182
 
3023
- div#tabbar_and_content {
3024
-
3025
- }
3026
-
3027
- #internal_link_title {
3028
- }
3029
-
3030
1183
  #alchemy .ui-dialog-content ul#sitemap {
3031
1184
  margin: 0;
3032
1185
  padding: 0 8px 8px 0;
@@ -3126,7 +1279,7 @@ div.elements_for_page {
3126
1279
 
3127
1280
  a.close_elements_from_page_selector {
3128
1281
  position: absolute;
3129
- right: 8px;
1282
+ right: 0;
3130
1283
  top: 8px;
3131
1284
  font-size: 0;
3132
1285
  padding-right: 2px;
@@ -3212,10 +1365,6 @@ div.assign_file_file_icon img {
3212
1365
  width: 195px;
3213
1366
  }
3214
1367
 
3215
- td.label.middle {
3216
- padding-left: 2*$default-padding;
3217
- }
3218
-
3219
1368
  .elements_for_page .alchemy_selectbox {
3220
1369
  float: left;
3221
1370
  width: 217px;
@@ -3269,58 +1418,6 @@ select#url_protocol.medium {
3269
1418
  display: inline-block;
3270
1419
  }
3271
1420
 
3272
- div.emulate_table input.button:disabled {
3273
- color: gray;
3274
- }
3275
-
3276
- div.emulate_table {
3277
- overflow: auto;
3278
- }
3279
-
3280
- div.emulate_table label {
3281
- float: left;
3282
- width: 70px;
3283
- padding-top: 2px;
3284
- }
3285
-
3286
- div.emulate_table .short_label {
3287
- width: 50px;
3288
- text-align: right;
3289
- padding-right: 4px;
3290
- padding-left: 4px;
3291
- }
3292
-
3293
- div.emulate_table input, div.emulate_table select {
3294
- float: left;
3295
- }
3296
-
3297
- .emulated_table_row {
3298
- padding: 1px;
3299
- overflow: auto;
3300
- clear: both;
3301
- margin-bottom: 5px;
3302
- line-height: 21px;
3303
- }
3304
-
3305
- .emulated_table_row span.first_column {
3306
- float: left;
3307
- margin-right: 4px;
3308
- }
3309
-
3310
- div.emulate_table select.short {
3311
- border: 0px none;
3312
- padding: 2px;
3313
- width: 51px;
3314
- }
3315
-
3316
- div.emulate_table p {
3317
- float: left;
3318
- clear: both;
3319
- margin-bottom: 4px;
3320
- padding: 0px;
3321
- width: 100%;
3322
- }
3323
-
3324
1421
  .assign_file_file.selected_file {
3325
1422
  background-color: #d1d1d1;
3326
1423
  }
@@ -3378,107 +1475,6 @@ div#overlay_toolbar a.button:active {
3378
1475
  margin-right: 8px;
3379
1476
  }
3380
1477
 
3381
- a.icon.remove {
3382
- background: image-url('alchemy/icons.png') no-repeat -64px;
3383
- width: 16px;
3384
- height: 16px;
3385
- display: inline-block;
3386
- position: relative;
3387
- top: 3px;
3388
- margin-right: 4px;
3389
- }
3390
-
3391
- a#uploadswitcher, a.underline {
3392
- text-decoration: underline;
3393
- }
3394
-
3395
- #uploadProgressContainer {
3396
- overflow-x: hidden;
3397
- overflow-y: auto;
3398
- height: 234px;
3399
- }
3400
-
3401
- #uploadProgressContainer .progressWrapper {
3402
- padding: 2*$default-padding;
3403
- background-color: $medium-gray;
3404
- position: relative;
3405
- margin-bottom: 8px;
3406
- border: 1px solid #9e9e9e;
3407
- @include rounded-corner;
3408
- }
3409
-
3410
- #uploadProgressContainer .progressName,
3411
- #uploadProgressContainer .progressBarStatus {
3412
- margin-bottom: 4px;
3413
- }
3414
-
3415
- #uploadProgressContainer .progressBarStatus {
3416
- font-size: 10px;
3417
- }
3418
-
3419
- #uploadProgressContainer .progressName {
3420
- text-shadow: 0 1px 2px #FFFFFF;
3421
- }
3422
-
3423
- #uploadProgressContainer .progressBarContainer {
3424
- background: #F9F9F9 image-url('alchemy/shading.png') repeat-x 0 0;
3425
- border:1px solid #9E9E9E;
3426
- @include rounded-corner;
3427
- height:16px;
3428
- overflow: hidden;
3429
- width:100%;
3430
- }
3431
-
3432
- #uploadProgressContainer .progressBarInProgress {
3433
- background: #77AAD5 image-url('alchemy/shading.png') repeat-x 0 -75px;
3434
- height: 16px;
3435
- width: 0;
3436
- }
3437
-
3438
- #uploadProgressContainer .progressBarComplete {
3439
- background: #00D827 image-url('alchemy/shading.png') repeat-x 0 -75px;
3440
- height: 16px;
3441
- width: 0;
3442
- }
3443
-
3444
- #uploadProgressContainer .progressBarError {
3445
- background: #F00 image-url('alchemy/shading.png') repeat-x 0 -75px;
3446
- height: 16px;
3447
- width: 0;
3448
- }
3449
-
3450
- #uploadProgressContainer .progressBarCanceled {
3451
- background: #E4E4E4 image-url('alchemy/shading.png') repeat-x 0 -75px;
3452
- height: 16px;
3453
- width: 0;
3454
- }
3455
-
3456
- #uploadProgressContainer .progressCancel {
3457
- background: #f1f1f1 image-url('alchemy/icons.png') no-repeat -1px -72px;
3458
- border: 1px solid #9e9e9e;
3459
- @include rounded-corner;
3460
- width: 15px;
3461
- height: 16px;
3462
- position: absolute;
3463
- top: 8px;
3464
- right: 8px;
3465
- }
3466
-
3467
- #swf_upload_container {
3468
- height: 60px;
3469
- }
3470
-
3471
- #swf_upload_container .button {
3472
- float: right;
3473
- margin-top: 4*$default-margin;
3474
- font-size: 11px;
3475
- }
3476
-
3477
- object.swfupload {
3478
- margin-top: 16px;
3479
- margin-bottom: 16px;
3480
- }
3481
-
3482
1478
  #alchemy .ui-dialog #alchemyConfirmation.ui-dialog-content {
3483
1479
  padding: 2*$default-padding;
3484
1480
  }
@@ -3507,3 +1503,8 @@ object.swfupload {
3507
1503
  .mceEditor table {
3508
1504
  border-spacing: 0 !important;
3509
1505
  }
1506
+
1507
+ #sitemap_heading span.page_name {
1508
+ margin-left: 24px;
1509
+ line-height: 28px;
1510
+ }