alchemy_cms 2.0.rc3 → 2.0.rc4

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