alchemy_cms 2.5.3.1 → 2.6.0.rc5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (331) hide show
  1. data/.gitignore +1 -1
  2. data/.travis.yml +5 -13
  3. data/Gemfile +6 -3
  4. data/README.md +3 -2
  5. data/alchemy_cms.gemspec +22 -22
  6. data/app/assets/fonts/alchemy-icons.eot +0 -0
  7. data/app/assets/fonts/alchemy-icons.svg +54 -0
  8. data/app/assets/fonts/alchemy-icons.ttf +0 -0
  9. data/app/assets/fonts/alchemy-icons.woff +0 -0
  10. data/app/assets/images/alchemy/icons.png +0 -0
  11. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +151 -0
  12. data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +3 -2
  13. data/app/assets/javascripts/alchemy/alchemy.datepicker.js.coffee +31 -0
  14. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js +1 -1
  15. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +98 -0
  16. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +23 -24
  17. data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +27 -0
  18. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +11 -8
  19. data/app/assets/javascripts/alchemy/alchemy.hotkeys.js.coffee +32 -0
  20. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +46 -0
  21. data/app/assets/javascripts/alchemy/alchemy.js +8 -2
  22. data/app/assets/javascripts/alchemy/alchemy.link_overlay.js.coffee +5 -4
  23. data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +49 -0
  24. data/app/assets/javascripts/alchemy/alchemy.onload.js.coffee +3 -0
  25. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +71 -0
  26. data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +61 -0
  27. data/app/assets/javascripts/alchemy/alchemy.spinner.js.coffee +35 -0
  28. data/app/assets/javascripts/alchemy/alchemy.string_extension.js.coffee +11 -0
  29. data/app/assets/javascripts/alchemy/alchemy.windows.js.coffee +278 -0
  30. data/app/assets/stylesheets/alchemy/admin.css.scss +2 -0
  31. data/app/assets/stylesheets/alchemy/archive.scss +109 -65
  32. data/app/assets/stylesheets/alchemy/base.scss +16 -188
  33. data/app/assets/stylesheets/alchemy/dashboard.scss +2 -2
  34. data/app/assets/stylesheets/alchemy/defaults.scss +2 -1
  35. data/app/assets/stylesheets/alchemy/elements.scss +58 -94
  36. data/app/assets/stylesheets/alchemy/errors.scss +2 -2
  37. data/app/assets/stylesheets/alchemy/{mixins.scss → extends.scss} +104 -80
  38. data/app/assets/stylesheets/alchemy/flash.scss +4 -6
  39. data/app/assets/stylesheets/alchemy/fonts.scss +46 -0
  40. data/app/assets/stylesheets/alchemy/form_elements.scss +46 -45
  41. data/app/assets/stylesheets/alchemy/frame.scss +20 -15
  42. data/app/assets/stylesheets/alchemy/icons.scss +22 -9
  43. data/app/assets/stylesheets/alchemy/jquery-ui.scss +476 -399
  44. data/app/assets/stylesheets/alchemy/login.scss +1 -1
  45. data/app/assets/stylesheets/alchemy/menubar.css.scss +1 -1
  46. data/app/assets/stylesheets/alchemy/notices.scss +5 -5
  47. data/app/assets/stylesheets/alchemy/pagination.scss +25 -13
  48. data/app/assets/stylesheets/alchemy/search.scss +29 -17
  49. data/app/assets/stylesheets/alchemy/sitemap.scss +41 -36
  50. data/app/assets/stylesheets/alchemy/tables.scss +102 -50
  51. data/app/assets/stylesheets/alchemy/tinymce_dialog.css.scss +18 -16
  52. data/app/assets/stylesheets/alchemy/toolbar.scss +84 -24
  53. data/app/assets/stylesheets/alchemy/upload.scss +14 -9
  54. data/app/assets/stylesheets/alchemy/variables.scss +1 -0
  55. data/app/assets/stylesheets/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css.scss +18 -21
  56. data/app/controllers/alchemy/admin/attachments_controller.rb +29 -39
  57. data/app/controllers/alchemy/admin/base_controller.rb +3 -9
  58. data/app/controllers/alchemy/admin/clipboard_controller.rb +1 -1
  59. data/app/controllers/alchemy/admin/contents_controller.rb +1 -1
  60. data/app/controllers/alchemy/admin/dashboard_controller.rb +1 -1
  61. data/app/controllers/alchemy/admin/elements_controller.rb +3 -3
  62. data/app/controllers/alchemy/admin/essence_files_controller.rb +1 -1
  63. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +5 -5
  64. data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
  65. data/app/controllers/alchemy/admin/pages_controller.rb +18 -16
  66. data/app/controllers/alchemy/admin/pictures_controller.rb +11 -10
  67. data/app/controllers/alchemy/admin/resources_controller.rb +87 -14
  68. data/app/controllers/alchemy/admin/tags_controller.rb +3 -3
  69. data/app/controllers/alchemy/admin/trash_controller.rb +3 -3
  70. data/app/controllers/alchemy/admin/users_controller.rb +6 -11
  71. data/app/controllers/alchemy/attachments_controller.rb +8 -9
  72. data/app/controllers/alchemy/base_controller.rb +17 -10
  73. data/app/controllers/alchemy/pages_controller.rb +7 -19
  74. data/app/controllers/alchemy/passwords_controller.rb +15 -3
  75. data/app/controllers/alchemy/user_sessions_controller.rb +5 -4
  76. data/app/controllers/alchemy/users_controller.rb +1 -1
  77. data/app/helpers/alchemy/admin/attachments_helper.rb +2 -2
  78. data/app/helpers/alchemy/admin/base_helper.rb +62 -90
  79. data/app/helpers/alchemy/admin/elements_helper.rb +13 -5
  80. data/app/helpers/alchemy/admin/essences_helper.rb +3 -5
  81. data/app/helpers/alchemy/admin/pages_helper.rb +6 -3
  82. data/app/helpers/alchemy/admin/tags_helper.rb +60 -0
  83. data/app/helpers/alchemy/base_helper.rb +16 -20
  84. data/app/helpers/alchemy/elements_helper.rb +7 -11
  85. data/app/helpers/alchemy/essences_helper.rb +2 -2
  86. data/app/helpers/alchemy/pages_helper.rb +31 -69
  87. data/app/helpers/alchemy/url_helper.rb +11 -3
  88. data/app/models/alchemy/attachment.rb +73 -45
  89. data/app/models/alchemy/cell.rb +1 -1
  90. data/app/models/alchemy/content.rb +20 -9
  91. data/app/models/alchemy/element.rb +9 -7
  92. data/app/models/alchemy/page.rb +15 -248
  93. data/app/models/alchemy/page/cells.rb +71 -0
  94. data/app/models/alchemy/page/elements.rb +147 -0
  95. data/app/models/alchemy/page/naming.rb +90 -0
  96. data/app/models/alchemy/picture.rb +18 -13
  97. data/app/models/alchemy/tag.rb +1 -1
  98. data/app/models/alchemy/user.rb +38 -6
  99. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +14 -7
  100. data/app/views/alchemy/admin/attachments/_attachment.html.erb +17 -12
  101. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -8
  102. data/app/views/alchemy/admin/attachments/_files_list.html.erb +20 -12
  103. data/app/views/alchemy/admin/attachments/_overlay_file_list.html.erb +11 -0
  104. data/app/views/alchemy/admin/attachments/_tag_list.html.erb +31 -0
  105. data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +4 -0
  106. data/app/views/alchemy/admin/attachments/edit.html.erb +8 -7
  107. data/app/views/alchemy/admin/attachments/index.html.erb +19 -12
  108. data/app/views/alchemy/admin/attachments/new.html.erb +2 -2
  109. data/app/views/alchemy/admin/attachments/show.html.erb +3 -0
  110. data/app/views/alchemy/admin/contents/_missing.html.erb +4 -4
  111. data/app/views/alchemy/admin/contents/create.js.erb +1 -1
  112. data/app/views/alchemy/admin/contents/new.html.erb +6 -3
  113. data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
  114. data/app/views/alchemy/admin/dashboard/_users.html.erb +1 -1
  115. data/app/views/alchemy/admin/dashboard/index.html.erb +3 -3
  116. data/app/views/alchemy/admin/dashboard/info.html.erb +16 -13
  117. data/app/views/alchemy/admin/elements/_add_picture.html.erb +1 -1
  118. data/app/views/alchemy/admin/elements/_element_foot.html.erb +4 -4
  119. data/app/views/alchemy/admin/elements/_element_head.html.erb +1 -7
  120. data/app/views/alchemy/admin/elements/_elements_select.html.erb +2 -2
  121. data/app/views/alchemy/admin/elements/_new_element_form.html.erb +4 -4
  122. data/app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb +1 -1
  123. data/app/views/alchemy/admin/elements/create.js.erb +2 -2
  124. data/app/views/alchemy/admin/elements/fold.js.erb +3 -6
  125. data/app/views/alchemy/admin/elements/new.html.erb +1 -1
  126. data/app/views/alchemy/admin/elements/order.js.erb +1 -1
  127. data/app/views/alchemy/admin/elements/trash.js.erb +1 -1
  128. data/app/views/alchemy/admin/elements/update.js.erb +2 -2
  129. data/app/views/alchemy/admin/essence_files/edit.html.erb +4 -4
  130. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +17 -18
  131. data/app/views/alchemy/admin/essence_pictures/edit.html.erb +2 -2
  132. data/app/views/alchemy/admin/essence_pictures/update.js.erb +1 -0
  133. data/app/views/alchemy/admin/languages/_form.html.erb +12 -10
  134. data/app/views/alchemy/admin/languages/_language.html.erb +2 -1
  135. data/app/views/alchemy/admin/languages/_table.html.erb +3 -3
  136. data/app/views/alchemy/admin/languages/index.html.erb +15 -15
  137. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +6 -6
  138. data/app/views/alchemy/admin/layoutpages/index.html.erb +41 -40
  139. data/app/views/alchemy/admin/pages/_contactform_links.html.erb +4 -4
  140. data/app/views/alchemy/admin/pages/_create_language_form.html.erb +6 -6
  141. data/app/views/alchemy/admin/pages/_external_link.html.erb +2 -2
  142. data/app/views/alchemy/admin/pages/_file_link.html.erb +3 -3
  143. data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
  144. data/app/views/alchemy/admin/pages/_new_page_form.html.erb +1 -1
  145. data/app/views/alchemy/admin/pages/_page.html.erb +13 -13
  146. data/app/views/alchemy/admin/pages/_page_for_links.html.erb +2 -4
  147. data/app/views/alchemy/admin/pages/_sitemap.html.erb +5 -0
  148. data/app/views/alchemy/admin/pages/configure.html.erb +7 -7
  149. data/app/views/alchemy/admin/pages/configure_external.html.erb +4 -4
  150. data/app/views/alchemy/admin/pages/edit.html.erb +23 -30
  151. data/app/views/alchemy/admin/pages/index.html.erb +34 -23
  152. data/app/views/alchemy/admin/pages/new.html.erb +1 -1
  153. data/app/views/alchemy/admin/pages/sort.js.erb +1 -1
  154. data/app/views/alchemy/admin/partials/_flash_upload.html.erb +2 -3
  155. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
  156. data/app/views/alchemy/admin/partials/_search_form.html.erb +3 -3
  157. data/app/views/alchemy/admin/partials/_upload_form.html.erb +2 -2
  158. data/app/views/alchemy/admin/pictures/_archive.html.erb +7 -7
  159. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  160. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +6 -6
  161. data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +4 -4
  162. data/app/views/alchemy/admin/pictures/_overlay_picture_list.html.erb +1 -1
  163. data/app/views/alchemy/admin/pictures/_picture.html.erb +3 -8
  164. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +9 -14
  165. data/app/views/alchemy/admin/pictures/_tag_list.html.erb +27 -25
  166. data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +3 -1
  167. data/app/views/alchemy/admin/pictures/index.html.erb +49 -42
  168. data/app/views/alchemy/admin/pictures/new.html.erb +2 -2
  169. data/app/views/alchemy/admin/pictures/show.html.erb +11 -0
  170. data/app/views/alchemy/admin/resources/_boolean.html.erb +2 -2
  171. data/app/views/alchemy/admin/resources/_datetime.html.erb +2 -2
  172. data/app/views/alchemy/admin/resources/_form.html.erb +9 -8
  173. data/app/views/alchemy/admin/resources/_resource.html.erb +15 -21
  174. data/app/views/alchemy/admin/resources/_string.html.erb +2 -2
  175. data/app/views/alchemy/admin/resources/_table.html.erb +11 -13
  176. data/app/views/alchemy/admin/resources/_text.html.erb +2 -2
  177. data/app/views/alchemy/admin/resources/index.csv.erb +13 -0
  178. data/app/views/alchemy/admin/resources/index.html.erb +24 -15
  179. data/app/views/alchemy/admin/sites/index.html.erb +23 -0
  180. data/app/views/alchemy/admin/tags/_radio_tag.html.erb +1 -1
  181. data/app/views/alchemy/admin/tags/_tag.html.erb +2 -1
  182. data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
  183. data/app/views/alchemy/admin/tags/index.html.erb +16 -11
  184. data/app/views/alchemy/admin/tags/new.html.erb +3 -3
  185. data/app/views/alchemy/admin/trash/clear.js.coffee +1 -1
  186. data/app/views/alchemy/admin/users/_table.html.erb +12 -5
  187. data/app/views/alchemy/admin/users/_user.html.erb +16 -16
  188. data/app/views/alchemy/admin/users/index.html.erb +28 -16
  189. data/app/views/alchemy/breadcrumb/_page.html.erb +15 -0
  190. data/app/views/alchemy/breadcrumb/_spacer.html.erb +1 -0
  191. data/app/views/alchemy/elements/_editor_not_found.html.erb +1 -1
  192. data/app/views/alchemy/essences/_essence_file_editor.html.erb +16 -16
  193. data/app/views/alchemy/essences/_essence_file_view.html.erb +8 -9
  194. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +3 -6
  195. data/app/views/alchemy/essences/_essence_picture_tools.html.erb +9 -8
  196. data/app/views/alchemy/essences/_essence_richtext_editor.html.erb +0 -5
  197. data/app/views/alchemy/essences/_linkable_essence_tools.html.erb +2 -2
  198. data/app/views/alchemy/navigation/_link.html.erb +7 -7
  199. data/app/views/alchemy/navigation/_renderer.html.erb +29 -36
  200. data/app/views/alchemy/notifications/admin_user_created.de.text.erb +5 -1
  201. data/app/views/alchemy/notifications/admin_user_created.en.text.erb +5 -1
  202. data/app/views/alchemy/notifications/registered_user_created.de.text.erb +13 -0
  203. data/app/views/alchemy/notifications/registered_user_created.en.text.erb +13 -0
  204. data/app/views/alchemy/search/_result.html.erb +4 -6
  205. data/app/views/alchemy/search/_results.html.erb +4 -5
  206. data/app/views/alchemy/user_sessions/leave.html.erb +1 -1
  207. data/app/views/alchemy/user_sessions/new.html.erb +2 -2
  208. data/app/views/kaminari/_first_page.html.erb +11 -0
  209. data/app/views/kaminari/_gap.html.erb +1 -1
  210. data/app/views/kaminari/_last_page.html.erb +11 -0
  211. data/app/views/kaminari/_next_page.html.erb +2 -2
  212. data/app/views/kaminari/_page.html.erb +1 -1
  213. data/app/views/kaminari/_paginator.html.erb +2 -0
  214. data/app/views/kaminari/_prev_page.html.erb +2 -2
  215. data/app/views/layouts/alchemy/admin.html.erb +4 -5
  216. data/config/alchemy/config.yml +8 -12
  217. data/config/authorization_rules.rb +4 -3
  218. data/config/initializers/dragonfly.rb +20 -12
  219. data/config/locales/alchemy.de.yml +20 -15
  220. data/config/locales/alchemy.en.yml +15 -10
  221. data/config/locales/devise.de.yml +1 -0
  222. data/config/routes.rb +3 -3
  223. data/{spec/dummy/db/migrate/20121118000000_alchemy_two_point_four.rb → db/migrate/20130214233001_alchemy_two_point_five.rb} +50 -36
  224. data/db/migrate/20130221200514_migrate_attachments_to_dragonfly.rb +21 -0
  225. data/db/migrate/20130312205327_change_alchemy_users_role_to_roles.rb +11 -0
  226. data/lib/alchemy/capistrano.rb +10 -8
  227. data/lib/alchemy/errors.rb +7 -0
  228. data/lib/alchemy/filetypes.rb +33 -0
  229. data/lib/alchemy/i18n.rb +9 -1
  230. data/lib/alchemy/name_conversions.rb +28 -0
  231. data/lib/alchemy/page_layout.rb +5 -3
  232. data/lib/alchemy/resource.rb +132 -29
  233. data/lib/alchemy/resources_helper.rb +81 -12
  234. data/lib/alchemy/upgrader.rb +14 -276
  235. data/lib/alchemy/version.rb +1 -1
  236. data/lib/alchemy_cms.rb +17 -2
  237. data/lib/rails/generators/alchemy/deploy_script/templates/deploy.rb.tt +1 -1
  238. data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +1 -1
  239. data/lib/tasks/alchemy/convert.rake +39 -0
  240. data/lib/tasks/alchemy/install.rake +4 -6
  241. data/lib/tasks/alchemy/upgrade.rake +18 -1
  242. data/spec/controllers/admin/clipboard_controller_spec.rb +4 -4
  243. data/spec/controllers/admin/elements_controller_spec.rb +23 -23
  244. data/spec/controllers/admin/pages_controller_spec.rb +15 -0
  245. data/spec/controllers/admin/resources_controller_spec.rb +1 -11
  246. data/spec/controllers/admin/trash_controller_spec.rb +9 -9
  247. data/spec/controllers/attachments_controller_spec.rb +3 -3
  248. data/spec/controllers/elements_controller_spec.rb +2 -2
  249. data/spec/controllers/pages_controller_spec.rb +160 -129
  250. data/spec/controllers/pictures_controller_spec.rb +2 -2
  251. data/spec/controllers/user_sessions_controller_spec.rb +3 -3
  252. data/spec/controllers/users_controller_spec.rb +2 -2
  253. data/spec/dummy/app/models/event.rb +2 -2
  254. data/spec/dummy/app/models/location.rb +4 -0
  255. data/spec/dummy/app/views/layouts/application.html.erb +6 -42
  256. data/spec/dummy/config/routes.rb +1 -1
  257. data/spec/dummy/db/migrate/20121026104128_create_events.rb +0 -1
  258. data/{db/migrate/20121118000000_alchemy_two_point_four.rb → spec/dummy/db/migrate/20130214233001_alchemy_two_point_five.rb} +50 -36
  259. data/spec/dummy/db/migrate/20130221200514_migrate_attachments_to_dragonfly.rb +21 -0
  260. data/spec/dummy/db/migrate/20130312205327_change_alchemy_users_role_to_roles.rb +11 -0
  261. data/spec/dummy/db/migrate/20130328101418_create_locations.rb +9 -0
  262. data/spec/dummy/db/schema.rb +15 -6
  263. data/spec/factories.rb +4 -4
  264. data/spec/{integration → features}/admin/link_overlay_spec.rb +0 -0
  265. data/spec/{integration → features}/admin/modules_integration_spec.rb +1 -1
  266. data/spec/{integration → features}/admin/pages_controller_spec.rb +9 -4
  267. data/spec/{integration → features}/admin/picture_library_integration_spec.rb +5 -5
  268. data/spec/{integration → features}/admin/resources_integration_spec.rb +1 -1
  269. data/spec/{integration → features}/navigation_spec.rb +0 -0
  270. data/spec/{integration → features}/pages_controller_spec.rb +42 -112
  271. data/spec/{integration → features}/picture_security_spec.rb +2 -2
  272. data/spec/{integration → features}/security_spec.rb +7 -7
  273. data/spec/{integration → features}/translation_integration_spec.rb +0 -0
  274. data/spec/helpers/admin/base_helper_spec.rb +0 -50
  275. data/spec/helpers/admin/tags_helper_spec.rb +53 -0
  276. data/spec/helpers/base_helper_spec.rb +19 -3
  277. data/spec/helpers/pages_helper_spec.rb +92 -44
  278. data/spec/{url_helpers_spec.rb → helpers/picture_url_helpers_spec.rb} +7 -7
  279. data/spec/helpers/url_helper_spec.rb +92 -72
  280. data/spec/{config_spec.rb → libraries/config_spec.rb} +0 -0
  281. data/spec/libraries/resource_spec.rb +215 -76
  282. data/spec/libraries/resources_helper_spec.rb +70 -28
  283. data/spec/models/attachment_spec.rb +75 -9
  284. data/spec/models/clipboard_spec.rb +1 -1
  285. data/spec/models/element_spec.rb +7 -0
  286. data/spec/models/page_spec.rb +144 -25
  287. data/spec/models/picture_spec.rb +5 -5
  288. data/spec/models/resource_spec.rb +47 -10
  289. data/spec/models/user_spec.rb +115 -3
  290. data/spec/{routing_spec.rb → routing/routing_spec.rb} +8 -20
  291. data/spec/spec_helper.rb +5 -6
  292. data/spec/support/alchemy/specs_helpers.rb +1 -1
  293. data/spec/support/ci/install_phantomjs +1 -1
  294. data/spec/support/image with spaces.png +0 -0
  295. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +18 -18
  296. data/vendor/assets/javascripts/jquery_plugins/{jquery.dialogextend.1_0_1.js → jquery.dialogextend.js} +25 -17
  297. data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo.min.js +7 -0
  298. data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +7 -7
  299. data/vendor/assets/javascripts/keymage.min.js +6 -0
  300. data/vendor/assets/javascripts/spin.min.js +1 -0
  301. metadata +122 -124
  302. data/app/assets/images/alchemy/ajax_loader.gif +0 -0
  303. data/app/assets/images/alchemy/gui/toggle.png +0 -0
  304. data/app/assets/images/alchemy/image_loader.gif +0 -0
  305. data/app/assets/images/alchemy/shading.png +0 -0
  306. data/app/assets/images/alchemy/tabs.gif +0 -0
  307. data/app/assets/javascripts/alchemy/alchemy.base.js +0 -172
  308. data/app/assets/javascripts/alchemy/alchemy.datepicker.js +0 -47
  309. data/app/assets/javascripts/alchemy/alchemy.element_editor_selector.js +0 -91
  310. data/app/assets/javascripts/alchemy/alchemy.growler.js +0 -46
  311. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js +0 -60
  312. data/app/assets/javascripts/alchemy/alchemy.js_extensions.js +0 -15
  313. data/app/assets/javascripts/alchemy/alchemy.preview_window.js +0 -97
  314. data/app/assets/javascripts/alchemy/alchemy.windows.js +0 -321
  315. data/app/models/alchemy/clipboard_spec.rb +0 -0
  316. data/app/views/alchemy/admin/pictures/show_in_window.html.erb +0 -8
  317. data/app/views/alchemy/notifications/registered_user_created.text.erb +0 -11
  318. data/db/migrate/20121121162313_switch_from_fleximage_to_dragonfly.rb +0 -21
  319. data/db/migrate/20121205155004_create_alchemy_sites.rb +0 -14
  320. data/db/migrate/20121211163003_add_public_to_alchemy_sites.rb +0 -6
  321. data/db/migrate/20121220102223_add_aliases_to_site.rb +0 -6
  322. data/db/migrate/20130110212411_create_alchemy_legacy_page_urls.rb +0 -11
  323. data/db/migrate/20130121092645_migrate_to_devise.rb +0 -24
  324. data/spec/alchemy_spec.rb +0 -7
  325. data/spec/dummy/db/migrate/20121121162313_switch_from_fleximage_to_dragonfly.rb +0 -21
  326. data/spec/dummy/db/migrate/20121205155004_create_alchemy_sites.rb +0 -14
  327. data/spec/dummy/db/migrate/20121211163003_add_public_to_alchemy_sites.rb +0 -6
  328. data/spec/dummy/db/migrate/20121220102223_add_aliases_to_site.rb +0 -6
  329. data/spec/dummy/db/migrate/20130110212411_create_alchemy_legacy_page_urls.rb +0 -11
  330. data/spec/dummy/db/migrate/20130121092645_migrate_to_devise.rb +0 -24
  331. data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo-1.4.2-min.js +0 -11
@@ -4,14 +4,14 @@
4
4
  top: 0;
5
5
  margin-left: 65px;
6
6
  padding-right: 65px;
7
- z-index: 5;
7
+ z-index: 30;
8
8
  width: 100%;
9
- @include disable-user-select;
9
+ @extend .disable-user-select;
10
10
  }
11
11
 
12
12
  #left_menu {
13
13
  white-space: nowrap;
14
- z-index: 2;
14
+ z-index: 20;
15
15
  height: 100%;
16
16
  position: fixed;
17
17
  top: 0;
@@ -21,7 +21,7 @@
21
21
  border-right: $default-border;
22
22
  background: $light-blue;
23
23
  font-size: 10px;
24
- @include disable-user-select;
24
+ @extend .disable-user-select;
25
25
 
26
26
  label {
27
27
  display: block;
@@ -44,7 +44,7 @@
44
44
  overflow: hidden;
45
45
  display: block;
46
46
  padding-top: 7px;
47
- @include left-rounded-border;
47
+ @extend .left-rounded-border;
48
48
  margin-bottom: 1px;
49
49
  margin-top: 1px;
50
50
  border: 1px none #afafaf;
@@ -98,7 +98,7 @@ div#overlay_text_box {
98
98
  color: #333333;
99
99
  font-size: 18px;
100
100
  left: 50%;
101
- line-height: 50px;
101
+ line-height: 120px;
102
102
  margin-left: -100px;
103
103
  margin-top: -25px;
104
104
  position: absolute;
@@ -139,15 +139,20 @@ div#overlay_text_box {
139
139
  #main_content {
140
140
  @include box-sizing(border-box);
141
141
  background-color: $light-gray;
142
- padding-top: 96px;
143
- padding-right: 4 * $default-padding;
144
- padding-bottom: 4 * $default-padding;
145
- padding-left: 82px;
142
+ padding: 88px 8px 8px 74px;
146
143
  z-index: 0;
147
144
  width: 100%;
148
145
  height: 100%;
149
146
  }
150
147
 
148
+ #archive_all {
149
+ padding-bottom: 60px;
150
+
151
+ &.with_tag_filter {
152
+ padding-right: 230px;
153
+ }
154
+ }
155
+
151
156
  div#user_info {
152
157
  position: absolute;
153
158
  z-index: 10;
@@ -186,11 +191,11 @@ div#user_info {
186
191
  padding: 0 8px;
187
192
  background-color: $medium-gray;
188
193
  text-shadow: 0px 1px 1px #FFFFFF;
189
- @include disable-user-select;
194
+ @extend .disable-user-select;
190
195
  cursor: default;
191
196
  line-height: 20px;
192
197
  float: left;
193
- @include top-rounded-border;
198
+ @extend .top-rounded-border;
194
199
  border: $default-border;
195
200
  border-bottom-style: none;
196
201
  height: 22px;
@@ -204,7 +209,7 @@ div#user_info {
204
209
  border: 1px solid #f0c8d1;
205
210
  background-color: #f0c8d1;
206
211
  color: #ac3d57;
207
- @include rounded-corner;
212
+ @extend .rounded-border;
208
213
  margin-right: 2px;
209
214
  padding: 2px 3px;
210
215
  line-height: 11px;
@@ -227,7 +232,7 @@ div#user_info {
227
232
  text-shadow: #fff 0 0px 4px;
228
233
  background: #d6e0e6;
229
234
  color: #444;
230
- @include top-rounded-border;
235
+ @extend .top-rounded-border;
231
236
  border: $default-border;
232
237
  border-bottom-style: none;
233
238
  margin-right: 1px;
@@ -257,7 +262,7 @@ div#user_info {
257
262
  color: $text-color;
258
263
  background-color: $medium-gray;
259
264
  text-shadow: #fff 0 1px 2px;
260
- @include disable-user-select;
265
+ @extend .disable-user-select;
261
266
  cursor: default;
262
267
  z-index: 10;
263
268
  }
@@ -5,8 +5,10 @@
5
5
  height: 16px;
6
6
 
7
7
  &.add {
8
- background-image: url('ui-icons_666666_256x240.png');
9
- background-position: -16px -129px;
8
+ background: none;
9
+ @extend .icon-plus;
10
+ line-height: 1em;
11
+ font-size: 19px;
10
12
  }
11
13
 
12
14
  &.add_page {
@@ -37,12 +39,16 @@
37
39
  background-position: -416px -40px;
38
40
 
39
41
  &.small {
40
- background: url('ui-icons_666666_256x240.png') -84px -132px;
41
- width: 8px;
42
- height: 8px;
42
+ background: none;
43
+ @extend .icon-cancel;
44
+ line-height: 0;
43
45
  }
44
46
  }
45
47
 
48
+ &.collapse.small {
49
+ background-position: -512px -106px;
50
+ }
51
+
46
52
  &.configure_page {
47
53
  background-position: -320px -40px;
48
54
  }
@@ -92,7 +98,11 @@
92
98
  }
93
99
 
94
100
  &.excel {
95
- background-position: -176px -72px;
101
+ background-position: -353px -136px;
102
+ }
103
+
104
+ &.expand.small {
105
+ background-position: -498px -106px;
96
106
  }
97
107
 
98
108
  &.false {
@@ -188,7 +198,9 @@
188
198
  }
189
199
 
190
200
  &.search {
191
- background: url('ui-icons_666666_256x240.png') -160px -112px;
201
+ background: none;
202
+ padding-top: 2px;
203
+ @extend .icon-search;
192
204
  }
193
205
 
194
206
  &.select_all {
@@ -220,7 +232,8 @@
220
232
  }
221
233
 
222
234
  &.tag_label {
223
- background: url('ui-icons_666666_256x240.png') -240px -97px;
235
+ background: none;
236
+ @extend .icon-tag;
224
237
  }
225
238
 
226
239
  &.tag_edit {
@@ -300,7 +313,7 @@
300
313
  }
301
314
 
302
315
  &.word {
303
- background-position: -384px -136px;
316
+ background-position: -385px -136px;
304
317
  }
305
318
 
306
319
  &.zoom-equal {
@@ -11,17 +11,17 @@
11
11
  /* Layout helpers
12
12
  ----------------------------------*/
13
13
 
14
- #alchemy .ui-helper-hidden {
14
+ .ui-helper-hidden {
15
15
  display: none;
16
16
  }
17
17
 
18
- #alchemy .ui-helper-hidden-accessible {
18
+ .ui-helper-hidden-accessible {
19
19
  position: absolute !important;
20
20
  clip: rect(1px 1px 1px 1px);
21
21
  clip: rect(1px, 1px, 1px, 1px);
22
22
  }
23
23
 
24
- #alchemy .ui-helper-reset {
24
+ .ui-helper-reset {
25
25
  margin: 0;
26
26
  padding: 0;
27
27
  border: 0;
@@ -32,7 +32,7 @@
32
32
  list-style: none;
33
33
  }
34
34
 
35
- #alchemy .ui-helper-clearfix:after {
35
+ .ui-helper-clearfix:after {
36
36
  content: ".";
37
37
  display: block;
38
38
  height: 0;
@@ -40,7 +40,7 @@
40
40
  visibility: hidden;
41
41
  }
42
42
 
43
- #alchemy .ui-helper-clearfix {
43
+ .ui-helper-clearfix {
44
44
  @include inline-block;
45
45
  }
46
46
 
@@ -50,13 +50,13 @@
50
50
  height: 1%;
51
51
  }
52
52
 
53
- #alchemy .ui-helper-clearfix {
53
+ .ui-helper-clearfix {
54
54
  display: block;
55
55
  }
56
56
 
57
57
  /* end clearfix */
58
58
 
59
- #alchemy .ui-helper-zfix {
59
+ .ui-helper-zfix {
60
60
  width: 100%;
61
61
  height: 100%;
62
62
  top: 0;
@@ -69,7 +69,7 @@
69
69
  /* Interaction Cues
70
70
  ----------------------------------*/
71
71
 
72
- #alchemy .ui-state-disabled {
72
+ .ui-state-disabled {
73
73
  cursor: default !important;
74
74
  }
75
75
 
@@ -78,7 +78,7 @@
78
78
 
79
79
  /* states and images */
80
80
 
81
- #alchemy .ui-icon {
81
+ .ui-icon {
82
82
  display: block;
83
83
  text-indent: -99999px;
84
84
  overflow: hidden;
@@ -90,12 +90,13 @@
90
90
 
91
91
  /* Overlays */
92
92
 
93
- #alchemy .ui-widget-overlay {
93
+ .ui-widget-overlay {
94
94
  position: absolute;
95
95
  top: 0;
96
96
  left: 0;
97
97
  width: 100%;
98
98
  height: 100%;
99
+ z-index: 9;
99
100
  }
100
101
 
101
102
  /*
@@ -113,26 +114,26 @@
113
114
  /* Component containers
114
115
  ----------------------------------*/
115
116
 
116
- #alchemy .ui-widget {
117
+ .ui-widget {
117
118
  font-family: $default-font-face;
118
119
  font-size: $default-font-size;
119
120
  }
120
121
 
121
- #alchemy .ui-widget .ui-widget {
122
+ .ui-widget .ui-widget {
122
123
  font-size: 1em;
123
124
  }
124
125
 
125
- #alchemy .ui-widget-content {
126
+ .ui-widget-content {
126
127
  border: $default-border;
127
128
  background-color: $light-gray;
128
129
  color: $text-color;
129
130
  }
130
131
 
131
- #alchemy .ui-widget-content a {
132
+ .ui-widget-content a {
132
133
  color: $text-color;
133
134
  }
134
135
 
135
- #alchemy .ui-widget-header {
136
+ .ui-widget-header {
136
137
  border: 1px none #afafaf;
137
138
  background: $light-blue;
138
139
  color: $text-color;
@@ -145,14 +146,14 @@
145
146
  border-bottom-right-radius: 0;
146
147
  }
147
148
 
148
- #alchemy .ui-widget-header a {
149
+ .ui-widget-header a {
149
150
  color: $text-color;
150
151
  }
151
152
 
152
153
  /* Interaction states
153
154
  ----------------------------------*/
154
155
 
155
- #alchemy .ui-state-default, #alchemy .ui-widget-content .ui-state-default, #alchemy .ui-widget-header .ui-state-default {
156
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
156
157
  border: 1px solid $button-border-color;
157
158
  background-color: #ededed;
158
159
  font-weight: normal;
@@ -160,33 +161,24 @@
160
161
  text-shadow: $button-text-shadow;
161
162
  }
162
163
 
163
- #alchemy .ui-state-default a, #alchemy .ui-state-default a:link, #alchemy .ui-state-default a:visited {
164
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
164
165
  color: $text-color;
165
166
  text-decoration: none;
166
167
  }
167
168
 
168
- .ui-dialog-titlebar-refresh, .ui-dialog-titlebar-close, .ui-dialog-titlebar-maximize, .ui-dialog-titlebar-restore {
169
- &:hover, &:focus {
170
- border: 1px solid $button-hover-border-color;
171
- background: $button-hover-bg-color;
172
- font-weight: normal;
173
- color: $text-color;
174
- }
175
- }
176
-
177
- #alchemy .ui-state-hover a, #alchemy .ui-state-hover a:hover {
169
+ .ui-state-hover a, .ui-state-hover a:hover {
178
170
  color: $dark-gray;
179
171
  text-decoration: none;
180
172
  }
181
173
 
182
- #alchemy .ui-state-active, #alchemy .ui-widget-content .ui-state-active, #alchemy .ui-widget-header .ui-state-active {
174
+ .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
183
175
  color: $text-color;
184
176
  text-decoration: none;
185
177
  text-shadow: none;
186
178
  background-color: $button-hover-bg-color;
187
179
  }
188
180
 
189
- #alchemy .ui-state-active.stNav.stNext {
181
+ .ui-state-active.stNav.stNext {
190
182
  background-color: $light-gray;
191
183
  margin: 0 -3px 0 0;
192
184
  border: 0 solid #cacaca;
@@ -194,7 +186,7 @@
194
186
  border-top-width: 1px;
195
187
  }
196
188
 
197
- #alchemy .ui-state-active.stNav.stPrev {
189
+ .ui-state-active.stNav.stPrev {
198
190
  background-color: $light-gray;
199
191
  margin: 0 0 0 -3px;
200
192
  border: 0 solid #cacaca;
@@ -209,51 +201,51 @@
209
201
  top: 7px;
210
202
  }
211
203
 
212
- #alchemy .ui-state-active a, #alchemy .ui-state-active a:link, #alchemy .ui-state-active a:visited {
204
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
213
205
  color: $text-color;
214
206
  text-decoration: none;
215
207
  }
216
208
 
217
- #alchemy .ui-widget :active {
209
+ .ui-widget :active {
218
210
  outline: none;
219
211
  }
220
212
 
221
213
  /* Interaction Cues
222
214
  ----------------------------------*/
223
215
 
224
- #alchemy .ui-state-highlight, #alchemy .ui-widget-content .ui-state-highlight, #alchemy .ui-widget-header .ui-state-highlight {
216
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
225
217
  border: 1px solid $dark-gray;
226
218
  background: $light-blue;
227
219
  color: $text-color;
228
220
  }
229
221
 
230
- #alchemy .ui-state-highlight a, #alchemy .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
222
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
231
223
  color: $text-color;
232
224
  }
233
225
 
234
- #alchemy .ui-state-error, #alchemy .ui-widget-content .ui-state-error, #alchemy .ui-widget-header .ui-state-error {
226
+ .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
235
227
  border: 1px solid #cd0a0a;
236
228
  background: #cd0a0a;
237
229
  color: #ffffff;
238
230
  }
239
231
 
240
- #alchemy .ui-state-error a, #alchemy .ui-widget-content .ui-state-error a, #alchemy .ui-widget-header .ui-state-error a {
232
+ .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
241
233
  color: #ffffff;
242
234
  }
243
235
 
244
- #alchemy .ui-state-error-text, #alchemy .ui-widget-content .ui-state-error-text, #alchemy .ui-widget-header .ui-state-error-text {
236
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
245
237
  color: #ffffff;
246
238
  }
247
239
 
248
- #alchemy .ui-priority-primary, #alchemy .ui-widget-content .ui-priority-primary, #alchemy .ui-widget-header .ui-priority-primary {
240
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
249
241
  font-weight: normal;
250
242
  }
251
243
 
252
- #alchemy .ui-priority-secondary, #alchemy .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
244
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
253
245
  font-weight: normal;
254
246
  }
255
247
 
256
- #alchemy .ui-state-disabled, #alchemy .ui-widget-content .ui-state-disabled, #alchemy .ui-widget-header .ui-state-disabled {
248
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
257
249
  @include opacity(.35);
258
250
  background-image: none;
259
251
  }
@@ -263,737 +255,783 @@
263
255
 
264
256
  /* states and images */
265
257
 
266
- #alchemy .ui-icon {
258
+ .ui-icon {
267
259
  width: 16px;
268
260
  height: 16px;
269
261
  background-image: url('ui-icons_666666_256x240.png');
270
262
  }
271
263
 
272
- #alchemy .ui-widget-content .ui-icon {
264
+ .ui-widget-content .ui-icon {
273
265
  background-image: url('ui-icons_666666_256x240.png');
274
266
  }
275
267
 
276
- #alchemy .ui-widget-header .ui-icon {
268
+ .ui-widget-header .ui-icon {
277
269
  background-image: url('ui-icons_666666_256x240.png');
278
270
  }
279
271
 
280
- #alchemy .ui-state-default .ui-icon {
272
+ .ui-state-default .ui-icon {
281
273
  background-image: url('ui-icons_666666_256x240.png');
282
274
  }
283
275
 
284
- #alchemy .ui-state-hover .ui-icon, #alchemy .ui-state-focus .ui-icon {
276
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
285
277
  background-image: url('ui-icons_666666_256x240.png');
286
278
  }
287
279
 
288
- #alchemy .ui-state-active .ui-icon {
280
+ .ui-state-active .ui-icon {
289
281
  background-image: url('ui-icons_666666_256x240.png');
290
282
  }
291
283
 
292
- #alchemy .ui-state-highlight .ui-icon {
284
+ .ui-state-highlight .ui-icon {
293
285
  background-image: url('ui-icons_666666_256x240.png');
294
286
  }
295
287
 
296
- #alchemy .ui-state-error .ui-icon, #alchemy .ui-state-error-text .ui-icon {
288
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
297
289
  background-image: url('ui-icons_666666_256x240.png');
298
290
  }
299
291
 
300
292
  /* positioning */
301
293
 
302
- #alchemy .ui-icon-carat-1-n {
294
+ .ui-icon-carat-1-n {
303
295
  background-position: 0 0;
304
296
  }
305
297
 
306
- #alchemy .ui-icon-carat-1-ne {
298
+ .ui-icon-carat-1-ne {
307
299
  background-position: -16px 0;
308
300
  }
309
301
 
310
- #alchemy .ui-icon-carat-1-e {
302
+ .ui-icon-carat-1-e {
311
303
  background-position: -32px 0;
312
304
  }
313
305
 
314
- #alchemy .ui-icon-carat-1-se {
306
+ .ui-icon-carat-1-se {
315
307
  background-position: -48px 0;
316
308
  }
317
309
 
318
- #alchemy .ui-icon-carat-1-s {
310
+ .ui-icon-carat-1-s {
319
311
  background-position: -64px 0;
320
312
  }
321
313
 
322
- #alchemy .ui-icon-carat-1-sw {
314
+ .ui-icon-carat-1-sw {
323
315
  background-position: -80px 0;
324
316
  }
325
317
 
326
- #alchemy .ui-icon-carat-1-w {
318
+ .ui-icon-carat-1-w {
327
319
  background-position: -96px 0;
328
320
  }
329
321
 
330
- #alchemy .ui-icon-carat-1-nw {
322
+ .ui-icon-carat-1-nw {
331
323
  background-position: -112px 0;
332
324
  }
333
325
 
334
- #alchemy .ui-icon-carat-2-n-s {
326
+ .ui-icon-carat-2-n-s {
335
327
  background-position: -128px 0;
336
328
  }
337
329
 
338
- #alchemy .ui-icon-carat-2-e-w {
330
+ .ui-icon-carat-2-e-w {
339
331
  background-position: -144px 0;
340
332
  }
341
333
 
342
- #alchemy .ui-icon-triangle-1-n {
334
+ .ui-icon-triangle-1-n {
343
335
  background-position: 0 -16px;
344
336
  }
345
337
 
346
- #alchemy .ui-icon-triangle-1-ne {
338
+ .ui-icon-triangle-1-ne {
347
339
  background-position: -16px -16px;
348
340
  }
349
341
 
350
- #alchemy .ui-icon-triangle-1-e {
342
+ .ui-icon-triangle-1-e {
351
343
  background-position: -32px -16px;
352
344
  }
353
345
 
354
- #alchemy .ui-icon-triangle-1-se {
346
+ .ui-icon-triangle-1-se {
355
347
  background-position: -48px -16px;
356
348
  }
357
349
 
358
- #alchemy .ui-icon-triangle-1-s {
350
+ .ui-icon-triangle-1-s {
359
351
  background-position: -64px -16px;
360
352
  }
361
353
 
362
- #alchemy .ui-icon-triangle-1-sw {
354
+ .ui-icon-triangle-1-sw {
363
355
  background-position: -80px -16px;
364
356
  }
365
357
 
366
- #alchemy .ui-icon-triangle-1-w {
358
+ .ui-icon-triangle-1-w {
367
359
  background-position: -96px -16px;
368
360
  }
369
361
 
370
- #alchemy .ui-icon-triangle-1-nw {
362
+ .ui-icon-triangle-1-nw {
371
363
  background-position: -112px -16px;
372
364
  }
373
365
 
374
- #alchemy .ui-icon-triangle-2-n-s {
366
+ .ui-icon-triangle-2-n-s {
375
367
  background-position: -128px -16px;
376
368
  }
377
369
 
378
- #alchemy .ui-icon-triangle-2-e-w {
370
+ .ui-icon-triangle-2-e-w {
379
371
  background-position: -144px -16px;
380
372
  }
381
373
 
382
- #alchemy .ui-icon-arrow-1-n {
374
+ .ui-icon-arrow-1-n {
383
375
  background-position: 0 -32px;
384
376
  }
385
377
 
386
- #alchemy .ui-icon-arrow-1-ne {
378
+ .ui-icon-arrow-1-ne {
387
379
  background-position: -16px -32px;
388
380
  }
389
381
 
390
- #alchemy .ui-icon-arrow-1-e {
382
+ .ui-icon-arrow-1-e {
391
383
  background-position: -32px -32px;
392
384
  }
393
385
 
394
- #alchemy .ui-icon-arrow-1-se {
386
+ .ui-icon-arrow-1-se {
395
387
  background-position: -48px -32px;
396
388
  }
397
389
 
398
- #alchemy .ui-icon-arrow-1-s {
390
+ .ui-icon-arrow-1-s {
399
391
  background-position: -64px -32px;
400
392
  }
401
393
 
402
- #alchemy .ui-icon-arrow-1-sw {
394
+ .ui-icon-arrow-1-sw {
403
395
  background-position: -80px -32px;
404
396
  }
405
397
 
406
- #alchemy .ui-icon-arrow-1-w {
398
+ .ui-icon-arrow-1-w {
407
399
  background-position: -96px -32px;
408
400
  }
409
401
 
410
- #alchemy .ui-icon-arrow-1-nw {
402
+ .ui-icon-arrow-1-nw {
411
403
  background-position: -112px -32px;
412
404
  }
413
405
 
414
- #alchemy .ui-icon-arrow-2-n-s {
406
+ .ui-icon-arrow-2-n-s {
415
407
  background-position: -128px -32px;
416
408
  }
417
409
 
418
- #alchemy .ui-icon-arrow-2-ne-sw {
410
+ .ui-icon-arrow-2-ne-sw {
419
411
  background-position: -144px -32px;
420
412
  }
421
413
 
422
- #alchemy .ui-icon-arrow-2-e-w {
414
+ .ui-icon-arrow-2-e-w {
423
415
  background-position: -160px -32px;
424
416
  }
425
417
 
426
- #alchemy .ui-icon-arrow-2-se-nw {
418
+ .ui-icon-arrow-2-se-nw {
427
419
  background-position: -176px -32px;
428
420
  }
429
421
 
430
- #alchemy .ui-icon-arrowstop-1-n {
422
+ .ui-icon-arrowstop-1-n {
431
423
  background-position: -192px -32px;
432
424
  }
433
425
 
434
- #alchemy .ui-icon-arrowstop-1-e {
426
+ .ui-icon-arrowstop-1-e {
435
427
  background-position: -208px -32px;
436
428
  }
437
429
 
438
- #alchemy .ui-icon-arrowstop-1-s {
430
+ .ui-icon-arrowstop-1-s {
439
431
  background-position: -224px -32px;
440
432
  }
441
433
 
442
- #alchemy .ui-icon-arrowstop-1-w {
434
+ .ui-icon-arrowstop-1-w {
443
435
  background-position: -240px -32px;
444
436
  }
445
437
 
446
- #alchemy .ui-icon-arrowthick-1-n {
438
+ .ui-icon-arrowthick-1-n {
447
439
  background-position: 0 -48px;
448
440
  }
449
441
 
450
- #alchemy .ui-icon-arrowthick-1-ne {
442
+ .ui-icon-arrowthick-1-ne {
451
443
  background-position: -16px -48px;
452
444
  }
453
445
 
454
- #alchemy .ui-icon-arrowthick-1-e {
446
+ .ui-icon-arrowthick-1-e {
455
447
  background-position: -32px -48px;
456
448
  }
457
449
 
458
- #alchemy .ui-icon-arrowthick-1-se {
450
+ .ui-icon-arrowthick-1-se {
459
451
  background-position: -48px -48px;
460
452
  }
461
453
 
462
- #alchemy .ui-icon-arrowthick-1-s {
454
+ .ui-icon-arrowthick-1-s {
463
455
  background-position: -64px -48px;
464
456
  }
465
457
 
466
- #alchemy .ui-icon-arrowthick-1-sw {
458
+ .ui-icon-arrowthick-1-sw {
467
459
  background-position: -80px -48px;
468
460
  }
469
461
 
470
- #alchemy .ui-icon-arrowthick-1-w {
462
+ .ui-icon-arrowthick-1-w {
471
463
  background-position: -96px -48px;
472
464
  }
473
465
 
474
- #alchemy .ui-icon-arrowthick-1-nw {
466
+ .ui-icon-arrowthick-1-nw {
475
467
  background-position: -112px -48px;
476
468
  }
477
469
 
478
- #alchemy .ui-icon-arrowthick-2-n-s {
470
+ .ui-icon-arrowthick-2-n-s {
479
471
  background-position: -128px -48px;
480
472
  }
481
473
 
482
- #alchemy .ui-icon-arrowthick-2-ne-sw {
474
+ .ui-icon-arrowthick-2-ne-sw {
483
475
  background-position: -144px -48px;
484
476
  }
485
477
 
486
- #alchemy .ui-icon-arrowthick-2-e-w {
478
+ .ui-icon-arrowthick-2-e-w {
487
479
  background-position: -160px -48px;
488
480
  }
489
481
 
490
- #alchemy .ui-icon-arrowthick-2-se-nw {
482
+ .ui-icon-arrowthick-2-se-nw {
491
483
  background-position: -176px -48px;
492
484
  }
493
485
 
494
- #alchemy .ui-icon-arrowthickstop-1-n {
486
+ .ui-icon-arrowthickstop-1-n {
495
487
  background-position: -192px -48px;
496
488
  }
497
489
 
498
- #alchemy .ui-icon-arrowthickstop-1-e {
490
+ .ui-icon-arrowthickstop-1-e {
499
491
  background-position: -208px -48px;
500
492
  }
501
493
 
502
- #alchemy .ui-icon-arrowthickstop-1-s {
494
+ .ui-icon-arrowthickstop-1-s {
503
495
  background-position: -224px -48px;
504
496
  }
505
497
 
506
- #alchemy .ui-icon-arrowthickstop-1-w {
498
+ .ui-icon-arrowthickstop-1-w {
507
499
  background-position: -240px -48px;
508
500
  }
509
501
 
510
- #alchemy .ui-icon-arrowreturnthick-1-w {
502
+ .ui-icon-arrowreturnthick-1-w {
511
503
  background-position: 0 -64px;
512
504
  }
513
505
 
514
- #alchemy .ui-icon-arrowreturnthick-1-n {
506
+ .ui-icon-arrowreturnthick-1-n {
515
507
  background-position: -16px -64px;
516
508
  }
517
509
 
518
- #alchemy .ui-icon-arrowreturnthick-1-e {
510
+ .ui-icon-arrowreturnthick-1-e {
519
511
  background-position: -32px -64px;
520
512
  }
521
513
 
522
- #alchemy .ui-icon-arrowreturnthick-1-s {
514
+ .ui-icon-arrowreturnthick-1-s {
523
515
  background-position: -48px -64px;
524
516
  }
525
517
 
526
- #alchemy .ui-icon-arrowreturn-1-w {
518
+ .ui-icon-arrowreturn-1-w {
527
519
  background-position: -64px -64px;
528
520
  }
529
521
 
530
- #alchemy .ui-icon-arrowreturn-1-n {
522
+ .ui-icon-arrowreturn-1-n {
531
523
  background-position: -80px -64px;
532
524
  }
533
525
 
534
- #alchemy .ui-icon-arrowreturn-1-e {
526
+ .ui-icon-arrowreturn-1-e {
535
527
  background-position: -96px -64px;
536
528
  }
537
529
 
538
- #alchemy .ui-icon-arrowreturn-1-s {
530
+ .ui-icon-arrowreturn-1-s {
539
531
  background-position: -112px -64px;
540
532
  }
541
533
 
542
- #alchemy .ui-icon-arrowrefresh-1-w {
534
+ .ui-icon-arrowrefresh-1-w {
543
535
  background-position: -128px -64px;
544
536
  }
545
537
 
546
- #alchemy .ui-icon-arrowrefresh-1-n {
538
+ .ui-icon-arrowrefresh-1-n {
547
539
  background-position: -144px -64px;
548
540
  }
549
541
 
550
- #alchemy .ui-icon-arrowrefresh-1-e {
542
+ .ui-icon-arrowrefresh-1-e {
551
543
  background-position: -160px -64px;
552
544
  }
553
545
 
554
- #alchemy .ui-icon-arrowrefresh-1-s {
546
+ .ui-icon-arrowrefresh-1-s {
555
547
  background-position: -176px -64px;
556
548
  }
557
549
 
558
- #alchemy .ui-icon-arrow-4 {
550
+ .ui-icon-arrow-4 {
559
551
  background-position: 0 -80px;
560
552
  }
561
553
 
562
- #alchemy .ui-icon-arrow-4-diag {
554
+ .ui-icon-arrow-4-diag {
563
555
  background-position: -16px -80px;
564
556
  }
565
557
 
566
- #alchemy .ui-icon-extlink {
558
+ .ui-icon-extlink {
567
559
  background-position: -32px -80px;
568
560
  }
569
561
 
570
- #alchemy .ui-icon-newwin {
562
+ .ui-icon-newwin {
571
563
  background-position: -48px -80px;
572
564
  }
573
565
 
574
- #alchemy .ui-icon-refresh {
575
- background-position: -63px -79px;
566
+ .ui-icon-refresh {
567
+ background: none !important;
568
+ position: relative;
569
+ left: 1px;
570
+
571
+ &:before {
572
+ text-indent: 0;
573
+ position: absolute;
574
+ right: 1px;
575
+ top: 2px;
576
+ @extend .icon-reload:before
577
+ }
578
+ }
579
+
580
+ .ui-icon-fullscreen {
581
+ background: none !important;
582
+ position: relative;
583
+
584
+ &:before {
585
+ text-indent: 0;
586
+ position: absolute;
587
+ right: 1px;
588
+ top: 2px;
589
+ @extend .icon-fullscreen:before
590
+ }
591
+ }
592
+
593
+ .ui-icon-exit-fullscreen {
594
+ background: none !important;
595
+ position: relative;
596
+
597
+ &:before {
598
+ text-indent: 0;
599
+ position: absolute;
600
+ right: 1px;
601
+ top: 2px;
602
+ @extend .icon-exit-fullscreen:before
603
+ }
576
604
  }
577
605
 
578
- #alchemy .ui-icon-shuffle {
606
+ .ui-icon-shuffle {
579
607
  background-position: -80px -80px;
580
608
  }
581
609
 
582
- #alchemy .ui-icon-transfer-e-w {
610
+ .ui-icon-transfer-e-w {
583
611
  background-position: -96px -80px;
584
612
  }
585
613
 
586
- #alchemy .ui-icon-transferthick-e-w {
614
+ .ui-icon-transferthick-e-w {
587
615
  background-position: -112px -80px;
588
616
  }
589
617
 
590
- #alchemy .ui-icon-folder-collapsed {
618
+ .ui-icon-folder-collapsed {
591
619
  background-position: 0 -96px;
592
620
  }
593
621
 
594
- #alchemy .ui-icon-folder-open {
622
+ .ui-icon-folder-open {
595
623
  background-position: -16px -96px;
596
624
  }
597
625
 
598
- #alchemy .ui-icon-document {
626
+ .ui-icon-document {
599
627
  background-position: -32px -96px;
600
628
  }
601
629
 
602
- #alchemy .ui-icon-document-b {
630
+ .ui-icon-document-b {
603
631
  background-position: -48px -96px;
604
632
  }
605
633
 
606
- #alchemy .ui-icon-note {
634
+ .ui-icon-note {
607
635
  background-position: -64px -96px;
608
636
  }
609
637
 
610
- #alchemy .ui-icon-mail-closed {
638
+ .ui-icon-mail-closed {
611
639
  background-position: -80px -96px;
612
640
  }
613
641
 
614
- #alchemy .ui-icon-mail-open {
642
+ .ui-icon-mail-open {
615
643
  background-position: -96px -96px;
616
644
  }
617
645
 
618
- #alchemy .ui-icon-suitcase {
646
+ .ui-icon-suitcase {
619
647
  background-position: -112px -96px;
620
648
  }
621
649
 
622
- #alchemy .ui-icon-comment {
650
+ .ui-icon-comment {
623
651
  background-position: -128px -96px;
624
652
  }
625
653
 
626
- #alchemy .ui-icon-person {
654
+ .ui-icon-person {
627
655
  background-position: -144px -96px;
628
656
  }
629
657
 
630
- #alchemy .ui-icon-print {
658
+ .ui-icon-print {
631
659
  background-position: -160px -96px;
632
660
  }
633
661
 
634
- #alchemy .ui-icon-trash {
662
+ .ui-icon-trash {
635
663
  background-position: -176px -96px;
636
664
  }
637
665
 
638
- #alchemy .ui-icon-locked {
666
+ .ui-icon-locked {
639
667
  background-position: -192px -96px;
640
668
  }
641
669
 
642
- #alchemy .ui-icon-unlocked {
670
+ .ui-icon-unlocked {
643
671
  background-position: -208px -96px;
644
672
  }
645
673
 
646
- #alchemy .ui-icon-bookmark {
674
+ .ui-icon-bookmark {
647
675
  background-position: -224px -96px;
648
676
  }
649
677
 
650
- #alchemy .ui-icon-tag {
678
+ .ui-icon-tag {
651
679
  background-position: -240px -96px;
652
680
  }
653
681
 
654
- #alchemy .ui-icon-home {
682
+ .ui-icon-home {
655
683
  background-position: 0 -112px;
656
684
  }
657
685
 
658
- #alchemy .ui-icon-flag {
686
+ .ui-icon-flag {
659
687
  background-position: -16px -112px;
660
688
  }
661
689
 
662
- #alchemy .ui-icon-calendar {
690
+ .ui-icon-calendar {
663
691
  background-position: -32px -112px;
664
692
  }
665
693
 
666
- #alchemy .ui-icon-cart {
694
+ .ui-icon-cart {
667
695
  background-position: -48px -112px;
668
696
  }
669
697
 
670
- #alchemy .ui-icon-pencil {
698
+ .ui-icon-pencil {
671
699
  background-position: -64px -112px;
672
700
  }
673
701
 
674
- #alchemy .ui-icon-clock {
702
+ .ui-icon-clock {
675
703
  background-position: -80px -112px;
676
704
  }
677
705
 
678
- #alchemy .ui-icon-disk {
706
+ .ui-icon-disk {
679
707
  background-position: -96px -112px;
680
708
  }
681
709
 
682
- #alchemy .ui-icon-calculator {
710
+ .ui-icon-calculator {
683
711
  background-position: -112px -112px;
684
712
  }
685
713
 
686
- #alchemy .ui-icon-zoomin {
714
+ .ui-icon-zoomin {
687
715
  background-position: -128px -112px;
688
716
  }
689
717
 
690
- #alchemy .ui-icon-zoomout {
718
+ .ui-icon-zoomout {
691
719
  background-position: -144px -112px;
692
720
  }
693
721
 
694
- #alchemy .ui-icon-search {
722
+ .ui-icon-search {
695
723
  background-position: -160px -112px;
696
724
  }
697
725
 
698
- #alchemy .ui-icon-wrench {
726
+ .ui-icon-wrench {
699
727
  background-position: -176px -112px;
700
728
  }
701
729
 
702
- #alchemy .ui-icon-gear {
730
+ .ui-icon-gear {
703
731
  background-position: -192px -112px;
704
732
  }
705
733
 
706
- #alchemy .ui-icon-heart {
734
+ .ui-icon-heart {
707
735
  background-position: -208px -112px;
708
736
  }
709
737
 
710
- #alchemy .ui-icon-star {
738
+ .ui-icon-star {
711
739
  background-position: -224px -112px;
712
740
  }
713
741
 
714
- #alchemy .ui-icon-link {
742
+ .ui-icon-link {
715
743
  background-position: -240px -112px;
716
744
  }
717
745
 
718
- #alchemy .ui-icon-cancel {
746
+ .ui-icon-cancel {
719
747
  background-position: 0 -128px;
720
748
  }
721
749
 
722
- #alchemy .ui-icon-plus {
750
+ .ui-icon-plus {
723
751
  background-position: -16px -128px;
724
752
  }
725
753
 
726
- #alchemy .ui-icon-plusthick {
754
+ .ui-icon-plusthick {
727
755
  background-position: -32px -128px;
728
756
  }
729
757
 
730
- #alchemy .ui-icon-minus {
758
+ .ui-icon-minus {
731
759
  background-position: -48px -128px;
732
760
  }
733
761
 
734
- #alchemy .ui-icon-minusthick {
762
+ .ui-icon-minusthick {
735
763
  background-position: -64px -128px;
736
764
  }
737
765
 
738
- #alchemy .ui-icon-close {
766
+ .ui-icon-close {
739
767
  background-position: -80px -128px;
740
768
  }
741
769
 
742
- #alchemy .ui-icon-closethick {
743
- background-position: -96px -128px;
770
+ .ui-icon-closethick {
771
+ background: none !important;
772
+ position: relative;
773
+
774
+ &:before {
775
+ @extend .icon-cancel:before;
776
+ text-indent: 0;
777
+ position: absolute;
778
+ right: 0px;
779
+ top: 2px;
780
+ font-size: 16px;
781
+ }
744
782
  }
745
783
 
746
- #alchemy .ui-icon-key {
784
+ .ui-icon-key {
747
785
  background-position: -112px -128px;
748
786
  }
749
787
 
750
- #alchemy .ui-icon-lightbulb {
788
+ .ui-icon-lightbulb {
751
789
  background-position: -128px -128px;
752
790
  }
753
791
 
754
- #alchemy .ui-icon-scissors {
792
+ .ui-icon-scissors {
755
793
  background-position: -144px -128px;
756
794
  }
757
795
 
758
- #alchemy .ui-icon-clipboard {
796
+ .ui-icon-clipboard {
759
797
  background-position: -160px -128px;
760
798
  }
761
799
 
762
- #alchemy .ui-icon-copy {
800
+ .ui-icon-copy {
763
801
  background-position: -176px -128px;
764
802
  }
765
803
 
766
- #alchemy .ui-icon-contact {
804
+ .ui-icon-contact {
767
805
  background-position: -192px -128px;
768
806
  }
769
807
 
770
- #alchemy .ui-icon-image {
808
+ .ui-icon-image {
771
809
  background-position: -208px -128px;
772
810
  }
773
811
 
774
- #alchemy .ui-icon-video {
812
+ .ui-icon-video {
775
813
  background-position: -224px -128px;
776
814
  }
777
815
 
778
- #alchemy .ui-icon-script {
816
+ .ui-icon-script {
779
817
  background-position: -240px -128px;
780
818
  }
781
819
 
782
- #alchemy .ui-icon-alert {
820
+ .ui-icon-alert {
783
821
  background-position: 0 -144px;
784
822
  }
785
823
 
786
- #alchemy .ui-icon-info {
824
+ .ui-icon-info {
787
825
  background-position: -16px -144px;
788
826
  }
789
827
 
790
- #alchemy .ui-icon-notice {
828
+ .ui-icon-notice {
791
829
  background-position: -32px -144px;
792
830
  }
793
831
 
794
- #alchemy .ui-icon-help {
832
+ .ui-icon-help {
795
833
  background-position: -48px -144px;
796
834
  }
797
835
 
798
- #alchemy .ui-icon-check {
836
+ .ui-icon-check {
799
837
  background-position: -64px -144px;
800
838
  }
801
839
 
802
- #alchemy .ui-icon-bullet {
840
+ .ui-icon-bullet {
803
841
  background-position: -80px -144px;
804
842
  }
805
843
 
806
- #alchemy .ui-icon-radio-off {
844
+ .ui-icon-radio-off {
807
845
  background-position: -96px -144px;
808
846
  }
809
847
 
810
- #alchemy .ui-icon-radio-on {
848
+ .ui-icon-radio-on {
811
849
  background-position: -112px -144px;
812
850
  }
813
851
 
814
- #alchemy .ui-icon-pin-w {
852
+ .ui-icon-pin-w {
815
853
  background-position: -128px -144px;
816
854
  }
817
855
 
818
- #alchemy .ui-icon-pin-s {
856
+ .ui-icon-pin-s {
819
857
  background-position: -144px -144px;
820
858
  }
821
859
 
822
- #alchemy .ui-icon-play {
860
+ .ui-icon-play {
823
861
  background-position: 0 -160px;
824
862
  }
825
863
 
826
- #alchemy .ui-icon-pause {
864
+ .ui-icon-pause {
827
865
  background-position: -16px -160px;
828
866
  }
829
867
 
830
- #alchemy .ui-icon-seek-next {
868
+ .ui-icon-seek-next {
831
869
  background-position: -32px -160px;
832
870
  }
833
871
 
834
- #alchemy .ui-icon-seek-prev {
872
+ .ui-icon-seek-prev {
835
873
  background-position: -48px -160px;
836
874
  }
837
875
 
838
- #alchemy .ui-icon-seek-end {
876
+ .ui-icon-seek-end {
839
877
  background-position: -64px -160px;
840
878
  }
841
879
 
842
- #alchemy .ui-icon-seek-start {
880
+ .ui-icon-seek-start {
843
881
  background-position: -80px -160px;
844
882
  }
845
883
 
846
884
  /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
847
885
 
848
- #alchemy .ui-icon-seek-first {
886
+ .ui-icon-seek-first {
849
887
  background-position: -80px -160px;
850
888
  }
851
889
 
852
- #alchemy .ui-icon-stop {
890
+ .ui-icon-stop {
853
891
  background-position: -96px -160px;
854
892
  }
855
893
 
856
- #alchemy .ui-icon-eject {
894
+ .ui-icon-eject {
857
895
  background-position: -112px -160px;
858
896
  }
859
897
 
860
- #alchemy .ui-icon-volume-off {
898
+ .ui-icon-volume-off {
861
899
  background-position: -128px -160px;
862
900
  }
863
901
 
864
- #alchemy .ui-icon-volume-on {
902
+ .ui-icon-volume-on {
865
903
  background-position: -144px -160px;
866
904
  }
867
905
 
868
- #alchemy .ui-icon-power {
906
+ .ui-icon-power {
869
907
  background-position: 0 -176px;
870
908
  }
871
909
 
872
- #alchemy .ui-icon-signal-diag {
910
+ .ui-icon-signal-diag {
873
911
  background-position: -16px -176px;
874
912
  }
875
913
 
876
- #alchemy .ui-icon-signal {
914
+ .ui-icon-signal {
877
915
  background-position: -32px -176px;
878
916
  }
879
917
 
880
- #alchemy .ui-icon-battery-0 {
918
+ .ui-icon-battery-0 {
881
919
  background-position: -48px -176px;
882
920
  }
883
921
 
884
- #alchemy .ui-icon-battery-1 {
922
+ .ui-icon-battery-1 {
885
923
  background-position: -64px -176px;
886
924
  }
887
925
 
888
- #alchemy .ui-icon-battery-2 {
926
+ .ui-icon-battery-2 {
889
927
  background-position: -80px -176px;
890
928
  }
891
929
 
892
- #alchemy .ui-icon-battery-3 {
930
+ .ui-icon-battery-3 {
893
931
  background-position: -96px -176px;
894
932
  }
895
933
 
896
- #alchemy .ui-icon-circle-plus {
934
+ .ui-icon-circle-plus {
897
935
  background-position: 0 -192px;
898
936
  }
899
937
 
900
- #alchemy .ui-icon-circle-minus {
938
+ .ui-icon-circle-minus {
901
939
  background-position: -16px -192px;
902
940
  }
903
941
 
904
- #alchemy .ui-icon-circle-close {
942
+ .ui-icon-circle-close {
905
943
  background-position: -32px -192px;
906
944
  }
907
945
 
908
- #alchemy .ui-icon-circle-triangle-e {
946
+ .ui-icon-circle-triangle-e {
909
947
  background-position: -48px -192px;
910
948
  }
911
949
 
912
- #alchemy .ui-icon-circle-triangle-s {
950
+ .ui-icon-circle-triangle-s {
913
951
  background-position: -64px -192px;
914
952
  }
915
953
 
916
- #alchemy .ui-icon-circle-triangle-w {
954
+ .ui-icon-circle-triangle-w {
917
955
  background-position: -80px -192px;
918
956
  }
919
957
 
920
- #alchemy .ui-icon-circle-triangle-n {
958
+ .ui-icon-circle-triangle-n {
921
959
  background-position: -96px -192px;
922
960
  }
923
961
 
924
- #alchemy .ui-icon-circle-arrow-e {
962
+ .ui-icon-circle-arrow-e {
925
963
  background-position: -112px -192px;
926
964
  }
927
965
 
928
- #alchemy .ui-icon-circle-arrow-s {
966
+ .ui-icon-circle-arrow-s {
929
967
  background-position: -128px -192px;
930
968
  }
931
969
 
932
- #alchemy .ui-icon-circle-arrow-w {
970
+ .ui-icon-circle-arrow-w {
933
971
  background-position: -144px -192px;
934
972
  }
935
973
 
936
- #alchemy .ui-icon-circle-arrow-n {
974
+ .ui-icon-circle-arrow-n {
937
975
  background-position: -160px -192px;
938
976
  }
939
977
 
940
- #alchemy .ui-icon-circle-zoomin {
978
+ .ui-icon-circle-zoomin {
941
979
  background-position: -176px -192px;
942
980
  }
943
981
 
944
- #alchemy .ui-icon-circle-zoomout {
982
+ .ui-icon-circle-zoomout {
945
983
  background-position: -192px -192px;
946
984
  }
947
985
 
948
- #alchemy .ui-icon-circle-check {
986
+ .ui-icon-circle-check {
949
987
  background-position: -208px -192px;
950
988
  }
951
989
 
952
- #alchemy .ui-icon-circlesmall-plus {
990
+ .ui-icon-circlesmall-plus {
953
991
  background-position: 0 -208px;
954
992
  }
955
993
 
956
- #alchemy .ui-icon-circlesmall-minus {
994
+ .ui-icon-circlesmall-minus {
957
995
  background-position: -16px -208px;
958
996
  }
959
997
 
960
- #alchemy .ui-icon-circlesmall-close {
998
+ .ui-icon-circlesmall-close {
961
999
  background-position: -32px -208px;
962
1000
  }
963
1001
 
964
- #alchemy .ui-icon-squaresmall-plus {
1002
+ .ui-icon-squaresmall-plus {
965
1003
  background-position: -48px -208px;
966
1004
  }
967
1005
 
968
- #alchemy .ui-icon-squaresmall-minus {
1006
+ .ui-icon-squaresmall-minus {
969
1007
  background-position: -64px -208px;
970
1008
  }
971
1009
 
972
- #alchemy .ui-icon-squaresmall-close {
1010
+ .ui-icon-squaresmall-close {
973
1011
  background-position: -80px -208px;
974
1012
  }
975
1013
 
976
- #alchemy .ui-icon-grip-dotted-vertical {
1014
+ .ui-icon-grip-dotted-vertical {
977
1015
  background-position: 0 -224px;
978
1016
  }
979
1017
 
980
- #alchemy .ui-icon-grip-dotted-horizontal {
1018
+ .ui-icon-grip-dotted-horizontal {
981
1019
  background-position: -16px -224px;
982
1020
  }
983
1021
 
984
- #alchemy .ui-icon-grip-solid-vertical {
1022
+ .ui-icon-grip-solid-vertical {
985
1023
  background-position: -32px -224px;
986
1024
  }
987
1025
 
988
- #alchemy .ui-icon-grip-solid-horizontal {
1026
+ .ui-icon-grip-solid-horizontal {
989
1027
  background-position: -48px -224px;
990
1028
  }
991
1029
 
992
- #alchemy .ui-icon-gripsmall-diagonal-se {
1030
+ .ui-icon-gripsmall-diagonal-se {
993
1031
  background-position: -64px -224px;
994
1032
  }
995
1033
 
996
- #alchemy .ui-icon-grip-diagonal-se {
1034
+ .ui-icon-grip-diagonal-se {
997
1035
  background-position: -80px -224px;
998
1036
  }
999
1037
 
@@ -1002,31 +1040,31 @@
1002
1040
 
1003
1041
  /* Corner radius */
1004
1042
 
1005
- #alchemy .ui-corner-tl {
1043
+ .ui-corner-tl {
1006
1044
  -moz-border-radius-topleft: 3px;
1007
1045
  -webkit-border-top-left-radius: 3px;
1008
1046
  border-top-left-radius: 3px;
1009
1047
  }
1010
1048
 
1011
- #alchemy .ui-corner-tr {
1049
+ .ui-corner-tr {
1012
1050
  -moz-border-radius-topright: 3px;
1013
1051
  -webkit-border-top-right-radius: 3px;
1014
1052
  border-top-right-radius: 3px;
1015
1053
  }
1016
1054
 
1017
- #alchemy .ui-corner-bl {
1055
+ .ui-corner-bl {
1018
1056
  -moz-border-radius-bottomleft: 3px;
1019
1057
  -webkit-border-bottom-left-radius: 3px;
1020
1058
  border-bottom-left-radius: 3px;
1021
1059
  }
1022
1060
 
1023
- #alchemy .ui-corner-br {
1061
+ .ui-corner-br {
1024
1062
  -moz-border-radius-bottomright: 3px;
1025
1063
  -webkit-border-bottom-right-radius: 3px;
1026
1064
  border-bottom-right-radius: 3px;
1027
1065
  }
1028
1066
 
1029
- #alchemy .ui-corner-top {
1067
+ .ui-corner-top {
1030
1068
  -moz-border-radius-topleft: 3px;
1031
1069
  -webkit-border-top-left-radius: 3px;
1032
1070
  border-top-left-radius: 3px;
@@ -1035,7 +1073,7 @@
1035
1073
  border-top-right-radius: 3px;
1036
1074
  }
1037
1075
 
1038
- #alchemy .ui-corner-bottom {
1076
+ .ui-corner-bottom {
1039
1077
  -moz-border-radius-bottomleft: 3px;
1040
1078
  -webkit-border-bottom-left-radius: 3px;
1041
1079
  border-bottom-left-radius: 3px;
@@ -1044,7 +1082,7 @@
1044
1082
  border-bottom-right-radius: 3px;
1045
1083
  }
1046
1084
 
1047
- #alchemy .ui-corner-right {
1085
+ .ui-corner-right {
1048
1086
  -moz-border-radius-topright: 3px;
1049
1087
  -webkit-border-top-right-radius: 3px;
1050
1088
  border-top-right-radius: 3px;
@@ -1053,7 +1091,7 @@
1053
1091
  border-bottom-right-radius: 3px;
1054
1092
  }
1055
1093
 
1056
- #alchemy .ui-corner-left {
1094
+ .ui-corner-left {
1057
1095
  -moz-border-radius-topleft: 3px;
1058
1096
  -webkit-border-top-left-radius: 3px;
1059
1097
  border-top-left-radius: 3px;
@@ -1062,7 +1100,7 @@
1062
1100
  border-bottom-left-radius: 3px;
1063
1101
  }
1064
1102
 
1065
- #alchemy .ui-corner-all {
1103
+ .ui-corner-all {
1066
1104
  -moz-border-radius: 3px;
1067
1105
  -webkit-border-radius: 3px;
1068
1106
  border-radius: 3px;
@@ -1070,12 +1108,12 @@
1070
1108
 
1071
1109
  /* Overlays */
1072
1110
 
1073
- #alchemy .ui-widget-overlay {
1111
+ .ui-widget-overlay {
1074
1112
  background-color: rgba(229, 229, 229, 0.4);
1075
1113
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #40E5E5E5, endColorstr = #40E5E5E5);
1076
1114
  }
1077
1115
 
1078
- #alchemy .ui-widget-shadow {
1116
+ .ui-widget-shadow {
1079
1117
  margin: -8px 0 0 -8px;
1080
1118
  padding: 8px;
1081
1119
  background: #000000 50% 50% repeat-x;
@@ -1093,22 +1131,22 @@
1093
1131
  * http://docs.jquery.com/UI/Resizable#theming
1094
1132
  */
1095
1133
 
1096
- #alchemy .ui-resizable {
1134
+ .ui-resizable {
1097
1135
  position: relative;
1098
1136
  }
1099
1137
 
1100
- #alchemy .ui-resizable-handle {
1138
+ .ui-resizable-handle {
1101
1139
  position: absolute;
1102
1140
  font-size: 0.1px;
1103
1141
  z-index: 99999;
1104
1142
  display: block;
1105
1143
  }
1106
1144
 
1107
- #alchemy .ui-resizable-disabled .ui-resizable-handle, #alchemy .ui-resizable-autohide .ui-resizable-handle {
1145
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
1108
1146
  display: none;
1109
1147
  }
1110
1148
 
1111
- #alchemy .ui-resizable-n {
1149
+ .ui-resizable-n {
1112
1150
  cursor: n-resize;
1113
1151
  height: 7px;
1114
1152
  width: 100%;
@@ -1116,7 +1154,7 @@
1116
1154
  left: 0;
1117
1155
  }
1118
1156
 
1119
- #alchemy .ui-resizable-s {
1157
+ .ui-resizable-s {
1120
1158
  cursor: s-resize;
1121
1159
  height: 7px;
1122
1160
  width: 100%;
@@ -1124,7 +1162,7 @@
1124
1162
  left: 0;
1125
1163
  }
1126
1164
 
1127
- #alchemy .ui-resizable-e {
1165
+ .ui-resizable-e {
1128
1166
  cursor: e-resize;
1129
1167
  width: 7px;
1130
1168
  right: -5px;
@@ -1132,7 +1170,7 @@
1132
1170
  height: 100%;
1133
1171
  }
1134
1172
 
1135
- #alchemy .ui-resizable-w {
1173
+ .ui-resizable-w {
1136
1174
  cursor: w-resize;
1137
1175
  width: 7px;
1138
1176
  left: -5px;
@@ -1140,7 +1178,7 @@
1140
1178
  height: 100%;
1141
1179
  }
1142
1180
 
1143
- #alchemy .ui-resizable-se {
1181
+ .ui-resizable-se {
1144
1182
  cursor: se-resize;
1145
1183
  width: 12px;
1146
1184
  height: 12px;
@@ -1148,7 +1186,7 @@
1148
1186
  bottom: 1px;
1149
1187
  }
1150
1188
 
1151
- #alchemy .ui-resizable-sw {
1189
+ .ui-resizable-sw {
1152
1190
  cursor: sw-resize;
1153
1191
  width: 9px;
1154
1192
  height: 9px;
@@ -1156,7 +1194,7 @@
1156
1194
  bottom: -5px;
1157
1195
  }
1158
1196
 
1159
- #alchemy .ui-resizable-nw {
1197
+ .ui-resizable-nw {
1160
1198
  cursor: nw-resize;
1161
1199
  width: 9px;
1162
1200
  height: 9px;
@@ -1164,7 +1202,7 @@
1164
1202
  top: -5px;
1165
1203
  }
1166
1204
 
1167
- #alchemy .ui-resizable-ne {
1205
+ .ui-resizable-ne {
1168
1206
  cursor: ne-resize;
1169
1207
  width: 9px;
1170
1208
  height: 9px;
@@ -1182,7 +1220,7 @@
1182
1220
  * http://docs.jquery.com/UI/Selectable#theming
1183
1221
  */
1184
1222
 
1185
- #alchemy .ui-selectable-helper {
1223
+ .ui-selectable-helper {
1186
1224
  position: absolute;
1187
1225
  z-index: 100;
1188
1226
  border: 1px dotted black;
@@ -1200,43 +1238,43 @@
1200
1238
 
1201
1239
  /* IE/Win - Fix animation bug - #4615 */
1202
1240
 
1203
- #alchemy .ui-accordion {
1241
+ .ui-accordion {
1204
1242
  width: 100%;
1205
1243
  }
1206
1244
 
1207
- #alchemy .ui-accordion .ui-accordion-header {
1245
+ .ui-accordion .ui-accordion-header {
1208
1246
  cursor: pointer;
1209
1247
  position: relative;
1210
1248
  margin-top: 1px;
1211
1249
  zoom: 1;
1212
1250
  }
1213
1251
 
1214
- #alchemy .ui-accordion .ui-accordion-li-fix {
1252
+ .ui-accordion .ui-accordion-li-fix {
1215
1253
  display: inline;
1216
1254
  }
1217
1255
 
1218
- #alchemy .ui-accordion .ui-accordion-header-active {
1256
+ .ui-accordion .ui-accordion-header-active {
1219
1257
  border-bottom: 0 !important;
1220
1258
  }
1221
1259
 
1222
- #alchemy .ui-accordion .ui-accordion-header a {
1260
+ .ui-accordion .ui-accordion-header a {
1223
1261
  display: block;
1224
1262
  font-size: 1em;
1225
1263
  padding: .5em .5em .5em .7em;
1226
1264
  }
1227
1265
 
1228
- #alchemy .ui-accordion-icons .ui-accordion-header a {
1266
+ .ui-accordion-icons .ui-accordion-header a {
1229
1267
  padding-left: 2.2em;
1230
1268
  }
1231
1269
 
1232
- #alchemy .ui-accordion .ui-accordion-header .ui-icon {
1270
+ .ui-accordion .ui-accordion-header .ui-icon {
1233
1271
  position: absolute;
1234
1272
  left: .5em;
1235
1273
  top: 50%;
1236
1274
  margin-top: -8px;
1237
1275
  }
1238
1276
 
1239
- #alchemy .ui-accordion .ui-accordion-content {
1277
+ .ui-accordion .ui-accordion-content {
1240
1278
  padding: 1em 2.2em;
1241
1279
  border-top: 0;
1242
1280
  margin-top: -2px;
@@ -1248,7 +1286,7 @@
1248
1286
  zoom: 1;
1249
1287
  }
1250
1288
 
1251
- #alchemy .ui-accordion .ui-accordion-content-active {
1289
+ .ui-accordion .ui-accordion-content-active {
1252
1290
  display: block;
1253
1291
  }
1254
1292
 
@@ -1262,7 +1300,7 @@
1262
1300
  * http://docs.jquery.com/UI/Autocomplete#theming
1263
1301
  */
1264
1302
 
1265
- #alchemy .ui-autocomplete {
1303
+ .ui-autocomplete {
1266
1304
  position: absolute;
1267
1305
  cursor: default;
1268
1306
  }
@@ -1285,7 +1323,7 @@
1285
1323
  * http://docs.jquery.com/UI/Menu#theming
1286
1324
  */
1287
1325
 
1288
- #alchemy .ui-menu {
1326
+ .ui-menu {
1289
1327
  list-style: none;
1290
1328
  padding: 2px;
1291
1329
  margin: 0;
@@ -1296,11 +1334,11 @@
1296
1334
  border: $default-border;
1297
1335
  }
1298
1336
 
1299
- #alchemy .ui-menu .ui-menu {
1337
+ .ui-menu .ui-menu {
1300
1338
  margin-top: -3px;
1301
1339
  }
1302
1340
 
1303
- #alchemy .ui-menu .ui-menu-item {
1341
+ .ui-menu .ui-menu-item {
1304
1342
  margin: 0;
1305
1343
  padding: 0;
1306
1344
  zoom: 1;
@@ -1309,7 +1347,7 @@
1309
1347
  width: 100%;
1310
1348
  }
1311
1349
 
1312
- #alchemy .ui-menu .ui-menu-item a {
1350
+ .ui-menu .ui-menu-item a {
1313
1351
  text-decoration: none;
1314
1352
  display: block;
1315
1353
  padding: .2em .4em;
@@ -1317,9 +1355,9 @@
1317
1355
  zoom: 1;
1318
1356
  }
1319
1357
 
1320
- #alchemy .ui-menu .ui-menu-item a.ui-state-hover,
1321
- #alchemy .ui-menu .ui-menu-item a.ui-state-active,
1322
- #alchemy .ui-menu .ui-menu-item a.ui-state-focus {
1358
+ .ui-menu .ui-menu-item a.ui-state-hover,
1359
+ .ui-menu .ui-menu-item a.ui-state-active,
1360
+ .ui-menu .ui-menu-item a.ui-state-focus {
1323
1361
  font-weight: normal;
1324
1362
  cursor: pointer;
1325
1363
  background-color: $button-hover-bg-color;
@@ -1336,8 +1374,8 @@
1336
1374
  * http://docs.jquery.com/UI/Button#theming
1337
1375
  */
1338
1376
 
1339
- #alchemy button.ui-button {
1340
- @include default-button-style;
1377
+ .ui-button {
1378
+ @extend %button-defaults;
1341
1379
  @include inline-block;
1342
1380
  position: relative;
1343
1381
  margin-right: .1em;
@@ -1347,13 +1385,13 @@
1347
1385
  overflow: visible;
1348
1386
 
1349
1387
  &.ui-state-focus {
1350
- @include default-focus-style;
1388
+ @extend %blue-focus-style;
1351
1389
  }
1352
1390
  }
1353
1391
 
1354
1392
  /* the overflow property removes extra width in IE */
1355
1393
 
1356
- #alchemy .ui-button-icon-only {
1394
+ .ui-button-icon-only {
1357
1395
  width: 2.2em;
1358
1396
  }
1359
1397
 
@@ -1365,7 +1403,7 @@ button.ui-button-icon-only {
1365
1403
 
1366
1404
  /* button elements seem to need a little more width */
1367
1405
 
1368
- #alchemy .ui-button-icons-only {
1406
+ .ui-button-icons-only {
1369
1407
  width: 3.4em;
1370
1408
  }
1371
1409
 
@@ -1375,28 +1413,28 @@ button.ui-button-icons-only {
1375
1413
 
1376
1414
  /*button text element */
1377
1415
 
1378
- #alchemy .ui-button .ui-button-text {
1416
+ .ui-button .ui-button-text {
1379
1417
  display: block;
1380
1418
  }
1381
1419
 
1382
- #alchemy .ui-button-text-only .ui-button-text {
1420
+ .ui-button-text-only .ui-button-text {
1383
1421
  padding: 0;
1384
1422
  }
1385
1423
 
1386
- #alchemy .ui-button-icon-only .ui-button-text, #alchemy .ui-button-icons-only .ui-button-text {
1424
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
1387
1425
  padding: .4em;
1388
1426
  text-indent: -9999999px;
1389
1427
  }
1390
1428
 
1391
- #alchemy .ui-button-text-icon-primary .ui-button-text, #alchemy .ui-button-text-icons .ui-button-text {
1429
+ .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
1392
1430
  padding: .4em 1em .4em 2.1em;
1393
1431
  }
1394
1432
 
1395
- #alchemy .ui-button-text-icon-secondary .ui-button-text, #alchemy .ui-button-text-icons .ui-button-text {
1433
+ .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
1396
1434
  padding: .4em 2.1em .4em 1em;
1397
1435
  }
1398
1436
 
1399
- #alchemy .ui-button-text-icons .ui-button-text {
1437
+ .ui-button-text-icons .ui-button-text {
1400
1438
  padding-left: 2.1em;
1401
1439
  padding-right: 2.1em;
1402
1440
  }
@@ -1409,36 +1447,31 @@ input.ui-button {
1409
1447
 
1410
1448
  /*button icon element(s) */
1411
1449
 
1412
- #alchemy .ui-button-icon-only .ui-icon, #alchemy .ui-button-text-icon-primary .ui-icon, #alchemy .ui-button-text-icon-secondary .ui-icon, #alchemy .ui-button-text-icons .ui-icon, #alchemy .ui-button-icons-only .ui-icon {
1450
+ .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
1413
1451
  position: absolute;
1414
1452
  top: 50%;
1415
1453
  margin-top: -8px;
1416
1454
  }
1417
1455
 
1418
- #alchemy .ui-button-icon-only .ui-icon {
1419
- left: 50%;
1420
- margin-left: -8px;
1421
- }
1422
-
1423
- #alchemy .ui-button-text-icon-primary .ui-button-icon-primary, #alchemy .ui-button-text-icons .ui-button-icon-primary, #alchemy .ui-button-icons-only .ui-button-icon-primary {
1456
+ .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
1424
1457
  left: .5em;
1425
1458
  }
1426
1459
 
1427
- #alchemy .ui-button-text-icon-secondary .ui-button-icon-secondary, #alchemy .ui-button-text-icons .ui-button-icon-secondary, #alchemy .ui-button-icons-only .ui-button-icon-secondary {
1460
+ .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
1428
1461
  right: .5em;
1429
1462
  }
1430
1463
 
1431
- #alchemy .ui-button-text-icons .ui-button-icon-secondary, #alchemy .ui-button-icons-only .ui-button-icon-secondary {
1464
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
1432
1465
  right: .5em;
1433
1466
  }
1434
1467
 
1435
1468
  /*button sets*/
1436
1469
 
1437
- #alchemy .ui-buttonset {
1470
+ .ui-buttonset {
1438
1471
  margin-right: 7px;
1439
1472
  }
1440
1473
 
1441
- #alchemy .ui-buttonset .ui-button {
1474
+ .ui-buttonset .ui-button {
1442
1475
  margin-left: 0;
1443
1476
  margin-right: -.3em;
1444
1477
  }
@@ -1462,64 +1495,108 @@ button.ui-button::-moz-focus-inner {
1462
1495
  * http://docs.jquery.com/UI/Dialog#theming
1463
1496
  */
1464
1497
 
1465
- #alchemy .ui-dialog {
1498
+ .ui-dialog {
1466
1499
  position: absolute;
1467
1500
  width: 300px;
1468
1501
  overflow: hidden;
1469
1502
  padding: 0;
1503
+ z-index: 10;
1504
+
1505
+ &.alchemy-preview-window, &.alchemy-elements-window {
1506
+ z-index: 5;
1507
+ }
1508
+
1509
+ &:focus { outline: none }
1470
1510
  }
1471
1511
 
1472
- #alchemy .ui-dialog .ui-dialog-titlebar {
1512
+ .ui-dialog-titlebar {
1473
1513
  padding: 8px 12px;
1474
1514
  position: relative;
1475
1515
  margin-bottom: 0;
1476
- @include border-bottom-radius(0)
1516
+ @include border-bottom-radius(0);
1477
1517
  }
1478
1518
 
1479
- #alchemy .ui-dialog .ui-dialog-title {
1519
+ .ui-dialog .ui-dialog-title {
1480
1520
  float: left;
1481
1521
  margin: .1em 16px .2em 0;
1482
1522
  }
1483
1523
 
1484
- #alchemy .ui-dialog .ui-dialog-titlebar-close {
1524
+ .ui-dialog-titlebar-close {
1485
1525
  position: absolute;
1486
- right: 2*$default-padding;
1526
+ right: 2 * $default-padding;
1487
1527
  top: 50%;
1488
1528
  width: 19px;
1489
1529
  margin: -10px 0 0 0;
1490
1530
  padding: 1px;
1491
1531
  height: 18px;
1532
+ float: right;
1533
+
1534
+ &.ui-state-default {
1535
+ background: transparent;
1536
+ border: 0;
1537
+ @include text-shadow(none);
1538
+ @include box-shadow(none);
1539
+ width: 18px;
1540
+ }
1541
+
1542
+ &.ui-state-hover {
1543
+ @extend %foc
1544
+ }
1492
1545
  }
1493
1546
 
1494
- #alchemy .ui-dialog .ui-dialog-titlebar-refresh {
1547
+ .ui-dialog .ui-dialog-titlebar-refresh {
1495
1548
  position: absolute;
1496
- right: 48px;
1497
- top: 50%;
1498
- width: 19px;
1499
- margin: -10px 0 0 0;
1500
- padding: 1px;
1549
+ right: 42px;
1550
+ top: 7px;
1501
1551
  height: 18px;
1502
- }
1503
-
1504
- #alchemy .ui-dialog .ui-dialog-titlebar-maximize,
1505
- #alchemy .ui-dialog .ui-dialog-titlebar-restore {
1506
- margin-right: 0;
1507
- }
1508
1552
 
1509
- #alchemy .ui-dialog .ui-dialog-titlebar-close span {
1510
- display: block;
1511
- margin: 1px;
1553
+ &.ui-state-hover { margin-right: 3px }
1512
1554
  }
1513
1555
 
1514
- #alchemy .ui-dialog .ui-dialog-titlebar-close:hover, #alchemy .ui-dialog .ui-dialog-titlebar-close:focus {
1556
+ .ui-dialog .ui-dialog-titlebar-maximize,
1557
+ .ui-dialog .ui-dialog-titlebar-restore,
1558
+ .ui-dialog .ui-dialog-titlebar-refresh {
1559
+ margin-right: 2px;
1560
+ margin-top: 0;
1515
1561
  padding: 0;
1562
+
1563
+ .ui-icon {
1564
+ margin: 0;
1565
+ left: -1px;
1566
+ }
1567
+
1568
+ &.ui-state-default {
1569
+ background: transparent;
1570
+ border: 0;
1571
+ @include text-shadow(none);
1572
+ @include box-shadow(none);
1573
+ width: 18px;
1574
+ }
1575
+
1576
+ &.ui-state-hover {
1577
+ width: 18px;
1578
+ height: 18px;
1579
+ @include box-shadow(none);
1580
+ @include text-shadow(none);
1581
+
1582
+ .ui-icon {
1583
+ margin: 0;
1584
+ }
1585
+ }
1516
1586
  }
1517
1587
 
1518
- #alchemy .ui-dialog .ui-dialog-titlebar-refresh:hover, #alchemy .ui-dialog .ui-dialog-titlebar-refresh:focus {
1519
- padding: 0;
1588
+ .ui-dialog-titlebar-close, .ui-dialog-titlebar-refresh, .ui-dialog-titlebar-maximize, .ui-dialog-titlebar-restore {
1589
+
1590
+ &.ui-state-hover, &.ui-state-focus {
1591
+ border: 1px solid $button-hover-border-color;
1592
+ background: $button-hover-bg-color;
1593
+ font-weight: normal;
1594
+ color: $text-color;
1595
+ padding: 0;
1596
+ }
1520
1597
  }
1521
1598
 
1522
- #alchemy .ui-dialog .ui-dialog-content {
1599
+ .ui-dialog .ui-dialog-content {
1523
1600
  position: relative;
1524
1601
  border: 0;
1525
1602
  padding: 0;
@@ -1528,11 +1605,11 @@ button.ui-button::-moz-focus-inner {
1528
1605
  zoom: 1;
1529
1606
  }
1530
1607
 
1531
- #alchemy .ui-dialog .ui-dialog-content form {
1608
+ .ui-dialog .ui-dialog-content form {
1532
1609
  padding: 12px;
1533
1610
  }
1534
1611
 
1535
- #alchemy .ui-dialog .ui-dialog-buttonpane {
1612
+ .ui-dialog .ui-dialog-buttonpane {
1536
1613
  text-align: left;
1537
1614
  border-width: 0 0 0 0;
1538
1615
  background-image: none;
@@ -1540,23 +1617,23 @@ button.ui-button::-moz-focus-inner {
1540
1617
  padding: 0;
1541
1618
  }
1542
1619
 
1543
- #alchemy .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
1620
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
1544
1621
  float: right;
1545
1622
  }
1546
1623
 
1547
- #alchemy .ui-dialog .ui-dialog-buttonpane button {
1624
+ .ui-dialog .ui-dialog-buttonpane button {
1548
1625
  margin: 8px 8px 8px 0;
1549
1626
  cursor: pointer;
1550
1627
  }
1551
1628
 
1552
- #alchemy .ui-dialog .ui-resizable-se {
1629
+ .ui-dialog .ui-resizable-se {
1553
1630
  width: 14px;
1554
1631
  height: 14px;
1555
1632
  right: 3px;
1556
1633
  bottom: 3px;
1557
1634
  }
1558
1635
 
1559
- #alchemy .ui-draggable .ui-dialog-titlebar {
1636
+ .ui-draggable .ui-dialog-titlebar {
1560
1637
  cursor: move;
1561
1638
  }
1562
1639
 
@@ -1570,12 +1647,12 @@ button.ui-button::-moz-focus-inner {
1570
1647
  * http://docs.jquery.com/UI/Slider#theming
1571
1648
  */
1572
1649
 
1573
- #alchemy .ui-slider {
1650
+ .ui-slider {
1574
1651
  position: relative;
1575
1652
  text-align: left;
1576
1653
  }
1577
1654
 
1578
- #alchemy .ui-slider .ui-slider-handle {
1655
+ .ui-slider .ui-slider-handle {
1579
1656
  position: absolute;
1580
1657
  z-index: 2;
1581
1658
  width: 1.2em;
@@ -1583,7 +1660,7 @@ button.ui-button::-moz-focus-inner {
1583
1660
  cursor: default;
1584
1661
  }
1585
1662
 
1586
- #alchemy .ui-slider .ui-slider-range {
1663
+ .ui-slider .ui-slider-range {
1587
1664
  position: absolute;
1588
1665
  z-index: 1;
1589
1666
  font-size: .7em;
@@ -1592,49 +1669,49 @@ button.ui-button::-moz-focus-inner {
1592
1669
  background-position: 0 0;
1593
1670
  }
1594
1671
 
1595
- #alchemy .ui-slider-horizontal {
1672
+ .ui-slider-horizontal {
1596
1673
  height: .8em;
1597
1674
  }
1598
1675
 
1599
- #alchemy .ui-slider-horizontal .ui-slider-handle {
1676
+ .ui-slider-horizontal .ui-slider-handle {
1600
1677
  top: -.3em;
1601
1678
  margin-left: -.6em;
1602
1679
  }
1603
1680
 
1604
- #alchemy .ui-slider-horizontal .ui-slider-range {
1681
+ .ui-slider-horizontal .ui-slider-range {
1605
1682
  top: 0;
1606
1683
  height: 100%;
1607
1684
  }
1608
1685
 
1609
- #alchemy .ui-slider-horizontal .ui-slider-range-min {
1686
+ .ui-slider-horizontal .ui-slider-range-min {
1610
1687
  left: 0;
1611
1688
  }
1612
1689
 
1613
- #alchemy .ui-slider-horizontal .ui-slider-range-max {
1690
+ .ui-slider-horizontal .ui-slider-range-max {
1614
1691
  right: 0;
1615
1692
  }
1616
1693
 
1617
- #alchemy .ui-slider-vertical {
1694
+ .ui-slider-vertical {
1618
1695
  width: .8em;
1619
1696
  height: 100px;
1620
1697
  }
1621
1698
 
1622
- #alchemy .ui-slider-vertical .ui-slider-handle {
1699
+ .ui-slider-vertical .ui-slider-handle {
1623
1700
  left: -.3em;
1624
1701
  margin-left: 0;
1625
1702
  margin-bottom: -.6em;
1626
1703
  }
1627
1704
 
1628
- #alchemy .ui-slider-vertical .ui-slider-range {
1705
+ .ui-slider-vertical .ui-slider-range {
1629
1706
  left: 0;
1630
1707
  width: 100%;
1631
1708
  }
1632
1709
 
1633
- #alchemy .ui-slider-vertical .ui-slider-range-min {
1710
+ .ui-slider-vertical .ui-slider-range-min {
1634
1711
  bottom: 0;
1635
1712
  }
1636
1713
 
1637
- #alchemy .ui-slider-vertical .ui-slider-range-max {
1714
+ .ui-slider-vertical .ui-slider-range-max {
1638
1715
  top: 0;
1639
1716
  }
1640
1717
 
@@ -1648,7 +1725,7 @@ button.ui-button::-moz-focus-inner {
1648
1725
  * http://docs.jquery.com/UI/Tabs#theming
1649
1726
  */
1650
1727
 
1651
- #alchemy .ui-tabs {
1728
+ .ui-tabs {
1652
1729
  position: relative;
1653
1730
  padding: 0;
1654
1731
  zoom: 1;
@@ -1659,7 +1736,7 @@ button.ui-button::-moz-focus-inner {
1659
1736
 
1660
1737
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed') */
1661
1738
 
1662
- #alchemy .ui-tabs .ui-tabs-nav {
1739
+ .ui-tabs .ui-tabs-nav {
1663
1740
  padding: 4px 8px 0;
1664
1741
  background: transparent;
1665
1742
  @include border-radius(0);
@@ -1667,7 +1744,7 @@ button.ui-button::-moz-focus-inner {
1667
1744
  margin: 0;
1668
1745
  }
1669
1746
 
1670
- #alchemy .ui-tabs .ui-tabs-nav li {
1747
+ .ui-tabs .ui-tabs-nav li {
1671
1748
  list-style: none;
1672
1749
  float: left;
1673
1750
  position: relative;
@@ -1689,52 +1766,52 @@ button.ui-button::-moz-focus-inner {
1689
1766
  }
1690
1767
  }
1691
1768
 
1692
- #alchemy .ui-tabs .ui-tabs-nav li a {
1769
+ .ui-tabs .ui-tabs-nav li a {
1693
1770
  float: left;
1694
1771
  text-decoration: none;
1695
1772
  padding: 6px 12px 5px;
1696
1773
  }
1697
1774
 
1698
- #alchemy .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
1775
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
1699
1776
  margin-bottom: 0;
1700
1777
  padding-bottom: 1px;
1701
1778
  background: $light-gray;
1702
1779
  }
1703
1780
 
1704
- #alchemy .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, #alchemy .ui-tabs .ui-tabs-nav li.ui-state-disabled a, #alchemy .ui-tabs .ui-tabs-nav li.ui-state-processing a {
1781
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
1705
1782
  cursor: default;
1706
1783
  }
1707
1784
 
1708
- #alchemy .ui-tabs .ui-tabs-nav li a, #alchemy .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
1785
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
1709
1786
  cursor: pointer;
1710
1787
  }
1711
1788
 
1712
1789
  /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
1713
1790
 
1714
- #alchemy .ui-tabs .ui-tabs-panel {
1791
+ .ui-tabs .ui-tabs-panel {
1715
1792
  display: block;
1716
1793
  border-width: 0;
1717
1794
  background: none;
1718
1795
  }
1719
1796
 
1720
- #alchemy .ui-tabs .ui-tabs-hide {
1797
+ .ui-tabs .ui-tabs-hide {
1721
1798
  display: none !important;
1722
1799
  }
1723
1800
 
1724
1801
  /* UI Tabs Paging */
1725
1802
 
1726
- #alchemy .ui-tabs li.ui-tabs-paging-next {
1803
+ .ui-tabs li.ui-tabs-paging-next {
1727
1804
  float: right !important;
1728
1805
  padding: 0 !important;
1729
1806
  }
1730
1807
 
1731
- #alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-prev,
1732
- #alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-next {
1808
+ .ui-tabs .ui-tabs-nav .ui-tabs-paging-prev,
1809
+ .ui-tabs .ui-tabs-nav .ui-tabs-paging-next {
1733
1810
  height: 26px;
1734
1811
  }
1735
1812
 
1736
- #alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-prev a,
1737
- #alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-next a {
1813
+ .ui-tabs .ui-tabs-nav .ui-tabs-paging-prev a,
1814
+ .ui-tabs .ui-tabs-nav .ui-tabs-paging-next a {
1738
1815
  display: block;
1739
1816
  position: relative;
1740
1817
  top: 1px;
@@ -1747,16 +1824,16 @@ button.ui-button::-moz-focus-inner {
1747
1824
  cursor: pointer;
1748
1825
  }
1749
1826
 
1750
- #alchemy .ui-tabs .ui-tabs-paging-next a:hover,
1751
- #alchemy .ui-tabs .ui-tabs-paging-next a:focus,
1752
- #alchemy .ui-tabs .ui-tabs-paging-next a:active,
1753
- #alchemy .ui-tabs .ui-tabs-paging-prev a:hover,
1754
- #alchemy .ui-tabs .ui-tabs-paging-prev a:focus,
1755
- #alchemy .ui-tabs .ui-tabs-paging-prev a:active {
1827
+ .ui-tabs .ui-tabs-paging-next a:hover,
1828
+ .ui-tabs .ui-tabs-paging-next a:focus,
1829
+ .ui-tabs .ui-tabs-paging-next a:active,
1830
+ .ui-tabs .ui-tabs-paging-prev a:hover,
1831
+ .ui-tabs .ui-tabs-paging-prev a:focus,
1832
+ .ui-tabs .ui-tabs-paging-prev a:active {
1756
1833
  background: #eee;
1757
1834
  }
1758
1835
 
1759
- #alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-disabled {
1836
+ .ui-tabs .ui-tabs-nav .ui-tabs-paging-disabled {
1760
1837
  visibility: hidden;
1761
1838
  }
1762
1839
 
@@ -1770,48 +1847,48 @@ button.ui-button::-moz-focus-inner {
1770
1847
  * http://docs.jquery.com/UI/Datepicker#theming
1771
1848
  */
1772
1849
 
1773
- #alchemy .ui-datepicker {
1850
+ .ui-datepicker {
1774
1851
  width: 17em;
1775
1852
  padding: $default-padding;
1776
1853
  display: none;
1777
1854
  }
1778
1855
 
1779
- #alchemy .ui-datepicker .ui-datepicker-header {
1856
+ .ui-datepicker .ui-datepicker-header {
1780
1857
  position: relative;
1781
1858
  padding: $default-padding;
1782
1859
  margin: -$default-padding;
1783
1860
  }
1784
1861
 
1785
- #alchemy .ui-datepicker .ui-datepicker-prev, #alchemy .ui-datepicker .ui-datepicker-next {
1862
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
1786
1863
  position: absolute;
1787
1864
  top: $default-padding;
1788
1865
  width: 1.8em;
1789
1866
  height: 1.8em;
1790
1867
  }
1791
1868
 
1792
- #alchemy .ui-datepicker .ui-datepicker-prev-hover, #alchemy .ui-datepicker .ui-datepicker-next-hover {
1869
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
1793
1870
  top: $default-padding;
1794
1871
  }
1795
1872
 
1796
- #alchemy .ui-datepicker .ui-datepicker-prev {
1873
+ .ui-datepicker .ui-datepicker-prev {
1797
1874
  left: $default-padding;
1798
1875
  }
1799
1876
 
1800
- #alchemy .ui-datepicker .ui-datepicker-next {
1877
+ .ui-datepicker .ui-datepicker-next {
1801
1878
  right: $default-padding;
1802
1879
  }
1803
1880
 
1804
- #alchemy .ui-datepicker .ui-datepicker-prev-hover {
1881
+ .ui-datepicker .ui-datepicker-prev-hover {
1805
1882
  top: $default-padding - 1;
1806
1883
  left: $default-padding - 1;
1807
1884
  }
1808
1885
 
1809
- #alchemy .ui-datepicker .ui-datepicker-next-hover {
1886
+ .ui-datepicker .ui-datepicker-next-hover {
1810
1887
  top: $default-padding - 1;
1811
1888
  right: $default-padding - 1;
1812
1889
  }
1813
1890
 
1814
- #alchemy .ui-datepicker .ui-datepicker-prev span, #alchemy .ui-datepicker .ui-datepicker-next span {
1891
+ .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
1815
1892
  display: block;
1816
1893
  position: absolute;
1817
1894
  left: 50%;
@@ -1820,61 +1897,61 @@ button.ui-button::-moz-focus-inner {
1820
1897
  margin-top: -8px;
1821
1898
  }
1822
1899
 
1823
- #alchemy .ui-datepicker .ui-datepicker-title {
1900
+ .ui-datepicker .ui-datepicker-title {
1824
1901
  margin: 0 2.3em;
1825
1902
  line-height: 1.8em;
1826
1903
  text-align: center;
1827
1904
  }
1828
1905
 
1829
- #alchemy .ui-datepicker .ui-datepicker-title select {
1906
+ .ui-datepicker .ui-datepicker-title select {
1830
1907
  font-size: 1em;
1831
1908
  margin: 1px 0;
1832
1909
  }
1833
1910
 
1834
- #alchemy .ui-datepicker select.ui-datepicker-month-year {
1911
+ .ui-datepicker select.ui-datepicker-month-year {
1835
1912
  width: 100%;
1836
1913
  }
1837
1914
 
1838
- #alchemy .ui-datepicker select.ui-datepicker-month,
1839
- #alchemy .ui-datepicker select.ui-datepicker-year {
1915
+ .ui-datepicker select.ui-datepicker-month,
1916
+ .ui-datepicker select.ui-datepicker-year {
1840
1917
  width: 49%;
1841
1918
  }
1842
1919
 
1843
- #alchemy .ui-datepicker table {
1920
+ .ui-datepicker table {
1844
1921
  width: 100%;
1845
1922
  font-size: 1em;
1846
1923
  border-collapse: collapse;
1847
1924
  margin: 0 0 .4em;
1848
1925
  }
1849
1926
 
1850
- #alchemy .ui-datepicker th {
1927
+ .ui-datepicker th {
1851
1928
  padding: .7em .3em;
1852
1929
  text-align: center;
1853
1930
  font-weight: bold;
1854
1931
  border: 0;
1855
1932
  }
1856
1933
 
1857
- #alchemy .ui-datepicker td {
1934
+ .ui-datepicker td {
1858
1935
  border: 0;
1859
1936
  padding: 1px;
1860
1937
  }
1861
1938
 
1862
- #alchemy .ui-datepicker td.ui-datepicker-week-col {
1939
+ .ui-datepicker td.ui-datepicker-week-col {
1863
1940
  padding-left: $default-padding;
1864
1941
  }
1865
1942
 
1866
- #alchemy .ui-datepicker td.ui-datepicker-current-day {
1943
+ .ui-datepicker td.ui-datepicker-current-day {
1867
1944
  background-color: $dark-gray;
1868
1945
  }
1869
1946
 
1870
- #alchemy .ui-datepicker td span, #alchemy .ui-datepicker td a {
1947
+ .ui-datepicker td span, .ui-datepicker td a {
1871
1948
  display: block;
1872
1949
  padding: .2em;
1873
1950
  text-align: right;
1874
1951
  text-decoration: none;
1875
1952
  }
1876
1953
 
1877
- #alchemy .ui-datepicker .ui-datepicker-buttonpane {
1954
+ .ui-datepicker .ui-datepicker-buttonpane {
1878
1955
  background-image: none;
1879
1956
  margin: .7em 0 0 0;
1880
1957
  padding: 0 .2em;
@@ -1883,7 +1960,7 @@ button.ui-button::-moz-focus-inner {
1883
1960
  border-bottom: 0;
1884
1961
  }
1885
1962
 
1886
- #alchemy .ui-datepicker .ui-datepicker-buttonpane button {
1963
+ .ui-datepicker .ui-datepicker-buttonpane button {
1887
1964
  float: right;
1888
1965
  margin: .5em .2em .4em;
1889
1966
  cursor: pointer;
@@ -1892,109 +1969,109 @@ button.ui-button::-moz-focus-inner {
1892
1969
  overflow: visible;
1893
1970
  }
1894
1971
 
1895
- #alchemy .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
1972
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
1896
1973
  float: left;
1897
1974
  }
1898
1975
 
1899
1976
  /* with multiple calendars */
1900
1977
 
1901
- #alchemy .ui-datepicker.ui-datepicker-multi {
1978
+ .ui-datepicker.ui-datepicker-multi {
1902
1979
  width: auto;
1903
1980
  }
1904
1981
 
1905
- #alchemy .ui-datepicker-multi .ui-datepicker-group {
1982
+ .ui-datepicker-multi .ui-datepicker-group {
1906
1983
  float: left;
1907
1984
  }
1908
1985
 
1909
- #alchemy .ui-datepicker-multi .ui-datepicker-group table {
1986
+ .ui-datepicker-multi .ui-datepicker-group table {
1910
1987
  width: 95%;
1911
1988
  margin: 0 auto .4em;
1912
1989
  }
1913
1990
 
1914
- #alchemy .ui-datepicker-multi-2 .ui-datepicker-group {
1991
+ .ui-datepicker-multi-2 .ui-datepicker-group {
1915
1992
  width: 50%;
1916
1993
  }
1917
1994
 
1918
- #alchemy .ui-datepicker-multi-3 .ui-datepicker-group {
1995
+ .ui-datepicker-multi-3 .ui-datepicker-group {
1919
1996
  width: 33.3%;
1920
1997
  }
1921
1998
 
1922
- #alchemy .ui-datepicker-multi-4 .ui-datepicker-group {
1999
+ .ui-datepicker-multi-4 .ui-datepicker-group {
1923
2000
  width: 25%;
1924
2001
  }
1925
2002
 
1926
- #alchemy .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
2003
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
1927
2004
  border-left-width: 0;
1928
2005
  }
1929
2006
 
1930
- #alchemy .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
2007
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
1931
2008
  border-left-width: 0;
1932
2009
  }
1933
2010
 
1934
- #alchemy .ui-datepicker-multi .ui-datepicker-buttonpane {
2011
+ .ui-datepicker-multi .ui-datepicker-buttonpane {
1935
2012
  clear: left;
1936
2013
  }
1937
2014
 
1938
- #alchemy .ui-datepicker-row-break {
2015
+ .ui-datepicker-row-break {
1939
2016
  clear: both;
1940
2017
  width: 100%;
1941
2018
  }
1942
2019
 
1943
2020
  /* RTL support */
1944
2021
 
1945
- #alchemy .ui-datepicker-rtl {
2022
+ .ui-datepicker-rtl {
1946
2023
  direction: rtl;
1947
2024
  }
1948
2025
 
1949
- #alchemy .ui-datepicker-rtl .ui-datepicker-prev {
2026
+ .ui-datepicker-rtl .ui-datepicker-prev {
1950
2027
  right: 2px;
1951
2028
  left: auto;
1952
2029
  }
1953
2030
 
1954
- #alchemy .ui-datepicker-rtl .ui-datepicker-next {
2031
+ .ui-datepicker-rtl .ui-datepicker-next {
1955
2032
  left: 2px;
1956
2033
  right: auto;
1957
2034
  }
1958
2035
 
1959
- #alchemy .ui-datepicker-rtl .ui-datepicker-prev:hover {
2036
+ .ui-datepicker-rtl .ui-datepicker-prev:hover {
1960
2037
  right: 1px;
1961
2038
  left: auto;
1962
2039
  }
1963
2040
 
1964
- #alchemy .ui-datepicker-rtl .ui-datepicker-next:hover {
2041
+ .ui-datepicker-rtl .ui-datepicker-next:hover {
1965
2042
  left: 1px;
1966
2043
  right: auto;
1967
2044
  }
1968
2045
 
1969
- #alchemy .ui-datepicker-rtl .ui-datepicker-buttonpane {
2046
+ .ui-datepicker-rtl .ui-datepicker-buttonpane {
1970
2047
  clear: right;
1971
2048
  }
1972
2049
 
1973
- #alchemy .ui-datepicker-rtl .ui-datepicker-buttonpane button {
2050
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button {
1974
2051
  float: left;
1975
2052
  }
1976
2053
 
1977
- #alchemy .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
2054
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
1978
2055
  float: right;
1979
2056
  }
1980
2057
 
1981
- #alchemy .ui-datepicker-rtl .ui-datepicker-group {
2058
+ .ui-datepicker-rtl .ui-datepicker-group {
1982
2059
  float: right;
1983
2060
  }
1984
2061
 
1985
- #alchemy .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
2062
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
1986
2063
  border-right-width: 0;
1987
2064
  border-left-width: 1px;
1988
2065
  }
1989
2066
 
1990
- #alchemy .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
2067
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
1991
2068
  border-right-width: 0;
1992
2069
  border-left-width: 1px;
1993
2070
  }
1994
2071
 
1995
2072
  /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1996
2073
 
1997
- #alchemy .ui-datepicker-cover {
2074
+ .ui-datepicker-cover {
1998
2075
  display: none;
1999
2076
  /*sorry for IE5*/
2000
2077
  display /**/: block;
@@ -2025,12 +2102,12 @@ button.ui-button::-moz-focus-inner {
2025
2102
  * http://docs.jquery.com/UI/Progressbar#theming
2026
2103
  */
2027
2104
 
2028
- #alchemy .ui-progressbar {
2105
+ .ui-progressbar {
2029
2106
  height: 2em;
2030
2107
  text-align: left;
2031
2108
  }
2032
2109
 
2033
- #alchemy .ui-progressbar .ui-progressbar-value {
2110
+ .ui-progressbar .ui-progressbar-value {
2034
2111
  margin: -1px;
2035
2112
  height: 100%;
2036
2113
  }