alchemy_cms 2.0.pre2 → 2.0.pre3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (195) hide show
  1. data/.gitignore +5 -1
  2. data/Gemfile +3 -0
  3. data/Rakefile +16 -14
  4. data/{alchemy.gemspec → alchemy_cms.gemspec} +1 -1
  5. data/app/models/message.rb +1 -1
  6. data/app/views/elements/_searchresult_view.html.erb +1 -1
  7. data/config/initializers/fast_gettext.rb +1 -1
  8. data/config/routes.rb +3 -0
  9. data/lib/alchemy/version.rb +1 -1
  10. data/lib/{alchemy.rb → alchemy_cms.rb} +0 -0
  11. data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +2 -2
  12. data/lib/rails/templates/alchemy.rb +1 -1
  13. data/spec/alchemy_spec.rb +7 -0
  14. data/spec/config_spec.rb +7 -0
  15. data/spec/dummy/Rakefile +7 -0
  16. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  17. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  18. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/spec/dummy/config.ru +4 -0
  20. data/spec/dummy/config/alchemy/config.yml +199 -0
  21. data/spec/dummy/config/alchemy/elements.yml +91 -0
  22. data/spec/dummy/config/alchemy/page_layouts.yml +29 -0
  23. data/spec/dummy/config/application.rb +45 -0
  24. data/spec/dummy/config/boot.rb +10 -0
  25. data/spec/dummy/config/database.yml +22 -0
  26. data/spec/dummy/config/environment.rb +5 -0
  27. data/spec/dummy/config/environments/development.rb +26 -0
  28. data/spec/dummy/config/environments/production.rb +49 -0
  29. data/spec/dummy/config/environments/test.rb +35 -0
  30. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/spec/dummy/config/initializers/inflections.rb +10 -0
  32. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  33. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  34. data/spec/dummy/config/initializers/session_store.rb +8 -0
  35. data/spec/dummy/config/locales/en.yml +5 -0
  36. data/spec/dummy/config/routes.rb +58 -0
  37. data/spec/dummy/db/schema.rb +267 -0
  38. data/spec/dummy/log/production.log +0 -0
  39. data/spec/dummy/log/server.log +0 -0
  40. data/spec/dummy/public/404.html +26 -0
  41. data/spec/dummy/public/422.html +26 -0
  42. data/spec/dummy/public/500.html +26 -0
  43. data/spec/dummy/public/favicon.ico +0 -0
  44. data/spec/dummy/public/images/alchemy/ajax_loader.gif +0 -0
  45. data/spec/dummy/public/images/alchemy/alchemy-logo.png +0 -0
  46. data/spec/dummy/public/images/alchemy/flags.png +0 -0
  47. data/spec/dummy/public/images/alchemy/gui/navi-tab.png +0 -0
  48. data/spec/dummy/public/images/alchemy/gui/shading.png +0 -0
  49. data/spec/dummy/public/images/alchemy/gui/shading_90.png +0 -0
  50. data/spec/dummy/public/images/alchemy/gui/toggle.png +0 -0
  51. data/spec/dummy/public/images/alchemy/icons.png +0 -0
  52. data/spec/dummy/public/images/alchemy/jquery-sb/select_arrow.gif +0 -0
  53. data/spec/dummy/public/images/alchemy/jquery-sb/select_arrow_bg.gif +0 -0
  54. data/spec/dummy/public/images/alchemy/jquery-sb/select_arrow_bg_hover.gif +0 -0
  55. data/spec/dummy/public/images/alchemy/jquery-ui/ui-icons_666666_256x240.png +0 -0
  56. data/spec/dummy/public/images/alchemy/placeholder.png +0 -0
  57. data/spec/dummy/public/images/alchemy/swfupload/browse_button.png +0 -0
  58. data/spec/dummy/public/javascripts/alchemy/alchemy.element_editor_selector.js +88 -0
  59. data/spec/dummy/public/javascripts/alchemy/alchemy.growler.js +44 -0
  60. data/spec/dummy/public/javascripts/alchemy/alchemy.image_cropper.js +56 -0
  61. data/spec/dummy/public/javascripts/alchemy/alchemy.js +892 -0
  62. data/spec/dummy/public/javascripts/alchemy/alchemy.link_overlay.js +221 -0
  63. data/spec/dummy/public/javascripts/alchemy/alchemy.page_sorter.js +42 -0
  64. data/spec/dummy/public/javascripts/alchemy/alchemy.preview.js +145 -0
  65. data/spec/dummy/public/javascripts/alchemy/jquery-ui.js +428 -0
  66. data/spec/dummy/public/javascripts/alchemy/jquery.Jcrop.min.js +246 -0
  67. data/spec/dummy/public/javascripts/alchemy/jquery.dialogextend.min.js +8 -0
  68. data/spec/dummy/public/javascripts/alchemy/jquery.in-place-edit.js +171 -0
  69. data/spec/dummy/public/javascripts/alchemy/jquery.js +18 -0
  70. data/spec/dummy/public/javascripts/alchemy/jquery.rails.js +315 -0
  71. data/spec/dummy/public/javascripts/alchemy/jquery.sb.min.js +14 -0
  72. data/spec/dummy/public/javascripts/alchemy/jquery.scrollTo-1.4.2-min.js +11 -0
  73. data/spec/dummy/public/javascripts/alchemy/jquery.ui.nestedSortable.js +291 -0
  74. data/spec/dummy/public/javascripts/alchemy/jquery.ui.tabspaging.js +281 -0
  75. data/spec/dummy/public/javascripts/alchemy/swfupload/fileprogress.js +203 -0
  76. data/spec/dummy/public/javascripts/alchemy/swfupload/handlers.js +171 -0
  77. data/spec/dummy/public/javascripts/alchemy/swfupload/queue.js +98 -0
  78. data/spec/dummy/public/javascripts/alchemy/swfupload/swfupload.js +980 -0
  79. data/spec/dummy/public/javascripts/alchemy/swfupload/swfupload.swf +0 -0
  80. data/spec/dummy/public/javascripts/alchemy/tiny_mce/jquery.tinymce.js +1 -0
  81. data/spec/dummy/public/javascripts/alchemy/tiny_mce/langs/de.js +1 -0
  82. data/spec/dummy/public/javascripts/alchemy/tiny_mce/langs/en.js +223 -0
  83. data/spec/dummy/public/javascripts/alchemy/tiny_mce/license.txt +504 -0
  84. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/alchemy_link/editor_plugin.js +43 -0
  85. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/alchemy_link/langs/de.js +4 -0
  86. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/alchemy_link/langs/en.js +4 -0
  87. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
  88. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/fullscreen/fullscreen.htm +109 -0
  89. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
  90. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css +402 -0
  91. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/inlinepopups/template.htm +387 -0
  92. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/lists/editor_plugin.js +1 -0
  93. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/editor_plugin.js +1 -0
  94. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/js/pastetext.js +36 -0
  95. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/js/pasteword.js +51 -0
  96. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/langs/de_dlg.js +1 -0
  97. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
  98. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/pastetext.htm +27 -0
  99. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/pasteword.htm +21 -0
  100. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/cell.htm +180 -0
  101. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/css/cell.css +17 -0
  102. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/css/row.css +25 -0
  103. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/css/table.css +13 -0
  104. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/editor_plugin.js +1 -0
  105. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/cell.js +319 -0
  106. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/merge_cells.js +27 -0
  107. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/row.js +237 -0
  108. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/table.js +450 -0
  109. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/langs/de_dlg.js +1 -0
  110. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/langs/en_dlg.js +75 -0
  111. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/merge_cells.htm +32 -0
  112. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/row.htm +158 -0
  113. data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/table.htm +188 -0
  114. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/about.htm +52 -0
  115. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/anchor.htm +26 -0
  116. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/charmap.htm +51 -0
  117. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/color_picker.htm +74 -0
  118. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/editor_template.js +1 -0
  119. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/image.htm +80 -0
  120. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
  121. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/flash.gif +0 -0
  122. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/icons.gif +0 -0
  123. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/iframe.gif +0 -0
  124. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/pagebreak.gif +0 -0
  125. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/quicktime.gif +0 -0
  126. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/realmedia.gif +0 -0
  127. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/shockwave.gif +0 -0
  128. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/trans.gif +0 -0
  129. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/video.gif +0 -0
  130. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/windowsmedia.gif +0 -0
  131. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/about.js +73 -0
  132. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/anchor.js +42 -0
  133. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/charmap.js +355 -0
  134. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/color_picker.js +329 -0
  135. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/image.js +247 -0
  136. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/link.js +153 -0
  137. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/source_editor.js +56 -0
  138. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/de.js +1 -0
  139. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/de_dlg.js +1 -0
  140. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/en.js +68 -0
  141. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/en_dlg.js +54 -0
  142. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/link.htm +57 -0
  143. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/shortcuts.htm +47 -0
  144. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/content.css +47 -0
  145. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/dialog.css +117 -0
  146. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
  147. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
  148. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  149. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
  150. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
  151. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
  152. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/ui.css +214 -0
  153. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/highcontrast/content.css +23 -0
  154. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
  155. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/highcontrast/ui.css +102 -0
  156. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/content.css +46 -0
  157. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/dialog.css +117 -0
  158. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  159. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  160. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  161. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/ui.css +217 -0
  162. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
  163. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  164. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/source_editor.htm +25 -0
  165. data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/simple/langs/de.js +1 -0
  166. data/spec/dummy/public/javascripts/alchemy/tiny_mce/tiny_mce.js +1 -0
  167. data/spec/dummy/public/javascripts/alchemy/tiny_mce/tiny_mce_popup.js +5 -0
  168. data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/editable_selects.js +70 -0
  169. data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/form_utils.js +210 -0
  170. data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/mctabs.js +162 -0
  171. data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/validate.js +252 -0
  172. data/spec/dummy/public/javascripts/application.js +2 -0
  173. data/spec/dummy/public/javascripts/controls.js +965 -0
  174. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  175. data/spec/dummy/public/javascripts/effects.js +1123 -0
  176. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  177. data/spec/dummy/public/javascripts/rails.js +191 -0
  178. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  179. data/spec/dummy/public/stylesheets/alchemy/Jcrop.gif +0 -0
  180. data/spec/dummy/public/stylesheets/alchemy/alchemy.css +3629 -0
  181. data/spec/dummy/public/stylesheets/alchemy/alchemy_tinymce_content.css +94 -0
  182. data/spec/dummy/public/stylesheets/alchemy/alchemy_tinymce_dialog.css +415 -0
  183. data/spec/dummy/public/stylesheets/alchemy/default/img/tabs.gif +0 -0
  184. data/spec/dummy/public/stylesheets/alchemy/elements.css +900 -0
  185. data/spec/dummy/public/stylesheets/alchemy/flags.css +1 -0
  186. data/spec/dummy/public/stylesheets/alchemy/ie6.css +18 -0
  187. data/spec/dummy/public/stylesheets/alchemy/jquery-ui-1.8.7.alchemy.css +2023 -0
  188. data/spec/dummy/public/stylesheets/alchemy/jquery.Jcrop.css +35 -0
  189. data/spec/dummy/public/stylesheets/alchemy/jquery.sb.css +244 -0
  190. data/spec/dummy/public/stylesheets/alchemy/standard_set.css +374 -0
  191. data/spec/dummy/script/rails +6 -0
  192. data/spec/integration/navigation_spec.rb +9 -0
  193. data/spec/integration/security_spec.rb +25 -0
  194. data/spec/spec_helper.rb +40 -0
  195. metadata +371 -8
@@ -0,0 +1,191 @@
1
+ (function() {
2
+ // Technique from Juriy Zaytsev
3
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
4
+ function isEventSupported(eventName) {
5
+ var el = document.createElement('div');
6
+ eventName = 'on' + eventName;
7
+ var isSupported = (eventName in el);
8
+ if (!isSupported) {
9
+ el.setAttribute(eventName, 'return;');
10
+ isSupported = typeof el[eventName] == 'function';
11
+ }
12
+ el = null;
13
+ return isSupported;
14
+ }
15
+
16
+ function isForm(element) {
17
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM'
18
+ }
19
+
20
+ function isInput(element) {
21
+ if (Object.isElement(element)) {
22
+ var name = element.nodeName.toUpperCase()
23
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA'
24
+ }
25
+ else return false
26
+ }
27
+
28
+ var submitBubbles = isEventSupported('submit'),
29
+ changeBubbles = isEventSupported('change')
30
+
31
+ if (!submitBubbles || !changeBubbles) {
32
+ // augment the Event.Handler class to observe custom events when needed
33
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
34
+ function(init, element, eventName, selector, callback) {
35
+ init(element, eventName, selector, callback)
36
+ // is the handler being attached to an element that doesn't support this event?
37
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
38
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
39
+ // "submit" => "emulated:submit"
40
+ this.eventName = 'emulated:' + this.eventName
41
+ }
42
+ }
43
+ )
44
+ }
45
+
46
+ if (!submitBubbles) {
47
+ // discover forms on the page by observing focus events which always bubble
48
+ document.on('focusin', 'form', function(focusEvent, form) {
49
+ // special handler for the real "submit" event (one-time operation)
50
+ if (!form.retrieve('emulated:submit')) {
51
+ form.on('submit', function(submitEvent) {
52
+ var emulated = form.fire('emulated:submit', submitEvent, true)
53
+ // if custom event received preventDefault, cancel the real one too
54
+ if (emulated.returnValue === false) submitEvent.preventDefault()
55
+ })
56
+ form.store('emulated:submit', true)
57
+ }
58
+ })
59
+ }
60
+
61
+ if (!changeBubbles) {
62
+ // discover form inputs on the page
63
+ document.on('focusin', 'input, select, texarea', function(focusEvent, input) {
64
+ // special handler for real "change" events
65
+ if (!input.retrieve('emulated:change')) {
66
+ input.on('change', function(changeEvent) {
67
+ input.fire('emulated:change', changeEvent, true)
68
+ })
69
+ input.store('emulated:change', true)
70
+ }
71
+ })
72
+ }
73
+
74
+ function handleRemote(element) {
75
+ var method, url, params;
76
+
77
+ var event = element.fire("ajax:before");
78
+ if (event.stopped) return false;
79
+
80
+ if (element.tagName.toLowerCase() === 'form') {
81
+ method = element.readAttribute('method') || 'post';
82
+ url = element.readAttribute('action');
83
+ params = element.serialize();
84
+ } else {
85
+ method = element.readAttribute('data-method') || 'get';
86
+ url = element.readAttribute('href');
87
+ params = {};
88
+ }
89
+
90
+ new Ajax.Request(url, {
91
+ method: method,
92
+ parameters: params,
93
+ evalScripts: true,
94
+
95
+ onComplete: function(request) { element.fire("ajax:complete", request); },
96
+ onSuccess: function(request) { element.fire("ajax:success", request); },
97
+ onFailure: function(request) { element.fire("ajax:failure", request); }
98
+ });
99
+
100
+ element.fire("ajax:after");
101
+ }
102
+
103
+ function handleMethod(element) {
104
+ var method = element.readAttribute('data-method'),
105
+ url = element.readAttribute('href'),
106
+ csrf_param = $$('meta[name=csrf-param]')[0],
107
+ csrf_token = $$('meta[name=csrf-token]')[0];
108
+
109
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
110
+ element.parentNode.insert(form);
111
+
112
+ if (method !== 'post') {
113
+ var field = new Element('input', { type: 'hidden', name: '_method', value: method });
114
+ form.insert(field);
115
+ }
116
+
117
+ if (csrf_param) {
118
+ var param = csrf_param.readAttribute('content'),
119
+ token = csrf_token.readAttribute('content'),
120
+ field = new Element('input', { type: 'hidden', name: param, value: token });
121
+ form.insert(field);
122
+ }
123
+
124
+ form.submit();
125
+ }
126
+
127
+
128
+ document.on("click", "*[data-confirm]", function(event, element) {
129
+ var message = element.readAttribute('data-confirm');
130
+ if (!confirm(message)) event.stop();
131
+ });
132
+
133
+ document.on("click", "a[data-remote]", function(event, element) {
134
+ if (event.stopped) return;
135
+ handleRemote(element);
136
+ event.stop();
137
+ });
138
+
139
+ document.on("click", "a[data-method]", function(event, element) {
140
+ if (event.stopped) return;
141
+ handleMethod(element);
142
+ event.stop();
143
+ });
144
+
145
+ document.on("submit", function(event) {
146
+ var element = event.findElement(),
147
+ message = element.readAttribute('data-confirm');
148
+ if (message && !confirm(message)) {
149
+ event.stop();
150
+ return false;
151
+ }
152
+
153
+ var inputs = element.select("input[type=submit][data-disable-with]");
154
+ inputs.each(function(input) {
155
+ input.disabled = true;
156
+ input.writeAttribute('data-original-value', input.value);
157
+ input.value = input.readAttribute('data-disable-with');
158
+ });
159
+
160
+ var element = event.findElement("form[data-remote]");
161
+ if (element) {
162
+ handleRemote(element);
163
+ event.stop();
164
+ }
165
+ });
166
+
167
+ document.on("ajax:after", "form", function(event, element) {
168
+ var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
169
+ inputs.each(function(input) {
170
+ input.value = input.readAttribute('data-original-value');
171
+ input.removeAttribute('data-original-value');
172
+ input.disabled = false;
173
+ });
174
+ });
175
+
176
+ Ajax.Responders.register({
177
+ onCreate: function(request) {
178
+ var csrf_meta_tag = $$('meta[name=csrf-token]')[0];
179
+
180
+ if (csrf_meta_tag) {
181
+ var header = 'X-CSRF-Token',
182
+ token = csrf_meta_tag.readAttribute('content');
183
+
184
+ if (!request.options.requestHeaders) {
185
+ request.options.requestHeaders = {};
186
+ }
187
+ request.options.requestHeaders[header] = token;
188
+ }
189
+ }
190
+ });
191
+ })();
File without changes
@@ -0,0 +1,3629 @@
1
+ /* @override http://localhost:3000/stylesheets/alchemy/alchemy.css */
2
+
3
+ html {
4
+ height: 100%;
5
+ }
6
+
7
+ #sitemap_heading span.page_name {
8
+ margin-left: 24px;
9
+ line-height: 28px;
10
+ }
11
+
12
+ body#alchemy {
13
+ margin: 0;
14
+ padding: 0;
15
+ color: #333;
16
+ font: 12px "Lucida Grande", Arial, sans-serif;
17
+ background-color: #ededed;
18
+ height: 100%;
19
+ cursor: default;
20
+ }
21
+
22
+ a {
23
+ color: #333;
24
+ text-decoration: none;
25
+ }
26
+
27
+ a:hover {
28
+ text-decoration: underline;
29
+ }
30
+
31
+ a img {
32
+ border: none;
33
+ }
34
+
35
+ div#flash_notices {
36
+ position: fixed;
37
+ right: 0;
38
+ z-index: 400000;
39
+ width: 348px;
40
+ top: 0;
41
+ }
42
+
43
+ div#flash_notices div.flash {
44
+ width: 300px;
45
+ padding: 8px 8px 8px 30px;
46
+ font-weight: bold;
47
+ border-width: 1px;
48
+ border-style: solid;
49
+ -webkit-border-radius: 4px;
50
+ -moz-border-radius: 4px;
51
+ border-radius: 4px;
52
+ z-index: 1000;
53
+ opacity: 0.95;
54
+ filter: alpha(opacity=95);
55
+ margin: 4px;
56
+ position: relative;
57
+ max-height: 64px;
58
+ }
59
+
60
+ div#flash_notices div.flash span.icon {
61
+ position: absolute;
62
+ top: 8px;
63
+ left: 8px;
64
+ }
65
+
66
+ div#flash_notices div.flash.notice {
67
+ border-color: #9cc4a1;
68
+ color: #2e5934;
69
+ background-color: #e2efd3;
70
+ }
71
+
72
+ div#flash_notices div.flash.error {
73
+ border-color: #c49c9c;
74
+ color: #592e2e;
75
+ background-color: #efd3d3;
76
+ }
77
+
78
+ div#flash_notices div.flash.info {
79
+ border-color: #8392b5;
80
+ color: #233772;
81
+ background-color: #cadbf3;
82
+ }
83
+
84
+ div#flash_notices div.flash.warn {
85
+ border-color: #c4c19c;
86
+ color: #726d23;
87
+ background-color: #f3f0c1;
88
+ }
89
+
90
+ div.login_signup_box {
91
+ width: 380px;
92
+ padding: 16px;
93
+ border: 1px solid #9a9a9a;
94
+ background-color: #dedede;
95
+ -webkit-border-radius: 3px;
96
+ -moz-border-radius: 3px;
97
+ -o-border-radius: 3px;
98
+ border-radius: 3px;
99
+ -webkit-box-shadow: 1px 1px 8px rgba(0, 3, 51, 0.5);
100
+ -moz-box-shadow: 1px 1px 8px rgba(0, 3, 51, 0.5);
101
+ -o-box-shadow: 1px 1px 8px rgba(0, 3, 51, 0.5);
102
+ box-shadow: 1px 1px 8px rgba(0, 3, 51, 0.5);
103
+ margin: 2em auto;
104
+ }
105
+
106
+ #login table tbody tr td.label {
107
+ width: 155px;
108
+ }
109
+
110
+ #alchemy_greeting h1 {
111
+ margin-top: 1em;
112
+ margin-bottom: 0;
113
+ font-size: 1.2em;
114
+ }
115
+
116
+ td.submit {
117
+ text-align: right;
118
+ }
119
+
120
+ form#login.new_user_session {
121
+ text-align: right;
122
+ }
123
+
124
+ #login .thin_border {
125
+ width: 195px;
126
+ float: right;
127
+ }
128
+
129
+ #login_notice {
130
+ overflow: auto;
131
+ padding: 8px;
132
+ background-color: #fff;
133
+ text-align: left;
134
+ }
135
+
136
+ #login label {
137
+ margin-right: 8px;
138
+ }
139
+
140
+ .float_right {
141
+ float: right;
142
+ }
143
+
144
+ .float_left {
145
+ float: left;
146
+ }
147
+
148
+ /* @group overlay */
149
+
150
+ div#overlay {
151
+ visibility: hidden;
152
+ position: absolute;
153
+ left: 0px;
154
+ top: 0px;
155
+ width: 100%;
156
+ height: 100%;
157
+ z-index: 400000;
158
+ background-color: rgba(255,255,255,0.6);
159
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#60FFFFFF, endColorstr=#60FFFFFF);
160
+ }
161
+
162
+ #user_list li.table_row div.table_left span.icon img {
163
+ width: 16px;
164
+ height: 16px;
165
+ position: relative;
166
+ top: 1px;
167
+ left: -1px;
168
+ }
169
+
170
+ div#overlay_text_box {
171
+ color: #333;
172
+ font-size: 18px;
173
+ text-align: center;
174
+ margin-top: 25%;
175
+ }
176
+
177
+ div#overlay_text_box img {
178
+ position: relative;
179
+ top: 9px;
180
+ }
181
+
182
+ /* @end */
183
+
184
+ /* @group top_frame */
185
+
186
+ #corner {
187
+ z-index: 15;
188
+ width: 65px;
189
+ height: 16px;
190
+ position: fixed;
191
+ left: 0;
192
+ top: 0;
193
+ background: url(/images/alchemy/gui/shading.png) repeat-x 0 -2px;
194
+ font-size: 0;
195
+ }
196
+
197
+ #preview_frame {
198
+ background-color: white;
199
+ width: 100%;
200
+ height: 100%;
201
+ position: relative;
202
+ top: 84px;
203
+ }
204
+
205
+ div#top_menu {
206
+ position: fixed;
207
+ top: 0;
208
+ left: 65px;
209
+ z-index: 5;
210
+ width: 93%;
211
+ }
212
+
213
+ #main_menu {
214
+ white-space: nowrap;
215
+ z-index: 5;
216
+ height: 100%;
217
+ position: fixed;
218
+ top: 0;
219
+ left: 0;
220
+ width: 65px;
221
+ overflow: hidden;
222
+ }
223
+
224
+ #main_menu_background {
225
+ height: 100%;
226
+ background: #b2ccdb url(/images/alchemy/gui/shading_90.png) repeat-y -15px;
227
+ z-index: 0;
228
+ position: absolute;
229
+ width: 65px;
230
+ }
231
+
232
+ #logout {
233
+ position: absolute;
234
+ z-index: 1;
235
+ bottom: 0;
236
+ left: 0;
237
+ text-align: center;
238
+ width: 65px;
239
+ padding-top: 4px;
240
+ padding-bottom: 8px;
241
+ }
242
+
243
+ #logout a {
244
+ display: block;
245
+ }
246
+
247
+ #logout a:hover {
248
+ text-decoration: none;
249
+ }
250
+
251
+ #logout img {
252
+ margin-bottom: 4px;
253
+ }
254
+
255
+ /* @end */
256
+
257
+ #main_content {
258
+ background-color: #ededed;
259
+ position: absolute;
260
+ top: 90px;
261
+ left: 65px;
262
+ z-index: 0;
263
+ width: 93%;
264
+ }
265
+
266
+ div#user_info {
267
+ position: absolute;
268
+ z-index: 10;
269
+ line-height: 27px;
270
+ font-size: 11px;
271
+ right: 10px;
272
+ top: 0;
273
+ }
274
+
275
+ div#sideboard {
276
+ float: right;
277
+ width: 240px;
278
+ padding-right: 16px;
279
+ }
280
+
281
+ div#license {
282
+ overflow: auto;
283
+ height: 24em;
284
+ background-color: white;
285
+ }
286
+
287
+ ul {
288
+ padding-left: 16px;
289
+ margin-top: 1em;
290
+ margin-bottom: 1em;
291
+ }
292
+
293
+ ul li {
294
+ margin-bottom: 0.5em;
295
+ }
296
+
297
+ #dashboard {
298
+ overflow: auto;
299
+ float: left;
300
+ padding: 0 16px 16px;
301
+ width: 50%;
302
+ }
303
+
304
+ span.updated_at {
305
+ float: right;
306
+ }
307
+
308
+ div.widget {
309
+ padding: 8px;
310
+ margin: 16px 0;
311
+ background-color: #e3e3e3;
312
+ -webkit-border-radius: 3px;
313
+ -moz-border-radius: 3px;
314
+ -o-border-radius: 3px;
315
+ border-radius: 3px;
316
+ -webkit-box-shadow: 0px 0px 4px rgba(0, 3, 51, 0.2);
317
+ -moz-box-shadow: 0px 0px 4px rgba(0, 3, 51, 0.2);
318
+ -o-box-shadow: 0px 0px 4px rgba(0, 3, 51, 0.2);
319
+ box-shadow: 0px 0px 4px rgba(0, 3, 51, 0.2);
320
+ border: 1px solid #afafaf;
321
+ }
322
+
323
+ div.widget p {
324
+ margin: 4px 0;
325
+ }
326
+
327
+ #dashboard div.widget ul {
328
+ padding: 0;
329
+ list-style-type: none;
330
+ -webkit-border-radius: 3px;
331
+ -moz-border-radius: 3px;
332
+ -o-border-radius: 3px;
333
+ border-radius: 3px;
334
+ margin-right: -9px;
335
+ margin-left: -9px;
336
+ margin-bottom: -9px;
337
+ border: 1px solid #afafaf;
338
+ }
339
+
340
+ #dashboard div.widget ul li {
341
+ padding: 8px;
342
+ margin-bottom: 0;
343
+ }
344
+
345
+ #dashboard div.widget ul li form {
346
+ display: inline;
347
+ position: relative;
348
+ }
349
+
350
+ #dashboard div.widget ul li button {
351
+ position: relative;
352
+ top: 1px;
353
+ }
354
+
355
+ #dashboard div.widget ul li button .icon {
356
+ position: relative;
357
+ top: -1px;
358
+ right: 1px;
359
+ }
360
+
361
+ #dashboard div.widget h2 {
362
+ padding-bottom: 0;
363
+ margin-bottom: 0;
364
+ }
365
+
366
+ #dashboard h2 {
367
+ padding: 0;
368
+ margin-bottom: 2em;
369
+ }
370
+
371
+ #dashboard h1 {
372
+ font-size: 2em;
373
+ margin-bottom: 0;
374
+ text-shadow: #fff 1px 1px 2px;
375
+ }
376
+
377
+ div#alchemy_greeting {
378
+ width: 396px;
379
+ margin-right: auto;
380
+ margin-left: auto;
381
+ padding: 8px;
382
+ margin-top: 1em;
383
+ text-align: right;
384
+ }
385
+
386
+ #alchemy_greeting p {
387
+ margin-top: 1em;
388
+ margin-bottom: 1em;
389
+ }
390
+
391
+ #main_navi a.homepage_link {
392
+ color: white;
393
+ margin-left: 10px;
394
+ line-height: 32px;
395
+ }
396
+
397
+ a.drop_down_select img {
398
+ float: left;
399
+ position: relative;
400
+ top: 2px;
401
+ margin-right: 4px;
402
+ }
403
+
404
+ #alchemy a.search_field_clear {
405
+ width: 16px;
406
+ height: 16px;
407
+ background: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png) no-repeat -80px -128px;
408
+ position: absolute;
409
+ right: 8px;
410
+ top: 4px;
411
+ -webkit-border-radius: 3px;
412
+ -moz-border-radius: 3px;
413
+ border-radius: 3px;
414
+ }
415
+
416
+ #language_select {
417
+ margin-bottom: 4px;
418
+ }
419
+
420
+ .new_alchemy_element form .selectbox {
421
+ float: left;
422
+ line-height: normal;
423
+ margin-left: 8px;
424
+ width: 200px;
425
+ }
426
+
427
+ .js_filter_field_box {
428
+ position: relative;
429
+ float: right;
430
+ margin-left: 4px;
431
+ }
432
+
433
+ .js_filter_field_box .js_filter_field {
434
+ width: 170px;
435
+ text-align: left;
436
+ -webkit-border-radius: 12px;
437
+ -moz-border-radius: 12px;
438
+ border-radius: 12px;
439
+ padding: 3px 24px 2px;
440
+ }
441
+
442
+ #flags a img {
443
+ float: left;
444
+ position: relative;
445
+ top: 2px;
446
+ margin-right: 4px;
447
+ }
448
+
449
+ .js_filter_field_box label {
450
+ text-shadow: #fefefe 1px 1px 0;
451
+ font-size: 10px;
452
+ display: inline-block;
453
+ text-align: center;
454
+ }
455
+
456
+ .js_filter_field_box .js_filter_field_clear {
457
+ width: 15px;
458
+ height: 15px;
459
+ background: url(/images/alchemy/icons.png) no-repeat 0 -104px;
460
+ position: absolute;
461
+ right: 8px;
462
+ top: 4px;
463
+ -webkit-border-radius: 3px;
464
+ -moz-border-radius: 3px;
465
+ border-radius: 3px;
466
+ }
467
+
468
+ h1 {
469
+ margin: 0 0 10px;
470
+ padding: 0;
471
+ font-weight: bold;
472
+ font-size: 12px;
473
+ }
474
+
475
+ div.source_editor textarea{
476
+ width: 100%;
477
+ height: 358px;
478
+ }
479
+
480
+ div.edit_source_buttons {
481
+ height: 18px;
482
+ margin-top: 8px;
483
+ float: right;
484
+ clear: both;
485
+ }
486
+
487
+ table.list td.rights {
488
+ width: 60px;
489
+ }
490
+
491
+ h2 {
492
+ margin: 5px 0;
493
+ padding-bottom: 5px;
494
+ clear: both;
495
+ font-weight: bold;
496
+ font-size: 12px;
497
+ }
498
+
499
+ h3 {
500
+ margin: 5px 0;
501
+ padding-bottom: 5px;
502
+ font-size: 12px;
503
+ font-weight: bold;
504
+ }
505
+
506
+ p {
507
+ margin: 0 0 5px;
508
+ padding: 0;
509
+ font-size: 12px;
510
+ }
511
+
512
+ div.info {
513
+ padding: 8px 8px 8px 32px;
514
+ line-height: 17px;
515
+ color: #333;
516
+ border: 1px solid #0b5c84;
517
+ -webkit-border-radius: 3px;
518
+ -moz-border-radius: 3px;
519
+ -o-border-radius: 3px;
520
+ border-radius: 3px;
521
+ background-color: #eaf4f9;
522
+ position: relative;
523
+ margin-bottom: 8px;
524
+ }
525
+
526
+ div.info.footnote {
527
+ font-size: 10px;
528
+ margin: 16px;
529
+ }
530
+
531
+ div#bottom_panel {
532
+ position: fixed;
533
+ bottom: 0;
534
+ right: 0;
535
+ width: 100%;
536
+ z-index: 10;
537
+ background: #e3e3e3 url(../../images/alchemy/gui/shading.png) repeat-x 0 0;
538
+ }
539
+
540
+ div#bottom_panel div.info {
541
+ margin: 16px 16px 8px 81px;
542
+ width: 720px;
543
+ }
544
+
545
+ div#bottom_buttons {
546
+ padding: 0 16px 16px;
547
+ margin-left: 65px;
548
+ }
549
+
550
+ p.no_padding {
551
+ padding: 0;
552
+ margin: 0;
553
+ }
554
+
555
+ p.padding_bottom {
556
+ padding-bottom: 5px;
557
+ }
558
+
559
+ .padding_leftright {
560
+ padding-left: 8px;
561
+ padding-right: 8px;
562
+ }
563
+
564
+ .cancel_button_paddingleft {
565
+ padding-left: 5px;
566
+ }
567
+
568
+ div#page {
569
+ height: auto !important;
570
+ height: 100%;
571
+ min-height: 100%;
572
+ position: relative;
573
+ /* needed for footer positioning*/
574
+ }
575
+
576
+ #archive_all .edit_images_bottom span {
577
+ width: 19px;
578
+ height: 19px;
579
+ float: left;
580
+ margin-right: 4px;
581
+ }
582
+
583
+ #archive_all .edit_images_bottom span a{
584
+ display: block;
585
+ height: 19px;
586
+ width: 19px;
587
+ background-repeat: no-repeat;
588
+ text-decoration: none;
589
+ background-position: left;
590
+ }
591
+
592
+ #archive_all .edit_images_bottom span a:hover {
593
+ background-position: right;
594
+ }
595
+
596
+ .picture_tool_delete {
597
+ width: 16px;
598
+ height: 16px;
599
+ position: absolute;
600
+ background-color: white;
601
+ top: 4px;
602
+ right: 4px;
603
+ padding: 1px;
604
+ z-index: 1;
605
+ display: none;
606
+ }
607
+
608
+ .picture_tool_delete a {
609
+ display: block;
610
+ width: 16px;
611
+ height: 16px;
612
+ background: url(/images/alchemy/icons.png) no-repeat -31px -40px;
613
+ cursor: pointer;
614
+ }
615
+
616
+ div.tip {
617
+ background-color: #eff8d0;
618
+ border: 1px solid #cce21c;
619
+ padding: 8px;
620
+ margin: 8px 0;
621
+ -webkit-border-radius: 3px;
622
+ -moz-border-radius: 3px;
623
+ -o-border-radius: 3px;
624
+ border-radius: 3px;
625
+ width: 450px;
626
+ }
627
+
628
+ #back_to_site {
629
+ float: right;
630
+ margin-right: 8px;
631
+ }
632
+
633
+ #dashboard div.dashboard_tip h1 {
634
+ font-size: 1.2em;
635
+ }
636
+
637
+ #sub_navigation {
638
+ height: 22px;
639
+ line-height: 23px;
640
+ padding-left: 8px;
641
+ background: #b2ccdb url(/images/alchemy/gui/shading.png) repeat-x 0 -2px;
642
+ border-bottom: 1px solid #afafaf;
643
+ padding-top: 4px;
644
+ z-index: 5;
645
+ position: relative;
646
+ }
647
+
648
+ #subnav_additions {
649
+ height: 23px;
650
+ overflow: hidden;
651
+ }
652
+
653
+ #subnav_additions label {
654
+ float: left;
655
+ font-size: 10px;
656
+ line-height: 25px;
657
+ height: 25px;
658
+ margin-left: 8px;
659
+ margin-right: 4px;
660
+ }
661
+
662
+ #sub_navigation img {
663
+ float: left;
664
+ }
665
+
666
+ #sub_navigation span.page_status_and_name {
667
+ padding: 0 8px;
668
+ background-color: #e3e3e3;
669
+ text-shadow: #fff 0 1px 2px;
670
+ -webkit-user-select: none;
671
+ -moz-user-select: none;
672
+ -o-user-select: none;
673
+ user-select: none;
674
+ cursor: default;
675
+ line-height: 20px;
676
+ float: left;
677
+ -webkit-border-top-right-radius: 3px;
678
+ -webkit-border-top-left-radius: 3px;
679
+ -moz-border-radius: 3px 3px 0 0;
680
+ -o-border-radius: 3px 3px 0 0;
681
+ border-radius: 3px 3px 0 0;
682
+ border: 1px solid #afafaf;
683
+ border-bottom-style: none;
684
+ height: 22px;
685
+ -webkit-box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
686
+ -moz-box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
687
+ -o-box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
688
+ box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
689
+ }
690
+
691
+ #sub_navigation span.page_status_and_name .flag {
692
+ float: none;
693
+ position: relative;
694
+ display: inline-block;
695
+ bottom: 1px;
696
+ margin-right: 3px;
697
+ }
698
+
699
+ #sub_navigation span.page_status_and_name span.page_name {
700
+ position: relative;
701
+ margin-right: 16px;
702
+ margin-left: 4px;
703
+ line-height: 17px;
704
+ bottom: 2px;
705
+ }
706
+
707
+ #sub_navigation div.subnavi_tab {
708
+ float: left;
709
+ padding: 0px 8px;
710
+ height: 21px;
711
+ text-shadow: #fff 0 0px 4px;
712
+ background: #CCC;
713
+ color: #555;
714
+ -webkit-border-top-right-radius: 3px;
715
+ -webkit-border-top-left-radius: 3px;
716
+ -moz-border-radius: 3px 3px 0 0;
717
+ -o-border-radius: 3px 3px 0 0;
718
+ border-radius: 3px 3px 0 0;
719
+ border: 1px solid #afafaf;
720
+ border-bottom-style: none;
721
+ margin-right: 1px;
722
+ }
723
+
724
+ #sub_navigation div.subnavi_tab.wide {
725
+ position: relative;
726
+ padding-right: 24px;
727
+ }
728
+
729
+ #sub_navigation div.subnavi_tab.wide form {
730
+ position: absolute;
731
+ right: 3px;
732
+ top: 3px;
733
+ }
734
+
735
+ #sub_navigation a {
736
+ display: block;
737
+ }
738
+
739
+ #sub_navigation div.subnavi_tab:hover {
740
+ color: #333;
741
+ text-decoration: none;
742
+ background-color: #d8d8d8;
743
+ }
744
+
745
+ #sub_navigation div.subnavi_tab.active {
746
+ float: left;
747
+ position: relative;
748
+ padding: 0px 8px;
749
+ height: 22px;
750
+ color: #333;
751
+ background-color: #e3e3e3;
752
+ text-shadow: #fff 0 1px 2px;
753
+ -webkit-user-select: none;
754
+ -moz-user-select: none;
755
+ -o-user-select: none;
756
+ user-select: none;
757
+ cursor: default;
758
+ z-index: 10;
759
+ -webkit-box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
760
+ -moz-box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
761
+ -o-box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
762
+ box-shadow: 2px 0px 4px rgba(0, 3, 51, 0.2);
763
+ }
764
+
765
+ #sub_navigation a:hover {
766
+ text-decoration: none;
767
+ }
768
+
769
+ #archive_upload_delete {
770
+ float: right;
771
+ }
772
+
773
+ /* @group main_navi */
774
+
775
+ #main_navi {
776
+ padding-left: 4px;
777
+ padding-top: 26px;
778
+ position: absolute;
779
+ z-index: 1;
780
+ }
781
+
782
+ #main_menu a {
783
+ -webkit-user-select: none;
784
+ -moz-user-select: none;
785
+ user-select: none;
786
+ font-size: 10px;
787
+ }
788
+
789
+ #main_navi a.main_navi_entry {
790
+ color: #555;
791
+ position: relative;
792
+ text-align: center;
793
+ overflow: hidden;
794
+ display: block;
795
+ width: 60px;
796
+ background: #cdcdcd;
797
+ padding-top: 6px;
798
+ -webkit-border-top-left-radius: 3px 3px;
799
+ -webkit-border-bottom-left-radius: 3px 3px;
800
+ -moz-border-radius: 3px 0px 0px 3px;
801
+ -o-border-radius: 3px 0px 0px 3px;
802
+ border-radius: 3px 0px 0px 3px;
803
+ margin-bottom: 1px;
804
+ margin-top: 0;
805
+ border: 1px solid #afafaf;
806
+ border-right-style: none;
807
+ padding-bottom: 4px;
808
+ text-shadow: #fff 0 0px 4px;
809
+ }
810
+
811
+ #main_navi a.main_navi_entry:hover {
812
+ cursor: pointer;
813
+ text-decoration: none;
814
+ background: #d8d8d8;
815
+ }
816
+
817
+ #main_navi a.main_navi_entry img {
818
+ border-style: none;
819
+ height: 24px;
820
+ width: 24px;
821
+ display: inline-block;
822
+ margin-bottom: 4px;
823
+ margin-top: 2px;
824
+ }
825
+
826
+ #main_navi a.main_navi_entry.active {
827
+ background: #ededed;
828
+ color: #333;
829
+ cursor: default;
830
+ text-shadow: #fff 0 1px 2px;
831
+ -webkit-box-shadow: 0px 2px 4px rgba(0, 3, 51, 0.2);
832
+ -moz-box-shadow: 0px 2px 4px rgba(0, 3, 51, 0.2);
833
+ -o-box-shadow: 0px 2px 4px rgba(0, 3, 51, 0.2);
834
+ box-shadow: 0px 2px 4px rgba(0, 3, 51, 0.2);
835
+ }
836
+
837
+ #main_navi #active img {
838
+ float: left;
839
+ position: relative;
840
+ top: 3px;
841
+ }
842
+
843
+ #active span {
844
+ float: left;
845
+ padding: 0;
846
+ margin: 3px 0 0 8px;
847
+ }
848
+
849
+ /* @end */
850
+
851
+ /* @group Sitemap */
852
+
853
+ .sitemap_pagename_link {
854
+ background-color: #FFFFFF;
855
+ color: black;
856
+ display: block;
857
+ padding-left: 4px;
858
+ text-decoration: none;
859
+ }
860
+
861
+ .sitemap_pagename_link.inactive {
862
+ color: #656565;
863
+ }
864
+
865
+ .redirect_url {
866
+ position: absolute;
867
+ top: 4px;
868
+ right: 184px;
869
+ text-align: right;
870
+ background-color: #fff0c4;
871
+ line-height: 22px;
872
+ padding-right: 4px;
873
+ font-size: 10px;
874
+ padding-left: 4px;
875
+ }
876
+
877
+ .sitemap_pagename_link.odd {
878
+ background-color: #fff;
879
+ }
880
+
881
+ a.sitemap_pagename_link:hover {
882
+ text-decoration: underline;
883
+ }
884
+
885
+ div#page_selector_container a.sitemap_pagename_link:hover {
886
+ text-decoration: none;
887
+ }
888
+
889
+ a.sitemap_pagename_link:hover:after {
890
+ content: '';
891
+ width: 16px;
892
+ height: 16px;
893
+ float: left;
894
+ margin-right: 4px;
895
+ background: url(/images/alchemy/icons.png) -32px -104px;
896
+ margin-top: 4px;
897
+ }
898
+
899
+ div#page_selector_container a.sitemap_pagename_link:hover:after {
900
+ display: none;
901
+ }
902
+
903
+ .sitemap_line_spacer {
904
+ float: left;
905
+ width: 20px;
906
+ height: 28px;
907
+ }
908
+
909
+ ul#sitemap ul {
910
+ margin: 0;
911
+ padding: 0;
912
+ display: block;
913
+ }
914
+
915
+ ul#sitemap li,
916
+ ul#layoutpages li {
917
+ list-style-type: none;
918
+ display: block;
919
+ margin-left: 0;
920
+ margin-bottom: 0;
921
+ line-height: 22px;
922
+ }
923
+
924
+ ul#sitemap li {
925
+ padding-left: 22px;
926
+ padding-right: 0;
927
+ }
928
+
929
+ ul#layoutpages li {
930
+ padding: 0;
931
+ }
932
+
933
+ div.sitemap_page {
934
+ height: 22px;
935
+ padding-bottom: 4px;
936
+ padding-top: 4px;
937
+ position: relative;
938
+ }
939
+
940
+ div.sitemap_page:hover a.sitemap_pagename_link {
941
+ background-color: #fdffdf;
942
+ }
943
+
944
+ div.sitemap_left_images {
945
+ margin-top: 3px;
946
+ float: left;
947
+ margin-right: 8px;
948
+ background-color: #ededed;
949
+ }
950
+
951
+ #sitemap a.page_folder {
952
+ background-image: url(/images/alchemy/gui/toggle.png);
953
+ background-repeat: no-repeat;
954
+ height: 9px;
955
+ width: 9px;
956
+ font-size: 0;
957
+ float: left;
958
+ margin-left: -18px;
959
+ margin-top: 3px;
960
+ }
961
+
962
+ #sitemap a.page_folder.collapsed {
963
+ background-position: 0 0;
964
+ }
965
+
966
+ #sitemap a.page_folder.folded {
967
+ background-position: -9px 0;
968
+ }
969
+
970
+ div.sitemap_right_tools {
971
+ height: 22px;
972
+ background-color: #ededed;
973
+ padding-left: 16px;
974
+ float: right;
975
+ width: 100px;
976
+ }
977
+
978
+ div#page_selector_container div.sitemap_right_tools {
979
+ width: 24px;
980
+ }
981
+
982
+ ul#sitemap li .sitemap_toolrow,
983
+ ul.list li .sitemap_toolrow {
984
+ margin: 0;
985
+ overflow: auto;
986
+ padding: 4px 0;
987
+ }
988
+
989
+ ul#sitemap .sitemap_sitename,
990
+ ul.list .sitemap_sitename {
991
+ -moz-border-radius: 3px 2px 2px 2px;
992
+ background-color: #EDEDED;
993
+ height: 22px;
994
+ line-height: 22px;
995
+ overflow: hidden;
996
+ }
997
+
998
+ div.page_infos {
999
+ -webkit-border-radius: 0 3px 3px 0;
1000
+ -moz-border-radius: 0 3px 3px 0;
1001
+ border-radius: 0 3px 3px 0;
1002
+ background-color: #FFFFFF;
1003
+ border-left: 1px solid #EDEDED;
1004
+ float: right;
1005
+ height: 20px;
1006
+ padding: 1px;
1007
+ width: 66px;
1008
+ }
1009
+
1010
+ .page_status {
1011
+ width: 16px;
1012
+ height: 16px;
1013
+ background-repeat: no-repeat;
1014
+ float: left;
1015
+ margin: 2px 2px 0 4px;
1016
+ }
1017
+
1018
+ #sub_navigation span.page_status_and_name span.page_status {
1019
+ float: none;
1020
+ display: inline-block;
1021
+ position: relative;
1022
+ top: 1px;
1023
+ margin-left: 2px;
1024
+ }
1025
+
1026
+ span.page_status.restricted {
1027
+ background: url(/images/alchemy/icons.png) -128px -24px;
1028
+ }
1029
+
1030
+ span.page_status.not_restricted {
1031
+ background: url(/images/alchemy/icons.png) -144px -24px;
1032
+ opacity: 0.3;
1033
+ }
1034
+
1035
+ span.page_status.visible {
1036
+ background: url(/images/alchemy/icons.png) -65px -24px;
1037
+ }
1038
+
1039
+ span.page_status.not_visible {
1040
+ background: url(/images/alchemy/icons.png) -80px -24px;
1041
+ opacity: 0.3;
1042
+ }
1043
+
1044
+ span.page_status.public {
1045
+ background: url(/images/alchemy/icons.png) -96px -24px;
1046
+ }
1047
+
1048
+ span.page_status.not_public {
1049
+ background: url(/images/alchemy/icons.png) -112px -24px;
1050
+ opacity: 0.3;
1051
+ }
1052
+
1053
+ #sideboard div.sideboard_widget img {
1054
+ margin-bottom: 16px;
1055
+ float: none;
1056
+ }
1057
+
1058
+ .site_status {
1059
+ float: left;
1060
+ width: 16px;
1061
+ height: 16px;
1062
+ background: url(/images/alchemy/icons.png) no-repeat 0 -24px;
1063
+ }
1064
+
1065
+ .locked .site_status {
1066
+ background-position: -16px -24px;
1067
+ }
1068
+
1069
+ #sub_navigation span.page_status_and_name span.site_status {
1070
+ float: none;
1071
+ display: inline-block;
1072
+ margin-right: 4px;
1073
+ margin-left: 0;
1074
+ margin-bottom: 0;
1075
+ }
1076
+
1077
+ #sitemap img.link_arrow {
1078
+ float: right;
1079
+ text-align: right;
1080
+ }
1081
+
1082
+ ul#sitemap li img {
1083
+ border-width: 0;
1084
+ border-style: none;
1085
+ float: left;
1086
+ }
1087
+
1088
+ .sitemap_sitestatus {
1089
+ float: right;
1090
+ margin-top: 4px;
1091
+ }
1092
+
1093
+ /* @group site_tools */
1094
+
1095
+ .sitemap_line {
1096
+ float: left;
1097
+ width: 15px;
1098
+ height: 30px;
1099
+ margin: 0 2px 1px 4px;
1100
+ background: url(/images/alchemy/gui/sitemap_lines.png) no-repeat;
1101
+ }
1102
+
1103
+ a.folder_link {
1104
+ text-decoration: none;
1105
+ outline: none;
1106
+ }
1107
+
1108
+ .sitemap_sitetools {
1109
+ padding: 0;
1110
+ float: left;
1111
+ width: 70px;
1112
+ margin-left: 8px;
1113
+ }
1114
+
1115
+ .sitemap_right_tools a {
1116
+ float: left;
1117
+ width: 21px;
1118
+ height: 21px;
1119
+ }
1120
+
1121
+ .sitemap_sitetools .icon.blank {
1122
+ margin-left: 2px;
1123
+ float: left;
1124
+ margin-top: 3px;
1125
+ margin-right: 3px;
1126
+ }
1127
+
1128
+ .sitemap_right_tools span.icon {
1129
+ margin-top: 3px;
1130
+ margin-left: 2px;
1131
+ }
1132
+
1133
+ /* @end */
1134
+
1135
+ /* @end */
1136
+
1137
+ /* @group page_editing */
1138
+
1139
+ #page_names td {
1140
+ height: 22px;
1141
+ padding-bottom: 4px;
1142
+ vertical-align: top;
1143
+ }
1144
+
1145
+ #page_names textarea {
1146
+ height: 78px;
1147
+ }
1148
+
1149
+ /* @end */
1150
+
1151
+ div#new_page_from_clipboard {
1152
+ display: none;
1153
+ }
1154
+
1155
+ div#new_page_from_clipboard input.button {
1156
+ float: right;
1157
+ }
1158
+
1159
+ div#new_page_from_clipboard span {
1160
+ float: left;
1161
+ line-height: 25px;
1162
+ }
1163
+
1164
+ #page_editing_head .site_status {
1165
+ margin: 0 4px 0 0;
1166
+ float: left;
1167
+ }
1168
+
1169
+ div#page_status_options {
1170
+ float: left;
1171
+ }
1172
+
1173
+ form {
1174
+ margin-bottom: 0;
1175
+ }
1176
+
1177
+ div#page_editing_menu {
1178
+ overflow: auto;
1179
+ padding-left: 1px;
1180
+ padding-right: 1px;
1181
+ }
1182
+
1183
+ h2#sitemap_heading {
1184
+ padding: 0;
1185
+ margin: 16px 16px 0;
1186
+ }
1187
+
1188
+ #page_status_options .firstcol {
1189
+ float: left;
1190
+ }
1191
+
1192
+ #page_status_options .firstcol label {
1193
+ width: 80px;
1194
+ margin-right: 10px;
1195
+ }
1196
+
1197
+ #page_status_options .secondcol {
1198
+ float: left;
1199
+ margin-left: 16px;
1200
+ }
1201
+
1202
+ #page_status_options .secondcol label {
1203
+ width: 120px;
1204
+ margin-right: 5px;
1205
+ }
1206
+
1207
+ #page_status_options .thirdcol {
1208
+ float: right;
1209
+ font-size: 11px;
1210
+ text-align: right;
1211
+ width: 90px;
1212
+ }
1213
+
1214
+ div#userinfo {
1215
+ text-align: right;
1216
+ float: right;
1217
+ margin-right: 8px;
1218
+ }
1219
+
1220
+ #userinfo img {
1221
+ position: relative;
1222
+ top: 1px;
1223
+ }
1224
+
1225
+ div#user_list_legend {
1226
+ overflow: auto;
1227
+ padding: 1px 1px 4px;
1228
+ margin-bottom: 5px;
1229
+ border-bottom: 1px solid black;
1230
+ width: 370px;
1231
+ }
1232
+
1233
+ #toolbar {
1234
+ z-index: 10;
1235
+ padding: 6px;
1236
+ height: 40px;
1237
+ background: #e3e3e3 url(/images/alchemy/gui/shading.png) repeat-x 0 -40px;
1238
+ margin-right: 0px;
1239
+ border: 1px solid #afafaf;
1240
+ border-top-style: none;
1241
+ border-right-style: none;
1242
+ -webkit-border-radius: 0 0 0 3px;
1243
+ -moz-border-radius: 0 0 0 3px;
1244
+ -o-border-radius: 0 0 0 3px;
1245
+ border-radius: 0 0 0 3px;
1246
+ position: relative;
1247
+ margin-left: 8px;
1248
+ }
1249
+
1250
+ #toolbar form {
1251
+ margin: 0 0 0 8px;
1252
+ float: right;
1253
+ text-align: center;
1254
+ }
1255
+
1256
+ #toolbar div.button_with_label form {
1257
+ float: none;
1258
+ margin: 0;
1259
+ display: inline-block;
1260
+ }
1261
+
1262
+ #toolbar div.search_field {
1263
+ position: relative;
1264
+ float: left;
1265
+ margin-bottom: 4px;
1266
+ }
1267
+
1268
+ #toolbar div p {
1269
+ float: right;
1270
+ margin: 3px 4px 0 0;
1271
+ padding: 0;
1272
+ }
1273
+
1274
+ div#toolbar div.toolbar_spacer {
1275
+ float: left;
1276
+ width: 1px;
1277
+ height: 37px;
1278
+ border-right-style: dotted;
1279
+ border-right-width: 1px;
1280
+ margin-right: 8px;
1281
+ margin-left: 4px;
1282
+ }
1283
+
1284
+ div#toolbar a.button {
1285
+ width: 25px;
1286
+ height: 21px;
1287
+ text-decoration: none;
1288
+ float: right;
1289
+ border-width: 0;
1290
+ border-style: none;
1291
+ font-size: 0;
1292
+ padding: 0;
1293
+ background-repeat: no-repeat;
1294
+ background-position: 0 0;
1295
+ }
1296
+
1297
+ div#toolbar a.button:active {
1298
+ text-decoration: none;
1299
+ background-position: 0 -21px;
1300
+ }
1301
+
1302
+ div#toolbar_buttons span.file_upload {
1303
+ background-image: url(/images/alchemy/icons/file_upload.png);
1304
+ }
1305
+
1306
+ /* @group add, edit and delete buttons */
1307
+
1308
+ button.icon_button {
1309
+ background: #f7f7f7 url(/images/alchemy/gui/shading.png) repeat-x 0 -75px;
1310
+ border: 1px solid #9a9a9a;
1311
+ -webkit-border-radius: 3px;
1312
+ -moz-border-radius: 3px;
1313
+ border-radius: 3px;
1314
+ cursor: pointer;
1315
+ padding: 4px;
1316
+ height: 25px;
1317
+ line-height: 19px;
1318
+ font-size: 0;
1319
+ width: 25px;
1320
+ }
1321
+
1322
+ button.icon_button.small {
1323
+ background: transparent;
1324
+ padding: 0;
1325
+ width: 17px;
1326
+ height: 17px;
1327
+ border: none;
1328
+ }
1329
+
1330
+ button.icon_button.small:hover {
1331
+ background-color: #e6f0f5;
1332
+ color: #666;
1333
+ border: 1px solid #888;
1334
+ text-shadow: 0 1px 4px #fff;
1335
+ text-decoration: none;
1336
+ }
1337
+
1338
+ button.icon_button:hover {
1339
+ background-color: #e6f0f5;
1340
+ color: #666;
1341
+ border: 1px solid #888;
1342
+ text-shadow: 0 1px 4px #fff;
1343
+ text-decoration: none;
1344
+ }
1345
+
1346
+ button.icon_button:active {
1347
+ background-color: #cdd6db;
1348
+ }
1349
+
1350
+ button.icon_button img {
1351
+ margin: 0;
1352
+ border-style: none;
1353
+ border-width: 0;
1354
+ }
1355
+
1356
+ a.icon_button {
1357
+ float: left;
1358
+ width: 23px;
1359
+ height: 23px;
1360
+ background-color: #f7f7f7;
1361
+ background-image: url(/images/alchemy/gui/shading.png);
1362
+ background-repeat: repeat-x;
1363
+ background-position: 0 -75px;
1364
+ margin-right: 8px;
1365
+ border: 1px solid #9a9a9a;
1366
+ -webkit-border-radius: 3px;
1367
+ -moz-border-radius: 3px;
1368
+ border-radius: 3px;
1369
+ -webkit-user-select: none;
1370
+ -moz-user-select: none;
1371
+ user-select: none;
1372
+ overflow: hidden;
1373
+ position: relative;
1374
+ }
1375
+
1376
+ div.sitemap_right_tools a.icon_button {
1377
+ }
1378
+
1379
+ div.sitemap_right_tools .sitemap_sitetools a.icon_button {
1380
+ margin-right: 4px;
1381
+ }
1382
+
1383
+ a.icon_button.small {
1384
+ width: 11px;
1385
+ height: 11px;
1386
+ float: none;
1387
+ display: inline-block;
1388
+ background-position: 0 -8px;
1389
+ vertical-align: -1px;
1390
+ }
1391
+
1392
+ a.icon_button.old_icon {
1393
+ width: 20px;
1394
+ height: 19px;
1395
+ }
1396
+
1397
+ a.icon_button:hover {
1398
+ background-color: #e6f0f5;
1399
+ color: #666;
1400
+ border: 1px solid #888;
1401
+ text-shadow: 0 1px 4px #fff;
1402
+ text-decoration: none;
1403
+ }
1404
+
1405
+ a.icon_button:active {
1406
+ background-color: #cdd6db;
1407
+ border-style: inset;
1408
+ border-color: #bfbfbf;
1409
+ }
1410
+
1411
+ a.icon_button img {
1412
+ position: absolute;
1413
+ top: 2px;
1414
+ left: 3px;
1415
+ }
1416
+
1417
+ span.icon {
1418
+ display: inline-block;
1419
+ background: url(/images/alchemy/icons.png) no-repeat;
1420
+ width: 16px;
1421
+ height: 16px;
1422
+ }
1423
+
1424
+ .icon.blank {
1425
+ background: transparent;
1426
+ }
1427
+
1428
+ span.icon.sort {
1429
+ background-position: -64px -104px;
1430
+ }
1431
+
1432
+ #page_sorting_panel p {
1433
+ margin-top: 1em;
1434
+ }
1435
+
1436
+ div.info span.icon.info {
1437
+ position: absolute;
1438
+ top: 8px;
1439
+ left: 8px;
1440
+ }
1441
+
1442
+ span.icon.module {
1443
+ width: 24px;
1444
+ height: 24px;
1445
+ margin-bottom: 4px;
1446
+ }
1447
+
1448
+ span.module.home {
1449
+ background-position: 0 0;
1450
+ }
1451
+
1452
+ span.module.pages {
1453
+ background-position: -24px 0;
1454
+ }
1455
+
1456
+ span.module.users {
1457
+ background-position: -48px 0;
1458
+ }
1459
+
1460
+ span.module.library {
1461
+ background-position: -72px 0;
1462
+ }
1463
+
1464
+ span.module.languages {
1465
+ background-position: -120px 0;
1466
+ }
1467
+
1468
+ span.module.exit {
1469
+ background-position: -96px 0;
1470
+ }
1471
+
1472
+ a.icon_button span.icon {
1473
+ position: absolute;
1474
+ left: 4px;
1475
+ top: 4px;
1476
+ }
1477
+
1478
+ span.icon.zoom-out {
1479
+ background: url(/images/alchemy/icons.png) -208px -40px;
1480
+ }
1481
+
1482
+ span.icon.zoom-equal {
1483
+ background: url(/images/alchemy/icons.png) -224px -40px;
1484
+ }
1485
+
1486
+ span.icon.zoom-in {
1487
+ background: url(/images/alchemy/icons.png) -240px -40px;
1488
+ }
1489
+
1490
+ a.icon_button.small span.icon {
1491
+ top: 2px;
1492
+ left: 2px;
1493
+ width: 9px;
1494
+ height: 9px;
1495
+ background-position: -4px -4px;
1496
+ }
1497
+
1498
+ span.icon.delete-small {
1499
+ background: url(/images/alchemy/icons.png) 0 -104px;
1500
+ }
1501
+
1502
+ a.icon_button span.old_icon {
1503
+ position: relative;
1504
+ background-repeat: no-repeat;
1505
+ width: 22px;
1506
+ height: 20px;
1507
+ display: inline-block;
1508
+ top: -1px;
1509
+ left: -1px;
1510
+ }
1511
+
1512
+ a.icon_button.old_icon img {
1513
+ top: 0;
1514
+ left: 1px;
1515
+ }
1516
+
1517
+ div.table_right span.tools a.icon_button img {
1518
+ left: -1px;
1519
+ }
1520
+
1521
+ /* @end */
1522
+
1523
+ #user_edit form {
1524
+ margin: 0;
1525
+ padding: 8px;
1526
+ }
1527
+
1528
+ table {
1529
+ border-style: none;
1530
+ border-spacing: 0 4px;
1531
+ padding: 0;
1532
+ }
1533
+
1534
+ table.window_form {
1535
+ width: 100%;
1536
+ }
1537
+
1538
+ table.list {
1539
+ width: 100%;
1540
+ }
1541
+
1542
+ table.list td,
1543
+ table.list th {
1544
+ padding: 4px;
1545
+ white-space: nowrap;
1546
+ }
1547
+
1548
+ table.list th {
1549
+ text-align: left;
1550
+ height: 22px;
1551
+ vertical-align: top;
1552
+ }
1553
+
1554
+ th.login_status {
1555
+ width: 16px;
1556
+ }
1557
+
1558
+ table.list tr.odd td {
1559
+ background-color: white;
1560
+ }
1561
+
1562
+ table.list tr.even td {
1563
+ background-color: #eaf3f9;
1564
+ }
1565
+
1566
+ .even {
1567
+ background-color: #eaf3f9;
1568
+ }
1569
+
1570
+ .odd {
1571
+ background-color: #fff;
1572
+ }
1573
+
1574
+ .list li.table_row {
1575
+ display: block;
1576
+ margin: 0 0 8px;
1577
+ background-color: #ffffff;
1578
+ position: relative;
1579
+ line-height: 18px;
1580
+ float: left;
1581
+ width: 100%;
1582
+ }
1583
+
1584
+ ul.list {
1585
+ margin: 0;
1586
+ padding: 8px;
1587
+ list-style-type: none;
1588
+ }
1589
+
1590
+ ul#layoutpages.list {
1591
+ margin-top: 16px;
1592
+ }
1593
+
1594
+ ul#layoutpages.list li {
1595
+ margin-left: 8px;
1596
+ }
1597
+
1598
+ ul#sitemap.list {
1599
+ padding: 0 16px 116px;
1600
+ }
1601
+
1602
+ #sitemap .drop_hover {
1603
+ background: url(/images/alchemy/gui/insertpage.png) no-repeat bottom left;
1604
+ outline: 1px dotted #999;
1605
+ }
1606
+
1607
+ #sitemap .drop_top {
1608
+ background-position: top left;
1609
+ padding-top: 16px;
1610
+ }
1611
+
1612
+ #sitemap .drop_bottom {
1613
+ background-position: bottom left;
1614
+ padding-bottom: 16px;
1615
+ }
1616
+
1617
+ #sitemap .drop_insert {
1618
+ background-position: 24px 100%;
1619
+ padding-bottom: 16px;
1620
+ }
1621
+
1622
+ ul.list li {
1623
+ list-style-type: none;
1624
+ border-width: 0;
1625
+ border-style: none;
1626
+ display: block;
1627
+ }
1628
+
1629
+ ul.list li.legend {
1630
+ background-color: transparent;
1631
+ font-weight: bold;
1632
+ }
1633
+
1634
+ #layoutpages li img.site_status {
1635
+ float: left;
1636
+ }
1637
+
1638
+ .list div.detail_row {
1639
+ background-color: #e3e3e3;
1640
+ font-size: 10px;
1641
+ margin-top: 3px;
1642
+ padding: 4px;
1643
+ overflow: hidden;
1644
+ }
1645
+
1646
+ .list div.detail_row div {
1647
+ padding-top: 1px;
1648
+ padding-bottom: 1px;
1649
+ }
1650
+
1651
+ .list span.right {
1652
+ float: right;
1653
+ }
1654
+
1655
+ #sitemap li.legend span.right {
1656
+ margin-right: 52px;
1657
+ }
1658
+
1659
+ #sitemap li.legend span.right span.page_move {
1660
+ display: inline-block;
1661
+ width: 74px;
1662
+ text-align: center;
1663
+ }
1664
+
1665
+ h2#sitemap_heading span.page_infos {
1666
+ margin-right: 120px;
1667
+ width: 40px;
1668
+ text-align: center;
1669
+ float: right;
1670
+ line-height: 28px;
1671
+ }
1672
+
1673
+ .handle {
1674
+ cursor: move;
1675
+ }
1676
+
1677
+ #userinfo p {
1678
+ padding: 0;
1679
+ margin: 0;
1680
+ font-weight: bold;
1681
+ }
1682
+
1683
+ /* @group image_upload */
1684
+
1685
+ table.list td.tools .icon,
1686
+ table.list td.icon .icon {
1687
+ width: 16px;
1688
+ height: 16px;
1689
+ -webkit-user-select: none;
1690
+ -moz-user-select: none;
1691
+ user-select: none;
1692
+ margin-top: 0;
1693
+ background-repeat: no-repeat;
1694
+ display: block;
1695
+ margin-right: 4px;
1696
+ }
1697
+
1698
+ input#search_input_field {
1699
+ width: 170px;
1700
+ text-align: left;
1701
+ -webkit-border-radius: 12px;
1702
+ -moz-border-radius: 12px;
1703
+ border-radius: 12px;
1704
+ padding: 3px 24px 2px;
1705
+ }
1706
+
1707
+ input.button,
1708
+ a.button,
1709
+ button.button {
1710
+ margin: 0;
1711
+ font: 11px "Lucida Grande", "Lucida Sans", Lucida, sans-serif;
1712
+ border: 1px solid #9a9a9a;
1713
+ background-color: #f5f5f5;
1714
+ background-image: url(/images/alchemy/gui/shading.png);
1715
+ background-repeat: repeat-x;
1716
+ background-position: 0 -73px;
1717
+ -webkit-border-radius: 3px;
1718
+ -moz-border-radius: 3px;
1719
+ border-radius: 3px;
1720
+ cursor: pointer;
1721
+ color: #333;
1722
+ text-shadow: #f2f2f2 1px 1px 0;
1723
+ }
1724
+
1725
+ #new_element button.button {
1726
+ float: right;
1727
+ }
1728
+
1729
+ input.button {
1730
+ padding-left: 8px;
1731
+ padding-right: 8px;
1732
+ padding-bottom: 2px;
1733
+ height: 25px;
1734
+ }
1735
+
1736
+ button.button {
1737
+ line-height: 21px;
1738
+ padding: 1px 8px 2px 8px;
1739
+ height: 25px;
1740
+ font-size: 1em;
1741
+ }
1742
+
1743
+ button.button img {
1744
+ margin-right: 0;
1745
+ width: 20px;
1746
+ height: 20px;
1747
+ }
1748
+
1749
+ button.button.disabled,
1750
+ button.button.disabled:hover,
1751
+ button.button.disabled:active {
1752
+ color: #333;
1753
+ text-shadow: none;
1754
+ border-color: #ccc;
1755
+ cursor: default;
1756
+ background-image: none;
1757
+ background-color: #f5f5f5;
1758
+ padding: 1px 0 0;
1759
+ }
1760
+
1761
+ #new_page_form tbody tr td.second_row .button {
1762
+ float: right;
1763
+ }
1764
+
1765
+ input.button:hover,
1766
+ input.button:focus,
1767
+ a.button:hover,
1768
+ a.button:focus,
1769
+ button.button:hover,
1770
+ button.button:focus {
1771
+ text-decoration: none;
1772
+ text-shadow: none;
1773
+ border: 1px solid #888888;
1774
+ background: #e6f0f5 url(/images/alchemy/gui/shading.png) repeat-x 50% -75px;
1775
+ font-weight: normal;
1776
+ }
1777
+
1778
+ input.button:active,
1779
+ a.button:active {
1780
+ text-decoration: none;
1781
+ text-shadow: none;
1782
+ background-color: #e5e5e5;
1783
+ }
1784
+
1785
+ label {
1786
+ line-height: 23px;
1787
+ }
1788
+
1789
+ a.button {
1790
+ padding: 5px 8px;
1791
+ text-decoration: none;
1792
+ float: left;
1793
+ line-height: 13px;
1794
+ }
1795
+
1796
+ table.list tr td.tools {
1797
+ width: 40px;
1798
+ background-color: #ededed;
1799
+ white-space: nowrap;
1800
+ }
1801
+
1802
+ td.input,
1803
+ td.label {
1804
+ vertical-align: top;
1805
+ }
1806
+
1807
+ td.label {
1808
+ white-space: nowrap;
1809
+ padding: 3px 4px 0 0;
1810
+ width: 80px;
1811
+ }
1812
+
1813
+ td.label.long {
1814
+ width: 140px;
1815
+ }
1816
+
1817
+ td.label.very_long {
1818
+ width: 230px;
1819
+ }
1820
+
1821
+ table.list tr td.tools a {
1822
+ float: left;
1823
+ width: 19px;
1824
+ height: 19px;
1825
+ margin-right: 2px;
1826
+ }
1827
+
1828
+ table.list tr td.tools.long {
1829
+ width: 60px;
1830
+ }
1831
+
1832
+ table.list tr td.icon {
1833
+ background-color: #ededed;
1834
+ width: 20px;
1835
+ text-align: center;
1836
+ }
1837
+
1838
+ table.list tr:hover td {
1839
+ background-color: #fffdef;
1840
+ }
1841
+
1842
+ td.file_type {
1843
+ width: 130px;
1844
+ white-space: nowrap;
1845
+ }
1846
+
1847
+ td.file_size {
1848
+ width: 80px;
1849
+ }
1850
+
1851
+ td.date {
1852
+ width: 150px;
1853
+ }
1854
+
1855
+ .list li.table_row div.table_right span{
1856
+ float: left;
1857
+ text-align: left;
1858
+ }
1859
+
1860
+ .list li.table_row div.table_center {
1861
+ float: none;
1862
+ padding-left: 24px;
1863
+ }
1864
+
1865
+ td.login {
1866
+ width: 100px;
1867
+ }
1868
+
1869
+ td.email {
1870
+ width: 270px;
1871
+ }
1872
+
1873
+ td.role {
1874
+ width: 70px;
1875
+ padding-right: 4px;
1876
+ }
1877
+
1878
+ .list div.table_left {
1879
+ float: left;
1880
+ }
1881
+
1882
+ .list div.table_right {
1883
+ float: right;
1884
+ }
1885
+
1886
+ #archive_all {
1887
+ padding: 16px;
1888
+ }
1889
+
1890
+ #archive_all .padding_left_right {
1891
+ padding-right: 8px;
1892
+ padding-left: 8px;
1893
+ }
1894
+
1895
+ .picture_image {
1896
+ overflow: hidden;
1897
+ position: absolute;
1898
+ z-index: 0;
1899
+ padding: 1px 0 1px 1px;
1900
+ }
1901
+
1902
+ div#archive_all .picture_detail {
1903
+ padding: 2px 0 0;
1904
+ margin: 0 16px 16px 0;
1905
+ height: 118px;
1906
+ width: 118px;
1907
+ }
1908
+
1909
+ #archive_all .picture_name {
1910
+ width: 110px;
1911
+ height: 12px;
1912
+ padding-top: 2px;
1913
+ padding-bottom: 2px;
1914
+ display: block;
1915
+ text-align: center;
1916
+ white-space: nowrap;
1917
+ overflow: hidden;
1918
+ position: absolute;
1919
+ bottom: 3px;
1920
+ left: 4px;
1921
+ font-family: "Courier New", Courier, mono;
1922
+ line-height: 11px;
1923
+ }
1924
+
1925
+ #archive_all .picture_name.rename.hover {
1926
+ cursor: text;
1927
+ }
1928
+
1929
+ .inplace-edit {
1930
+ background-color: #ededed;
1931
+ position: absolute;
1932
+ left: -8px;
1933
+ top: 0;
1934
+ width: 204px;
1935
+ z-index: 10;
1936
+ height: 65px;
1937
+ border: 1px solid #afafaf;
1938
+ -webkit-border-radius: 3px;
1939
+ -moz-border-radius: 3px;
1940
+ -o-border-radius: 3px;
1941
+ border-radius: 3px;
1942
+ -webkit-box-shadow: #444 0px 1px 8px;
1943
+ -moz-box-shadow: #444 0px 1px 8px;
1944
+ -o-box-shadow: #444 0px 1px 8px;
1945
+ box-shadow: #444 0px 1px 8px;
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
+ }
1972
+
1973
+ div.spinner {
1974
+ background-color: #ffffff;
1975
+ width: 100%;
1976
+ height: 100%;
1977
+ position: absolute;
1978
+ top: 0;
1979
+ left: 0;
1980
+ }
1981
+
1982
+ div.archive_image_spinner img {
1983
+ position: absolute;
1984
+ z-index: 0;
1985
+ top: 35px;
1986
+ left: 40px;
1987
+ }
1988
+
1989
+ .picture_detail {
1990
+ width: 118px;
1991
+ height: 118px;
1992
+ padding: 2px 0 0;
1993
+ margin: 2px 1px 2px 2px;
1994
+ background-color: #fff;
1995
+ float: left;
1996
+ padding: 3px 0 0;
1997
+ border: 1px solid #c0c0c0;
1998
+ position: relative;
1999
+ -webkit-border-radius: 3px;
2000
+ -moz-border-radius: 3px;
2001
+ -o-border-radius: 3px;
2002
+ border-radius: 3px;
2003
+ -webkit-box-shadow: #999 0px 1px 3px;
2004
+ -moz-box-shadow: #999 0px 1px 3px;
2005
+ -o-box-shadow: #999 0px 1px 3px;
2006
+ box-shadow: #999 0px 1px 3px;
2007
+ }
2008
+
2009
+ .picture_detail .picture_image {
2010
+ text-align: center;
2011
+ margin-left: 3px;
2012
+ margin-bottom: 2px;
2013
+ width: 110px;
2014
+ height: 93px;
2015
+ }
2016
+
2017
+ #archive_all .picture_image {
2018
+ margin-bottom: 0;
2019
+ position: relative;
2020
+ margin-top: 1px;
2021
+ height: 93px;
2022
+ }
2023
+
2024
+ #archive_all .picture_detail:hover .picture_tool_delete {
2025
+ display: block;
2026
+ }
2027
+
2028
+ .picture_image a {
2029
+ cursor: -webkit-zoom-in;
2030
+ cursor: -moz-zoom-in;
2031
+ cursor: -o-zoom-in;
2032
+ cursor: zoom-in;
2033
+ }
2034
+
2035
+ .thumbnail_background {
2036
+ margin: auto;
2037
+ float: none;
2038
+ display: table-cell;
2039
+ width: 111px;
2040
+ height: 93px;
2041
+ background-color: #666;
2042
+ vertical-align: middle;
2043
+ text-align: center;
2044
+ }
2045
+
2046
+ .headline_text_editor {
2047
+ overflow: auto;
2048
+ width: 374px;
2049
+ }
2050
+
2051
+ .short_content_text {
2052
+ width: 374px;
2053
+ background-color: white;
2054
+ margin-bottom: 10px;
2055
+ padding-bottom: 2px;
2056
+ padding-top: 2px;
2057
+ padding-left: 2px;
2058
+ float: none;
2059
+ }
2060
+
2061
+ .short_content_text a {
2062
+ color: #000000;
2063
+ text-decoration: none;
2064
+ font-weight: bold;
2065
+ }
2066
+
2067
+ .short_content_text a:hover {
2068
+ color: #000000;
2069
+ text-decoration: underline;
2070
+ }
2071
+
2072
+ .picture_tool_assign_box {
2073
+ float: right;
2074
+ width: 105px;
2075
+ overflow: auto;
2076
+ padding: 1px;
2077
+ }
2078
+
2079
+ /* @end */
2080
+
2081
+ .short_picture {
2082
+ float: left
2083
+ }
2084
+
2085
+ .short_element {
2086
+ margin-left: 20px;
2087
+ float: left;
2088
+ }
2089
+
2090
+ .short_element input {
2091
+ width: 190px;
2092
+ float: left;
2093
+ font: 11px "Lucida Grande", "Lucida Sans", Lucida, sans-serif;
2094
+ }
2095
+
2096
+ .dashed_border {
2097
+ border: 1px dashed;
2098
+ }
2099
+
2100
+ div.archive_pagination_links {
2101
+ position: relative;
2102
+ margin-bottom: 16px;
2103
+ margin-top: 8px;
2104
+ height: 19px;
2105
+ text-align: center;
2106
+ line-height: 21px;
2107
+ }
2108
+
2109
+ div.archive_pagination_links span.pagination_current_page {
2110
+ background-position: 0 -21px;
2111
+ font-weight: bold;
2112
+ color: #333;
2113
+ }
2114
+
2115
+ div.archive_pagination_links .first_page {
2116
+ position: absolute;
2117
+ left: 8px;
2118
+ top: -2px;
2119
+ }
2120
+
2121
+ .archive_pagination_links .last_page {
2122
+ position: absolute;
2123
+ right: 8px;
2124
+ top: -2px;
2125
+ }
2126
+
2127
+ .archive_pagination_links .previous_page {
2128
+ position: absolute;
2129
+ left: 32px;
2130
+ top: -2px;
2131
+ }
2132
+
2133
+ .archive_pagination_links .next_page {
2134
+ position: absolute;
2135
+ right: 32px;
2136
+ top: -2px;
2137
+ }
2138
+
2139
+ .archive_pagination_links span, .archive_pagination_links a {
2140
+ padding: 0;
2141
+ color: #333;
2142
+ -webkit-border-radius: 3px;
2143
+ -moz-border-radius: 3px;
2144
+ border-radius: 3px;
2145
+ width: 21px;
2146
+ height: 21px;
2147
+ display: inline-block;
2148
+ background: url(/images/alchemy/gui/button_background.png) no-repeat 0 0;
2149
+ }
2150
+
2151
+ .archive_pagination_links span {
2152
+ color: #9a9a9a;
2153
+ }
2154
+
2155
+ div.archive_pagination_links a:active {
2156
+ text-decoration: none;
2157
+ background-position: 0 -21px;
2158
+ }
2159
+
2160
+ a.rename_link {
2161
+ background: url(/images/alchemy/icons/edit.png) 0 0;
2162
+ }
2163
+
2164
+ a.delete_link {
2165
+ background: url(/images/alchemy/alchemy/trash.png) no-repeat 0 0;
2166
+ }
2167
+
2168
+ ul#all_files {
2169
+ list-style-type: none;
2170
+ display: block;
2171
+ margin: 0;
2172
+ padding: 0;
2173
+ width: 100%;
2174
+ }
2175
+
2176
+ a.file_archive_download_file:hover {
2177
+ background-position: 3px -25px;
2178
+ }
2179
+
2180
+ form#archive_upload_form {
2181
+ padding: 4px;
2182
+ overflow: auto;
2183
+ width: 390px;
2184
+ }
2185
+
2186
+ img.image_in_text {
2187
+ position: relative;
2188
+ top: 3px;
2189
+ }
2190
+
2191
+ a.archive_upload_delete:hover, a.archive_upload_delete:active {
2192
+ background-position: right;
2193
+ }
2194
+
2195
+ div.right_checkbox {
2196
+ float: left;
2197
+ }
2198
+
2199
+ div.all_rights {
2200
+ float: left;
2201
+ clear: both;
2202
+ margin-top: 10px;
2203
+ }
2204
+
2205
+ textarea.thin_border {
2206
+ border-style: inset;
2207
+ font: 12px "Lucida Grande", "Lucida Sans", Lucida, sans-serif;
2208
+ padding: 4px;
2209
+ border-width: 1px;
2210
+ -webkit-border-radius: 3px;
2211
+ -moz-border-radius: 3px;
2212
+ border-radius: 3px;
2213
+ height: auto;
2214
+ }
2215
+
2216
+ .thin_border,
2217
+ .input_field {
2218
+ height: 18px;
2219
+ font-size: 12px;
2220
+ padding: 3px 4px 2px;
2221
+ margin: 0;
2222
+ -webkit-border-radius: 3px;
2223
+ -moz-border-radius: 3px;
2224
+ border-radius: 3px;
2225
+ background: #fff;
2226
+ border: 1px inset #e5e5e5;
2227
+ width: 210px;
2228
+ }
2229
+
2230
+ .thin_border.dirty {
2231
+ background-color: #fff8df;
2232
+ }
2233
+
2234
+ span.icon.user_add {
2235
+ background: url(/images/alchemy/icons.png) -48px -56px;
2236
+ }
2237
+
2238
+ span.icon.language_add {
2239
+ background: url(/images/alchemy/icons.png) -47px -120px;
2240
+ }
2241
+
2242
+ span.icon.user {
2243
+ background: url(/images/alchemy/icons.png) 0 -56px;
2244
+ }
2245
+
2246
+ span.icon.language {
2247
+ background: url(/images/alchemy/icons.png) 0 -120px;
2248
+ }
2249
+
2250
+ span.icon.user.female {
2251
+ background: url(/images/alchemy/icons.png) -64px -56px;
2252
+ }
2253
+
2254
+ a.icon.user_edit {
2255
+ background: url(/images/alchemy/icons.png) -32px -56px;
2256
+ }
2257
+
2258
+ a.icon.language_edit {
2259
+ background: url(/images/alchemy/icons.png) -32px -120px;
2260
+ }
2261
+
2262
+ a.icon.user_edit.female {
2263
+ background: url(/images/alchemy/icons.png) -96px -56px;
2264
+ }
2265
+
2266
+ span.icon.settings {
2267
+ background: url(/images/alchemy/icons.png) -160px -24px;
2268
+ }
2269
+
2270
+ span.icon.visit_page {
2271
+ background: url(/images/alchemy/icons.png) -64px -88px;
2272
+ }
2273
+
2274
+ span.icon.upload {
2275
+ background: url(/images/alchemy/icons.png) 0 -72px;
2276
+ }
2277
+
2278
+ span.icon.pdf {
2279
+ background: url(/images/alchemy/icons.png) -80px -72px;
2280
+ }
2281
+
2282
+ span.icon.text {
2283
+ background: url(/images/alchemy/icons.png) -224px -72px;
2284
+ }
2285
+
2286
+ span.icon.archive {
2287
+ background: url(/images/alchemy/icons.png) -208px -72px;
2288
+ }
2289
+
2290
+ span.icon.audio {
2291
+ background: url(/images/alchemy/icons.png) -96px -72px;
2292
+ }
2293
+
2294
+ span.icon.image {
2295
+ background: url(/images/alchemy/icons.png) -112px -72px;
2296
+ }
2297
+
2298
+ span.icon.psd {
2299
+ background: url(/images/alchemy/icons.png) -64px -72px;
2300
+ }
2301
+
2302
+ span.icon.flash {
2303
+ background: url(/images/alchemy/icons.png) -128px -72px;
2304
+ }
2305
+
2306
+ span.icon.video {
2307
+ background: url(/images/alchemy/icons.png) -144px -72px;
2308
+ }
2309
+
2310
+ span.icon.rtf {
2311
+ background: url(/images/alchemy/icons.png) -160px -72px;
2312
+ }
2313
+
2314
+ span.icon.word {
2315
+ background: url(/images/alchemy/icons.png) -192px -72px;
2316
+ }
2317
+
2318
+ span.icon.excel {
2319
+ background: url(/images/alchemy/icons.png) -176px -72px;
2320
+ }
2321
+
2322
+ span.icon.file {
2323
+ background: url(/images/alchemy/icons.png) -16px -72px;
2324
+ }
2325
+
2326
+ span.icon.flush {
2327
+ background-position: -176px -24px;
2328
+ }
2329
+
2330
+ span.icon.publish {
2331
+ background-position: -80px -88px;
2332
+ }
2333
+
2334
+ span.icon.info {
2335
+ background-position: -32px -88px;
2336
+ }
2337
+
2338
+ span.icon.close {
2339
+ background-position: -208px -24px;
2340
+ }
2341
+
2342
+ span.icon.close.small {
2343
+ background: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png) -84px -132px;
2344
+ width: 8px;
2345
+ height: 8px;
2346
+ position: absolute;
2347
+ right: 5px;
2348
+ top: 4px;
2349
+ }
2350
+
2351
+ span.icon.online {
2352
+ background-position: -112px -56px;
2353
+ }
2354
+
2355
+ span.icon.offline {
2356
+ background-position: -128px -56px;
2357
+ }
2358
+
2359
+ span.icon.tick {
2360
+ background-position: -48px -88px;
2361
+ }
2362
+
2363
+ span.icon.true {
2364
+ background-position: -48px -88px;
2365
+ }
2366
+
2367
+ span.icon.error {
2368
+ background-position: -16px -88px;
2369
+ }
2370
+
2371
+ span.icon.false {
2372
+ background-image: none;
2373
+ }
2374
+
2375
+ span.icon.link,
2376
+ a.link {
2377
+ background-position: -160px -40px;
2378
+ }
2379
+
2380
+ span.icon.unlink {
2381
+ background-position: -176px -40px;
2382
+ }
2383
+
2384
+ .icon.swap_picture {
2385
+ background-position: -144px -40px;
2386
+ }
2387
+
2388
+ .icon.crop {
2389
+ background-position: -128px -40px;
2390
+ }
2391
+
2392
+ span.icon.warning, span.icon.warn {
2393
+ background-position: 0 -88px;
2394
+ }
2395
+
2396
+ span.icon.element_public {
2397
+ background-position: -16px -40px;
2398
+ }
2399
+
2400
+ span.icon.element_draft {
2401
+ background-position: 0 -40px;
2402
+ }
2403
+
2404
+ span.icon.new_element {
2405
+ background: url(/images/alchemy/icons.png) -192px -24px;
2406
+ }
2407
+
2408
+ span.icon.element_window {
2409
+ background: url(/images/alchemy/icons.png) -256px -40px;
2410
+ }
2411
+
2412
+ span.icon.preview_window {
2413
+ background: url(/images/alchemy/icons.png) -224px -24px;
2414
+ }
2415
+
2416
+ span.icon.clipboard {
2417
+ background-position: -144px -56px;
2418
+ }
2419
+
2420
+ span.icon.clipboard.full {
2421
+ background-position: -160px -56px;
2422
+ }
2423
+
2424
+ span.icon.trash {
2425
+ background-position: -176px -56px;
2426
+ }
2427
+
2428
+ span.icon.trash.full {
2429
+ background-position: -192px -56px;
2430
+ }
2431
+
2432
+ a.icon.file_download {
2433
+ background: url(/images/alchemy/icons.png) -240px -72px;
2434
+ }
2435
+
2436
+ .icon.download {
2437
+ background: url(/images/alchemy/icons.png) -240px -72px;
2438
+ }
2439
+
2440
+ a.icon.file_delete {
2441
+ background: url(/images/alchemy/icons.png) -48px -72px;
2442
+ }
2443
+
2444
+ a.icon.file_edit {
2445
+ background: url(/images/alchemy/icons.png) -32px -72px;
2446
+ }
2447
+
2448
+ .icon.edit {
2449
+ background: url(/images/alchemy/icons.png) -32px -104px;
2450
+ }
2451
+
2452
+ .icon.create {
2453
+ background: url(/images/alchemy/icons.png) -48px -104px;
2454
+ }
2455
+
2456
+ span.icon.add_page {
2457
+ background: url(/images/alchemy/icons.png) -48px -24px;
2458
+ }
2459
+
2460
+ span.icon.copy_page {
2461
+ background: url(/images/alchemy/icons.png) -272px -24px;
2462
+ }
2463
+
2464
+ span.icon.delete_page {
2465
+ background: url(/images/alchemy/icons.png) -32px -24px;
2466
+ }
2467
+
2468
+ a.icon.user_delete {
2469
+ background: url(/images/alchemy/icons.png) -16px -56px;
2470
+ }
2471
+
2472
+ a.icon.language_delete {
2473
+ background: url(/images/alchemy/icons.png) -16px -120px;
2474
+ }
2475
+
2476
+ .icon.destroy {
2477
+ background: url(/images/alchemy/icons.png) -15px -104px;
2478
+ }
2479
+
2480
+ span.icon.configure_page {
2481
+ background: url(/images/alchemy/icons.png) -160px -24px;
2482
+ }
2483
+
2484
+ span.icon.search {
2485
+ background: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png) -160px -112px;
2486
+ }
2487
+
2488
+ a.icon.user_delete.female {
2489
+ background: url(/images/alchemy/icons.png) -80px -56px;
2490
+ }
2491
+
2492
+ select.select_box {
2493
+ border: 1px solid #9a9a9a;
2494
+ color: #333;
2495
+ padding: 1px;
2496
+ margin: 0;
2497
+ font-size: 12px;
2498
+ -webkit-border-radius: 3px;
2499
+ -moz-border-radius: 3px;
2500
+ border-radius: 3px;
2501
+ background: #f4f4f4;
2502
+ height: 21px;
2503
+ }
2504
+
2505
+ #tooltip {
2506
+ border: 1px solid #0b5c84;
2507
+ color: #333333;
2508
+ position: absolute;
2509
+ display: none;
2510
+ padding: 4px;
2511
+ font-size: 11px;
2512
+ max-width: 200px;
2513
+ -webkit-border-radius: 4px;
2514
+ -moz-border-radius: 4px;
2515
+ border-radius: 4px;
2516
+ -moz-box-shadow: 0 2px 8px #666;
2517
+ -webkit-box-shadow: 0 2px 8px #666;
2518
+ box-shadow: 0 2px 8px #666;
2519
+ background-color: #eaf4f9;
2520
+ }
2521
+
2522
+ #tooltip p,
2523
+ #tooltip h1 {
2524
+ font-size: 11px;
2525
+ }
2526
+
2527
+ .date_select_without_time #date_date_4i{
2528
+ display: none;
2529
+ }
2530
+
2531
+ .date_select_without_time #date_date_5i{
2532
+ display: none;
2533
+ }
2534
+
2535
+ .with_medium_padding {
2536
+ padding: 8px;
2537
+ }
2538
+
2539
+ .with_padding {
2540
+ padding: 8px;
2541
+ }
2542
+
2543
+ .element_spinner {
2544
+ float: right;
2545
+ height: 23px;
2546
+ position: relative;
2547
+ bottom: 3px;
2548
+ right: -3px;
2549
+ }
2550
+
2551
+ .element_folder_spinner {
2552
+ position: relative;
2553
+ bottom: 2px;
2554
+ width: 24px;
2555
+ height: 24px;
2556
+ right: -2px;
2557
+ }
2558
+
2559
+ .element_spinner img {
2560
+ bottom: 1px;
2561
+ float: left;
2562
+ position: relative;
2563
+ width: 24px;
2564
+ height: 24px;
2565
+ right: 0;
2566
+ }
2567
+
2568
+ span.spinner_wait_text {
2569
+ float: left;
2570
+ position: relative;
2571
+ top: 4px;
2572
+ }
2573
+
2574
+ div.element_head span.ajax_folder span.error_icon {
2575
+ float: left;
2576
+ width: 14px;
2577
+ height: 15px;
2578
+ text-align: center;
2579
+ background-color: white;
2580
+ border: 1px solid #935b5b;
2581
+ color: #935b5b;
2582
+ }
2583
+
2584
+ div#images {
2585
+ margin-top: 16px;
2586
+ margin-bottom: 8px;
2587
+ overflow: visible;
2588
+ }
2589
+
2590
+ div.pagination {
2591
+ text-align: center;
2592
+ line-height: 24px;
2593
+ height: 24px;
2594
+ width: 100%;
2595
+ margin-bottom: 16px;
2596
+ }
2597
+
2598
+ div.pagination .prev_page {
2599
+ margin-right: 16px;
2600
+ }
2601
+
2602
+ div.pagination .next_page {
2603
+ margin-left: 16px;
2604
+ }
2605
+
2606
+ div.pagination a,
2607
+ div.pagination span {
2608
+ padding: 4px 8px;
2609
+ border: 1px solid #c0c0c0;
2610
+ -webkit-border-radius: 3px;
2611
+ -moz-border-radius: 3px;
2612
+ -o-border-radius: 3px;
2613
+ border-radius: 3px;
2614
+ background: white url(/images/alchemy/gui/shading.png) repeat-x 0 -75px;
2615
+ height: 23px;
2616
+ line-height: 23px;
2617
+ }
2618
+
2619
+ div.pagination a:hover {
2620
+ background-color: #e6f0f5;
2621
+ color: #333;
2622
+ border: 1px solid #888;
2623
+ text-shadow: 0 1px 1px #fff;
2624
+ text-decoration: none;
2625
+ }
2626
+
2627
+ div.pagination .disabled {
2628
+ color: #c0c0c0;
2629
+ }
2630
+
2631
+ div.pagination .current {
2632
+ background-color: #e6f0f5;
2633
+ color: #333;
2634
+ border: 1px solid #888;
2635
+ text-shadow: 0px 1px 1px #fff;
2636
+ }
2637
+
2638
+ #toolbar_links {
2639
+ line-height: 21px;
2640
+ margin-left: 8px;
2641
+ float: left;
2642
+ }
2643
+
2644
+ div#toolbar_buttons {
2645
+ float: left;
2646
+ margin-right: 6px;
2647
+ }
2648
+
2649
+ div#toolbar_buttons_right {
2650
+ float: right;
2651
+ margin-left: 8px;
2652
+ }
2653
+
2654
+ div.button_with_label {
2655
+ text-align: center;
2656
+ margin-right: 8px;
2657
+ margin-left: 8px;
2658
+ float: left;
2659
+ min-width: 70px;
2660
+ }
2661
+
2662
+ div.button_with_label.active .icon_button {
2663
+ background-color: #cdd6db;
2664
+ border-style: inset;
2665
+ border-color: #bfbfbf;
2666
+ }
2667
+
2668
+ div.button_with_label.active label{
2669
+ color: black;
2670
+ text-shadow: white 0 0 2px;
2671
+ }
2672
+
2673
+ div.button_with_label.disabled {
2674
+ position: relative;
2675
+ opacity: 0.5;
2676
+ filter: alpha(opacity=50);
2677
+ cursor: default;
2678
+ }
2679
+
2680
+ .icon_button.disabled span {
2681
+ position: relative;
2682
+ opacity: 0.3;
2683
+ filter: alpha(opacity=30);
2684
+ cursor: default;
2685
+ }
2686
+
2687
+ .icon_button.disabled:hover {
2688
+ background-color: #f7f7f7;
2689
+ border: 1px solid #9a9a9a;
2690
+ cursor: default;
2691
+ }
2692
+
2693
+ div.button_with_label.disabled:before {
2694
+ content: '';
2695
+ position: absolute;
2696
+ z-index: 1;
2697
+ width: 100%;
2698
+ height: 100%;
2699
+ background-color: transparent;
2700
+ opacity: 0.5;
2701
+ }
2702
+
2703
+ div.button_with_label.disabled a:hover,
2704
+ div.button_with_label.disabled a:active {
2705
+ cursor: default;
2706
+ background-color: #f7f7f7;
2707
+ border: 1px solid #9a9a9a;
2708
+ }
2709
+
2710
+ div.button_with_label.disabled:hover label {
2711
+ color: #333;
2712
+ cursor: default;
2713
+ }
2714
+
2715
+ div.button_with_label .disabledButton {
2716
+ position: absolute;
2717
+ top: 0;
2718
+ left: 0;
2719
+ width: 100%;
2720
+ height: 100%;
2721
+ z-index: 1;
2722
+ }
2723
+
2724
+ #per_page_links {
2725
+ text-align: center;
2726
+ float: left;
2727
+ }
2728
+
2729
+ div.button_with_label a.icon_button {
2730
+ float: none;
2731
+ margin-right: auto;
2732
+ margin-left: auto;
2733
+ display: inline-block;
2734
+ position: relative;
2735
+ }
2736
+
2737
+ div#toolbar label,
2738
+ div#overlay_toolbar label {
2739
+ font-size: 10px;
2740
+ text-shadow: #fff 0 1px 2px;
2741
+ margin-top: 4px;
2742
+ display: block;
2743
+ line-height: 13px;
2744
+ }
2745
+
2746
+ div.button_with_label:hover label {
2747
+ color: #000;
2748
+ text-shadow: #fff 0 1px 4px;
2749
+ }
2750
+
2751
+ #toolbar_links a {
2752
+ padding: 4px;
2753
+ border: 1px solid #9a9a9a;
2754
+ -webkit-border-radius: 3px;
2755
+ -moz-border-radius: 3px;
2756
+ -o-border-radius: 3px;
2757
+ border-radius: 3px;
2758
+ margin-right: 4px;
2759
+ background: #fff url(/images/alchemy/gui/shading.png) repeat-x 0 -75px;
2760
+ text-decoration: none;
2761
+ }
2762
+
2763
+ div.search_field span.icon,
2764
+ div.js_filter_field_box span.icon {
2765
+ position: absolute;
2766
+ left: 6px;
2767
+ top: 4px;
2768
+ }
2769
+
2770
+ #toolbar_links a:hover {
2771
+ background-color: #e6f0f5;
2772
+ color: #333;
2773
+ border: 1px solid #888;
2774
+ text-shadow: 0 1px 1px #fff;
2775
+ text-decoration: none;
2776
+ }
2777
+
2778
+ #toolbar_links a:active {
2779
+ background-color: #cdd6db;
2780
+ }
2781
+
2782
+ div#per_page_values {
2783
+ margin-top: 2px;
2784
+ margin-bottom: 6px;
2785
+ }
2786
+
2787
+ #toolbar_links a.active {
2788
+ background-color: #e6f0f5;
2789
+ color: #333;
2790
+ border: 1px solid #888;
2791
+ text-shadow: 0 1px 1px #fff;
2792
+ }
2793
+
2794
+ #errorExplanation {
2795
+ background: #ffdfdf;
2796
+ padding: 8px;
2797
+ text-align: left;
2798
+ margin-bottom: 8px;
2799
+ border: 1px solid #d08f91;
2800
+ color: #690001;
2801
+ -webkit-border-radius: 3px;
2802
+ -moz-border-radius: 3px;
2803
+ -o-border-radius: 3px;
2804
+ border-radius: 3px;
2805
+ }
2806
+
2807
+ #errorExplanation h2 {
2808
+ font-size: 1.2em;
2809
+ }
2810
+
2811
+ div.field_with_errors {
2812
+ display: inline;
2813
+ }
2814
+
2815
+ p.foot_note {
2816
+ font-size: 0.8em;
2817
+ }
2818
+
2819
+ #errorExplanation ul {
2820
+ padding: 0 0 0 16px;
2821
+ }
2822
+
2823
+ #all_files td.name a {
2824
+ cursor: -webkit-zoom-in;
2825
+ cursor: -moz-zoom-in;
2826
+ cursor: -o-zoom-in;
2827
+ cursor: zoom-in;
2828
+ }
2829
+
2830
+ #sitemap .placeholder {
2831
+ background-color: #e3e3e3;
2832
+ margin-bottom: 0px;
2833
+ margin-left: 22px;
2834
+ }
2835
+
2836
+ div#jscropper {
2837
+ padding: 8px;
2838
+ display: inline-block;
2839
+ }
2840
+
2841
+ div#crop_explain.tip {
2842
+ margin: 8px 8px 0;
2843
+ float: right;
2844
+ width: 25%;
2845
+ }
2846
+
2847
+ textarea#essence_picture_caption {
2848
+ width: 233px;
2849
+ height: 61px;
2850
+ }
2851
+
2852
+ #alchemy .ui-dialog-content form.with_padding table td {
2853
+ vertical-align: top;
2854
+ }
2855
+
2856
+ #page_selector_scroll_container {
2857
+ position: relative;
2858
+ width: 100%;
2859
+ }
2860
+
2861
+ #page_selector_container {
2862
+ height: 230px;
2863
+ background-color: #ededed;
2864
+ margin-bottom: 4px;
2865
+ border: 1px inset #e8e8e8;
2866
+ overflow: auto;
2867
+ padding: 4px 0 0 4px;
2868
+ -webkit-border-radius: 3px;
2869
+ -moz-border-radius: 3px;
2870
+ border-radius: 3px;
2871
+ }
2872
+
2873
+ div.image_assign_filter_and_image_sizing {
2874
+ width: 100%;
2875
+ height: 40px;
2876
+ }
2877
+
2878
+ label.sup {
2879
+ position: relative;
2880
+ bottom: 3px;
2881
+ }
2882
+
2883
+ div.assign_image_list_detail {
2884
+ background-color: #ffffff;
2885
+ text-align: center;
2886
+ float: left;
2887
+ margin: 0 6px 6px 0;
2888
+ padding: 4px;
2889
+ position: relative;
2890
+ overflow: hidden;
2891
+ border: 1px solid #c0c0c0;
2892
+ -webkit-border-radius: 3px;
2893
+ -moz-border-radius: 3px;
2894
+ -o-border-radius: 3px;
2895
+ border-radius: 3px;
2896
+ -webkit-box-shadow: #999 0px 1px 3px;
2897
+ -moz-box-shadow: #999 0px 1px 3px;
2898
+ -o-box-shadow: #999 0px 1px 3px;
2899
+ box-shadow: #999 0px 1px 3px;
2900
+ }
2901
+
2902
+ #assign_image_list {
2903
+ padding: 8px;
2904
+ overflow: hidden;
2905
+ }
2906
+
2907
+ #assign_image_list div.assign_image_list_detail.small {
2908
+ width: 80px;
2909
+ height: 75px;
2910
+ }
2911
+
2912
+ #assign_image_list div.assign_image_list_detail.medium {
2913
+ width: 160px;
2914
+ height: 135px;
2915
+ }
2916
+
2917
+ #assign_image_list div.assign_image_list_detail.large {
2918
+ width: 240px;
2919
+ height: 195px;
2920
+ }
2921
+
2922
+ div.assign_image_list_image {
2923
+ background-color: #ededed;
2924
+ text-align: center;
2925
+ overflow: hidden;
2926
+ }
2927
+
2928
+ div.overlay_image_spinner img {
2929
+ position: absolute;
2930
+ z-index: 0;
2931
+ }
2932
+
2933
+ .assign_image_list_detail.small div.overlay_image_spinner img {
2934
+ top: 19px;
2935
+ left: 26px;
2936
+ }
2937
+
2938
+ .assign_image_list_detail.medium div.overlay_image_spinner img {
2939
+ top: 48px;
2940
+ left: 67px;
2941
+ }
2942
+
2943
+ .assign_image_list_detail.large div.overlay_image_spinner img {
2944
+ top: 80px;
2945
+ left: 103px;
2946
+ }
2947
+
2948
+ #assign_image_list div.assign_image_list_detail.small div.assign_image_list_image {
2949
+ height: 60px;
2950
+ }
2951
+
2952
+ #assign_image_list div.assign_image_list_detail.medium div.assign_image_list_image {
2953
+ height: 120px;
2954
+ }
2955
+
2956
+ #assign_image_list div.assign_image_list_detail.large div.assign_image_list_image {
2957
+ height: 180px;
2958
+ }
2959
+
2960
+ #assign_image_list div.assign_image_list_image a {
2961
+ display: block;
2962
+ }
2963
+
2964
+ #assign_image_list div.assign_image_list_image img {
2965
+ border-style: none;
2966
+ }
2967
+
2968
+ #assign_image_list div.assign_image_list_image span {
2969
+
2970
+ }
2971
+
2972
+ div#errors {
2973
+ margin-bottom: 8px;
2974
+ padding: 8px 8px 4px 28px;
2975
+ border-width: 1px;
2976
+ border-style: solid;
2977
+ -webkit-border-radius: 3px;
2978
+ -moz-border-radius: 3px;
2979
+ border-radius: 3px;
2980
+ border-color: #c49c9c;
2981
+ color: #592e2e;
2982
+ background-color: #efd3d3;
2983
+ }
2984
+
2985
+ #overlay_tabs div#errors {
2986
+ margin: 8px 8px 0;
2987
+ }
2988
+
2989
+ #errors ul li {
2990
+ margin-bottom: 0.5em;
2991
+ }
2992
+
2993
+ #errors ul {
2994
+ margin: 0;
2995
+ padding: 0;
2996
+ list-style-type: decimal;
2997
+ }
2998
+
2999
+ #alchemyConfirmation .alchemy_window_buttons {
3000
+ display: block;
3001
+ text-align: right;
3002
+ margin-top: 8px;
3003
+ padding-right: 8px;
3004
+ }
3005
+
3006
+ #alchemyConfirmation_content div.alchemy_window_message {
3007
+ padding: 8px;
3008
+ }
3009
+
3010
+ #page_select {
3011
+ width: 120px;
3012
+ margin-left: 8px;
3013
+ }
3014
+
3015
+ #new_page_form th, #new_page_form td {
3016
+ white-space: nowrap;
3017
+ padding: 2px;
3018
+ }
3019
+
3020
+ #new_page_form tbody tr td.second_row div.selectbox a.display {
3021
+ width: 123px;
3022
+ }
3023
+
3024
+ input#page_name {
3025
+ width: 126px;
3026
+ }
3027
+
3028
+ input.with_border {
3029
+ margin: 0;
3030
+ padding: 1px;
3031
+ font-size: 12px;
3032
+ border: 1px solid silver;
3033
+ }
3034
+
3035
+ input#user_admin {
3036
+ margin: 0 0 0 1px;
3037
+ padding: 0;
3038
+ border-width: 0;
3039
+ border-style: none;
3040
+ }
3041
+
3042
+ #image_edit div {
3043
+ height: 25px;
3044
+ }
3045
+
3046
+ #image_edit div span {
3047
+ float: left;
3048
+ padding: 0;
3049
+ margin-right: 6px;
3050
+ height: 17px;
3051
+ line-height: 19px;
3052
+ }
3053
+
3054
+ #assign_image_list div.assign_image_list_detail .picture_to_assign_name {
3055
+ white-space: nowrap;
3056
+ overflow: hidden;
3057
+ padding-top: 3px;
3058
+ display: block;
3059
+ font: 12px "Courier New", Courier, mono;
3060
+ }
3061
+
3062
+ #assign_image_list div.pagination {
3063
+ margin-bottom: 8px;
3064
+ }
3065
+
3066
+ div.image_assign_filter_and_image_sizing form {
3067
+ float: right;
3068
+ width: 290px;
3069
+ height: 25px;
3070
+ margin-top: 2px;
3071
+ padding: 0 !important;
3072
+ }
3073
+
3074
+ div.image_assign_filter_and_image_sizing form div.search_field {
3075
+ margin-right: 4px;
3076
+ float: left;
3077
+ position: relative;
3078
+ }
3079
+
3080
+ div.image_assign_filter_and_image_sizing form input.button {
3081
+ float: right;
3082
+ }
3083
+
3084
+ div.assign_file_file {
3085
+ text-align: center;
3086
+ background-color: white;
3087
+ width: 100%;
3088
+ margin-bottom: 4px;
3089
+ }
3090
+
3091
+ #assign_file_list div.assign_file_file a {
3092
+ overflow: hidden;
3093
+ display: block;
3094
+ padding-right: 4px;
3095
+ text-align: left;
3096
+ line-height: 25px;
3097
+ }
3098
+
3099
+ div.assign_file_file_icon {
3100
+ float: left;
3101
+ margin: 4px;
3102
+ }
3103
+
3104
+ #alchemy .ui-dialog-content a img {
3105
+ border-style: none;
3106
+ }
3107
+
3108
+ #sitemap_external_links form {
3109
+ margin-left: 5px;
3110
+ margin-bottom: 4px;
3111
+ }
3112
+
3113
+ input#link_to_text {
3114
+ border-width: 1px;
3115
+ font-size: 11px;
3116
+ line-height: 11px;
3117
+ width: 229px;
3118
+ }
3119
+
3120
+ .link_window_tab_body {
3121
+ background-color: #ededed;
3122
+ padding: 8px;
3123
+ margin: 0;
3124
+ }
3125
+
3126
+ div#tabbar_and_content {
3127
+
3128
+ }
3129
+
3130
+ #internal_link_title {
3131
+ }
3132
+
3133
+ #alchemy .ui-dialog-content ul#sitemap {
3134
+ margin: 0;
3135
+ padding: 0 8px 8px 0;
3136
+ }
3137
+
3138
+ #alchemy .ui-dialog-content ul#sitemap li {
3139
+ margin-left: 0;
3140
+ padding-left: 0;
3141
+ }
3142
+
3143
+ #alchemy .ui-dialog-content ul#sitemap li li {
3144
+ padding-left: 22px;
3145
+ }
3146
+
3147
+ #alchemy .ui-dialog-content ul#sitemap ul li span.sitemap_sitename {
3148
+ background-color: #f9f9f9;
3149
+ width: 311px;
3150
+ margin: 6px 0 0;
3151
+ padding: 0 0 4px 4px;
3152
+ height: 14px;
3153
+ float: left;
3154
+ line-height: 18px;
3155
+ }
3156
+
3157
+ #alchemy .ui-dialog-content ul#sitemap ul li ul li span.sitemap_sitename {
3158
+ float: left;
3159
+ background-color: #f9f9f9;
3160
+ width: 290px;
3161
+ margin: 6px 0 0;
3162
+ padding: 0 0 4px 4px;
3163
+ height: 14px;
3164
+ }
3165
+
3166
+ #alchemy .ui-dialog-content ul#sitemap ul li ul li ul li span.sitemap_sitename {
3167
+ float: left;
3168
+ background-color: #f9f9f9;
3169
+ width: 269px;
3170
+ margin: 6px 0 0;
3171
+ padding: 0 0 4px 4px;
3172
+ height: 14px;
3173
+ }
3174
+
3175
+ #alchemy .ui-dialog-content ul#sitemap ul li ul li ul li ul li span.sitemap_sitename {
3176
+ float: left;
3177
+ background-color: #f9f9f9;
3178
+ width: 248px;
3179
+ margin: 6px 0 0;
3180
+ padding: 0 0 4px 4px;
3181
+ height: 14px;
3182
+ }
3183
+
3184
+ #alchemy .ui-dialog-content ul#sitemap img.site_status {
3185
+ float: left;
3186
+ border-style: none;
3187
+ margin-bottom: 0px;
3188
+ border-width: 0;
3189
+ padding: 0;
3190
+ padding-top: 6px;
3191
+ margin-right: 4px;
3192
+ }
3193
+
3194
+ #alchemy .ui-dialog-content ul#sitemap ul li img {
3195
+ border-width: 0;
3196
+ border-style: none;
3197
+ float: left;
3198
+ }
3199
+
3200
+ #alchemy .ui-dialog-content ul#sitemap .sitemap_row {
3201
+ padding: 0;
3202
+ margin: 0px;
3203
+ font-size: 12px;
3204
+ line-height: 22px;
3205
+ position: relative;
3206
+ height: 28px;
3207
+ }
3208
+
3209
+ div.elements_from_page_selector {
3210
+ width: 154px;
3211
+ }
3212
+
3213
+ div.elements_for_page {
3214
+ position: absolute;
3215
+ right: 23px;
3216
+ top: 0;
3217
+ z-index: 15;
3218
+ background-color: white;
3219
+ width: 206px;
3220
+ padding: 4px;
3221
+ border: 1px solid #9c9d9c;
3222
+ -webkit-box-shadow: #9ea09f 0px 0px 4px;
3223
+ -moz-box-shadow: #9ea09f 0px 0px 4px;
3224
+ -o-box-shadow: #9ea09f 0px 0px 4px;
3225
+ box-shadow: #9ea09f 0px 0px 4px;
3226
+ line-height: 13px;
3227
+ border-radius: 3px;
3228
+ -webkit-border-radius: 3px;
3229
+ -moz-border-radius: 3px;
3230
+ -o-border-radius: 3px;
3231
+ }
3232
+
3233
+ a.close_elements_from_page_selector {
3234
+ padding-left: 4px;
3235
+ font-size: 0;
3236
+ float: right;
3237
+ padding-right: 2px;
3238
+ width: 11px;
3239
+ height: 15px;
3240
+ margin-top: 5px;
3241
+ background: url(/images/alchemy/icons.png) no-repeat 0 -105px;
3242
+ }
3243
+
3244
+ .elements_for_page img {
3245
+ width: 20px;
3246
+ height: 20px;
3247
+ }
3248
+
3249
+ #alchemy .ui-dialog-content ul#sitemap ul .sitemap_row a {
3250
+ color: black;
3251
+ text-decoration: none;
3252
+ display: block;
3253
+ outline: none;
3254
+ }
3255
+
3256
+ #sitemap a.show_elements_to_link {
3257
+ float: left;
3258
+ width: 16px;
3259
+ height: 16px;
3260
+ position: relative;
3261
+ background: url(/images/alchemy/icons.png) no-repeat -256px -40px;
3262
+ margin: 2px;
3263
+ font-size: 0;
3264
+ text-decoration: none;
3265
+ }
3266
+
3267
+ .bordertop_white {
3268
+ border-top: 4px solid white;
3269
+ padding-top: 8px;
3270
+ padding-bottom: 8px;
3271
+ overflow: auto;
3272
+ float: none;
3273
+ }
3274
+
3275
+ div#assign_file_list {
3276
+ margin-bottom: 8px;
3277
+ margin-top: 8px;
3278
+ clear: both;
3279
+ }
3280
+
3281
+ ul#sitemap li .sitemap_sitename.selected_page a{
3282
+ background-color: #DB694C;
3283
+ color: #f5f5f5;
3284
+ }
3285
+
3286
+ #alchemy .ui-dialog-content ul#sitemap ul li span.sitemap_sitename.selected_page a {
3287
+ font-weight: bold;
3288
+ padding-left: 4px;
3289
+ }
3290
+
3291
+ #alchemy .ui-dialog-content ul#sitemap ul li span.sitemap_sitename a:hover {
3292
+ font-weight: bold;
3293
+ }
3294
+
3295
+ div.assign_file_file_name {
3296
+ float: left;
3297
+ }
3298
+
3299
+ .selected_file a {
3300
+ font-weight: bold;
3301
+ white-space: nowrap;
3302
+ overflow: hidden;
3303
+ }
3304
+
3305
+ div.assign_file_file_icon img {
3306
+ margin-top: 2px;
3307
+ }
3308
+
3309
+ #external_link_table .padding_right {
3310
+ padding-right: 8px;
3311
+ }
3312
+
3313
+ #external_link_table .external_address_input {
3314
+ width: 195px;
3315
+ }
3316
+
3317
+ #alchemy .ui-dialog-content td.label {
3318
+ padding-top: 2px;
3319
+ padding-bottom: 2px;
3320
+ padding-right: 4px;
3321
+ height: 25px;
3322
+ }
3323
+
3324
+ #alchemy .ui-dialog-content td.label.right {
3325
+ text-align: right;
3326
+ width: 40px;
3327
+ }
3328
+
3329
+ .elements_for_page .alchemy_selectbox {
3330
+ float: left;
3331
+ width: 217px;
3332
+ }
3333
+
3334
+ table.window_form td.input {
3335
+ padding-top: 2px;
3336
+ padding-bottom: 2px;
3337
+ padding-right: 10px;
3338
+ }
3339
+
3340
+ #alchemy .ui-dialog-content p {
3341
+ min-height: 21px;
3342
+ }
3343
+
3344
+ table.window_form td.checkbox {
3345
+ text-align: left;
3346
+ }
3347
+
3348
+ select#url_protocol.medium {
3349
+ margin: 0;
3350
+ }
3351
+
3352
+ #alchemy .ui-dialog-content input.auto_resize,
3353
+ #alchemy .ui-dialog-content textarea.auto_resize {
3354
+ width: 100%;
3355
+ }
3356
+
3357
+ #alchemy .ui-dialog-content td.medium {
3358
+ width: 76px;
3359
+ }
3360
+
3361
+ #alchemy .ui-dialog-content input.medium_long {
3362
+ width: 129px;
3363
+ }
3364
+
3365
+ #alchemy .ui-dialog-content input.long,
3366
+ #alchemy .ui-dialog-content textarea.long {
3367
+ margin: 0;
3368
+ width: 240px;
3369
+ }
3370
+
3371
+ #alchemy .ui-dialog-content input.very_long {
3372
+ width: 300px;
3373
+ margin: 0;
3374
+ }
3375
+
3376
+ #alchemy .ui-dialog-content select.very_long,
3377
+ #alchemy .ui-dialog-content .selectbox.very_long,
3378
+ #alchemy .ui-dialog-content .selectbox.very_long .display {
3379
+ width: 170px;
3380
+ }
3381
+
3382
+ #alchemy .ui-dialog-content .short {
3383
+ width: 40px;
3384
+ }
3385
+
3386
+ #alchemy .ui-dialog-content p a.button {
3387
+ float: right;
3388
+ }
3389
+
3390
+ div.emulate_table input.button:disabled {
3391
+ color: gray;
3392
+ }
3393
+
3394
+ div.emulate_table {
3395
+ overflow: auto;
3396
+ }
3397
+
3398
+ div.emulate_table label {
3399
+ float: left;
3400
+ width: 70px;
3401
+ padding-top: 2px;
3402
+ }
3403
+
3404
+ div.emulate_table .short_label {
3405
+ width: 50px;
3406
+ text-align: right;
3407
+ padding-right: 4px;
3408
+ padding-left: 4px;
3409
+ }
3410
+
3411
+ div.emulate_table input, div.emulate_table select {
3412
+ float: left;
3413
+ }
3414
+
3415
+ .emulated_table_row {
3416
+ padding: 1px;
3417
+ overflow: auto;
3418
+ clear: both;
3419
+ margin-bottom: 5px;
3420
+ line-height: 21px;
3421
+ }
3422
+
3423
+ .emulated_table_row span.first_column {
3424
+ float: left;
3425
+ margin-right: 4px;
3426
+ }
3427
+
3428
+ div.emulate_table select.short {
3429
+ border: 0px none;
3430
+ padding: 2px;
3431
+ width: 51px;
3432
+ }
3433
+
3434
+ div.emulate_table p {
3435
+ float: left;
3436
+ clear: both;
3437
+ margin-bottom: 4px;
3438
+ padding: 0px;
3439
+ width: 100%;
3440
+ }
3441
+
3442
+ .assign_file_file.selected_file {
3443
+ background-color: #d1d1d1;
3444
+ }
3445
+
3446
+ div.info ol {
3447
+ margin: 0 0 8px;
3448
+ padding-left: 20px;
3449
+ }
3450
+
3451
+ div.info ol li {
3452
+ text-indent: 0;
3453
+ margin-bottom: 4px;
3454
+ }
3455
+
3456
+ div#overlay_toolbar {
3457
+ background: #e3e3e3 url(/images/alchemy/gui/shading.png) repeat-x 0 -42px;
3458
+ border: 1px solid #afafaf;
3459
+ height: 38px;
3460
+ border-left-style: none;
3461
+ border-right-style: none;
3462
+ padding: 8px;
3463
+ }
3464
+
3465
+ #overlay_toolbar div.js_filter_field_box {
3466
+ margin-top: 6px;
3467
+ margin-right: 8px;
3468
+ }
3469
+
3470
+ div#overlay_toolbar div.toolbar_spacer {
3471
+ float: left;
3472
+ width: 1px;
3473
+ height: 37px;
3474
+ border-right-style: dotted;
3475
+ border-right-width: 1px;
3476
+ margin-right: 8px;
3477
+ margin-left: 4px;
3478
+ }
3479
+
3480
+ div#overlay_toolbar a.button {
3481
+ width: 25px;
3482
+ height: 21px;
3483
+ text-decoration: none;
3484
+ float: right;
3485
+ border-width: 0;
3486
+ border-style: none;
3487
+ font-size: 0;
3488
+ padding: 0;
3489
+ background-repeat: no-repeat;
3490
+ background-position: 0 0;
3491
+ }
3492
+
3493
+ div#overlay_toolbar a.button:active {
3494
+ text-decoration: none;
3495
+ background-position: 0 -21px;
3496
+ }
3497
+
3498
+ #alchemy div#overlay_toolbar form {
3499
+ float: left;
3500
+ padding: 0;
3501
+ margin-right: 8px;
3502
+ }
3503
+
3504
+ a.icon.remove {
3505
+ background: url(/images/alchemy/icons/element-icons.png) no-repeat -64px;
3506
+ width: 16px;
3507
+ height: 16px;
3508
+ display: inline-block;
3509
+ position: relative;
3510
+ top: 3px;
3511
+ margin-right: 4px;
3512
+ }
3513
+
3514
+ #uploadProgressContainer {
3515
+ overflow: hidden;
3516
+ margin-right: auto;
3517
+ margin-left: auto;
3518
+ padding: 0 8px;
3519
+ }
3520
+
3521
+ #uploadProgressContainer .progressWrapper {
3522
+ padding: 8px;
3523
+ background-color: #e3e3e3;
3524
+ position: relative;
3525
+ margin-bottom: 8px;
3526
+ border: 1px solid #9e9e9e;
3527
+ -moz-border-radius: 3px;
3528
+ -webkit-border-radius: 3px;
3529
+ border-radius: 3px;
3530
+ }
3531
+
3532
+ #uploadProgressContainer .progressName,
3533
+ #uploadProgressContainer .progressBarStatus {
3534
+ margin-bottom: 4px;
3535
+ }
3536
+
3537
+ #uploadProgressContainer .progressBarStatus {
3538
+ font-size: 10px;
3539
+ }
3540
+
3541
+ #uploadProgressContainer .progressName {
3542
+ text-shadow: 0 1px 2px #FFFFFF;
3543
+ }
3544
+
3545
+ #uploadProgressContainer .progressBarContainer {
3546
+ background: #F9F9F9 url("/images/alchemy/gui/shading.png") repeat-x 0 0;
3547
+ border:1px solid #9E9E9E;
3548
+ -moz-border-radius:3px;
3549
+ -webkit-border-radius:3px;
3550
+ border-radius:3px;
3551
+ height:16px;
3552
+ overflow: hidden;
3553
+ width:100%;
3554
+ }
3555
+
3556
+ #uploadProgressContainer .progressBarInProgress {
3557
+ background: #77AAD5 url("/images/alchemy/gui/shading.png") repeat-x 0 -75px;
3558
+ height: 16px;
3559
+ width: 0;
3560
+ }
3561
+
3562
+ #uploadProgressContainer .progressBarComplete {
3563
+ background: #00D827 url("/images/alchemy/gui/shading.png") repeat-x 0 -75px;
3564
+ height: 16px;
3565
+ width: 0;
3566
+ }
3567
+
3568
+ #uploadProgressContainer .progressBarError {
3569
+ background: #F00 url("/images/alchemy/gui/shading.png") repeat-x 0 -75px;
3570
+ height: 16px;
3571
+ width: 0;
3572
+ }
3573
+
3574
+ #uploadProgressContainer .progressBarCanceled {
3575
+ background: #E4E4E4 url("/images/alchemy/gui/shading.png") repeat-x 0 -75px;
3576
+ height: 16px;
3577
+ width: 0;
3578
+ }
3579
+
3580
+ #uploadProgressContainer .progressCancel {
3581
+ background: #f1f1f1 url(/images/alchemy/icons.png) no-repeat 0 -104px;
3582
+ border: 1px solid #9e9e9e;
3583
+ -moz-border-radius: 3px;
3584
+ -webkit-border-radius: 3px;
3585
+ border-radius: 3px;
3586
+ width: 15px;
3587
+ height: 16px;
3588
+ position: absolute;
3589
+ top: 8px;
3590
+ right: 8px;
3591
+ }
3592
+
3593
+ #btnCancel {
3594
+ float: right;
3595
+ }
3596
+
3597
+ object.swfupload {
3598
+ margin-top: 16px;
3599
+ margin-bottom: 16px;
3600
+ }
3601
+
3602
+ #alchemy .ui-dialog #alchemyConfirmation.ui-dialog-content {
3603
+ padding: 8px;
3604
+ }
3605
+
3606
+ #preview_load_info {
3607
+ float: left;
3608
+ width: 16px;
3609
+ height: 16px;
3610
+ margin: 1px 0 0 -12px;
3611
+ }
3612
+
3613
+ #clipboard_items ul {
3614
+ list-style-type: none;
3615
+ margin: 0 0 16px;
3616
+ padding: 0;
3617
+ height: 180px;
3618
+ overflow-y: auto;
3619
+ overflow-x: hidden;
3620
+ }
3621
+
3622
+ #clipboard_items ul li {
3623
+ padding: 4px;
3624
+ background: white;
3625
+ }
3626
+
3627
+ .mceEditor table {
3628
+ border-spacing: 0 !important;
3629
+ }