alchemy_cms 2.1.12 → 2.2.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (405) hide show
  1. data/.travis.yml +1 -1
  2. data/Gemfile +20 -16
  3. data/README.md +11 -7
  4. data/alchemy_cms.gemspec +31 -29
  5. data/app/assets/javascripts/alchemy/alchemy.base.js +234 -233
  6. data/app/assets/javascripts/alchemy/alchemy.buttons.js +26 -26
  7. data/app/assets/javascripts/alchemy/alchemy.datepicker.js +32 -32
  8. data/app/assets/javascripts/alchemy/alchemy.dirty.js +78 -78
  9. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js +103 -103
  10. data/app/assets/javascripts/alchemy/alchemy.element_editor_selector.js +84 -84
  11. data/app/assets/javascripts/alchemy/alchemy.elements_window.js +88 -88
  12. data/app/assets/javascripts/alchemy/alchemy.file_progress.js +92 -0
  13. data/app/assets/javascripts/alchemy/alchemy.growler.js +23 -23
  14. data/app/assets/javascripts/alchemy/alchemy.html5.js +23 -0
  15. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js +53 -52
  16. data/app/assets/javascripts/alchemy/alchemy.jquery_loader.js +33 -30
  17. data/app/assets/javascripts/alchemy/alchemy.js +2 -0
  18. data/app/assets/javascripts/alchemy/alchemy.js_extensions.js +14 -14
  19. data/app/assets/javascripts/alchemy/alchemy.link_overlay.js.coffee +181 -0
  20. data/app/assets/javascripts/alchemy/alchemy.menubar.js +48 -48
  21. data/app/assets/javascripts/alchemy/alchemy.page_sorter.js +39 -39
  22. data/app/assets/javascripts/alchemy/alchemy.preview.js +81 -83
  23. data/app/assets/javascripts/alchemy/alchemy.preview_window.js +86 -86
  24. data/app/assets/javascripts/alchemy/alchemy.routes.js.erb +23 -23
  25. data/app/assets/javascripts/alchemy/alchemy.swf_upload.js +208 -353
  26. data/app/assets/javascripts/alchemy/alchemy.uploader.js +279 -0
  27. data/app/assets/javascripts/alchemy/alchemy.windows.js +268 -268
  28. data/app/assets/javascripts/tiny_mce/plugins/alchemy_link/editor_plugin.js +42 -42
  29. data/app/assets/stylesheets/alchemy/_defaults.scss +89 -89
  30. data/app/assets/stylesheets/alchemy/base.css.scss +790 -804
  31. data/app/assets/stylesheets/alchemy/buttons.css.scss +263 -264
  32. data/app/assets/stylesheets/alchemy/dashboard.css.scss +66 -66
  33. data/app/assets/stylesheets/alchemy/elements.css.scss +575 -564
  34. data/app/assets/stylesheets/alchemy/flash.css.scss +45 -45
  35. data/app/assets/stylesheets/alchemy/frame.css.scss +262 -262
  36. data/app/assets/stylesheets/alchemy/icons.css.scss +86 -86
  37. data/app/assets/stylesheets/alchemy/jquery-ui.alchemy.css.scss +706 -707
  38. data/app/assets/stylesheets/alchemy/jquery.Jcrop.css.scss +46 -27
  39. data/app/assets/stylesheets/alchemy/jquery.sb.css.scss +107 -107
  40. data/app/assets/stylesheets/alchemy/login.css.scss +40 -38
  41. data/app/assets/stylesheets/alchemy/menubar.css.scss +84 -82
  42. data/app/assets/stylesheets/alchemy/modules.css.scss +9 -9
  43. data/app/assets/stylesheets/alchemy/pagination.css.scss +49 -49
  44. data/app/assets/stylesheets/alchemy/print.css +7 -7
  45. data/app/assets/stylesheets/alchemy/sitemap.css.scss +185 -154
  46. data/app/assets/stylesheets/alchemy/standard_set.css +205 -206
  47. data/app/assets/stylesheets/alchemy/tables.css.scss +94 -60
  48. data/app/assets/stylesheets/alchemy/tinymce_content.css.scss +34 -34
  49. data/app/assets/stylesheets/alchemy/tinymce_dialog.css.scss +177 -177
  50. data/app/assets/stylesheets/alchemy/upload.css.scss +68 -45
  51. data/app/assets/stylesheets/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css.scss +222 -221
  52. data/app/controllers/alchemy/admin/attachments_controller.rb +100 -100
  53. data/app/controllers/alchemy/admin/base_controller.rb +116 -116
  54. data/app/controllers/alchemy/admin/clipboard_controller.rb +44 -44
  55. data/app/controllers/alchemy/admin/contents_controller.rb +55 -55
  56. data/app/controllers/alchemy/admin/dashboard_controller.rb +12 -11
  57. data/app/controllers/alchemy/admin/elements_controller.rb +109 -109
  58. data/app/controllers/alchemy/admin/essence_audios_controller.rb +8 -8
  59. data/app/controllers/alchemy/admin/essence_files_controller.rb +20 -20
  60. data/app/controllers/alchemy/admin/essence_flashes_controller.rb +8 -8
  61. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +81 -81
  62. data/app/controllers/alchemy/admin/essence_videos_controller.rb +8 -8
  63. data/app/controllers/alchemy/admin/languages_controller.rb +16 -4
  64. data/app/controllers/alchemy/admin/layoutpages_controller.rb +9 -9
  65. data/app/controllers/alchemy/admin/pages_controller.rb +249 -248
  66. data/app/controllers/alchemy/admin/pictures_controller.rb +105 -105
  67. data/app/controllers/alchemy/admin/resources_controller.rb +111 -166
  68. data/app/controllers/alchemy/admin/trash_controller.rb +18 -18
  69. data/app/controllers/alchemy/admin/users_controller.rb +69 -69
  70. data/app/controllers/alchemy/attachments_controller.rb +27 -27
  71. data/app/controllers/alchemy/base_controller.rb +159 -155
  72. data/app/controllers/alchemy/elements_controller.rb +16 -16
  73. data/app/controllers/alchemy/messages_controller.rb +59 -59
  74. data/app/controllers/alchemy/pages_controller.rb +194 -198
  75. data/app/controllers/alchemy/pictures_controller.rb +57 -57
  76. data/app/controllers/alchemy/user_sessions_controller.rb +70 -70
  77. data/app/helpers/alchemy/admin/attachments_helper.rb +7 -7
  78. data/app/helpers/alchemy/admin/base_helper.rb +425 -425
  79. data/app/helpers/alchemy/admin/contents_helper.rb +72 -72
  80. data/app/helpers/alchemy/admin/elements_helper.rb +108 -107
  81. data/app/helpers/alchemy/admin/essences_helper.rb +108 -108
  82. data/app/helpers/alchemy/admin/pages_helper.rb +42 -42
  83. data/app/helpers/alchemy/admin/pictures_helper.rb +26 -26
  84. data/app/helpers/alchemy/base_helper.rb +90 -90
  85. data/app/helpers/alchemy/elements_helper.rb +167 -168
  86. data/app/helpers/alchemy/essences_helper.rb +133 -133
  87. data/app/helpers/alchemy/pages_helper.rb +515 -526
  88. data/app/helpers/alchemy/pictures_helper.rb +19 -0
  89. data/app/mailers/alchemy/messages.rb +13 -13
  90. data/app/mailers/alchemy/notifications.rb +19 -19
  91. data/app/models/alchemy.rb +3 -3
  92. data/app/models/alchemy/attachment.rb +52 -78
  93. data/app/models/alchemy/cell.rb +48 -48
  94. data/app/models/alchemy/content.rb +196 -196
  95. data/app/models/alchemy/element.rb +500 -490
  96. data/app/models/alchemy/essence_audio.rb +7 -7
  97. data/app/models/alchemy/essence_date.rb +10 -10
  98. data/app/models/alchemy/essence_file.rb +7 -7
  99. data/app/models/alchemy/essence_flash.rb +6 -6
  100. data/app/models/alchemy/essence_html.rb +9 -9
  101. data/app/models/alchemy/essence_picture.rb +17 -17
  102. data/app/models/alchemy/essence_richtext.rb +53 -53
  103. data/app/models/alchemy/essence_text.rb +21 -21
  104. data/app/models/alchemy/essence_video.rb +7 -7
  105. data/app/models/alchemy/folded_page.rb +3 -3
  106. data/app/models/alchemy/language.rb +91 -91
  107. data/app/models/alchemy/language/code.rb +14 -14
  108. data/app/models/alchemy/message.rb +48 -45
  109. data/app/models/alchemy/page.rb +555 -558
  110. data/app/models/alchemy/picture.rb +100 -99
  111. data/app/models/alchemy/user.rb +76 -74
  112. data/app/models/alchemy/user_session.rb +8 -8
  113. data/app/sweepers/alchemy/content_sweeper.rb +15 -15
  114. data/app/sweepers/alchemy/pages_sweeper.rb +50 -50
  115. data/app/sweepers/alchemy/pictures_sweeper.rb +14 -14
  116. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +23 -23
  117. data/app/views/alchemy/admin/attachments/_attachment.html.erb +56 -56
  118. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +15 -15
  119. data/app/views/alchemy/admin/attachments/_files_list.html.erb +16 -16
  120. data/app/views/alchemy/admin/attachments/create.js.erb +2 -2
  121. data/app/views/alchemy/admin/attachments/destroy.js.erb +3 -3
  122. data/app/views/alchemy/admin/attachments/edit.html.erb +10 -10
  123. data/app/views/alchemy/admin/attachments/index.html.erb +14 -14
  124. data/app/views/alchemy/admin/attachments/new.html.erb +9 -9
  125. data/app/views/alchemy/admin/clipboard/index.html.erb +21 -21
  126. data/app/views/alchemy/admin/clipboard/insert.js.erb +5 -5
  127. data/app/views/alchemy/admin/contents/_missing.html.erb +1 -1
  128. data/app/views/alchemy/admin/contents/create.js.erb +33 -33
  129. data/app/views/alchemy/admin/contents/destroy.js.erb +5 -5
  130. data/app/views/alchemy/admin/contents/new.html.erb +13 -13
  131. data/app/views/alchemy/admin/contents/order.js.erb +2 -2
  132. data/app/views/alchemy/admin/dashboard/index.html.erb +96 -92
  133. data/app/views/alchemy/admin/elements/_add_content.html.erb +12 -12
  134. data/app/views/alchemy/admin/elements/_element.html.erb +3 -3
  135. data/app/views/alchemy/admin/elements/_new_element_form.html.erb +28 -28
  136. data/app/views/alchemy/admin/elements/_picture_editor.html.erb +21 -21
  137. data/app/views/alchemy/admin/elements/create.js.erb +32 -32
  138. data/app/views/alchemy/admin/elements/index.html.erb +2 -2
  139. data/app/views/alchemy/admin/elements/new.html.erb +31 -31
  140. data/app/views/alchemy/admin/elements/order.js.erb +3 -3
  141. data/app/views/alchemy/admin/elements/trash.js.erb +13 -13
  142. data/app/views/alchemy/admin/elements/update.js.erb +6 -6
  143. data/app/views/alchemy/admin/essence_files/assign.js.erb +6 -6
  144. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +32 -32
  145. data/app/views/alchemy/admin/essence_pictures/destroy.js.erb +1 -1
  146. data/app/views/alchemy/admin/essence_pictures/edit.html.erb +1 -1
  147. data/app/views/alchemy/admin/essence_pictures/update.js.erb +11 -11
  148. data/app/views/alchemy/admin/languages/_form.html.erb +51 -45
  149. data/app/views/alchemy/admin/languages/_language.html.erb +45 -45
  150. data/app/views/alchemy/admin/languages/_table.html.erb +25 -25
  151. data/app/views/alchemy/admin/layoutpages/index.html.erb +35 -35
  152. data/app/views/alchemy/admin/pages/_create_language_form.html.erb +42 -42
  153. data/app/views/alchemy/admin/pages/_external_link.html.erb +1 -1
  154. data/app/views/alchemy/admin/pages/_new_page_form.html.erb +27 -27
  155. data/app/views/alchemy/admin/pages/_page.html.erb +112 -112
  156. data/app/views/alchemy/admin/pages/_sitemap.html.erb +1 -1
  157. data/app/views/alchemy/admin/pages/configure.html.erb +71 -69
  158. data/app/views/alchemy/admin/pages/configure_external.html.erb +38 -38
  159. data/app/views/alchemy/admin/pages/destroy.js.erb +10 -10
  160. data/app/views/alchemy/admin/pages/edit.html.erb +165 -165
  161. data/app/views/alchemy/admin/pages/fold.js.erb +2 -2
  162. data/app/views/alchemy/admin/pages/index.html.erb +66 -66
  163. data/app/views/alchemy/admin/pages/locked.html.erb +1 -1
  164. data/app/views/alchemy/admin/pages/new.html.erb +40 -40
  165. data/app/views/alchemy/admin/pages/sort.js.erb +4 -4
  166. data/app/views/alchemy/admin/pages/unlock.js.erb +6 -6
  167. data/app/views/alchemy/admin/pages/update.js.erb +19 -19
  168. data/app/views/alchemy/admin/partials/_flash.html.erb +2 -2
  169. data/app/views/alchemy/admin/partials/_flash_notices.html.erb +1 -1
  170. data/app/views/alchemy/admin/partials/_flash_upload.html.erb +38 -0
  171. data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +15 -15
  172. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +8 -8
  173. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +35 -35
  174. data/app/views/alchemy/admin/partials/_search_form.html.erb +14 -14
  175. data/app/views/alchemy/admin/partials/_sub_navigation_tab.html.erb +6 -6
  176. data/app/views/alchemy/admin/partials/_upload_form.html.erb +56 -118
  177. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +11 -11
  178. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +71 -71
  179. data/app/views/alchemy/admin/pictures/_picture.html.erb +32 -32
  180. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +26 -26
  181. data/app/views/alchemy/admin/pictures/_pictures_list.html.erb +6 -6
  182. data/app/views/alchemy/admin/pictures/create.js.erb +7 -7
  183. data/app/views/alchemy/admin/pictures/index.html.erb +67 -67
  184. data/app/views/alchemy/admin/pictures/show_in_window.html.erb +5 -4
  185. data/app/views/alchemy/admin/resources/_form.html.erb +25 -19
  186. data/app/views/alchemy/admin/resources/_resource.html.erb +37 -36
  187. data/app/views/alchemy/admin/resources/_table.html.erb +17 -17
  188. data/app/views/alchemy/admin/resources/destroy.js.erb +1 -1
  189. data/app/views/alchemy/admin/resources/index.html.erb +14 -14
  190. data/app/views/alchemy/admin/trash/index.html.erb +20 -20
  191. data/app/views/alchemy/admin/users/_table.html.erb +52 -52
  192. data/app/views/alchemy/admin/users/_user.html.erb +35 -36
  193. data/app/views/alchemy/admin/users/index.html.erb +26 -27
  194. data/app/views/alchemy/base/error_notice.html.erb +2 -2
  195. data/app/views/alchemy/base/update.js.erb +1 -1
  196. data/app/views/alchemy/elements/_contactform_view.html.erb +76 -76
  197. data/app/views/alchemy/elements/_download_view.html.erb +1 -1
  198. data/app/views/alchemy/elements/_editor_not_found.html.erb +3 -3
  199. data/app/views/alchemy/elements/_searchresult_view.html.erb +2 -2
  200. data/app/views/alchemy/elements/_sitemap_editor.html.erb +1 -1
  201. data/app/views/alchemy/essences/_essence_audio_view.html.erb +13 -13
  202. data/app/views/alchemy/essences/_essence_date_editor.html.erb +10 -10
  203. data/app/views/alchemy/essences/_essence_file_editor.html.erb +62 -62
  204. data/app/views/alchemy/essences/_essence_file_view.html.erb +8 -8
  205. data/app/views/alchemy/essences/_essence_flash_view.html.erb +19 -19
  206. data/app/views/alchemy/essences/_essence_html_editor.html.erb +6 -6
  207. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +73 -73
  208. data/app/views/alchemy/essences/_essence_picture_view.html.erb +34 -34
  209. data/app/views/alchemy/essences/_essence_richtext_editor.html.erb +7 -7
  210. data/app/views/alchemy/essences/_essence_text_editor.html.erb +8 -8
  211. data/app/views/alchemy/navigation/_image_link.html.erb +12 -12
  212. data/app/views/alchemy/navigation/_link.html.erb +13 -13
  213. data/app/views/alchemy/navigation/_renderer.html.erb +17 -17
  214. data/app/views/alchemy/page_layouts/_layout_footer.html.erb +1 -1
  215. data/app/views/alchemy/page_layouts/_layout_header.html.erb +1 -1
  216. data/app/views/alchemy/pages/show.rss.builder +14 -14
  217. data/app/views/alchemy/search/_result.html.erb +7 -7
  218. data/app/views/alchemy/user_sessions/leave.html.erb +9 -9
  219. data/app/views/alchemy/user_sessions/login.html.erb +39 -39
  220. data/app/views/alchemy/user_sessions/logout.html.erb +1 -1
  221. data/app/views/layouts/alchemy/admin.html.erb +81 -81
  222. data/app/views/layouts/alchemy/login.html.erb +36 -36
  223. data/app/views/layouts/alchemy/pages.html.erb +48 -27
  224. data/bin/alchemy +136 -134
  225. data/config/alchemy/config.yml +13 -9
  226. data/config/locales/alchemy.de.yml +24 -30
  227. data/config/locales/alchemy.en.yml +11 -28
  228. data/config/routes.rb +146 -146
  229. data/db/migrate/20100607193638_create_essence_pictures.rb +3 -3
  230. data/db/migrate/20101109150312_alter_pages_visible_column_default.rb +1 -1
  231. data/db/migrate/20101109151812_create_languages.rb +3 -3
  232. data/db/migrate/20110115123343_remove_css_class_default_from_essence_pictures.rb +3 -3
  233. data/db/migrate/20110224105120_change_pages_visible_default.rb +3 -3
  234. data/db/migrate/20110228182659_remove_default_page_layout_from_pages.rb +2 -2
  235. data/db/migrate/20110414163140_remove_display_name_from_elements.rb +3 -3
  236. data/db/migrate/20110511100516_rename_essence_texts_title_to_link_title.rb +2 -2
  237. data/db/migrate/20110529130500_add_cell_id_to_elements.rb +3 -3
  238. data/db/migrate/20110530102804_change_pages_page_layout_column.rb +3 -3
  239. data/db/migrate/20110711142057_change_open_link_in_new_window_to_link_target.rb +1 -1
  240. data/db/migrate/20111116125112_namespace_alchemy_models.rb +21 -21
  241. data/lib/alchemy/auth_engine.rb +5 -5
  242. data/lib/alchemy/capistrano.rb +64 -64
  243. data/lib/alchemy/config.rb +47 -44
  244. data/lib/alchemy/engine.rb +41 -41
  245. data/lib/alchemy/essence.rb +50 -51
  246. data/lib/alchemy/i18n.rb +48 -48
  247. data/lib/alchemy/modules.rb +30 -30
  248. data/lib/alchemy/mount_point.rb +6 -6
  249. data/lib/alchemy/page_layout.rb +94 -93
  250. data/lib/alchemy/resource.rb +82 -0
  251. data/lib/alchemy/resources_helper.rb +56 -0
  252. data/lib/alchemy/scoped_pagination_url_helper.rb +8 -8
  253. data/lib/alchemy/seeder.rb +88 -88
  254. data/lib/alchemy/tinymce.rb +49 -49
  255. data/lib/alchemy/upgrader.rb +103 -103
  256. data/lib/alchemy/version.rb +1 -1
  257. data/lib/alchemy_cms.rb +26 -27
  258. data/lib/extensions/action_view.rb +1 -1
  259. data/lib/extensions/array.rb +3 -3
  260. data/lib/extensions/hash.rb +3 -3
  261. data/lib/middleware/flash_session_cookie.rb +1 -1
  262. data/lib/rails/generators/alchemy/deploy_script/deploy_script_generator.rb +24 -24
  263. data/lib/rails/generators/alchemy/elements/elements_generator.rb +7 -7
  264. data/lib/rails/generators/alchemy/elements/templates/view.html.erb +17 -17
  265. data/lib/rails/generators/alchemy/page_layouts/page_layouts_generator.rb +6 -6
  266. data/lib/rails/generators/alchemy/plugin/templates/authorization_rules.rb +8 -8
  267. data/lib/rails/generators/alchemy/scaffold/files/pages.html.erb +7 -7
  268. data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +36 -36
  269. data/lib/rails/templates/alchemy.rb +1 -1
  270. data/lib/tasks/ferret.rake +2 -2
  271. data/lib/tasks/fleximage.rake +32 -32
  272. data/lib/tasks/install.rake +12 -12
  273. data/lib/tasks/upgrade.rake +4 -4
  274. data/spec/controllers/admin/clipboard_controller_spec.rb +43 -43
  275. data/spec/controllers/admin/contents_controller_spec.rb +22 -22
  276. data/spec/controllers/admin/elements_controller_spec.rb +13 -13
  277. data/spec/controllers/admin/languages_controller_spec.rb +31 -0
  278. data/spec/controllers/admin/pages_controller_spec.rb +10 -41
  279. data/spec/controllers/admin/resources_controller_spec.rb +19 -0
  280. data/spec/controllers/admin/trash_controller_spec.rb +11 -11
  281. data/spec/controllers/base_controller_spec.rb +46 -46
  282. data/spec/controllers/pages_controller_spec.rb +102 -92
  283. data/spec/dummy/app/controllers/admin/events_controller.rb +3 -0
  284. data/spec/dummy/app/controllers/errors_controller.rb +5 -0
  285. data/spec/dummy/app/models/event.rb +3 -0
  286. data/spec/dummy/config.ru +1 -1
  287. data/spec/dummy/config/application.rb +3 -0
  288. data/spec/dummy/config/authorization_rules.rb +7 -0
  289. data/spec/dummy/config/environments/development.rb +8 -1
  290. data/spec/dummy/config/environments/production.rb +1 -1
  291. data/spec/dummy/config/environments/test.rb +5 -2
  292. data/spec/dummy/config/routes.rb +9 -1
  293. data/spec/dummy/db/schema.rb +47 -35
  294. data/spec/dummy/public/404.html +19 -7
  295. data/spec/dummy/public/404.html.bak +26 -0
  296. data/spec/dummy/public/422.html +19 -7
  297. data/spec/dummy/public/500.html +19 -7
  298. data/spec/dummy/script/rails +2 -2
  299. data/spec/factories.rb +76 -76
  300. data/spec/helpers/admin/base_helper_spec.rb +21 -21
  301. data/spec/helpers/admin/contents_helper_spec.rb +14 -14
  302. data/spec/helpers/admin/elements_helper_spec.rb +40 -40
  303. data/spec/helpers/admin/essences_helper_spec.rb +7 -7
  304. data/spec/helpers/elements_helper_spec.rb +154 -154
  305. data/spec/helpers/essences_helper_spec.rb +10 -10
  306. data/spec/helpers/pages_helper_spec.rb +369 -372
  307. data/spec/helpers/pictures_helper_spec.rb +14 -0
  308. data/spec/helpers/url_helpers_spec.rb +29 -34
  309. data/spec/integration/admin/pages_controller_spec.rb +50 -50
  310. data/spec/integration/admin/resources_integration_spec.rb +100 -0
  311. data/spec/integration/navigation_spec.rb +1 -1
  312. data/spec/integration/pages_controller_spec.rb +205 -207
  313. data/spec/integration/security_spec.rb +47 -47
  314. data/spec/javascripts/alchemy/link_overlay_spec.js.coffee +42 -0
  315. data/spec/javascripts/alchemy_integration_spec.coffee +12 -0
  316. data/spec/javascripts/fixtures/select.html +3 -0
  317. data/spec/javascripts/helpers/.gitkeep +0 -0
  318. data/spec/javascripts/helpers/jasmine-jquery-1.3.1.js +289 -0
  319. data/spec/javascripts/helpers/mock-ajax.js +207 -0
  320. data/spec/javascripts/helpers/test_responses/test_responses.js +1 -0
  321. data/spec/javascripts/spec.css +3 -0
  322. data/spec/javascripts/spec.js +2 -0
  323. data/spec/libraries/resource_spec.rb +122 -0
  324. data/spec/libraries/resources_helper_spec.rb +105 -0
  325. data/spec/models/content_spec.rb +67 -67
  326. data/spec/models/element_spec.rb +133 -133
  327. data/spec/models/essence_picture_spec.rb +5 -5
  328. data/spec/models/essence_richtext_spec.rb +4 -4
  329. data/spec/models/language_spec.rb +89 -89
  330. data/spec/models/page_spec.rb +436 -506
  331. data/spec/models/picture_spec.rb +34 -34
  332. data/spec/models/user_spec.rb +2 -2
  333. data/spec/page_layout_spec.rb +24 -20
  334. data/spec/routing_spec.rb +253 -253
  335. data/spec/spec_helper.rb +51 -50
  336. data/spec/support/alchemy/controller_hacks.rb +25 -25
  337. data/spec/support/alchemy/specs_helpers.rb +25 -25
  338. data/spec/support/integration_spec_helper.rb +24 -0
  339. data/vendor/assets/javascripts/jquery_plugins/jquery.html5uploader.js +271 -0
  340. data/vendor/assets/javascripts/jquery_plugins/jquery.in-place-edit.js +86 -85
  341. data/vendor/assets/javascripts/jquery_plugins/jquery.ui.nestedSortable.js +380 -377
  342. data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +285 -279
  343. data/vendor/assets/javascripts/swfupload/SWFObject License.txt +3 -3
  344. data/vendor/assets/javascripts/swfupload/swfupload.cookies.js +47 -47
  345. data/vendor/assets/javascripts/swfupload/swfupload.js +612 -612
  346. data/vendor/assets/javascripts/swfupload/swfupload.queue.js +93 -93
  347. data/vendor/assets/javascripts/swfupload/swfupload.speed.js +337 -337
  348. data/vendor/assets/javascripts/swfupload/swfupload.swfobject.js +706 -102
  349. data/vendor/assets/javascripts/tiny_mce/license.txt +6 -6
  350. data/vendor/assets/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm +97 -97
  351. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/template.htm +386 -376
  352. data/vendor/assets/javascripts/tiny_mce/plugins/paste/js/pastetext.js +30 -30
  353. data/vendor/assets/javascripts/tiny_mce/plugins/paste/js/pasteword.js +45 -45
  354. data/vendor/assets/javascripts/tiny_mce/plugins/paste/pastetext.htm +20 -17
  355. data/vendor/assets/javascripts/tiny_mce/plugins/paste/pasteword.htm +12 -12
  356. data/vendor/assets/javascripts/tiny_mce/plugins/table/cell.htm +183 -173
  357. data/vendor/assets/javascripts/tiny_mce/plugins/table/css/cell.css +4 -4
  358. data/vendor/assets/javascripts/tiny_mce/plugins/table/css/row.css +7 -7
  359. data/vendor/assets/javascripts/tiny_mce/plugins/table/css/table.css +3 -3
  360. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/cell.js +282 -280
  361. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/merge_cells.js +15 -15
  362. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/row.js +204 -204
  363. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/table.js +435 -435
  364. data/vendor/assets/javascripts/tiny_mce/plugins/table/merge_cells.htm +24 -22
  365. data/vendor/assets/javascripts/tiny_mce/plugins/table/row.htm +144 -136
  366. data/vendor/assets/javascripts/tiny_mce/plugins/table/table.htm +184 -168
  367. data/vendor/assets/javascripts/tiny_mce/themes/advanced/about.htm +62 -46
  368. data/vendor/assets/javascripts/tiny_mce/themes/advanced/anchor.htm +17 -16
  369. data/vendor/assets/javascripts/tiny_mce/themes/advanced/charmap.htm +56 -47
  370. data/vendor/assets/javascripts/tiny_mce/themes/advanced/color_picker.htm +67 -54
  371. data/vendor/assets/javascripts/tiny_mce/themes/advanced/editor_template.js +852 -1
  372. data/vendor/assets/javascripts/tiny_mce/themes/advanced/image.htm +79 -69
  373. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/about.js +48 -48
  374. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/anchor.js +28 -28
  375. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/charmap.js +317 -317
  376. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/color_picker.js +248 -246
  377. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/image.js +246 -246
  378. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/link.js +146 -146
  379. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/source_editor.js +31 -31
  380. data/vendor/assets/javascripts/tiny_mce/themes/advanced/langs/de.js +1 -1
  381. data/vendor/assets/javascripts/tiny_mce/themes/advanced/langs/de_dlg.js +1 -1
  382. data/vendor/assets/javascripts/tiny_mce/themes/advanced/langs/en.js +1 -1
  383. data/vendor/assets/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js +1 -1
  384. data/vendor/assets/javascripts/tiny_mce/themes/advanced/link.htm +53 -46
  385. data/vendor/assets/javascripts/tiny_mce/themes/advanced/shortcuts.htm +57 -45
  386. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/default/content.css +182 -47
  387. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css +399 -92
  388. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/default/ui.css +891 -187
  389. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +102 -24
  390. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +377 -78
  391. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css +452 -77
  392. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css +167 -45
  393. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +399 -92
  394. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +890 -190
  395. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +33 -7
  396. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +15 -4
  397. data/vendor/assets/javascripts/tiny_mce/themes/advanced/source_editor.htm +18 -15
  398. data/vendor/assets/javascripts/tiny_mce/utils/editable_selects.js +46 -46
  399. data/vendor/assets/javascripts/tiny_mce/utils/form_utils.js +124 -124
  400. data/vendor/assets/javascripts/tiny_mce/utils/mctabs.js +112 -112
  401. data/vendor/assets/javascripts/tiny_mce/utils/validate.js +213 -213
  402. metadata +102 -115
  403. data/app/assets/javascripts/alchemy/alchemy.link_overlay.js +0 -216
  404. data/lib/tasks/routes.rake +0 -29
  405. data/spec/integration/admin/resources_spec.rb +0 -19
@@ -1,76 +1,76 @@
1
1
  @import "alchemy/defaults";
2
2
 
3
3
  #dashboard {
4
- overflow: auto;
5
- float: left;
6
- padding: 8px;
7
- width: 450px;
8
-
9
- h1 {
10
- font-size: 2em;
11
- margin-bottom: 0;
12
- text-shadow: #fff 1px 1px 2px;
13
- }
14
-
15
- h2 {
16
- padding: 0;
17
- margin-bottom: 2em;
18
- }
19
-
20
- div.widget {
21
- padding: 2*$default-padding;
22
- margin: 16px 0;
23
- background-color: $medium-gray;
24
- border: $default-border;
25
- @include rounded-corner;
26
-
27
- h2 {
28
- padding-bottom: 0;
29
- margin-bottom: 0;
30
- }
31
-
32
- p {
33
- margin: 4px 0;
34
- }
35
-
36
- ul {
37
- padding: 0;
38
- list-style-type: none;
39
- @include rounded-corner;
40
- margin-right: -9px;
41
- margin-left: -9px;
42
- margin-bottom: -9px;
43
- border: $default-border;
44
-
45
- li {
46
- padding: 2*$default-padding;
47
- margin-bottom: 0;
48
- position: relative;
49
-
50
- form {
51
- line-height: 10px;
52
- position: absolute;
53
- top: 2*$default-padding;
54
- right: $default-padding;
55
- }
56
- }
57
- }
58
- }
4
+ overflow: auto;
5
+ float: left;
6
+ padding: 8px;
7
+ width: 450px;
8
+
9
+ h1 {
10
+ font-size: 2em;
11
+ margin-bottom: 0;
12
+ text-shadow: #fff 1px 1px 2px;
13
+ }
14
+
15
+ h2 {
16
+ padding: 0;
17
+ margin-bottom: 2em;
18
+ }
19
+
20
+ div.widget {
21
+ padding: 2*$default-padding;
22
+ margin: 16px 0;
23
+ background-color: $medium-gray;
24
+ border: $default-border;
25
+ @include rounded-corner;
26
+
27
+ h2 {
28
+ padding-bottom: 0;
29
+ margin-bottom: 0;
30
+ }
31
+
32
+ p {
33
+ margin: 4px 0;
34
+ }
35
+
36
+ ul {
37
+ padding: 0;
38
+ list-style-type: none;
39
+ @include rounded-corner;
40
+ margin-right: -9px;
41
+ margin-left: -9px;
42
+ margin-bottom: -9px;
43
+ border: $default-border;
44
+
45
+ li {
46
+ padding: 2*$default-padding;
47
+ margin-bottom: 0;
48
+ position: relative;
49
+
50
+ form {
51
+ line-height: 10px;
52
+ position: absolute;
53
+ top: 2*$default-padding;
54
+ right: $default-padding;
55
+ }
56
+ }
57
+ }
58
+ }
59
59
  }
60
60
 
61
61
  div#sideboard {
62
- float: right;
63
- width: 240px;
64
- padding-right: 16px;
65
-
66
- div.sideboard_widget img {
67
- margin-bottom: 16px;
68
- float: none;
69
- }
62
+ float: right;
63
+ width: 240px;
64
+ padding-right: 16px;
65
+
66
+ div.sideboard_widget img {
67
+ margin-bottom: 16px;
68
+ float: none;
69
+ }
70
70
  }
71
71
 
72
72
  div#license {
73
- overflow: auto;
74
- height: 24em;
75
- background-color: white;
73
+ overflow: auto;
74
+ height: 24em;
75
+ background-color: white;
76
76
  }
@@ -1,849 +1,860 @@
1
1
  @import "alchemy/defaults";
2
2
 
3
3
  .element_heading .preview_text_quote {
4
- font-size: 10px;
5
- font-style: italic;
6
- line-height: 15px;
4
+ font-size: 10px;
5
+ font-style: italic;
6
+ line-height: 15px;
7
7
  }
8
8
 
9
9
  span.preview_text_element_name {
10
- font-size: 10px;
11
- text-shadow: #efefef 1px 1px 1px;
12
- font-weight: bold;
13
- line-height: 15px;
10
+ font-size: 10px;
11
+ text-shadow: #efefef 1px 1px 1px;
12
+ font-weight: bold;
13
+ line-height: 15px;
14
14
  }
15
15
 
16
16
  img.add_element_spinner {
17
- width: 24px;
18
- height: 24px;
19
- position: absolute;
20
- left: 5px;
21
- bottom: 6px;
17
+ width: 24px;
18
+ height: 24px;
19
+ position: absolute;
20
+ left: 5px;
21
+ bottom: 6px;
22
22
  }
23
23
 
24
24
  #element_area h2#no_elements_on_page_notice {
25
- padding: 2*$default-padding;
26
- text-align: center;
25
+ padding: 2*$default-padding;
26
+ text-align: center;
27
27
  }
28
28
 
29
29
  .element_handle {
30
- width: 18px;
31
- height: 18px;
32
- position: absolute;
33
- left: 8px;
34
- top: 9px;
30
+ width: 18px;
31
+ height: 18px;
32
+ position: absolute;
33
+ left: 8px;
34
+ top: 9px;
35
35
  }
36
36
 
37
37
  .draggable .element_handle {
38
- cursor: move;
38
+ cursor: move;
39
39
  }
40
40
 
41
41
  .element_handle .element_icon {
42
- z-index: 0;
43
- width: 16px;
44
- height: 16px;
45
- position: absolute;
46
- top: 0;
47
- left: 0;
48
- background: image-url('alchemy/icons.png') no-repeat -224px -72px;
42
+ z-index: 0;
43
+ width: 16px;
44
+ height: 16px;
45
+ position: absolute;
46
+ top: 0;
47
+ left: 0;
48
+ background: image-url('alchemy/icons.png') no-repeat -224px -72px;
49
49
  }
50
50
 
51
51
  .element_handle span.icon {
52
- z-index: 1;
53
- position: absolute;
54
- right: 0;
55
- bottom: 0;
52
+ z-index: 1;
53
+ position: absolute;
54
+ right: 0;
55
+ bottom: 0;
56
56
  }
57
57
 
58
58
  .element_handle span.icon.element_dirty {
59
- background-position: -160px -166px;
59
+ background-position: -160px -166px;
60
60
  }
61
61
 
62
62
  div.element_foot span.element_public {
63
- float: left;
64
- margin-top: 1px;
63
+ float: left;
64
+ margin-top: 1px;
65
65
  }
66
66
 
67
67
  .element_head_all {
68
- overflow: auto;
69
- width: 374px;
68
+ overflow: auto;
69
+ width: 374px;
70
70
  }
71
71
 
72
72
  .element_head_left {
73
- float: left;
74
- width: 230px;
75
- overflow: auto;
76
- padding-bottom: 10px;
73
+ float: left;
74
+ width: 230px;
75
+ overflow: auto;
76
+ padding-bottom: 10px;
77
77
  }
78
78
 
79
79
  .element_head_right {
80
- float: left;
81
- width: 144px;
82
- overflow: auto;
83
- margin: 0px;
84
- padding: 0px;
85
- padding-bottom: 10px;
80
+ float: left;
81
+ width: 144px;
82
+ overflow: auto;
83
+ margin: 0px;
84
+ padding: 0px;
85
+ padding-bottom: 10px;
86
86
  }
87
87
 
88
88
  .add_content {
89
- float: left;
90
- margin: 1px;
91
- width: 111px;
92
- padding: 4px;
93
- background-color: #f0e8d7;
94
- border: 1px solid #c2baab;
95
- @include rounded-corner;
96
- height: 115px;
89
+ float: left;
90
+ margin: 1px;
91
+ width: 111px;
92
+ padding: 4px;
93
+ background-color: #f0e8d7;
94
+ border: 1px solid #c2baab;
95
+ @include rounded-corner;
96
+ height: 115px;
97
97
  }
98
98
 
99
99
  .add_content a {
100
- text-decoration: none;
101
- overflow: hidden;
102
- text-align: center;
103
- font-weight: bold;
104
- line-height: 104px;
105
- @include rounded-corner;
106
- font-size: 40px;
107
- display: block;
108
- height: 100%;
109
- width: 100%;
110
- position: relative;
100
+ text-decoration: none;
101
+ overflow: hidden;
102
+ text-align: center;
103
+ font-weight: bold;
104
+ line-height: 104px;
105
+ @include rounded-corner;
106
+ font-size: 40px;
107
+ display: block;
108
+ height: 100%;
109
+ width: 100%;
110
+ position: relative;
111
111
  }
112
112
 
113
113
  .add_content a .icon.assign {
114
- background: image-url('alchemy/icons.png') no-repeat -288px -72px;
115
- position: absolute;
116
- top: 52px;
117
- left: 47px;
114
+ background: image-url('alchemy/icons.png') no-repeat -288px -72px;
115
+ position: absolute;
116
+ top: 52px;
117
+ left: 47px;
118
118
  }
119
119
 
120
120
  .element_foot {
121
- padding: 2*$default-padding;
122
- border-top-style: none;
123
- position: relative;
124
- background-color: #e5dcca;
125
- width: 100%;
126
- height: 21px;
127
- margin-left: -8px;
121
+ padding: 2*$default-padding;
122
+ border-top-style: none;
123
+ position: relative;
124
+ background-color: #e5dcca;
125
+ width: 100%;
126
+ height: 21px;
127
+ margin-left: -8px;
128
128
  }
129
129
 
130
130
  .element_foot .element_tools {
131
- float: left;
132
- margin-right: 8px;
133
- margin-top: 3px;
131
+ float: left;
132
+ margin-right: 8px;
133
+ margin-top: 3px;
134
134
  }
135
135
 
136
136
  .element_foot .button {
137
- position: absolute;
138
- right: 8px;
139
- bottom: 6px;
137
+ position: absolute;
138
+ right: 8px;
139
+ bottom: 6px;
140
140
  }
141
141
 
142
142
  .ajax_folder {
143
- position: absolute;
144
- right: 8px;
145
- top: 8px;
143
+ position: absolute;
144
+ right: 8px;
145
+ top: 8px;
146
146
  }
147
147
 
148
148
  .element_heading {
149
- padding: 0;
150
- z-index: 0;
151
- overflow: hidden;
152
- white-space: nowrap;
153
- position: absolute;
154
- left: 35px;
155
- top: 11px;
156
- width: 322px;
149
+ padding: 0;
150
+ z-index: 0;
151
+ overflow: hidden;
152
+ white-space: nowrap;
153
+ position: absolute;
154
+ left: 35px;
155
+ top: 11px;
156
+ width: 322px;
157
157
  }
158
158
 
159
159
  div.element_editor {
160
- border: 1px solid #bba589;
161
- @include rounded-corner;
162
- background-color: #f0e8d7;
163
- margin-bottom: 8px;
164
-
165
- &.not-draggable {
166
- @include opacity(50);
167
- }
168
-
169
- &.dirty {
170
- border-color: #d0c83d;
171
-
172
- .element_head, .element_foot {
173
- background-color: #fff8df;
174
- }
175
- }
176
-
177
- &.selected {
178
- border-color: #4b93db;
179
- -moz-box-shadow: 0 0 3px #4b93db;
180
- -webkit-box-shadow: 0 0 3px #4b93db;
181
- box-shadow: 0 0 3px #4b93db;
182
- }
183
-
184
- div.error {
185
- padding: 8px 4px 8px 32px;
186
- margin-bottom: 8px;
187
- margin-top: 8px;
188
- @include rounded-corner;
189
- background-color: #f1c9ca;
190
- color: #931f23;
191
- border-style: solid;
192
- border-width: 1px;
193
- position: relative;
194
-
195
- span.icon {
196
- position: absolute;
197
- left: 8px;
198
- top: 8px;
199
- }
200
- }
201
-
202
- .validation_notice {
203
- font-size: 10px;
204
- margin-top: 1em;
205
- }
206
-
207
- .foot_note {
208
- padding: $default-padding;
209
- background-color: #fffdef;
210
- @include rounded-corner;
211
- margin-bottom: 1em;
212
- }
213
-
214
- p.content_editor_error {
215
- border: 1px solid #f5b04e;
216
- padding: 4px 8px;
217
- line-height: 21px;
218
- background-color: #f5dea9;
219
- margin-top: 4px;
220
- @include rounded-corner;
221
-
222
- span.icon.warning {
223
- position: relative;
224
- top: 2px;
225
- margin-right: 8px;
226
- }
227
- }
160
+ border: 1px solid #bba589;
161
+ @include rounded-corner;
162
+ background-color: #f0e8d7;
163
+ margin-bottom: 8px;
164
+
165
+ &.not-draggable {
166
+ @include opacity(50);
167
+ }
168
+
169
+ &.dirty {
170
+ border-color: #d0c83d;
171
+
172
+ .element_head, .element_foot {
173
+ background-color: #fff8df;
174
+ }
175
+ }
176
+
177
+ &.selected {
178
+ border-color: #4b93db;
179
+ -moz-box-shadow: 0 0 3px #4b93db;
180
+ -webkit-box-shadow: 0 0 3px #4b93db;
181
+ box-shadow: 0 0 3px #4b93db;
182
+ }
183
+
184
+ div.error {
185
+ padding: 8px 4px 8px 32px;
186
+ margin-bottom: 8px;
187
+ margin-top: 8px;
188
+ @include rounded-corner;
189
+ background-color: #f1c9ca;
190
+ color: #931f23;
191
+ border-style: solid;
192
+ border-width: 1px;
193
+ position: relative;
194
+
195
+ span.icon {
196
+ position: absolute;
197
+ left: 8px;
198
+ top: 8px;
199
+ }
200
+ }
201
+
202
+ .validation_notice {
203
+ font-size: 10px;
204
+ margin-top: 1em;
205
+ }
206
+
207
+ .foot_note {
208
+ padding: $default-padding;
209
+ background-color: #fffdef;
210
+ @include rounded-corner;
211
+ margin-bottom: 1em;
212
+ }
213
+
214
+ p.content_editor_error {
215
+ border: 1px solid #f5b04e;
216
+ padding: 4px 8px;
217
+ line-height: 21px;
218
+ background-color: #f5dea9;
219
+ margin-top: 4px;
220
+ @include rounded-corner;
221
+
222
+ span.icon.warning {
223
+ position: relative;
224
+ top: 2px;
225
+ margin-right: 8px;
226
+ }
227
+ }
228
228
  }
229
229
 
230
230
  #alchemy .ui-dialog div.element_editor form {
231
- margin: 0;
232
- padding: 0 8px;
233
- overflow: hidden;
231
+ margin: 0;
232
+ padding: 0 8px;
233
+ overflow: hidden;
234
234
  }
235
235
 
236
236
  div.element_tools {
237
- height: 20px;
237
+ height: 20px;
238
238
  }
239
239
 
240
240
  span.element_tools_icons {
241
- float: left;
241
+ float: left;
242
242
  }
243
243
 
244
244
  .element_tools a {
245
- width: 16px;
246
- height: 16px;
247
- float: left;
248
- margin: 1px 4px 1px 1px;
245
+ width: 16px;
246
+ height: 16px;
247
+ float: left;
248
+ margin: 1px 4px 1px 1px;
249
249
  }
250
250
 
251
251
  a.delete_element_button {
252
- background: image-url('alchemy/icons.png') no-repeat -63px -72px;
252
+ background: image-url('alchemy/icons.png') no-repeat -63px -72px;
253
253
  }
254
254
 
255
255
  a.element_copy_button {
256
- background: image-url('alchemy/icons.png') no-repeat -128px -72px;
256
+ background: image-url('alchemy/icons.png') no-repeat -128px -72px;
257
257
  }
258
258
 
259
259
  a.element_move_button {
260
- background: image-url('alchemy/icons.png') no-repeat -97px -72px;
260
+ background: image-url('alchemy/icons.png') no-repeat -97px -72px;
261
261
  }
262
262
 
263
263
  .element_head {
264
- padding: 8px 0 6px;
265
- position: relative;
266
- overflow: hidden;
267
- margin-bottom: 0;
268
- border-top-color: #e3e3e3;
269
- height: 20px;
270
- background-color: #e5dcca;
271
- @include disable-user-select;
264
+ padding: 8px 0 6px;
265
+ position: relative;
266
+ overflow: hidden;
267
+ margin-bottom: 0;
268
+ border-top-color: #e3e3e3;
269
+ height: 20px;
270
+ background-color: #e5dcca;
271
+ @include disable-user-select;
272
272
  }
273
273
 
274
274
  form.add_gallery_to_index {
275
- overflow: auto;
275
+ overflow: auto;
276
276
  }
277
277
 
278
278
  div.picture_gallery_images {
279
- overflow: hidden;
280
- margin-bottom: 8px;
281
- border: 1px inset #cecece;
282
- @include rounded-corner;
283
- background-color: #e5dcca;
284
- padding: 1px;
279
+ overflow: hidden;
280
+ margin-bottom: 8px;
281
+ border: 1px inset #cecece;
282
+ @include rounded-corner;
283
+ background-color: #e5dcca;
284
+ padding: 1px;
285
285
  }
286
286
 
287
287
  div.picture_thumbnail div.picture_image {
288
- height: 93px;
289
- overflow: hidden;
288
+ height: 93px;
289
+ overflow: hidden;
290
290
 
291
- img.img_paddingtop {
292
- @include disable-user-select;
293
- }
291
+ img.img_paddingtop {
292
+ @include disable-user-select;
293
+ }
294
294
  }
295
295
 
296
296
  /* @group add moclecule */
297
297
 
298
298
  .new_alchemy_element {
299
- margin: 0;
300
- padding: 0;
301
- position: relative;
302
- min-height: 25px;
303
- overflow: auto;
299
+ margin: 0;
300
+ padding: 0;
301
+ position: relative;
302
+ min-height: 25px;
303
+ overflow: auto;
304
304
  }
305
305
 
306
306
  .new_alchemy_element p {
307
- line-height: 21px;
307
+ line-height: 21px;
308
308
  }
309
309
 
310
310
  .new_alchemy_element form {
311
- line-height: 21px;
311
+ line-height: 21px;
312
312
  }
313
313
 
314
314
  div#element_area {
315
- padding: 0;
316
- margin: 0;
317
- min-height: 90%;
315
+ padding: 0;
316
+ margin: 0;
317
+ min-height: 90%;
318
318
  }
319
319
 
320
320
  div#cells {
321
- min-height: 100px;
321
+ min-height: 100px;
322
322
  }
323
323
 
324
324
  div#element_area .sortable_cell {
325
- min-height: 100px;
326
- padding: 8px 8px 2px;
325
+ min-height: 100px;
326
+ padding: 8px 8px 2px;
327
327
  }
328
328
 
329
329
  .new_alchemy_element span {
330
- float: left;
331
- line-height: 25px;
330
+ float: left;
331
+ line-height: 25px;
332
332
  }
333
333
 
334
334
  .new_alchemy_element select {
335
- float: left;
336
- width: 185px;
337
- margin: 0 8px;
335
+ float: left;
336
+ width: 185px;
337
+ margin: 0 8px;
338
338
  }
339
339
 
340
340
  .new_alchemy_element input.button {
341
- float: right;
342
- margin-left: 8px;
341
+ float: right;
342
+ margin-left: 8px;
343
343
  }
344
344
 
345
345
  /* @end */
346
346
 
347
347
  .place_element_spinner {
348
- position: absolute;
349
- right: 8px;
350
- width: 24px;
351
- height: 24px;
352
- top: 5px;
348
+ position: absolute;
349
+ right: 8px;
350
+ width: 24px;
351
+ height: 24px;
352
+ top: 5px;
353
353
  }
354
354
 
355
355
  span.linkable_text_essence_tools {
356
- position: absolute;
357
- bottom: 0;
358
- right: 2px;
359
- a.icon_button {
360
- margin: 0 0 0 4px;
361
- position: absolute;
362
- bottom: 0;
363
- right: 26px;
364
- @include reset-border-radius;
365
- height: 27px;
366
- width: 27px;
367
- background-position: 0 -72px;
368
- &.unlink {
369
- right: 0;
370
- @include right-rounded-border;
371
- }
372
- .icon {
373
- left: 5px;
374
- top: 6px;
375
- }
376
- }
356
+ position: absolute;
357
+ bottom: 0;
358
+ right: 2px;
359
+ a.icon_button {
360
+ margin: 0 0 0 4px;
361
+ position: absolute;
362
+ bottom: 0;
363
+ right: 26px;
364
+ @include reset-border-radius;
365
+ height: 27px;
366
+ width: 27px;
367
+ background-position: 0 -72px;
368
+ &.unlink {
369
+ right: 0;
370
+ @include right-rounded-border;
371
+ }
372
+ .icon {
373
+ left: 5px;
374
+ top: 6px;
375
+ }
376
+ }
377
377
  }
378
378
 
379
379
  a.expand_element {
380
- background: image-url('alchemy/icons.png') no-repeat -160px -72px;
381
- height: 16px;
382
- width: 16px;
383
- text-decoration: none;
384
- display: block;
385
- margin: 1px;
380
+ background: image-url('alchemy/icons.png') no-repeat -160px -72px;
381
+ height: 16px;
382
+ width: 16px;
383
+ text-decoration: none;
384
+ display: block;
385
+ margin: 1px;
386
386
  }
387
387
 
388
388
  a.fold_element {
389
- background: image-url('alchemy/icons.png') no-repeat -192px -72px;
390
- height: 16px;
391
- width: 16px;
392
- text-decoration: none;
393
- display: block;
394
- margin: 1px;
389
+ background: image-url('alchemy/icons.png') no-repeat -192px -72px;
390
+ height: 16px;
391
+ width: 16px;
392
+ text-decoration: none;
393
+ display: block;
394
+ margin: 1px;
395
395
  }
396
396
 
397
397
  .droppable_element_placeholder {
398
- border: 1px dotted $button-border-color;
399
- background-color: $medium-gray;
400
- margin-bottom: 2*$default-margin;
398
+ border: 1px dotted $button-border-color;
399
+ background-color: $medium-gray;
400
+ margin-bottom: 2*$default-margin;
401
401
  }
402
402
 
403
403
  .edit_images_bottom {
404
- height: 19px;
405
- position: absolute;
406
- z-index: 0;
407
- left: 5px;
408
- bottom: 2px;
409
- width: 111px;
404
+ height: 19px;
405
+ position: absolute;
406
+ z-index: 0;
407
+ left: 5px;
408
+ bottom: 2px;
409
+ width: 111px;
410
410
  }
411
411
 
412
412
  .edit_images_bottom a {
413
- float: left;
414
- margin-left: 2px;
415
- margin-right: 2px;
416
- width: 18px;
417
- height: 18px;
413
+ float: left;
414
+ margin-left: 2px;
415
+ margin-right: 2px;
416
+ width: 18px;
417
+ height: 18px;
418
418
  }
419
419
 
420
420
  a.icon_button.linked {
421
- background-color: #ffd77a;
421
+ background-color: #ffd77a;
422
422
  }
423
423
 
424
424
  .edit_images_bottom a.linked {
425
- position: relative;
426
- @include rounded-corner;
427
- background-image: image-url('alchemy/shading.png');
428
- background-repeat: repeat-x;
429
- background-position: 0 -75px;
430
- background-color: #ffd77a;
431
- border: 1px solid #9a9a9a;
432
- bottom: 1px;
433
- margin-right: 2px;
434
- width: 17px;
435
- height: 17px;
436
- margin-left: 1px;
425
+ position: relative;
426
+ @include rounded-corner;
427
+ background-image: image-url('alchemy/shading.png');
428
+ background-repeat: repeat-x;
429
+ background-position: 0 -75px;
430
+ background-color: #ffd77a;
431
+ border: 1px solid #9a9a9a;
432
+ bottom: 1px;
433
+ margin-right: 2px;
434
+ width: 17px;
435
+ height: 17px;
436
+ margin-left: 1px;
437
437
  }
438
438
 
439
439
  .edit_images_bottom a.disabled {
440
- @include opacity(30);
441
- cursor: default;
440
+ @include opacity(30);
441
+ cursor: default;
442
+ }
443
+
444
+ div.content_editor.essence_date {
445
+ float: none;
446
+ display: inline;
447
+ display: inline-block;
448
+ vertical-align: top;
449
+
450
+ input.date {
451
+ width: 154px;
452
+ }
442
453
  }
443
454
 
444
455
  div.essence_picture_editor {
445
- float: left;
446
- height: 126px;
447
- margin: 1px;
448
- position: relative;
456
+ float: left;
457
+ height: 126px;
458
+ margin: 1px;
459
+ position: relative;
449
460
  }
450
461
 
451
462
  div.essence_picture_editor .picture_tool_delete {
452
- position: absolute;
453
- right: 4px;
454
- top: 4px;
455
- padding: 2px 2px 0;
456
- z-index: 2;
463
+ position: absolute;
464
+ right: 4px;
465
+ top: 4px;
466
+ padding: 2px 2px 0;
467
+ z-index: 2;
457
468
  }
458
469
 
459
470
  div.essence_picture_editor.validation_failed .picture_thumbnail {
460
- border-color: #931f23;
461
- -webkit-box-shadow: #931f23 0px 1px 3px;
462
- -moz-box-shadow: #931f23 0px 1px 3px;
463
- -ms-box-shadow: #931f23 0px 1px 3px;
464
- -o-box-shadow: #931f23 0px 1px 3px;
465
- box-shadow: #931f23 0px 1px 3px;
471
+ border-color: #931f23;
472
+ -webkit-box-shadow: #931f23 0px 1px 3px;
473
+ -moz-box-shadow: #931f23 0px 1px 3px;
474
+ -ms-box-shadow: #931f23 0px 1px 3px;
475
+ -o-box-shadow: #931f23 0px 1px 3px;
476
+ box-shadow: #931f23 0px 1px 3px;
466
477
  }
467
478
 
468
479
  div.essence_picture_css_class {
469
- position: absolute;
470
- z-index: 1;
471
- bottom: 24px;
472
- width: 99px;
473
- background-color: white;
474
- background-color: rgba(255,254,255,0.7);
475
- padding: 4px 8px;
476
- font-size: 10px;
477
- text-align: right;
478
- height: 12px;
479
- overflow: hidden;
480
+ position: absolute;
481
+ z-index: 1;
482
+ bottom: 24px;
483
+ width: 99px;
484
+ background-color: white;
485
+ background-color: rgba(255, 254, 255, 0.7);
486
+ padding: 4px 8px;
487
+ font-size: 10px;
488
+ text-align: right;
489
+ height: 12px;
490
+ overflow: hidden;
480
491
  }
481
492
 
482
493
  div.essence_picture_editor .picture_thumbnail:hover .picture_tool_delete {
483
- display: block;
494
+ display: block;
484
495
  }
485
496
 
486
497
  div.essence_picture_editor .thumbnail_background.missing {
487
- background-image: image-url('alchemy/placeholder.png');
488
- background-repeat: no-repeat;
489
- background-position: center 12px;
498
+ background-image: image-url('alchemy/placeholder.png');
499
+ background-repeat: no-repeat;
500
+ background-position: center 12px;
490
501
  }
491
502
 
492
503
  .dragable_picture {
493
- float: left;
504
+ float: left;
494
505
  }
495
506
 
496
507
  .picture_thumbnail .picture_handle {
497
- position: absolute;
498
- z-index: 1;
499
- width: 110px;
500
- height: 93px;
501
- top: 4px;
502
- left: 4px;
503
- background-color: transparent;
504
- @include disable-user-select;
508
+ position: absolute;
509
+ z-index: 1;
510
+ width: 110px;
511
+ height: 93px;
512
+ top: 4px;
513
+ left: 4px;
514
+ background-color: transparent;
515
+ @include disable-user-select;
505
516
  }
506
517
 
507
518
  .dragable_picture .picture_handle {
508
- cursor: move;
519
+ cursor: move;
509
520
  }
510
521
 
511
522
  .picture_content_spinner {
512
- background: #666666;
513
- height: 93px;
514
- left: 4px;
515
- position: absolute;
516
- top: 4px;
517
- width: inherit;
518
- img {
519
- top: 50%;
520
- left: 50%;
521
- position: absolute;
522
- margin-top: -16px;
523
- margin-left: -16px;
524
- }
523
+ background: #666666;
524
+ height: 93px;
525
+ left: 4px;
526
+ position: absolute;
527
+ top: 4px;
528
+ width: inherit;
529
+ img {
530
+ top: 50%;
531
+ left: 50%;
532
+ position: absolute;
533
+ margin-top: -16px;
534
+ margin-left: -16px;
535
+ }
525
536
  }
526
537
 
527
538
  .essence_picture_editor .picture_thumbnail {
528
- width: 111px;
529
- height: 115px;
530
- margin: 0;
539
+ width: 111px;
540
+ height: 115px;
541
+ margin: 0;
531
542
  }
532
543
 
533
544
  .essence_picture_editor .picture_thumbnail .thumbnail_background {
534
- width: 111px;
535
- height: 93px;
545
+ width: 111px;
546
+ height: 93px;
536
547
  }
537
548
 
538
549
  div.file {
539
- padding: 0;
540
- margin-top: 8px;
541
- margin-bottom: 4px;
542
- border: 1px solid #c0c0c0;
543
- background-color: #f3f3f3;
544
- @include rounded-corner;
545
- height: 24px;
550
+ padding: 0;
551
+ margin-top: 8px;
552
+ margin-bottom: 4px;
553
+ border: 1px solid #c0c0c0;
554
+ background-color: #f3f3f3;
555
+ @include rounded-corner;
556
+ height: 24px;
546
557
  }
547
558
 
548
559
  div.file_icon {
549
- text-align: center;
550
- float: left;
551
- height: 24px;
552
- width: 24px;
560
+ text-align: center;
561
+ float: left;
562
+ height: 24px;
563
+ width: 24px;
553
564
  }
554
565
 
555
566
  div.file_icon span.icon {
556
- margin: $default-margin;
567
+ margin: $default-margin;
557
568
  }
558
569
 
559
570
  div.file_icon a.assign_file {
560
- display: block;
561
- height: 16px;
562
- background: image-url('alchemy/icons.png') no-repeat -480px -40px;
563
- width: 16px;
564
- margin: $default-margin;
571
+ display: block;
572
+ height: 16px;
573
+ background: image-url('alchemy/icons.png') no-repeat -480px -40px;
574
+ width: 16px;
575
+ margin: $default-margin;
565
576
  }
566
577
 
567
578
  div.file_name {
568
- white-space: nowrap;
569
- overflow: hidden;
570
- float: left;
571
- width: 293px;
572
- line-height: 25px;
573
- font-size: 10px;
579
+ white-space: nowrap;
580
+ overflow: hidden;
581
+ float: left;
582
+ width: 293px;
583
+ line-height: 25px;
584
+ font-size: 10px;
574
585
  }
575
586
 
576
587
  div.essence_file_tools {
577
- height: 24px;
578
- float: right;
579
- background-color: white;
580
- width: 48px;
588
+ height: 24px;
589
+ float: right;
590
+ background-color: white;
591
+ width: 48px;
581
592
  }
582
593
 
583
- div.essence_file_tools a{
584
- text-decoration: none;
585
- width: 16px;
586
- height: 16px;
587
- margin: $default-margin;
588
- float: left;
594
+ div.essence_file_tools a {
595
+ text-decoration: none;
596
+ width: 16px;
597
+ height: 16px;
598
+ margin: $default-margin;
599
+ float: left;
589
600
  }
590
601
 
591
602
  div.essence_file_tools a.assign_file {
592
- background: image-url('alchemy/icons.png') -512px -40px;
603
+ background: image-url('alchemy/icons.png') -512px -40px;
593
604
  }
594
605
 
595
606
  div.essence_file_tools a.edit_file {
596
- background: image-url('alchemy/icons.png') -160px -167px;
607
+ background: image-url('alchemy/icons.png') -160px -167px;
597
608
  }
598
609
 
599
610
  td.content_editor_essence_type {
600
- width: 90px;
601
- height: 20px;
611
+ width: 90px;
612
+ height: 20px;
602
613
  }
603
614
 
604
615
  table.content_editor_table {
605
- margin-bottom: 8px;
616
+ margin-bottom: 8px;
606
617
  }
607
618
 
608
619
  .content_editor_table .thin_border {
609
- width: 210px;
620
+ width: 210px;
610
621
  }
611
622
 
612
623
  a.new_content_link {
613
- float: none;
614
- display: inline-block;
615
- margin-bottom: 8px;
616
- margin-top: 4px;
624
+ float: none;
625
+ display: inline-block;
626
+ margin-bottom: 8px;
627
+ margin-top: 4px;
617
628
  }
618
629
 
619
630
  div.essence_richtext_loader {
620
- position: absolute;
621
- top: 0;
622
- left: 0;
623
- z-index: 1;
624
- width: 100%;
625
- height: 100%;
626
- background-color: #ededed;
627
- @include opacity(75);
631
+ position: absolute;
632
+ top: 0;
633
+ left: 0;
634
+ z-index: 1;
635
+ width: 100%;
636
+ height: 100%;
637
+ background-color: #ededed;
638
+ @include opacity(75);
628
639
  }
629
640
 
630
641
  div.essence_richtext_loader img {
631
- position: absolute;
632
- top: 46%;
633
- left: 46%;
642
+ position: absolute;
643
+ top: 46%;
644
+ left: 46%;
634
645
  }
635
646
 
636
647
  div.content_text_editor.text_short {
637
- margin-top: 0;
638
- margin-bottom: 0;
639
- display: inline;
648
+ margin-top: 0;
649
+ margin-bottom: 0;
650
+ display: inline;
640
651
  }
641
652
 
642
653
  input.long,
643
654
  input.text_long {
644
- width: 363px;
655
+ width: 363px;
645
656
  }
646
657
 
647
658
  select.long {
648
- width: 376px;
649
- margin: 0;
650
- padding: 0;
659
+ width: 376px;
660
+ margin: 0;
661
+ padding: 0;
651
662
  }
652
663
 
653
664
  div.content_text_editor input.text_short {
654
- border-width: 1px;
655
- width: 50px;
656
- margin-right: 4px;
657
- padding: 2px;
665
+ border-width: 1px;
666
+ width: 50px;
667
+ margin-right: 4px;
668
+ padding: 2px;
658
669
  }
659
670
 
660
671
  #alchemy .ui-dialog-content div.content_editor input.auto_resize {
661
- width: 100%;
672
+ width: 100%;
662
673
  }
663
674
 
664
675
  div.content_editor {
665
- margin-bottom: 8px;
666
- margin-top: 8px;
667
- position: relative;
668
-
669
- input.thin_border {
670
- width: 97%;
671
- }
672
-
673
- &.missing p {
674
- line-height: 25px;
675
- padding: 2*$default-padding;
676
- border: 1px solid #f5b04e;
677
- background-color: #f5dea9;
678
- @include rounded-corner;
679
- font-size: 11px;
680
-
681
- span.icon.warning {
682
- position: relative;
683
- top: 2px;
684
- left: 2px;
685
- margin-right: 8px;
686
- }
687
- }
688
-
689
- &.display_inline {
690
- display: inline;
691
- display: inline-block;
692
- margin-right: 4px;
693
- vertical-align: top;
694
-
695
- input.thin_border {
696
- width: 170px;
697
- }
698
- }
699
-
700
- &.validation_failed {
701
-
702
- label {
703
- color: #931f23;
704
- }
705
-
706
- input {
707
- border: 1px solid #931f23;
708
- background-color: #f9e8e9;
709
- }
710
- }
711
-
712
- label {
713
- display: block;
714
- margin-bottom: 0.5em;
715
- font-size: 10px;
716
- text-shadow: #fff5e1 1px 1px 0;
717
- line-height: 15px;
718
- text-indent: 1px;
719
-
720
- span.warning.icon {
721
- position: relative;
722
- top: 2px;
723
- }
724
-
725
- &.inline {
726
- display: inline-block;
727
- min-width: 90px;
728
- margin-right: 4px;
729
- }
730
-
731
- a.icon_button.small {
732
- display: none;
733
- }
734
- }
735
-
736
- &:hover label a.icon_button.small {
737
- display: inline-block;
738
- }
739
-
740
- input.text_with_icon.auto_resize.thin_border {
741
- padding-right: 52px;
742
- width: 314px;
743
- }
744
-
745
- select.essence_editor_select {
746
- @include rounded-corner;
747
- background: white;
748
- border: 1px solid $button-border-color;
749
- font-size:11px;
750
- height:21px;
751
- line-height:21px;
752
- padding:2px;
753
-
754
- optgroup {
755
- color: gray;
756
- font-style: normal;
757
- font-weight: bold;
758
- text-indent: 8px;
759
-
760
- option {
761
- text-indent: 24px;
762
- }
763
- }
764
-
765
- option {
766
- padding-top: 2px;
767
- padding-bottom: 2px;
768
- color: black;
769
- }
770
- }
771
-
772
- &.essence_date {
773
- float: none;
774
- display: inline;
775
- display: inline-block;
776
- vertical-align: top;
777
-
778
- input.date {
779
- width: 154px;
780
- }
781
- }
782
-
783
- &.essence_picture_editor {
784
- float: none;
785
- height: auto;
786
- display: inline;
787
- display: inline-block;
788
- margin: 8px 0;
789
- }
676
+ margin-bottom: 8px;
677
+ margin-top: 8px;
678
+ position: relative;
679
+
680
+ input.thin_border {
681
+ width: 97%;
682
+ }
683
+
684
+ &.missing p {
685
+ line-height: 25px;
686
+ padding: 2*$default-padding;
687
+ border: 1px solid #f5b04e;
688
+ background-color: #f5dea9;
689
+ @include rounded-corner;
690
+ font-size: 11px;
691
+
692
+ span.icon.warning {
693
+ position: relative;
694
+ top: 2px;
695
+ left: 2px;
696
+ margin-right: 8px;
697
+ }
698
+ }
699
+
700
+ &.display_inline {
701
+ display: inline;
702
+ display: inline-block;
703
+ margin-right: 4px;
704
+ vertical-align: top;
705
+
706
+ input.thin_border {
707
+ width: 170px;
708
+ }
709
+ }
710
+
711
+ &.validation_failed {
712
+
713
+ label {
714
+ color: #931f23;
715
+ }
716
+
717
+ input {
718
+ border: 1px solid #931f23;
719
+ background-color: #f9e8e9;
720
+ }
721
+ }
722
+
723
+ label {
724
+ display: block;
725
+ margin-bottom: 0.5em;
726
+ font-size: 10px;
727
+ text-shadow: #fff5e1 1px 1px 0;
728
+ line-height: 15px;
729
+ text-indent: 1px;
730
+
731
+ span.warning.icon {
732
+ position: relative;
733
+ top: 2px;
734
+ }
735
+
736
+ &.inline {
737
+ display: inline-block;
738
+ min-width: 90px;
739
+ margin-right: 4px;
740
+ }
741
+
742
+ a.icon_button.small {
743
+ display: none;
744
+ }
745
+ }
746
+
747
+ &:hover label a.icon_button.small {
748
+ display: inline-block;
749
+ }
750
+
751
+ input.text_with_icon.auto_resize.thin_border {
752
+ padding-right: 52px;
753
+ width: 314px;
754
+ }
755
+
756
+ select.essence_editor_select {
757
+ @include rounded-corner;
758
+ background: white;
759
+ border: 1px solid $button-border-color;
760
+ font-size: 11px;
761
+ height: 21px;
762
+ line-height: 21px;
763
+ padding: 2px;
764
+
765
+ optgroup {
766
+ color: gray;
767
+ font-style: normal;
768
+ font-weight: bold;
769
+ text-indent: 8px;
770
+
771
+ option {
772
+ text-indent: 24px;
773
+ }
774
+ }
775
+
776
+ option {
777
+ padding-top: 2px;
778
+ padding-bottom: 2px;
779
+ color: black;
780
+ }
781
+ }
782
+
783
+ &.essence_date {
784
+ float: none;
785
+ display: inline;
786
+ display: inline-block;
787
+ vertical-align: top;
788
+
789
+ input.date {
790
+ width: 154px;
791
+ }
792
+ }
793
+
794
+ &.essence_picture_editor {
795
+ float: none;
796
+ height: auto;
797
+ display: inline;
798
+ display: inline-block;
799
+ margin: 8px 0;
800
+ }
790
801
  }
791
802
 
792
803
  .o2k7Skin span.alchemy_link {
793
- background-position: -500px 0;
804
+ background-position: -500px 0;
794
805
  }
795
806
 
796
807
  .o2k7Skin span.alchemy_unlink {
797
- background-position: -640px 0;
808
+ background-position: -640px 0;
798
809
  }
799
810
 
800
811
  .content_rtf_text_area {
801
- display: none;
812
+ display: none;
802
813
  }
803
814
 
804
815
  div.pictures_for_element {
805
- overflow: auto;
806
- margin-top: 4px;
816
+ overflow: auto;
817
+ margin-top: 4px;
807
818
  }
808
819
 
809
820
  textarea {
810
- font: 12px Tahoma, Arial, sans-serif;
811
- padding: 4px;
812
- margin: 0;
813
- width: 97%;
814
- border-style: inset;
815
- border-width: 1px;
816
- @include rounded-corner;
817
- height: 140px;
821
+ font: 12px Tahoma, Arial, sans-serif;
822
+ padding: 4px;
823
+ margin: 0;
824
+ width: 97%;
825
+ border-style: inset;
826
+ border-width: 1px;
827
+ @include rounded-corner;
828
+ height: 140px;
818
829
  }
819
830
 
820
831
  textarea.tinymce {
821
- padding: 0;
822
- margin: 0;
823
- width: 100%;
824
- border: 0 none;
832
+ padding: 0;
833
+ margin: 0;
834
+ width: 100%;
835
+ border: 0 none;
825
836
  }
826
837
 
827
838
  .text_short_float_left {
828
- width: 170px;
829
- float: left;
830
- margin-right: 10px;
831
- border-width: 1px;
839
+ width: 170px;
840
+ float: left;
841
+ margin-right: 10px;
842
+ border-width: 1px;
832
843
  }
833
844
 
834
845
  .element_errors {
835
- margin-top: 8px;
836
- margin-bottom: 8px;
837
- background-color: #f1c9ca;
838
- padding: 2*$default-padding;
839
- list-style-type: none;
840
- @include rounded-corner;
841
- color: #931f23;
842
- border-style: solid;
843
- border-width: 1px;
844
-
845
- p {
846
- margin: 0;
847
- line-height: 24px;
848
- }
846
+ margin-top: 8px;
847
+ margin-bottom: 8px;
848
+ background-color: #f1c9ca;
849
+ padding: 2*$default-padding;
850
+ list-style-type: none;
851
+ @include rounded-corner;
852
+ color: #931f23;
853
+ border-style: solid;
854
+ border-width: 1px;
855
+
856
+ p {
857
+ margin: 0;
858
+ line-height: 24px;
859
+ }
849
860
  }