alchemy_cms 2.0.pre2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/.yardopts +6 -0
- data/Gemfile +8 -0
- data/LICENSE +619 -0
- data/README.md +113 -0
- data/Rakefile +30 -0
- data/TODO.txt +1 -0
- data/alchemy.gemspec +36 -0
- data/app/controllers/admin/attachments_controller.rb +119 -0
- data/app/controllers/admin/clipboard_controller.rb +43 -0
- data/app/controllers/admin/contents_controller.rb +69 -0
- data/app/controllers/admin/elements_controller.rb +137 -0
- data/app/controllers/admin/essence_audios_controller.rb +14 -0
- data/app/controllers/admin/essence_files_controller.rb +35 -0
- data/app/controllers/admin/essence_flashes_controller.rb +14 -0
- data/app/controllers/admin/essence_pictures_controller.rb +89 -0
- data/app/controllers/admin/essence_videos_controller.rb +14 -0
- data/app/controllers/admin/languages_controller.rb +70 -0
- data/app/controllers/admin/layoutpages_controller.rb +11 -0
- data/app/controllers/admin/pages_controller.rb +244 -0
- data/app/controllers/admin/pictures_controller.rb +132 -0
- data/app/controllers/admin/trash_controller.rb +25 -0
- data/app/controllers/admin/users_controller.rb +75 -0
- data/app/controllers/admin_controller.rb +78 -0
- data/app/controllers/alchemy_controller.rb +239 -0
- data/app/controllers/attachments_controller.rb +30 -0
- data/app/controllers/elements_controller.rb +18 -0
- data/app/controllers/messages_controller.rb +98 -0
- data/app/controllers/pages_controller.rb +137 -0
- data/app/controllers/pictures_controller.rb +68 -0
- data/app/helpers/admin/attachments_helper.rb +7 -0
- data/app/helpers/admin/elements_helper.rb +28 -0
- data/app/helpers/admin/pages_helper.rb +3 -0
- data/app/helpers/admin/pictures_helper.rb +26 -0
- data/app/helpers/alchemy_helper.rb +1168 -0
- data/app/helpers/elements_helper.rb +2 -0
- data/app/helpers/errors_helper.rb +37 -0
- data/app/helpers/layout_helper.rb +37 -0
- data/app/helpers/pages_helper.rb +141 -0
- data/app/mailers/messages.rb +15 -0
- data/app/mailers/notifications.rb +23 -0
- data/app/models/attachment.rb +73 -0
- data/app/models/cell.rb +63 -0
- data/app/models/content.rb +145 -0
- data/app/models/element.rb +423 -0
- data/app/models/essence_audio.rb +17 -0
- data/app/models/essence_date.rb +20 -0
- data/app/models/essence_file.rb +17 -0
- data/app/models/essence_flash.rb +15 -0
- data/app/models/essence_html.rb +19 -0
- data/app/models/essence_picture.rb +27 -0
- data/app/models/essence_richtext.rb +50 -0
- data/app/models/essence_text.rb +28 -0
- data/app/models/essence_video.rb +17 -0
- data/app/models/folded_page.rb +3 -0
- data/app/models/language.rb +75 -0
- data/app/models/message.rb +57 -0
- data/app/models/page.rb +501 -0
- data/app/models/picture.rb +100 -0
- data/app/models/user.rb +72 -0
- data/app/models/user_session.rb +10 -0
- data/app/sweepers/content_sweeper.rb +20 -0
- data/app/sweepers/pages_sweeper.rb +46 -0
- data/app/sweepers/pictures_sweeper.rb +20 -0
- data/app/views/_contact.html.erb +3 -0
- data/app/views/_intro.html.erb +3 -0
- data/app/views/_news.html.erb +3 -0
- data/app/views/_newsletter_layout.html.erb +1 -0
- data/app/views/_search.html.erb +3 -0
- data/app/views/_standard.html.erb +1 -0
- data/app/views/admin/attachments/_attachment.html.erb +58 -0
- data/app/views/admin/attachments/_file_to_assign.html.erb +20 -0
- data/app/views/admin/attachments/_files_list.html.erb +24 -0
- data/app/views/admin/attachments/archive_overlay.html.erb +8 -0
- data/app/views/admin/attachments/create.js.erb +6 -0
- data/app/views/admin/attachments/edit.html.erb +12 -0
- data/app/views/admin/attachments/index.html.erb +30 -0
- data/app/views/admin/attachments/new.html.erb +11 -0
- data/app/views/admin/clipboard/clear.js.erb +6 -0
- data/app/views/admin/clipboard/index.html.erb +19 -0
- data/app/views/admin/clipboard/insert.js.erb +14 -0
- data/app/views/admin/clipboard/remove.js.erb +10 -0
- data/app/views/admin/contents/_missing.html.erb +20 -0
- data/app/views/admin/contents/create.js.erb +93 -0
- data/app/views/admin/contents/new.html.erb +15 -0
- data/app/views/admin/elements/_add_content.html.erb +16 -0
- data/app/views/admin/elements/_element.html.erb +22 -0
- data/app/views/admin/elements/_element_foot.html.erb +35 -0
- data/app/views/admin/elements/_element_head.html.erb +29 -0
- data/app/views/admin/elements/_elements_select.html.erb +8 -0
- data/app/views/admin/elements/_new_element_form.html.erb +25 -0
- data/app/views/admin/elements/_picture_editor.html.erb +25 -0
- data/app/views/admin/elements/create.js.erb +20 -0
- data/app/views/admin/elements/destroy.js.erb +6 -0
- data/app/views/admin/elements/fold.js.erb +37 -0
- data/app/views/admin/elements/index.html.erb +33 -0
- data/app/views/admin/elements/list.js.erb +20 -0
- data/app/views/admin/elements/new.html.erb +33 -0
- data/app/views/admin/elements/order.js.erb +7 -0
- data/app/views/admin/elements/trash.js.erb +13 -0
- data/app/views/admin/elements/update.js.erb +10 -0
- data/app/views/admin/essence_files/edit.html.erb +91 -0
- data/app/views/admin/essence_pictures/assign.js.erb +15 -0
- data/app/views/admin/essence_pictures/crop.html.erb +36 -0
- data/app/views/admin/essence_pictures/destroy.js.erb +17 -0
- data/app/views/admin/essence_pictures/edit.html.erb +75 -0
- data/app/views/admin/essence_pictures/update.js.erb +16 -0
- data/app/views/admin/index.html.erb +92 -0
- data/app/views/admin/infos.html.erb +5 -0
- data/app/views/admin/languages/_form.html.erb +34 -0
- data/app/views/admin/languages/_language.html.erb +35 -0
- data/app/views/admin/languages/edit.html.erb +1 -0
- data/app/views/admin/languages/index.html.erb +41 -0
- data/app/views/admin/languages/new.html.erb +1 -0
- data/app/views/admin/layoutpages/_layoutpage.html.erb +80 -0
- data/app/views/admin/layoutpages/index.html.erb +75 -0
- data/app/views/admin/leave.html.erb +11 -0
- data/app/views/admin/login.html.erb +46 -0
- data/app/views/admin/logout.html.erb +5 -0
- data/app/views/admin/pages/_contactform_links.html.erb +66 -0
- data/app/views/admin/pages/_create_language_form.html.erb +42 -0
- data/app/views/admin/pages/_external_link.html.erb +54 -0
- data/app/views/admin/pages/_file_link.html.erb +52 -0
- data/app/views/admin/pages/_internal_link.html.erb +47 -0
- data/app/views/admin/pages/_new_page_form.html.erb +29 -0
- data/app/views/admin/pages/_page.html.erb +114 -0
- data/app/views/admin/pages/_page_for_links.html.erb +43 -0
- data/app/views/admin/pages/_page_infos.html.erb +3 -0
- data/app/views/admin/pages/_page_status.html.erb +9 -0
- data/app/views/admin/pages/_sitemap.html.erb +99 -0
- data/app/views/admin/pages/configure.html.erb +71 -0
- data/app/views/admin/pages/configure_external.html.erb +40 -0
- data/app/views/admin/pages/destroy.js.erb +12 -0
- data/app/views/admin/pages/edit.html.erb +185 -0
- data/app/views/admin/pages/flush.js.erb +2 -0
- data/app/views/admin/pages/fold.js.erb +4 -0
- data/app/views/admin/pages/index.html.erb +108 -0
- data/app/views/admin/pages/link.html.erb +30 -0
- data/app/views/admin/pages/locked.html.erb +3 -0
- data/app/views/admin/pages/new.html.erb +50 -0
- data/app/views/admin/pages/show.html.erb +1 -0
- data/app/views/admin/pages/sort.js.erb +6 -0
- data/app/views/admin/pages/unlock.js.erb +8 -0
- data/app/views/admin/pages/update.js.erb +19 -0
- data/app/views/admin/partials/_flash.html.erb +4 -0
- data/app/views/admin/partials/_flash_notices.html.erb +5 -0
- data/app/views/admin/partials/_mainnavigation_entry.html.erb +27 -0
- data/app/views/admin/partials/_pagination_links.html.erb +7 -0
- data/app/views/admin/partials/_per_page_links.html.erb +17 -0
- data/app/views/admin/partials/_remote_pagination_links.html.erb +11 -0
- data/app/views/admin/partials/_remote_search_form.html.erb +36 -0
- data/app/views/admin/partials/_search_form.html.erb +17 -0
- data/app/views/admin/partials/_sub_navigation.html.erb +14 -0
- data/app/views/admin/partials/_upload_form.html.erb +116 -0
- data/app/views/admin/pictures/_archive_overlay_images.html.erb +17 -0
- data/app/views/admin/pictures/_filter_and_size_bar.html.erb +88 -0
- data/app/views/admin/pictures/_picture.html.erb +36 -0
- data/app/views/admin/pictures/_picture_to_assign.html.erb +32 -0
- data/app/views/admin/pictures/_pictures_list.html.erb +12 -0
- data/app/views/admin/pictures/archive_overlay.html.erb +3 -0
- data/app/views/admin/pictures/create.js.erb +12 -0
- data/app/views/admin/pictures/index.html.erb +56 -0
- data/app/views/admin/pictures/new.html.erb +11 -0
- data/app/views/admin/pictures/show_in_window.html.erb +1 -0
- data/app/views/admin/pictures/update.js.erb +11 -0
- data/app/views/admin/signup.html.erb +16 -0
- data/app/views/admin/trash/index.html.erb +25 -0
- data/app/views/admin/users/_table.html.erb +54 -0
- data/app/views/admin/users/_user.html.erb +36 -0
- data/app/views/admin/users/edit.html.erb +6 -0
- data/app/views/admin/users/index.html.erb +41 -0
- data/app/views/admin/users/new.html.erb +6 -0
- data/app/views/attachments/show.html.erb +1 -0
- data/app/views/elements/_article_editor.html.erb +4 -0
- data/app/views/elements/_article_view.html.erb +25 -0
- data/app/views/elements/_bild_editor.html.erb +1 -0
- data/app/views/elements/_bild_text_editor.html.erb +2 -0
- data/app/views/elements/_bild_text_view.html.erb +9 -0
- data/app/views/elements/_bild_view.html.erb +9 -0
- data/app/views/elements/_claim_editor.html.erb +1 -0
- data/app/views/elements/_claim_view.html.erb +1 -0
- data/app/views/elements/_contactform_editor.html.erb +7 -0
- data/app/views/elements/_contactform_view.html.erb +92 -0
- data/app/views/elements/_editor_not_found.html.erb +5 -0
- data/app/views/elements/_footnote_editor.html.erb +1 -0
- data/app/views/elements/_footnote_view.html.erb +5 -0
- data/app/views/elements/_header_editor.html.erb +1 -0
- data/app/views/elements/_header_view.html.erb +1 -0
- data/app/views/elements/_headline_editor.html.erb +1 -0
- data/app/views/elements/_headline_view.html.erb +1 -0
- data/app/views/elements/_image_mosaic_editor.html.erb +2 -0
- data/app/views/elements/_image_mosaic_view.html.erb +12 -0
- data/app/views/elements/_intro_editor.html.erb +1 -0
- data/app/views/elements/_intro_image_text_editor.html.erb +3 -0
- data/app/views/elements/_intro_image_text_view.html.erb +16 -0
- data/app/views/elements/_intro_view.html.erb +3 -0
- data/app/views/elements/_news_editor.html.erb +3 -0
- data/app/views/elements/_news_view.html.erb +11 -0
- data/app/views/elements/_searchresult_editor.html.erb +1 -0
- data/app/views/elements/_searchresult_view.html.erb +42 -0
- data/app/views/elements/_sitemap_editor.html.erb +3 -0
- data/app/views/elements/_sitemap_view.html.erb +38 -0
- data/app/views/elements/_sitename_editor.html.erb +1 -0
- data/app/views/elements/_sitename_view.html.erb +1 -0
- data/app/views/elements/_subheadline_editor.html.erb +1 -0
- data/app/views/elements/_subheadline_view.html.erb +5 -0
- data/app/views/elements/_text_editor.html.erb +1 -0
- data/app/views/elements/_text_view.html.erb +3 -0
- data/app/views/elements/_view_not_found.html.erb +1 -0
- data/app/views/elements/show.html.erb +6 -0
- data/app/views/elements/show.js.erb +11 -0
- data/app/views/essences/_essence_audio_editor.html.erb +1 -0
- data/app/views/essences/_essence_audio_view.html.erb +33 -0
- data/app/views/essences/_essence_date_editor.html.erb +12 -0
- data/app/views/essences/_essence_date_view.html.erb +7 -0
- data/app/views/essences/_essence_file_editor.html.erb +63 -0
- data/app/views/essences/_essence_file_view.html.erb +6 -0
- data/app/views/essences/_essence_flash_editor.html.erb +1 -0
- data/app/views/essences/_essence_flash_view.html.erb +26 -0
- data/app/views/essences/_essence_html_editor.html.erb +8 -0
- data/app/views/essences/_essence_html_view.html.erb +1 -0
- data/app/views/essences/_essence_picture_editor.html.erb +70 -0
- data/app/views/essences/_essence_picture_tools.html.erb +60 -0
- data/app/views/essences/_essence_picture_view.html.erb +42 -0
- data/app/views/essences/_essence_richtext_editor.html.erb +9 -0
- data/app/views/essences/_essence_richtext_view.html.erb +5 -0
- data/app/views/essences/_essence_text_editor.html.erb +82 -0
- data/app/views/essences/_essence_text_view.html.erb +11 -0
- data/app/views/essences/_essence_video_editor.html.erb +1 -0
- data/app/views/essences/_essence_video_view.html.erb +35 -0
- data/app/views/layouts/alchemy.html.erb +60 -0
- data/app/views/layouts/login.html.erb +60 -0
- data/app/views/layouts/pages.html.erb +31 -0
- data/app/views/layouts/sitemap.xml.erb +4 -0
- data/app/views/messages/mail.text.erb +10 -0
- data/app/views/messages/new.html.erb +1 -0
- data/app/views/notifications/admin_user_created.text.erb +13 -0
- data/app/views/notifications/registered_user_created.text.erb +10 -0
- data/app/views/page_layouts/_contact.html.erb +14 -0
- data/app/views/page_layouts/_external.html.erb +1 -0
- data/app/views/page_layouts/_intro.html.erb +14 -0
- data/app/views/page_layouts/_layout_footer.html.erb +14 -0
- data/app/views/page_layouts/_layout_header.html.erb +14 -0
- data/app/views/page_layouts/_news.html.erb +14 -0
- data/app/views/page_layouts/_newsletter_layout.html.erb +1 -0
- data/app/views/page_layouts/_search.html.erb +14 -0
- data/app/views/page_layouts/_standard.html.erb +14 -0
- data/app/views/pages/show.html.erb +1 -0
- data/app/views/pages/show.rss.builder +27 -0
- data/app/views/pages/sitemap.xml.erb +8 -0
- data/app/views/partials/_navigation_image_link.html.erb +14 -0
- data/app/views/partials/_navigation_link.html.erb +20 -0
- data/app/views/partials/_navigation_renderer.html.erb +23 -0
- data/app/views/pictures/show.gif.flexi +19 -0
- data/app/views/pictures/show.jpg.flexi +19 -0
- data/app/views/pictures/show.png.flexi +19 -0
- data/app/views/pictures/thumbnail.png.flexi +13 -0
- data/app/views/pictures/zoom.png.flexi +3 -0
- data/assets/images/ajax_loader.gif +0 -0
- data/assets/images/alchemy-logo.png +0 -0
- data/assets/images/flags.png +0 -0
- data/assets/images/gui/navi-tab.png +0 -0
- data/assets/images/gui/shading.png +0 -0
- data/assets/images/gui/shading_90.png +0 -0
- data/assets/images/gui/toggle.png +0 -0
- data/assets/images/icons.png +0 -0
- data/assets/images/jquery-sb/select_arrow.gif +0 -0
- data/assets/images/jquery-sb/select_arrow_bg.gif +0 -0
- data/assets/images/jquery-sb/select_arrow_bg_hover.gif +0 -0
- data/assets/images/jquery-ui/ui-icons_666666_256x240.png +0 -0
- data/assets/images/placeholder.png +0 -0
- data/assets/images/swfupload/browse_button.png +0 -0
- data/assets/javascripts/alchemy.element_editor_selector.js +88 -0
- data/assets/javascripts/alchemy.growler.js +44 -0
- data/assets/javascripts/alchemy.image_cropper.js +56 -0
- data/assets/javascripts/alchemy.js +892 -0
- data/assets/javascripts/alchemy.link_overlay.js +221 -0
- data/assets/javascripts/alchemy.page_sorter.js +42 -0
- data/assets/javascripts/alchemy.preview.js +145 -0
- data/assets/javascripts/jquery-ui.js +428 -0
- data/assets/javascripts/jquery.Jcrop.min.js +246 -0
- data/assets/javascripts/jquery.dialogextend.min.js +8 -0
- data/assets/javascripts/jquery.in-place-edit.js +171 -0
- data/assets/javascripts/jquery.js +18 -0
- data/assets/javascripts/jquery.rails.js +315 -0
- data/assets/javascripts/jquery.sb.min.js +14 -0
- data/assets/javascripts/jquery.scrollTo-1.4.2-min.js +11 -0
- data/assets/javascripts/jquery.ui.nestedSortable.js +291 -0
- data/assets/javascripts/jquery.ui.tabspaging.js +281 -0
- data/assets/javascripts/swfupload/fileprogress.js +203 -0
- data/assets/javascripts/swfupload/handlers.js +171 -0
- data/assets/javascripts/swfupload/queue.js +98 -0
- data/assets/javascripts/swfupload/swfupload.js +980 -0
- data/assets/javascripts/swfupload/swfupload.swf +0 -0
- data/assets/javascripts/tiny_mce/jquery.tinymce.js +1 -0
- data/assets/javascripts/tiny_mce/langs/de.js +1 -0
- data/assets/javascripts/tiny_mce/langs/en.js +223 -0
- data/assets/javascripts/tiny_mce/license.txt +504 -0
- data/assets/javascripts/tiny_mce/plugins/alchemy_link/editor_plugin.js +43 -0
- data/assets/javascripts/tiny_mce/plugins/alchemy_link/langs/de.js +4 -0
- data/assets/javascripts/tiny_mce/plugins/alchemy_link/langs/en.js +4 -0
- data/assets/javascripts/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm +109 -0
- data/assets/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css +402 -0
- data/assets/javascripts/tiny_mce/plugins/inlinepopups/template.htm +387 -0
- data/assets/javascripts/tiny_mce/plugins/lists/editor_plugin.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/paste/editor_plugin.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/paste/js/pastetext.js +36 -0
- data/assets/javascripts/tiny_mce/plugins/paste/js/pasteword.js +51 -0
- data/assets/javascripts/tiny_mce/plugins/paste/langs/de_dlg.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
- data/assets/javascripts/tiny_mce/plugins/paste/pastetext.htm +27 -0
- data/assets/javascripts/tiny_mce/plugins/paste/pasteword.htm +21 -0
- data/assets/javascripts/tiny_mce/plugins/table/cell.htm +180 -0
- data/assets/javascripts/tiny_mce/plugins/table/css/cell.css +17 -0
- data/assets/javascripts/tiny_mce/plugins/table/css/row.css +25 -0
- data/assets/javascripts/tiny_mce/plugins/table/css/table.css +13 -0
- data/assets/javascripts/tiny_mce/plugins/table/editor_plugin.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/table/js/cell.js +319 -0
- data/assets/javascripts/tiny_mce/plugins/table/js/merge_cells.js +27 -0
- data/assets/javascripts/tiny_mce/plugins/table/js/row.js +237 -0
- data/assets/javascripts/tiny_mce/plugins/table/js/table.js +450 -0
- data/assets/javascripts/tiny_mce/plugins/table/langs/de_dlg.js +1 -0
- data/assets/javascripts/tiny_mce/plugins/table/langs/en_dlg.js +75 -0
- data/assets/javascripts/tiny_mce/plugins/table/merge_cells.htm +32 -0
- data/assets/javascripts/tiny_mce/plugins/table/row.htm +158 -0
- data/assets/javascripts/tiny_mce/plugins/table/table.htm +188 -0
- data/assets/javascripts/tiny_mce/themes/advanced/about.htm +52 -0
- data/assets/javascripts/tiny_mce/themes/advanced/anchor.htm +26 -0
- data/assets/javascripts/tiny_mce/themes/advanced/charmap.htm +51 -0
- data/assets/javascripts/tiny_mce/themes/advanced/color_picker.htm +74 -0
- data/assets/javascripts/tiny_mce/themes/advanced/editor_template.js +1 -0
- data/assets/javascripts/tiny_mce/themes/advanced/image.htm +80 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/flash.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/icons.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/iframe.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/pagebreak.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/quicktime.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/realmedia.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/shockwave.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/trans.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/video.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/img/windowsmedia.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/about.js +73 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/anchor.js +42 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/charmap.js +355 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/color_picker.js +329 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/image.js +247 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/link.js +153 -0
- data/assets/javascripts/tiny_mce/themes/advanced/js/source_editor.js +56 -0
- data/assets/javascripts/tiny_mce/themes/advanced/langs/de.js +1 -0
- data/assets/javascripts/tiny_mce/themes/advanced/langs/de_dlg.js +1 -0
- data/assets/javascripts/tiny_mce/themes/advanced/langs/en.js +68 -0
- data/assets/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js +54 -0
- data/assets/javascripts/tiny_mce/themes/advanced/link.htm +57 -0
- data/assets/javascripts/tiny_mce/themes/advanced/shortcuts.htm +47 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/content.css +47 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css +117 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/default/ui.css +214 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +23 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css +102 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css +46 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +117 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +217 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
- data/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
- data/assets/javascripts/tiny_mce/themes/advanced/source_editor.htm +25 -0
- data/assets/javascripts/tiny_mce/themes/simple/langs/de.js +1 -0
- data/assets/javascripts/tiny_mce/tiny_mce.js +1 -0
- data/assets/javascripts/tiny_mce/tiny_mce_popup.js +5 -0
- data/assets/javascripts/tiny_mce/utils/editable_selects.js +70 -0
- data/assets/javascripts/tiny_mce/utils/form_utils.js +210 -0
- data/assets/javascripts/tiny_mce/utils/mctabs.js +162 -0
- data/assets/javascripts/tiny_mce/utils/validate.js +252 -0
- data/assets/stylesheets/Jcrop.gif +0 -0
- data/assets/stylesheets/alchemy.css +3629 -0
- data/assets/stylesheets/alchemy_tinymce_content.css +94 -0
- data/assets/stylesheets/alchemy_tinymce_dialog.css +415 -0
- data/assets/stylesheets/default/img/tabs.gif +0 -0
- data/assets/stylesheets/elements.css +900 -0
- data/assets/stylesheets/flags.css +1 -0
- data/assets/stylesheets/ie6.css +18 -0
- data/assets/stylesheets/jquery-ui-1.8.7.alchemy.css +2023 -0
- data/assets/stylesheets/jquery.Jcrop.css +35 -0
- data/assets/stylesheets/jquery.sb.css +244 -0
- data/assets/stylesheets/standard_set.css +374 -0
- data/bin/alchemy +347 -0
- data/config/alchemy/config.yml +199 -0
- data/config/alchemy/elements.yml +219 -0
- data/config/alchemy/page_layouts.yml +65 -0
- data/config/asset_packages.yml +32 -0
- data/config/authorization_rules.rb +96 -0
- data/config/initializers/authorization.rb +4 -0
- data/config/initializers/cache_storage.rb +1 -0
- data/config/initializers/fast_gettext.rb +2 -0
- data/config/initializers/tiny_mce_hammer.rb +32 -0
- data/config/locales/de.yml +370 -0
- data/config/locales/en.yml +364 -0
- data/config/routes.rb +141 -0
- data/db/migrate/20100607143125_create_pages.rb +34 -0
- data/db/migrate/20100607144254_create_elements.rb +20 -0
- data/db/migrate/20100607145256_create_contents.rb +18 -0
- data/db/migrate/20100607145719_create_users.rb +32 -0
- data/db/migrate/20100607150611_create_pictures.rb +16 -0
- data/db/migrate/20100607150812_create_attachments.rb +16 -0
- data/db/migrate/20100607153647_create_folded_pages.rb +13 -0
- data/db/migrate/20100607161345_create_essence_texts.rb +19 -0
- data/db/migrate/20100607162339_create_elements_pages.rb +12 -0
- data/db/migrate/20100607193638_create_essence_pictures.rb +23 -0
- data/db/migrate/20100607193646_create_essence_richtexts.rb +16 -0
- data/db/migrate/20100607193653_create_essence_htmls.rb +13 -0
- data/db/migrate/20100609111653_create_essence_dates.rb +13 -0
- data/db/migrate/20100609111809_create_essence_files.rb +15 -0
- data/db/migrate/20100609111821_create_essence_flashes.rb +16 -0
- data/db/migrate/20100609111837_create_essence_videos.rb +18 -0
- data/db/migrate/20100616150753_create_essence_audios.rb +17 -0
- data/db/migrate/20100812085225_add_crop_from_and_crop_size_to_essence_pictures.rb +11 -0
- data/db/migrate/20100909140701_change_essence_htmls_source_column_type.rb +9 -0
- data/db/migrate/20101109150312_alter_pages_visible_column_default.rb +9 -0
- data/db/migrate/20101109151812_create_languages.rb +19 -0
- data/db/migrate/20101216151419_add_language_id_to_pages.rb +19 -0
- data/db/migrate/20101216155216_add_index_to_languages.rb +9 -0
- data/db/migrate/20101216173323_add_default_to_languages.rb +9 -0
- data/db/migrate/20101218130049_add_urlname_index_to_pages.rb +9 -0
- data/db/migrate/20110115123343_remove_css_class_default_from_essence_pictures.rb +11 -0
- data/db/migrate/20110224105120_change_pages_visible_default.rb +11 -0
- data/db/migrate/20110228182659_remove_default_page_layout_from_pages.rb +11 -0
- data/db/migrate/20110414163140_remove_display_name_from_elements.rb +11 -0
- data/db/migrate/20110511100516_rename_essence_texts_title_to_link_title.rb +9 -0
- data/db/migrate/20110529130429_create_cells.rb +14 -0
- data/db/migrate/20110529130500_add_cell_id_to_elements.rb +11 -0
- data/db/migrate/20110530102804_change_pages_page_layout_column.rb +11 -0
- data/db/migrate/20110707190728_add_render_size_to_essence_pictures.rb +9 -0
- data/db/migrate/20110711142057_change_open_link_in_new_window_to_link_target.rb +19 -0
- data/lib/alchemy.rb +24 -0
- data/lib/alchemy/config.rb +51 -0
- data/lib/alchemy/controller.rb +79 -0
- data/lib/alchemy/engine.rb +29 -0
- data/lib/alchemy/essence.rb +178 -0
- data/lib/alchemy/file_utilz.rb +73 -0
- data/lib/alchemy/page_layout.rb +66 -0
- data/lib/alchemy/remote_pagination_link_renderer.rb +17 -0
- data/lib/alchemy/seeder.rb +112 -0
- data/lib/alchemy/version.rb +5 -0
- data/lib/extensions/action_view.rb +17 -0
- data/lib/extensions/array.rb +25 -0
- data/lib/extensions/hash.rb +34 -0
- data/lib/middleware/flash_session_cookie.rb +22 -0
- data/lib/rails/generators/alchemy/elements/elements_generator.rb +35 -0
- data/lib/rails/generators/alchemy/elements/templates/editor.html.erb +9 -0
- data/lib/rails/generators/alchemy/elements/templates/view.html.erb +21 -0
- data/lib/rails/generators/alchemy/page_layouts/page_layouts_generator.rb +32 -0
- data/lib/rails/generators/alchemy/page_layouts/templates/layout.html.erb +1 -0
- data/lib/rails/generators/alchemy/plugin/plugin_generator.rb +29 -0
- data/lib/rails/generators/alchemy/plugin/templates/authorization_rules.rb +5 -0
- data/lib/rails/generators/alchemy/plugin/templates/config.yml +30 -0
- data/lib/rails/generators/alchemy/plugin/templates/init.rb +4 -0
- data/lib/rails/generators/alchemy/plugin/templates/routes.rb +4 -0
- data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +35 -0
- data/lib/rails/generators/alchemy/scaffold/templates/elements.yml +91 -0
- data/lib/rails/generators/alchemy/scaffold/templates/page_layouts.yml +29 -0
- data/lib/rails/templates/alchemy.rb +14 -0
- data/lib/tasks/fleximage.rake +154 -0
- data/lib/tasks/gettext.rake +75 -0
- data/lib/tasks/install.rake +123 -0
- data/lib/tasks/upgrade.rake +211 -0
- data/lib/translation_extras/alchemy_core_modules.rb +11 -0
- data/lib/vendor/i18n_label.rb +23 -0
- data/locale/alchemy.pot +1728 -0
- data/locale/de/LC_MESSAGES/alchemy.mo +0 -0
- data/locale/de/alchemy.po +1774 -0
- data/locale/en/LC_MESSAGES/alchemy.mo +0 -0
- data/locale/en/alchemy.po +1742 -0
- data/locale/missing_translations.rb +4 -0
- data/locale/model_attributes.rb +56 -0
- data/recipes/alchemy_capistrano_tasks.rb +83 -0
- metadata +769 -0
@@ -0,0 +1 @@
|
|
1
|
+
.flag{width:16px;height:11px;line-height:11px;background:url(/images/alchemy/flags.png) no-repeat}.flag.ad{background-position:0 0}.flag.ae{background-position:0 -11px}.flag.af{background-position:0 -22px}.flag.ag{background-position:0 -33px}.flag.ai{background-position:0 -44px}.flag.al{background-position:0 -55px}.flag.am{background-position:0 -66px}.flag.an{background-position:0 -77px}.flag.ao{background-position:0 -88px}.flag.ar{background-position:0 -99px}.flag.as{background-position:0 -110px}.flag.at{background-position:0 -121px}.flag.au{background-position:0 -132px}.flag.aw{background-position:0 -143px}.flag.ax{background-position:0 -154px}.flag.az{background-position:0 -165px}.flag.ba{background-position:0 -176px}.flag.bb{background-position:0 -187px}.flag.bd{background-position:0 -198px}.flag.be{background-position:0 -209px}.flag.bf{background-position:0 -220px}.flag.bg{background-position:0 -231px}.flag.bh{background-position:0 -242px}.flag.bi{background-position:0 -253px}.flag.bj{background-position:0 -264px}.flag.bm{background-position:0 -275px}.flag.bn{background-position:0 -286px}.flag.bo{background-position:0 -297px}.flag.br{background-position:0 -308px}.flag.bs{background-position:0 -319px}.flag.bt{background-position:0 -330px}.flag.bv{background-position:0 -341px}.flag.bw{background-position:0 -352px}.flag.by{background-position:0 -363px}.flag.bz{background-position:0 -374px}.flag.ca{background-position:0 -385px}.flag.catalonia{background-position:0 -396px}.flag.cc{background-position:0 -407px}.flag.cd{background-position:0 -418px}.flag.cf{background-position:0 -429px}.flag.cg{background-position:0 -440px}.flag.ch{background-position:0 -451px}.flag.ci{background-position:0 -462px}.flag.ck{background-position:0 -473px}.flag.cl{background-position:0 -484px}.flag.cm{background-position:0 -495px}.flag.cn{background-position:0 -506px}.flag.co{background-position:0 -517px}.flag.cu{background-position:0 -528px}.flag.cr{background-position:0 -539px}.flag.cs{background-position:0 -550px}.flag.cv{background-position:0 -561px}.flag.cx{background-position:0 -572px}.flag.cy{background-position:-16px 0}.flag.cz{background-position:-16px -11px}.flag.de{background-position:-16px -22px}.flag.dj{background-position:-16px -33px}.flag.dk{background-position:-16px -44px}.flag.dm{background-position:-16px -55px}.flag.do{background-position:-16px -66px}.flag.dz{background-position:-16px -77px}.flag.ec{background-position:-16px -88px}.flag.ee{background-position:-16px -99px}.flag.eg{background-position:-16px -110px}.flag.eh{background-position:-16px -121px}.flag.england{background-position:-16px -132px}.flag.er{background-position:-16px -143px}.flag.es{background-position:-16px -154px}.flag.et{background-position:-16px -165px}.flag.eu{background-position:-16px -176px}.flag.fam{background-position:-16px -187px}.flag.fi{background-position:-16px -198px}.flag.fj{background-position:-16px -209px}.flag.fk{background-position:-16px -220px}.flag.fm{background-position:-16px -231px}.flag.fo{background-position:-16px -242px}.flag.fr{background-position:-16px -253px}.flag.ga{background-position:-16px -264px}.flag.en{background-position:-16px -275px}.flag.gd{background-position:-16px -286px}.flag.ge{background-position:-16px -297px}.flag.gf{background-position:-16px -308px}.flag.gh{background-position:-16px -319px}.flag.gi{background-position:-16px -330px}.flag.gl{background-position:-16px -341px}.flag.gm{background-position:-16px -352px}.flag.gn{background-position:-16px -363px}.flag.gp{background-position:-16px -374px}.flag.gq{background-position:-16px -385px}.flag.gr{background-position:-16px -396px}.flag.gs{background-position:-16px -407px}.flag.gt{background-position:-16px -418px}.flag.gu{background-position:-16px -429px}.flag.gw{background-position:-16px -440px}.flag.gy{background-position:-16px -451px}.flag.hk{background-position:-16px -462px}.flag.hm{background-position:-16px -473px}.flag.hn{background-position:-16px -484px}.flag.hr{background-position:-16px -495px}.flag.ht{background-position:-16px -506px}.flag.hu{background-position:-16px -517px}.flag.id{background-position:-16px -528px}.flag.ie{background-position:-16px -539px}.flag.il{background-position:-16px -550px}.flag.in{background-position:-16px -561px}.flag.io{background-position:-16px -572px}.flag.iq{background-position:-32px 0}.flag.ir{background-position:-32px -11px}.flag.is{background-position:-32px -22px}.flag.it{background-position:-32px -33px}.flag.jm{background-position:-32px -44px}.flag.jo{background-position:-32px -55px}.flag.jp{background-position:-32px -66px}.flag.ke{background-position:-32px -77px}.flag.kg{background-position:-32px -88px}.flag.kh{background-position:-32px -99px}.flag.ki{background-position:-32px -110px}.flag.km{background-position:-32px -121px}.flag.kn{background-position:-32px -132px}.flag.kp{background-position:-32px -143px}.flag.kr{background-position:-32px -154px}.flag.kw{background-position:-32px -165px}.flag.ky{background-position:-32px -176px}.flag.kz{background-position:-32px -187px}.flag.la{background-position:-32px -198px}.flag.lb{background-position:-32px -209px}.flag.lc{background-position:-32px -220px}.flag.li{background-position:-32px -231px}.flag.lr{background-position:-32px -242px}.flag.lk{background-position:-32px -253px}.flag.ls{background-position:-32px -264px}.flag.lt{background-position:-32px -275px}.flag.lu{background-position:-32px -286px}.flag.lv{background-position:-32px -297px}.flag.ly{background-position:-32px -308px}.flag.ma{background-position:-32px -319px}.flag.mc{background-position:-32px -330px}.flag.md{background-position:-32px -341px}.flag.me{background-position:-32px -352px}.flag.mg{background-position:-32px -363px}.flag.mh{background-position:-32px -374px}.flag.mk{background-position:-32px -385px}.flag.ml{background-position:-32px -396px}.flag.mm{background-position:-32px -407px}.flag.mn{background-position:-32px -418px}.flag.mo{background-position:-32px -429px}.flag.mp{background-position:-32px -440px}.flag.mq{background-position:-32px -451px}.flag.mr{background-position:-32px -462px}.flag.ms{background-position:-32px -473px}.flag.mt{background-position:-32px -484px}.flag.mu{background-position:-32px -495px}.flag.mv{background-position:-32px -506px}.flag.mw{background-position:-32px -517px}.flag.mx{background-position:-32px -528px}.flag.my{background-position:-32px -539px}.flag.mz{background-position:-32px -550px}.flag.na{background-position:-32px -561px}.flag.nc{background-position:-32px -572px}.flag.ne{background-position:-48px 0}.flag.nf{background-position:-48px -11px}.flag.ng{background-position:-48px -22px}.flag.ni{background-position:-48px -33px}.flag.nl{background-position:-48px -44px}.flag.no{background-position:-48px -55px}.flag.np{background-position:-48px -66px}.flag.nr{background-position:-48px -77px}.flag.nu{background-position:-48px -88px}.flag.nz{background-position:-48px -99px}.flag.om{background-position:-48px -110px}.flag.pa{background-position:-48px -121px}.flag.pe{background-position:-48px -132px}.flag.pf{background-position:-48px -143px}.flag.pg{background-position:-48px -154px}.flag.ph{background-position:-48px -165px}.flag.pk{background-position:-48px -176px}.flag.pl{background-position:-48px -187px}.flag.pm{background-position:-48px -198px}.flag.pn{background-position:-48px -209px}.flag.pr{background-position:-48px -220px}.flag.ps{background-position:-48px -231px}.flag.pt{background-position:-48px -242px}.flag.pw{background-position:-48px -253px}.flag.py{background-position:-48px -264px}.flag.qa{background-position:-48px -275px}.flag.re{background-position:-48px -286px}.flag.ro{background-position:-48px -297px}.flag.rs{background-position:-48px -308px}.flag.ru{background-position:-48px -319px}.flag.rw{background-position:-48px -330px}.flag.sa{background-position:-48px -341px}.flag.sb{background-position:-48px -352px}.flag.sc{background-position:-48px -363px}.flag.scotland{background-position:-48px -374px}.flag.sd{background-position:-48px -385px}.flag.se{background-position:-48px -396px}.flag.sg{background-position:-48px -407px}.flag.sh{background-position:-48px -418px}.flag.si{background-position:-48px -429px}.flag.sj{background-position:-48px -440px}.flag.sk{background-position:-48px -451px}.flag.sl{background-position:-48px -462px}.flag.sm{background-position:-48px -473px}.flag.sn{background-position:-48px -484px}.flag.so{background-position:-48px -495px}.flag.sr{background-position:-48px -506px}.flag.st{background-position:-48px -517px}.flag.sv{background-position:-48px -528px}.flag.sy{background-position:-48px -539px}.flag.sz{background-position:-48px -550px}.flag.tc{background-position:-48px -561px}.flag.td{background-position:-48px -572px}.flag.tf{background-position:-64px 0}.flag.tg{background-position:-64px -11px}.flag.th{background-position:-64px -22px}.flag.tj{background-position:-64px -33px}.flag.tk{background-position:-64px -44px}.flag.tl{background-position:-64px -55px}.flag.tm{background-position:-64px -66px}.flag.tn{background-position:-64px -77px}.flag.to{background-position:-64px -88px}.flag.tr{background-position:-64px -99px}.flag.tt{background-position:-64px -110px}.flag.tv{background-position:-64px -121px}.flag.tw{background-position:-64px -132px}.flag.tz{background-position:-64px -143px}.flag.ua{background-position:-64px -154px}.flag.ug{background-position:-64px -165px}.flag.um{background-position:-64px -176px}.flag.us{background-position:-64px -187px}.flag.uy{background-position:-64px -198px}.flag.uz{background-position:-64px -209px}.flag.va{background-position:-64px -220px}.flag.vc{background-position:-64px -231px}.flag.ve{background-position:-64px -242px}.flag.vg{background-position:-64px -253px}.flag.vi{background-position:-64px -264px}.flag.vn{background-position:-64px -275px}.flag.vu{background-position:-64px -286px}.flag.wales{background-position:-64px -297px}.flag.wf{background-position:-64px -308px}.flag.ws{background-position:-64px -319px}.flag.ye{background-position:-64px -330px}.flag.yt{background-position:-64px -341px}.flag.za{background-position:-64px -352px}.flag.zm{background-position:-64px -363px}.flag.zw{background-position:-64px -374px}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
* html ul#sitemap li .sitemap_row {
|
2
|
+
padding: 0px;
|
3
|
+
margin: -4px;
|
4
|
+
overflow: auto;
|
5
|
+
width: 376px;
|
6
|
+
line-height:14px;
|
7
|
+
font-size:12px;
|
8
|
+
}
|
9
|
+
|
10
|
+
* html #sitemap_for_links .sitemap_row {
|
11
|
+
padding: 0px;
|
12
|
+
margin: -4px;
|
13
|
+
overflow: auto;
|
14
|
+
width: 374px;
|
15
|
+
font-size:12px;
|
16
|
+
height: 28px;
|
17
|
+
line-height:22px
|
18
|
+
}
|
@@ -0,0 +1,2023 @@
|
|
1
|
+
/* @override
|
2
|
+
http://localhost:3000/stylesheets/alchemy/jquery-ui-1.8.7.alchemy.css
|
3
|
+
http://0.0.0.0:3000/stylesheets/alchemy/jquery-ui-1.8.7.alchemy.css
|
4
|
+
*/
|
5
|
+
|
6
|
+
/*
|
7
|
+
* jQuery UI CSS Framework 1.8.7
|
8
|
+
*
|
9
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
10
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
11
|
+
* http://jquery.org/license
|
12
|
+
*
|
13
|
+
* http://docs.jquery.com/UI/Theming/API
|
14
|
+
*/
|
15
|
+
|
16
|
+
/* Layout helpers
|
17
|
+
----------------------------------*/
|
18
|
+
|
19
|
+
#alchemy .ui-helper-hidden {
|
20
|
+
display: none;
|
21
|
+
}
|
22
|
+
|
23
|
+
#alchemy .ui-helper-hidden-accessible {
|
24
|
+
position: absolute !important;
|
25
|
+
clip: rect(1px 1px 1px 1px);
|
26
|
+
clip: rect(1px,1px,1px,1px);
|
27
|
+
}
|
28
|
+
|
29
|
+
#alchemy .ui-helper-reset {
|
30
|
+
margin: 0;
|
31
|
+
padding: 0;
|
32
|
+
border: 0;
|
33
|
+
outline: 0;
|
34
|
+
line-height: 1.3;
|
35
|
+
text-decoration: none;
|
36
|
+
font-size: 100%;
|
37
|
+
list-style: none;
|
38
|
+
}
|
39
|
+
|
40
|
+
#alchemy .ui-helper-clearfix:after {
|
41
|
+
content: ".";
|
42
|
+
display: block;
|
43
|
+
height: 0;
|
44
|
+
clear: both;
|
45
|
+
visibility: hidden;
|
46
|
+
}
|
47
|
+
|
48
|
+
#alchemy .ui-helper-clearfix {
|
49
|
+
display: inline-block;
|
50
|
+
}
|
51
|
+
|
52
|
+
/* required comment for clearfix to work in Opera \*/
|
53
|
+
|
54
|
+
* html .ui-helper-clearfix {
|
55
|
+
height: 1%;
|
56
|
+
}
|
57
|
+
|
58
|
+
#alchemy .ui-helper-clearfix {
|
59
|
+
display: block;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* end clearfix */
|
63
|
+
|
64
|
+
#alchemy .ui-helper-zfix {
|
65
|
+
width: 100%;
|
66
|
+
height: 100%;
|
67
|
+
top: 0;
|
68
|
+
left: 0;
|
69
|
+
position: absolute;
|
70
|
+
opacity: 0;
|
71
|
+
filter: Alpha(Opacity=0);
|
72
|
+
}
|
73
|
+
|
74
|
+
/* Interaction Cues
|
75
|
+
----------------------------------*/
|
76
|
+
|
77
|
+
#alchemy .ui-state-disabled {
|
78
|
+
cursor: default !important;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Icons
|
82
|
+
----------------------------------*/
|
83
|
+
|
84
|
+
/* states and images */
|
85
|
+
|
86
|
+
#alchemy .ui-icon {
|
87
|
+
display: block;
|
88
|
+
text-indent: -99999px;
|
89
|
+
overflow: hidden;
|
90
|
+
background-repeat: no-repeat;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* Misc visuals
|
94
|
+
----------------------------------*/
|
95
|
+
|
96
|
+
/* Overlays */
|
97
|
+
|
98
|
+
#alchemy .ui-widget-overlay {
|
99
|
+
position: absolute;
|
100
|
+
top: 0;
|
101
|
+
left: 0;
|
102
|
+
width: 100%;
|
103
|
+
height: 100%;
|
104
|
+
}
|
105
|
+
|
106
|
+
/*
|
107
|
+
* jQuery UI CSS Framework 1.8.7
|
108
|
+
*
|
109
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
110
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
111
|
+
* http://jquery.org/license
|
112
|
+
*
|
113
|
+
* http://docs.jquery.com/UI/Theming/API
|
114
|
+
*
|
115
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande,%20Lucida%20Sans,%20Arial,%20sans-serif&fwDefault=normal&fsDefault=12px&cornerRadius=3px&bgColorHeader=b2ccdb&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=100&borderColorHeader=afafaf&fcHeader=333333&iconColorHeader=666666&bgColorContent=ededed&bgTextureContent=01_flat.png&bgImgOpacityContent=0&borderColorContent=afafaf&fcContent=333333&iconColorContent=333333&bgColorDefault=ededed&bgTextureDefault=04_highlight_hard.png&bgImgOpacityDefault=100&borderColorDefault=c0c0c0&fcDefault=333333&iconColorDefault=333333&bgColorHover=e6f0f5&bgTextureHover=04_highlight_hard.png&bgImgOpacityHover=100&borderColorHover=888888&fcHover=666666&iconColorHover=666666&bgColorActive=b2ccdb&bgTextureActive=04_highlight_hard.png&bgImgOpacityActive=80&borderColorActive=afafaf&fcActive=333333&iconColorActive=333333&bgColorHighlight=ffef8f&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=25&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=cd0a0a&bgTextureError=01_flat.png&bgImgOpacityError=15&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=666666&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=100&opacityOverlay=60&bgColorShadow=000000&bgTextureShadow=01_flat.png&bgImgOpacityShadow=70&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=3px
|
116
|
+
*/
|
117
|
+
|
118
|
+
/* Component containers
|
119
|
+
----------------------------------*/
|
120
|
+
|
121
|
+
#alchemy .ui-widget {
|
122
|
+
font-family: Lucida Grande, Lucida Sans, Arial, sans-serif;
|
123
|
+
font-size: 12px;
|
124
|
+
}
|
125
|
+
|
126
|
+
#alchemy .ui-widget .ui-widget {
|
127
|
+
font-size: 1em;
|
128
|
+
}
|
129
|
+
|
130
|
+
#alchemy .ui-widget input, #alchemy .ui-widget select, #alchemy .ui-widget textarea, #alchemy .ui-widget button {
|
131
|
+
font-family: Lucida Grande, Lucida Sans, Arial, sans-serif;
|
132
|
+
font-size: 1em;
|
133
|
+
}
|
134
|
+
|
135
|
+
#alchemy .ui-widget-content {
|
136
|
+
border: 1px solid #afafaf;
|
137
|
+
background-color: #ededed;
|
138
|
+
color: #333333;
|
139
|
+
}
|
140
|
+
|
141
|
+
#alchemy .ui-widget-content a {
|
142
|
+
color: #333333;
|
143
|
+
}
|
144
|
+
|
145
|
+
#alchemy .ui-widget-header {
|
146
|
+
border: 1px none #afafaf;
|
147
|
+
background: #c6dbe7 url(/images/alchemy/gui/shading.png) repeat-x 50% -66px;
|
148
|
+
color: #333333;
|
149
|
+
font-weight: bold;
|
150
|
+
-moz-border-radius-bottomleft: 0 !important;
|
151
|
+
-webkit-border-bottom-left-radius: 0 !important;
|
152
|
+
-moz-border-radius-bottomright: 0 !important;
|
153
|
+
-webkit-border-bottom-right-radius: 0 !important;
|
154
|
+
border-bottom-left-radius: 0;
|
155
|
+
border-bottom-right-radius: 0;
|
156
|
+
}
|
157
|
+
|
158
|
+
#alchemy .ui-widget-header a {
|
159
|
+
color: #333333;
|
160
|
+
}
|
161
|
+
|
162
|
+
/* Interaction states
|
163
|
+
----------------------------------*/
|
164
|
+
|
165
|
+
#alchemy .ui-state-default, #alchemy .ui-widget-content .ui-state-default, #alchemy .ui-widget-header .ui-state-default {
|
166
|
+
border: 1px solid #9a9a9a;
|
167
|
+
background: #ededed url(/images/alchemy/gui/shading.png) repeat-x 50% -67px;
|
168
|
+
font-weight: normal;
|
169
|
+
color: #333333;
|
170
|
+
text-shadow: #f2f2f2 1px 1px 0;
|
171
|
+
}
|
172
|
+
|
173
|
+
#alchemy .ui-state-default a, #alchemy .ui-state-default a:link, #alchemy .ui-state-default a:visited {
|
174
|
+
color: #333333;
|
175
|
+
text-decoration: none;
|
176
|
+
}
|
177
|
+
|
178
|
+
#alchemy .ui-state-hover, #alchemy .ui-widget-content .ui-state-hover, #alchemy .ui-widget-header .ui-state-hover, #alchemy .ui-state-focus, #alchemy .ui-widget-content .ui-state-focus, #alchemy .ui-widget-header .ui-state-focus, #alchemy .ui-dialog .ui-dialog-titlebar-refresh:hover, #alchemy .ui-dialog .ui-dialog-titlebar-refresh:focus
|
179
|
+
{
|
180
|
+
border: 1px solid #888888;
|
181
|
+
background: #e6f0f5 url(/images/alchemy/gui/shading.png) repeat-x 50% -65px;
|
182
|
+
font-weight: normal;
|
183
|
+
color: #333;
|
184
|
+
}
|
185
|
+
|
186
|
+
#alchemy .ui-state-hover a, #alchemy .ui-state-hover a:hover {
|
187
|
+
color: #666666;
|
188
|
+
text-decoration: none;
|
189
|
+
}
|
190
|
+
|
191
|
+
#alchemy .ui-state-active, #alchemy .ui-widget-content .ui-state-active, #alchemy .ui-widget-header .ui-state-active {
|
192
|
+
color: #333333;
|
193
|
+
text-decoration: none;
|
194
|
+
text-shadow: none;
|
195
|
+
background-color: #e5e5e5;
|
196
|
+
}
|
197
|
+
|
198
|
+
#alchemy .ui-state-active.stNav.stNext {
|
199
|
+
background-color: #ededed;
|
200
|
+
margin: 0 -3px 0 0;
|
201
|
+
border: 0 solid #cacaca;
|
202
|
+
border-left-width: 1px;
|
203
|
+
border-top-width: 1px;
|
204
|
+
}
|
205
|
+
|
206
|
+
#alchemy .ui-state-active.stNav.stPrev {
|
207
|
+
background-color: #ededed;
|
208
|
+
margin: 0 0 0 -3px;
|
209
|
+
border: 0 solid #cacaca;
|
210
|
+
border-top-width: 1px;
|
211
|
+
border-left-width: 0;
|
212
|
+
border-right-width: 1px;
|
213
|
+
border-bottom-width: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
.stNav .ui-icon{
|
217
|
+
position: relative;
|
218
|
+
top: 7px;
|
219
|
+
}
|
220
|
+
|
221
|
+
#alchemy .ui-state-active a, #alchemy .ui-state-active a:link, #alchemy .ui-state-active a:visited {
|
222
|
+
color: #333333;
|
223
|
+
text-decoration: none;
|
224
|
+
}
|
225
|
+
|
226
|
+
#alchemy .ui-widget :active {
|
227
|
+
outline: none;
|
228
|
+
}
|
229
|
+
|
230
|
+
/* Interaction Cues
|
231
|
+
----------------------------------*/
|
232
|
+
|
233
|
+
#alchemy .ui-state-highlight, #alchemy .ui-widget-content .ui-state-highlight, #alchemy .ui-widget-header .ui-state-highlight {
|
234
|
+
border: 1px solid #f9dd34;
|
235
|
+
background: #ffef8f url(/images/alchemy/jquery-ui/ui-bg_highlight-soft_25_ffef8f_1x100.png) 50% top repeat-x;
|
236
|
+
color: #363636;
|
237
|
+
}
|
238
|
+
|
239
|
+
#alchemy .ui-state-highlight a, #alchemy .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a {
|
240
|
+
color: #363636;
|
241
|
+
}
|
242
|
+
|
243
|
+
#alchemy .ui-state-error, #alchemy .ui-widget-content .ui-state-error, #alchemy .ui-widget-header .ui-state-error {
|
244
|
+
border: 1px solid #cd0a0a;
|
245
|
+
background: #cd0a0a url(/images/alchemy/jquery-ui/ui-bg_flat_15_cd0a0a_40x100.png) 50% 50% repeat-x;
|
246
|
+
color: #ffffff;
|
247
|
+
}
|
248
|
+
|
249
|
+
#alchemy .ui-state-error a, #alchemy .ui-widget-content .ui-state-error a, #alchemy .ui-widget-header .ui-state-error a {
|
250
|
+
color: #ffffff;
|
251
|
+
}
|
252
|
+
|
253
|
+
#alchemy .ui-state-error-text, #alchemy .ui-widget-content .ui-state-error-text, #alchemy .ui-widget-header .ui-state-error-text {
|
254
|
+
color: #ffffff;
|
255
|
+
}
|
256
|
+
|
257
|
+
#alchemy .ui-priority-primary, #alchemy .ui-widget-content .ui-priority-primary, #alchemy .ui-widget-header .ui-priority-primary {
|
258
|
+
font-weight: bold;
|
259
|
+
}
|
260
|
+
|
261
|
+
#alchemy .ui-priority-secondary, #alchemy .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
|
262
|
+
opacity: .7;
|
263
|
+
filter: Alpha(Opacity=70);
|
264
|
+
font-weight: normal;
|
265
|
+
}
|
266
|
+
|
267
|
+
#alchemy .ui-state-disabled, #alchemy .ui-widget-content .ui-state-disabled, #alchemy .ui-widget-header .ui-state-disabled {
|
268
|
+
opacity: .35;
|
269
|
+
filter: Alpha(Opacity=35);
|
270
|
+
background-image: none;
|
271
|
+
}
|
272
|
+
|
273
|
+
/* Icons
|
274
|
+
----------------------------------*/
|
275
|
+
|
276
|
+
/* states and images */
|
277
|
+
|
278
|
+
#alchemy .ui-icon {
|
279
|
+
width: 16px;
|
280
|
+
height: 16px;
|
281
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png);
|
282
|
+
}
|
283
|
+
|
284
|
+
#alchemy .ui-widget-content .ui-icon {
|
285
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png);
|
286
|
+
}
|
287
|
+
|
288
|
+
#alchemy .ui-widget-header .ui-icon {
|
289
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png);
|
290
|
+
}
|
291
|
+
|
292
|
+
#alchemy .ui-state-default .ui-icon {
|
293
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png);
|
294
|
+
}
|
295
|
+
|
296
|
+
#alchemy .ui-state-hover .ui-icon, #alchemy .ui-state-focus .ui-icon {
|
297
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png);
|
298
|
+
}
|
299
|
+
|
300
|
+
#alchemy .ui-state-active .ui-icon {
|
301
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_666666_256x240.png);
|
302
|
+
}
|
303
|
+
|
304
|
+
#alchemy .ui-state-highlight .ui-icon {
|
305
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_2e83ff_256x240.png);
|
306
|
+
}
|
307
|
+
|
308
|
+
#alchemy .ui-state-error .ui-icon, #alchemy .ui-state-error-text .ui-icon {
|
309
|
+
background-image: url(/images/alchemy/jquery-ui/ui-icons_ffffff_256x240.png);
|
310
|
+
}
|
311
|
+
|
312
|
+
/* positioning */
|
313
|
+
|
314
|
+
#alchemy .ui-icon-carat-1-n {
|
315
|
+
background-position: 0 0;
|
316
|
+
}
|
317
|
+
|
318
|
+
#alchemy .ui-icon-carat-1-ne {
|
319
|
+
background-position: -16px 0;
|
320
|
+
}
|
321
|
+
|
322
|
+
#alchemy .ui-icon-carat-1-e {
|
323
|
+
background-position: -32px 0;
|
324
|
+
}
|
325
|
+
|
326
|
+
#alchemy .ui-icon-carat-1-se {
|
327
|
+
background-position: -48px 0;
|
328
|
+
}
|
329
|
+
|
330
|
+
#alchemy .ui-icon-carat-1-s {
|
331
|
+
background-position: -64px 0;
|
332
|
+
}
|
333
|
+
|
334
|
+
#alchemy .ui-icon-carat-1-sw {
|
335
|
+
background-position: -80px 0;
|
336
|
+
}
|
337
|
+
|
338
|
+
#alchemy .ui-icon-carat-1-w {
|
339
|
+
background-position: -96px 0;
|
340
|
+
}
|
341
|
+
|
342
|
+
#alchemy .ui-icon-carat-1-nw {
|
343
|
+
background-position: -112px 0;
|
344
|
+
}
|
345
|
+
|
346
|
+
#alchemy .ui-icon-carat-2-n-s {
|
347
|
+
background-position: -128px 0;
|
348
|
+
}
|
349
|
+
|
350
|
+
#alchemy .ui-icon-carat-2-e-w {
|
351
|
+
background-position: -144px 0;
|
352
|
+
}
|
353
|
+
|
354
|
+
#alchemy .ui-icon-triangle-1-n {
|
355
|
+
background-position: 0 -16px;
|
356
|
+
}
|
357
|
+
|
358
|
+
#alchemy .ui-icon-triangle-1-ne {
|
359
|
+
background-position: -16px -16px;
|
360
|
+
}
|
361
|
+
|
362
|
+
#alchemy .ui-icon-triangle-1-e {
|
363
|
+
background-position: -32px -16px;
|
364
|
+
}
|
365
|
+
|
366
|
+
#alchemy .ui-icon-triangle-1-se {
|
367
|
+
background-position: -48px -16px;
|
368
|
+
}
|
369
|
+
|
370
|
+
#alchemy .ui-icon-triangle-1-s {
|
371
|
+
background-position: -64px -16px;
|
372
|
+
}
|
373
|
+
|
374
|
+
#alchemy .ui-icon-triangle-1-sw {
|
375
|
+
background-position: -80px -16px;
|
376
|
+
}
|
377
|
+
|
378
|
+
#alchemy .ui-icon-triangle-1-w {
|
379
|
+
background-position: -96px -16px;
|
380
|
+
}
|
381
|
+
|
382
|
+
#alchemy .ui-icon-triangle-1-nw {
|
383
|
+
background-position: -112px -16px;
|
384
|
+
}
|
385
|
+
|
386
|
+
#alchemy .ui-icon-triangle-2-n-s {
|
387
|
+
background-position: -128px -16px;
|
388
|
+
}
|
389
|
+
|
390
|
+
#alchemy .ui-icon-triangle-2-e-w {
|
391
|
+
background-position: -144px -16px;
|
392
|
+
}
|
393
|
+
|
394
|
+
#alchemy .ui-icon-arrow-1-n {
|
395
|
+
background-position: 0 -32px;
|
396
|
+
}
|
397
|
+
|
398
|
+
#alchemy .ui-icon-arrow-1-ne {
|
399
|
+
background-position: -16px -32px;
|
400
|
+
}
|
401
|
+
|
402
|
+
#alchemy .ui-icon-arrow-1-e {
|
403
|
+
background-position: -32px -32px;
|
404
|
+
}
|
405
|
+
|
406
|
+
#alchemy .ui-icon-arrow-1-se {
|
407
|
+
background-position: -48px -32px;
|
408
|
+
}
|
409
|
+
|
410
|
+
#alchemy .ui-icon-arrow-1-s {
|
411
|
+
background-position: -64px -32px;
|
412
|
+
}
|
413
|
+
|
414
|
+
#alchemy .ui-icon-arrow-1-sw {
|
415
|
+
background-position: -80px -32px;
|
416
|
+
}
|
417
|
+
|
418
|
+
#alchemy .ui-icon-arrow-1-w {
|
419
|
+
background-position: -96px -32px;
|
420
|
+
}
|
421
|
+
|
422
|
+
#alchemy .ui-icon-arrow-1-nw {
|
423
|
+
background-position: -112px -32px;
|
424
|
+
}
|
425
|
+
|
426
|
+
#alchemy .ui-icon-arrow-2-n-s {
|
427
|
+
background-position: -128px -32px;
|
428
|
+
}
|
429
|
+
|
430
|
+
#alchemy .ui-icon-arrow-2-ne-sw {
|
431
|
+
background-position: -144px -32px;
|
432
|
+
}
|
433
|
+
|
434
|
+
#alchemy .ui-icon-arrow-2-e-w {
|
435
|
+
background-position: -160px -32px;
|
436
|
+
}
|
437
|
+
|
438
|
+
#alchemy .ui-icon-arrow-2-se-nw {
|
439
|
+
background-position: -176px -32px;
|
440
|
+
}
|
441
|
+
|
442
|
+
#alchemy .ui-icon-arrowstop-1-n {
|
443
|
+
background-position: -192px -32px;
|
444
|
+
}
|
445
|
+
|
446
|
+
#alchemy .ui-icon-arrowstop-1-e {
|
447
|
+
background-position: -208px -32px;
|
448
|
+
}
|
449
|
+
|
450
|
+
#alchemy .ui-icon-arrowstop-1-s {
|
451
|
+
background-position: -224px -32px;
|
452
|
+
}
|
453
|
+
|
454
|
+
#alchemy .ui-icon-arrowstop-1-w {
|
455
|
+
background-position: -240px -32px;
|
456
|
+
}
|
457
|
+
|
458
|
+
#alchemy .ui-icon-arrowthick-1-n {
|
459
|
+
background-position: 0 -48px;
|
460
|
+
}
|
461
|
+
|
462
|
+
#alchemy .ui-icon-arrowthick-1-ne {
|
463
|
+
background-position: -16px -48px;
|
464
|
+
}
|
465
|
+
|
466
|
+
#alchemy .ui-icon-arrowthick-1-e {
|
467
|
+
background-position: -32px -48px;
|
468
|
+
}
|
469
|
+
|
470
|
+
#alchemy .ui-icon-arrowthick-1-se {
|
471
|
+
background-position: -48px -48px;
|
472
|
+
}
|
473
|
+
|
474
|
+
#alchemy .ui-icon-arrowthick-1-s {
|
475
|
+
background-position: -64px -48px;
|
476
|
+
}
|
477
|
+
|
478
|
+
#alchemy .ui-icon-arrowthick-1-sw {
|
479
|
+
background-position: -80px -48px;
|
480
|
+
}
|
481
|
+
|
482
|
+
#alchemy .ui-icon-arrowthick-1-w {
|
483
|
+
background-position: -96px -48px;
|
484
|
+
}
|
485
|
+
|
486
|
+
#alchemy .ui-icon-arrowthick-1-nw {
|
487
|
+
background-position: -112px -48px;
|
488
|
+
}
|
489
|
+
|
490
|
+
#alchemy .ui-icon-arrowthick-2-n-s {
|
491
|
+
background-position: -128px -48px;
|
492
|
+
}
|
493
|
+
|
494
|
+
#alchemy .ui-icon-arrowthick-2-ne-sw {
|
495
|
+
background-position: -144px -48px;
|
496
|
+
}
|
497
|
+
|
498
|
+
#alchemy .ui-icon-arrowthick-2-e-w {
|
499
|
+
background-position: -160px -48px;
|
500
|
+
}
|
501
|
+
|
502
|
+
#alchemy .ui-icon-arrowthick-2-se-nw {
|
503
|
+
background-position: -176px -48px;
|
504
|
+
}
|
505
|
+
|
506
|
+
#alchemy .ui-icon-arrowthickstop-1-n {
|
507
|
+
background-position: -192px -48px;
|
508
|
+
}
|
509
|
+
|
510
|
+
#alchemy .ui-icon-arrowthickstop-1-e {
|
511
|
+
background-position: -208px -48px;
|
512
|
+
}
|
513
|
+
|
514
|
+
#alchemy .ui-icon-arrowthickstop-1-s {
|
515
|
+
background-position: -224px -48px;
|
516
|
+
}
|
517
|
+
|
518
|
+
#alchemy .ui-icon-arrowthickstop-1-w {
|
519
|
+
background-position: -240px -48px;
|
520
|
+
}
|
521
|
+
|
522
|
+
#alchemy .ui-icon-arrowreturnthick-1-w {
|
523
|
+
background-position: 0 -64px;
|
524
|
+
}
|
525
|
+
|
526
|
+
#alchemy .ui-icon-arrowreturnthick-1-n {
|
527
|
+
background-position: -16px -64px;
|
528
|
+
}
|
529
|
+
|
530
|
+
#alchemy .ui-icon-arrowreturnthick-1-e {
|
531
|
+
background-position: -32px -64px;
|
532
|
+
}
|
533
|
+
|
534
|
+
#alchemy .ui-icon-arrowreturnthick-1-s {
|
535
|
+
background-position: -48px -64px;
|
536
|
+
}
|
537
|
+
|
538
|
+
#alchemy .ui-icon-arrowreturn-1-w {
|
539
|
+
background-position: -64px -64px;
|
540
|
+
}
|
541
|
+
|
542
|
+
#alchemy .ui-icon-arrowreturn-1-n {
|
543
|
+
background-position: -80px -64px;
|
544
|
+
}
|
545
|
+
|
546
|
+
#alchemy .ui-icon-arrowreturn-1-e {
|
547
|
+
background-position: -96px -64px;
|
548
|
+
}
|
549
|
+
|
550
|
+
#alchemy .ui-icon-arrowreturn-1-s {
|
551
|
+
background-position: -112px -64px;
|
552
|
+
}
|
553
|
+
|
554
|
+
#alchemy .ui-icon-arrowrefresh-1-w {
|
555
|
+
background-position: -128px -64px;
|
556
|
+
}
|
557
|
+
|
558
|
+
#alchemy .ui-icon-arrowrefresh-1-n {
|
559
|
+
background-position: -144px -64px;
|
560
|
+
}
|
561
|
+
|
562
|
+
#alchemy .ui-icon-arrowrefresh-1-e {
|
563
|
+
background-position: -160px -64px;
|
564
|
+
}
|
565
|
+
|
566
|
+
#alchemy .ui-icon-arrowrefresh-1-s {
|
567
|
+
background-position: -176px -64px;
|
568
|
+
}
|
569
|
+
|
570
|
+
#alchemy .ui-icon-arrow-4 {
|
571
|
+
background-position: 0 -80px;
|
572
|
+
}
|
573
|
+
|
574
|
+
#alchemy .ui-icon-arrow-4-diag {
|
575
|
+
background-position: -16px -80px;
|
576
|
+
}
|
577
|
+
|
578
|
+
#alchemy .ui-icon-extlink {
|
579
|
+
background-position: -32px -80px;
|
580
|
+
}
|
581
|
+
|
582
|
+
#alchemy .ui-icon-newwin {
|
583
|
+
background-position: -48px -80px;
|
584
|
+
}
|
585
|
+
|
586
|
+
#alchemy .ui-icon-refresh {
|
587
|
+
background-position: -63px -79px;
|
588
|
+
}
|
589
|
+
|
590
|
+
#alchemy .ui-icon-shuffle {
|
591
|
+
background-position: -80px -80px;
|
592
|
+
}
|
593
|
+
|
594
|
+
#alchemy .ui-icon-transfer-e-w {
|
595
|
+
background-position: -96px -80px;
|
596
|
+
}
|
597
|
+
|
598
|
+
#alchemy .ui-icon-transferthick-e-w {
|
599
|
+
background-position: -112px -80px;
|
600
|
+
}
|
601
|
+
|
602
|
+
#alchemy .ui-icon-folder-collapsed {
|
603
|
+
background-position: 0 -96px;
|
604
|
+
}
|
605
|
+
|
606
|
+
#alchemy .ui-icon-folder-open {
|
607
|
+
background-position: -16px -96px;
|
608
|
+
}
|
609
|
+
|
610
|
+
#alchemy .ui-icon-document {
|
611
|
+
background-position: -32px -96px;
|
612
|
+
}
|
613
|
+
|
614
|
+
#alchemy .ui-icon-document-b {
|
615
|
+
background-position: -48px -96px;
|
616
|
+
}
|
617
|
+
|
618
|
+
#alchemy .ui-icon-note {
|
619
|
+
background-position: -64px -96px;
|
620
|
+
}
|
621
|
+
|
622
|
+
#alchemy .ui-icon-mail-closed {
|
623
|
+
background-position: -80px -96px;
|
624
|
+
}
|
625
|
+
|
626
|
+
#alchemy .ui-icon-mail-open {
|
627
|
+
background-position: -96px -96px;
|
628
|
+
}
|
629
|
+
|
630
|
+
#alchemy .ui-icon-suitcase {
|
631
|
+
background-position: -112px -96px;
|
632
|
+
}
|
633
|
+
|
634
|
+
#alchemy .ui-icon-comment {
|
635
|
+
background-position: -128px -96px;
|
636
|
+
}
|
637
|
+
|
638
|
+
#alchemy .ui-icon-person {
|
639
|
+
background-position: -144px -96px;
|
640
|
+
}
|
641
|
+
|
642
|
+
#alchemy .ui-icon-print {
|
643
|
+
background-position: -160px -96px;
|
644
|
+
}
|
645
|
+
|
646
|
+
#alchemy .ui-icon-trash {
|
647
|
+
background-position: -176px -96px;
|
648
|
+
}
|
649
|
+
|
650
|
+
#alchemy .ui-icon-locked {
|
651
|
+
background-position: -192px -96px;
|
652
|
+
}
|
653
|
+
|
654
|
+
#alchemy .ui-icon-unlocked {
|
655
|
+
background-position: -208px -96px;
|
656
|
+
}
|
657
|
+
|
658
|
+
#alchemy .ui-icon-bookmark {
|
659
|
+
background-position: -224px -96px;
|
660
|
+
}
|
661
|
+
|
662
|
+
#alchemy .ui-icon-tag {
|
663
|
+
background-position: -240px -96px;
|
664
|
+
}
|
665
|
+
|
666
|
+
#alchemy .ui-icon-home {
|
667
|
+
background-position: 0 -112px;
|
668
|
+
}
|
669
|
+
|
670
|
+
#alchemy .ui-icon-flag {
|
671
|
+
background-position: -16px -112px;
|
672
|
+
}
|
673
|
+
|
674
|
+
#alchemy .ui-icon-calendar {
|
675
|
+
background-position: -32px -112px;
|
676
|
+
}
|
677
|
+
|
678
|
+
#alchemy .ui-icon-cart {
|
679
|
+
background-position: -48px -112px;
|
680
|
+
}
|
681
|
+
|
682
|
+
#alchemy .ui-icon-pencil {
|
683
|
+
background-position: -64px -112px;
|
684
|
+
}
|
685
|
+
|
686
|
+
#alchemy .ui-icon-clock {
|
687
|
+
background-position: -80px -112px;
|
688
|
+
}
|
689
|
+
|
690
|
+
#alchemy .ui-icon-disk {
|
691
|
+
background-position: -96px -112px;
|
692
|
+
}
|
693
|
+
|
694
|
+
#alchemy .ui-icon-calculator {
|
695
|
+
background-position: -112px -112px;
|
696
|
+
}
|
697
|
+
|
698
|
+
#alchemy .ui-icon-zoomin {
|
699
|
+
background-position: -128px -112px;
|
700
|
+
}
|
701
|
+
|
702
|
+
#alchemy .ui-icon-zoomout {
|
703
|
+
background-position: -144px -112px;
|
704
|
+
}
|
705
|
+
|
706
|
+
#alchemy .ui-icon-search {
|
707
|
+
background-position: -160px -112px;
|
708
|
+
}
|
709
|
+
|
710
|
+
#alchemy .ui-icon-wrench {
|
711
|
+
background-position: -176px -112px;
|
712
|
+
}
|
713
|
+
|
714
|
+
#alchemy .ui-icon-gear {
|
715
|
+
background-position: -192px -112px;
|
716
|
+
}
|
717
|
+
|
718
|
+
#alchemy .ui-icon-heart {
|
719
|
+
background-position: -208px -112px;
|
720
|
+
}
|
721
|
+
|
722
|
+
#alchemy .ui-icon-star {
|
723
|
+
background-position: -224px -112px;
|
724
|
+
}
|
725
|
+
|
726
|
+
#alchemy .ui-icon-link {
|
727
|
+
background-position: -240px -112px;
|
728
|
+
}
|
729
|
+
|
730
|
+
#alchemy .ui-icon-cancel {
|
731
|
+
background-position: 0 -128px;
|
732
|
+
}
|
733
|
+
|
734
|
+
#alchemy .ui-icon-plus {
|
735
|
+
background-position: -16px -128px;
|
736
|
+
}
|
737
|
+
|
738
|
+
#alchemy .ui-icon-plusthick {
|
739
|
+
background-position: -32px -128px;
|
740
|
+
}
|
741
|
+
|
742
|
+
#alchemy .ui-icon-minus {
|
743
|
+
background-position: -48px -128px;
|
744
|
+
}
|
745
|
+
|
746
|
+
#alchemy .ui-icon-minusthick {
|
747
|
+
background-position: -64px -128px;
|
748
|
+
}
|
749
|
+
|
750
|
+
#alchemy .ui-icon-close {
|
751
|
+
background-position: -80px -128px;
|
752
|
+
}
|
753
|
+
|
754
|
+
#alchemy .ui-icon-closethick {
|
755
|
+
background-position: -96px -128px;
|
756
|
+
}
|
757
|
+
|
758
|
+
#alchemy .ui-icon-key {
|
759
|
+
background-position: -112px -128px;
|
760
|
+
}
|
761
|
+
|
762
|
+
#alchemy .ui-icon-lightbulb {
|
763
|
+
background-position: -128px -128px;
|
764
|
+
}
|
765
|
+
|
766
|
+
#alchemy .ui-icon-scissors {
|
767
|
+
background-position: -144px -128px;
|
768
|
+
}
|
769
|
+
|
770
|
+
#alchemy .ui-icon-clipboard {
|
771
|
+
background-position: -160px -128px;
|
772
|
+
}
|
773
|
+
|
774
|
+
#alchemy .ui-icon-copy {
|
775
|
+
background-position: -176px -128px;
|
776
|
+
}
|
777
|
+
|
778
|
+
#alchemy .ui-icon-contact {
|
779
|
+
background-position: -192px -128px;
|
780
|
+
}
|
781
|
+
|
782
|
+
#alchemy .ui-icon-image {
|
783
|
+
background-position: -208px -128px;
|
784
|
+
}
|
785
|
+
|
786
|
+
#alchemy .ui-icon-video {
|
787
|
+
background-position: -224px -128px;
|
788
|
+
}
|
789
|
+
|
790
|
+
#alchemy .ui-icon-script {
|
791
|
+
background-position: -240px -128px;
|
792
|
+
}
|
793
|
+
|
794
|
+
#alchemy .ui-icon-alert {
|
795
|
+
background-position: 0 -144px;
|
796
|
+
}
|
797
|
+
|
798
|
+
#alchemy .ui-icon-info {
|
799
|
+
background-position: -16px -144px;
|
800
|
+
}
|
801
|
+
|
802
|
+
#alchemy .ui-icon-notice {
|
803
|
+
background-position: -32px -144px;
|
804
|
+
}
|
805
|
+
|
806
|
+
#alchemy .ui-icon-help {
|
807
|
+
background-position: -48px -144px;
|
808
|
+
}
|
809
|
+
|
810
|
+
#alchemy .ui-icon-check {
|
811
|
+
background-position: -64px -144px;
|
812
|
+
}
|
813
|
+
|
814
|
+
#alchemy .ui-icon-bullet {
|
815
|
+
background-position: -80px -144px;
|
816
|
+
}
|
817
|
+
|
818
|
+
#alchemy .ui-icon-radio-off {
|
819
|
+
background-position: -96px -144px;
|
820
|
+
}
|
821
|
+
|
822
|
+
#alchemy .ui-icon-radio-on {
|
823
|
+
background-position: -112px -144px;
|
824
|
+
}
|
825
|
+
|
826
|
+
#alchemy .ui-icon-pin-w {
|
827
|
+
background-position: -128px -144px;
|
828
|
+
}
|
829
|
+
|
830
|
+
#alchemy .ui-icon-pin-s {
|
831
|
+
background-position: -144px -144px;
|
832
|
+
}
|
833
|
+
|
834
|
+
#alchemy .ui-icon-play {
|
835
|
+
background-position: 0 -160px;
|
836
|
+
}
|
837
|
+
|
838
|
+
#alchemy .ui-icon-pause {
|
839
|
+
background-position: -16px -160px;
|
840
|
+
}
|
841
|
+
|
842
|
+
#alchemy .ui-icon-seek-next {
|
843
|
+
background-position: -32px -160px;
|
844
|
+
}
|
845
|
+
|
846
|
+
#alchemy .ui-icon-seek-prev {
|
847
|
+
background-position: -48px -160px;
|
848
|
+
}
|
849
|
+
|
850
|
+
#alchemy .ui-icon-seek-end {
|
851
|
+
background-position: -64px -160px;
|
852
|
+
}
|
853
|
+
|
854
|
+
#alchemy .ui-icon-seek-start {
|
855
|
+
background-position: -80px -160px;
|
856
|
+
}
|
857
|
+
|
858
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
859
|
+
|
860
|
+
#alchemy .ui-icon-seek-first {
|
861
|
+
background-position: -80px -160px;
|
862
|
+
}
|
863
|
+
|
864
|
+
#alchemy .ui-icon-stop {
|
865
|
+
background-position: -96px -160px;
|
866
|
+
}
|
867
|
+
|
868
|
+
#alchemy .ui-icon-eject {
|
869
|
+
background-position: -112px -160px;
|
870
|
+
}
|
871
|
+
|
872
|
+
#alchemy .ui-icon-volume-off {
|
873
|
+
background-position: -128px -160px;
|
874
|
+
}
|
875
|
+
|
876
|
+
#alchemy .ui-icon-volume-on {
|
877
|
+
background-position: -144px -160px;
|
878
|
+
}
|
879
|
+
|
880
|
+
#alchemy .ui-icon-power {
|
881
|
+
background-position: 0 -176px;
|
882
|
+
}
|
883
|
+
|
884
|
+
#alchemy .ui-icon-signal-diag {
|
885
|
+
background-position: -16px -176px;
|
886
|
+
}
|
887
|
+
|
888
|
+
#alchemy .ui-icon-signal {
|
889
|
+
background-position: -32px -176px;
|
890
|
+
}
|
891
|
+
|
892
|
+
#alchemy .ui-icon-battery-0 {
|
893
|
+
background-position: -48px -176px;
|
894
|
+
}
|
895
|
+
|
896
|
+
#alchemy .ui-icon-battery-1 {
|
897
|
+
background-position: -64px -176px;
|
898
|
+
}
|
899
|
+
|
900
|
+
#alchemy .ui-icon-battery-2 {
|
901
|
+
background-position: -80px -176px;
|
902
|
+
}
|
903
|
+
|
904
|
+
#alchemy .ui-icon-battery-3 {
|
905
|
+
background-position: -96px -176px;
|
906
|
+
}
|
907
|
+
|
908
|
+
#alchemy .ui-icon-circle-plus {
|
909
|
+
background-position: 0 -192px;
|
910
|
+
}
|
911
|
+
|
912
|
+
#alchemy .ui-icon-circle-minus {
|
913
|
+
background-position: -16px -192px;
|
914
|
+
}
|
915
|
+
|
916
|
+
#alchemy .ui-icon-circle-close {
|
917
|
+
background-position: -32px -192px;
|
918
|
+
}
|
919
|
+
|
920
|
+
#alchemy .ui-icon-circle-triangle-e {
|
921
|
+
background-position: -48px -192px;
|
922
|
+
}
|
923
|
+
|
924
|
+
#alchemy .ui-icon-circle-triangle-s {
|
925
|
+
background-position: -64px -192px;
|
926
|
+
}
|
927
|
+
|
928
|
+
#alchemy .ui-icon-circle-triangle-w {
|
929
|
+
background-position: -80px -192px;
|
930
|
+
}
|
931
|
+
|
932
|
+
#alchemy .ui-icon-circle-triangle-n {
|
933
|
+
background-position: -96px -192px;
|
934
|
+
}
|
935
|
+
|
936
|
+
#alchemy .ui-icon-circle-arrow-e {
|
937
|
+
background-position: -112px -192px;
|
938
|
+
}
|
939
|
+
|
940
|
+
#alchemy .ui-icon-circle-arrow-s {
|
941
|
+
background-position: -128px -192px;
|
942
|
+
}
|
943
|
+
|
944
|
+
#alchemy .ui-icon-circle-arrow-w {
|
945
|
+
background-position: -144px -192px;
|
946
|
+
}
|
947
|
+
|
948
|
+
#alchemy .ui-icon-circle-arrow-n {
|
949
|
+
background-position: -160px -192px;
|
950
|
+
}
|
951
|
+
|
952
|
+
#alchemy .ui-icon-circle-zoomin {
|
953
|
+
background-position: -176px -192px;
|
954
|
+
}
|
955
|
+
|
956
|
+
#alchemy .ui-icon-circle-zoomout {
|
957
|
+
background-position: -192px -192px;
|
958
|
+
}
|
959
|
+
|
960
|
+
#alchemy .ui-icon-circle-check {
|
961
|
+
background-position: -208px -192px;
|
962
|
+
}
|
963
|
+
|
964
|
+
#alchemy .ui-icon-circlesmall-plus {
|
965
|
+
background-position: 0 -208px;
|
966
|
+
}
|
967
|
+
|
968
|
+
#alchemy .ui-icon-circlesmall-minus {
|
969
|
+
background-position: -16px -208px;
|
970
|
+
}
|
971
|
+
|
972
|
+
#alchemy .ui-icon-circlesmall-close {
|
973
|
+
background-position: -32px -208px;
|
974
|
+
}
|
975
|
+
|
976
|
+
#alchemy .ui-icon-squaresmall-plus {
|
977
|
+
background-position: -48px -208px;
|
978
|
+
}
|
979
|
+
|
980
|
+
#alchemy .ui-icon-squaresmall-minus {
|
981
|
+
background-position: -64px -208px;
|
982
|
+
}
|
983
|
+
|
984
|
+
#alchemy .ui-icon-squaresmall-close {
|
985
|
+
background-position: -80px -208px;
|
986
|
+
}
|
987
|
+
|
988
|
+
#alchemy .ui-icon-grip-dotted-vertical {
|
989
|
+
background-position: 0 -224px;
|
990
|
+
}
|
991
|
+
|
992
|
+
#alchemy .ui-icon-grip-dotted-horizontal {
|
993
|
+
background-position: -16px -224px;
|
994
|
+
}
|
995
|
+
|
996
|
+
#alchemy .ui-icon-grip-solid-vertical {
|
997
|
+
background-position: -32px -224px;
|
998
|
+
}
|
999
|
+
|
1000
|
+
#alchemy .ui-icon-grip-solid-horizontal {
|
1001
|
+
background-position: -48px -224px;
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
#alchemy .ui-icon-gripsmall-diagonal-se {
|
1005
|
+
background-position: -64px -224px;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
#alchemy .ui-icon-grip-diagonal-se {
|
1009
|
+
background-position: -80px -224px;
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
/* Misc visuals
|
1013
|
+
----------------------------------*/
|
1014
|
+
|
1015
|
+
/* Corner radius */
|
1016
|
+
|
1017
|
+
#alchemy .ui-corner-tl {
|
1018
|
+
-moz-border-radius-topleft: 3px;
|
1019
|
+
-webkit-border-top-left-radius: 3px;
|
1020
|
+
border-top-left-radius: 3px;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
#alchemy .ui-corner-tr {
|
1024
|
+
-moz-border-radius-topright: 3px;
|
1025
|
+
-webkit-border-top-right-radius: 3px;
|
1026
|
+
border-top-right-radius: 3px;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
#alchemy .ui-corner-bl {
|
1030
|
+
-moz-border-radius-bottomleft: 3px;
|
1031
|
+
-webkit-border-bottom-left-radius: 3px;
|
1032
|
+
border-bottom-left-radius: 3px;
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
#alchemy .ui-corner-br {
|
1036
|
+
-moz-border-radius-bottomright: 3px;
|
1037
|
+
-webkit-border-bottom-right-radius: 3px;
|
1038
|
+
border-bottom-right-radius: 3px;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
#alchemy .ui-corner-top {
|
1042
|
+
-moz-border-radius-topleft: 3px;
|
1043
|
+
-webkit-border-top-left-radius: 3px;
|
1044
|
+
border-top-left-radius: 3px;
|
1045
|
+
-moz-border-radius-topright: 3px;
|
1046
|
+
-webkit-border-top-right-radius: 3px;
|
1047
|
+
border-top-right-radius: 3px;
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
#alchemy .ui-corner-bottom {
|
1051
|
+
-moz-border-radius-bottomleft: 3px;
|
1052
|
+
-webkit-border-bottom-left-radius: 3px;
|
1053
|
+
border-bottom-left-radius: 3px;
|
1054
|
+
-moz-border-radius-bottomright: 3px;
|
1055
|
+
-webkit-border-bottom-right-radius: 3px;
|
1056
|
+
border-bottom-right-radius: 3px;
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
#alchemy .ui-corner-right {
|
1060
|
+
-moz-border-radius-topright: 3px;
|
1061
|
+
-webkit-border-top-right-radius: 3px;
|
1062
|
+
border-top-right-radius: 3px;
|
1063
|
+
-moz-border-radius-bottomright: 3px;
|
1064
|
+
-webkit-border-bottom-right-radius: 3px;
|
1065
|
+
border-bottom-right-radius: 3px;
|
1066
|
+
}
|
1067
|
+
|
1068
|
+
#alchemy .ui-corner-left {
|
1069
|
+
-moz-border-radius-topleft: 3px;
|
1070
|
+
-webkit-border-top-left-radius: 3px;
|
1071
|
+
border-top-left-radius: 3px;
|
1072
|
+
-moz-border-radius-bottomleft: 3px;
|
1073
|
+
-webkit-border-bottom-left-radius: 3px;
|
1074
|
+
border-bottom-left-radius: 3px;
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
#alchemy .ui-corner-all {
|
1078
|
+
-moz-border-radius: 3px;
|
1079
|
+
-webkit-border-radius: 3px;
|
1080
|
+
border-radius: 3px;
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
/* Overlays */
|
1084
|
+
|
1085
|
+
#alchemy .ui-widget-overlay {
|
1086
|
+
background-color: rgba(255,255,255,0.6);
|
1087
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#60FFFFFF, endColorstr=#60FFFFFF);
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
#alchemy .ui-widget-shadow {
|
1091
|
+
margin: -8px 0 0 -8px;
|
1092
|
+
padding: 8px;
|
1093
|
+
background: #000000 url(/images/alchemy/jquery-ui/ui-bg_flat_70_000000_40x100.png) 50% 50% repeat-x;
|
1094
|
+
opacity: .30;
|
1095
|
+
filter: Alpha(Opacity=30);
|
1096
|
+
-moz-border-radius: 3px;
|
1097
|
+
-webkit-border-radius: 3px;
|
1098
|
+
border-radius: 3px;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
/*
|
1102
|
+
* jQuery UI Resizable 1.8.7
|
1103
|
+
*
|
1104
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1105
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1106
|
+
* http://jquery.org/license
|
1107
|
+
*
|
1108
|
+
* http://docs.jquery.com/UI/Resizable#theming
|
1109
|
+
*/
|
1110
|
+
|
1111
|
+
#alchemy .ui-resizable {
|
1112
|
+
position: relative;
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
#alchemy .ui-resizable-handle {
|
1116
|
+
position: absolute;
|
1117
|
+
font-size: 0.1px;
|
1118
|
+
z-index: 99999;
|
1119
|
+
display: block;
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
#alchemy .ui-resizable-disabled .ui-resizable-handle, #alchemy .ui-resizable-autohide .ui-resizable-handle {
|
1123
|
+
display: none;
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
#alchemy .ui-resizable-n {
|
1127
|
+
cursor: n-resize;
|
1128
|
+
height: 7px;
|
1129
|
+
width: 100%;
|
1130
|
+
top: -5px;
|
1131
|
+
left: 0;
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
#alchemy .ui-resizable-s {
|
1135
|
+
cursor: s-resize;
|
1136
|
+
height: 7px;
|
1137
|
+
width: 100%;
|
1138
|
+
bottom: -5px;
|
1139
|
+
left: 0;
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
#alchemy .ui-resizable-e {
|
1143
|
+
cursor: e-resize;
|
1144
|
+
width: 7px;
|
1145
|
+
right: -5px;
|
1146
|
+
top: 0;
|
1147
|
+
height: 100%;
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
#alchemy .ui-resizable-w {
|
1151
|
+
cursor: w-resize;
|
1152
|
+
width: 7px;
|
1153
|
+
left: -5px;
|
1154
|
+
top: 0;
|
1155
|
+
height: 100%;
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
#alchemy .ui-resizable-se {
|
1159
|
+
cursor: se-resize;
|
1160
|
+
width: 12px;
|
1161
|
+
height: 12px;
|
1162
|
+
right: 1px;
|
1163
|
+
bottom: 1px;
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
#alchemy .ui-resizable-sw {
|
1167
|
+
cursor: sw-resize;
|
1168
|
+
width: 9px;
|
1169
|
+
height: 9px;
|
1170
|
+
left: -5px;
|
1171
|
+
bottom: -5px;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
#alchemy .ui-resizable-nw {
|
1175
|
+
cursor: nw-resize;
|
1176
|
+
width: 9px;
|
1177
|
+
height: 9px;
|
1178
|
+
left: -5px;
|
1179
|
+
top: -5px;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
#alchemy .ui-resizable-ne {
|
1183
|
+
cursor: ne-resize;
|
1184
|
+
width: 9px;
|
1185
|
+
height: 9px;
|
1186
|
+
right: -5px;
|
1187
|
+
top: -5px;
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
/*
|
1191
|
+
* jQuery UI Selectable 1.8.7
|
1192
|
+
*
|
1193
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1194
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1195
|
+
* http://jquery.org/license
|
1196
|
+
*
|
1197
|
+
* http://docs.jquery.com/UI/Selectable#theming
|
1198
|
+
*/
|
1199
|
+
|
1200
|
+
#alchemy .ui-selectable-helper {
|
1201
|
+
position: absolute;
|
1202
|
+
z-index: 100;
|
1203
|
+
border: 1px dotted black;
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
/*
|
1207
|
+
* jQuery UI Accordion 1.8.7
|
1208
|
+
*
|
1209
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1210
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1211
|
+
* http://jquery.org/license
|
1212
|
+
*
|
1213
|
+
* http://docs.jquery.com/UI/Accordion#theming
|
1214
|
+
*/
|
1215
|
+
|
1216
|
+
/* IE/Win - Fix animation bug - #4615 */
|
1217
|
+
|
1218
|
+
#alchemy .ui-accordion {
|
1219
|
+
width: 100%;
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
#alchemy .ui-accordion .ui-accordion-header {
|
1223
|
+
cursor: pointer;
|
1224
|
+
position: relative;
|
1225
|
+
margin-top: 1px;
|
1226
|
+
zoom: 1;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
#alchemy .ui-accordion .ui-accordion-li-fix {
|
1230
|
+
display: inline;
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
#alchemy .ui-accordion .ui-accordion-header-active {
|
1234
|
+
border-bottom: 0 !important;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
#alchemy .ui-accordion .ui-accordion-header a {
|
1238
|
+
display: block;
|
1239
|
+
font-size: 1em;
|
1240
|
+
padding: .5em .5em .5em .7em;
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
#alchemy .ui-accordion-icons .ui-accordion-header a {
|
1244
|
+
padding-left: 2.2em;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
#alchemy .ui-accordion .ui-accordion-header .ui-icon {
|
1248
|
+
position: absolute;
|
1249
|
+
left: .5em;
|
1250
|
+
top: 50%;
|
1251
|
+
margin-top: -8px;
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
#alchemy .ui-accordion .ui-accordion-content {
|
1255
|
+
padding: 1em 2.2em;
|
1256
|
+
border-top: 0;
|
1257
|
+
margin-top: -2px;
|
1258
|
+
position: relative;
|
1259
|
+
top: 1px;
|
1260
|
+
margin-bottom: 2px;
|
1261
|
+
overflow: auto;
|
1262
|
+
display: none;
|
1263
|
+
zoom: 1;
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
#alchemy .ui-accordion .ui-accordion-content-active {
|
1267
|
+
display: block;
|
1268
|
+
}
|
1269
|
+
|
1270
|
+
/*
|
1271
|
+
* jQuery UI Autocomplete 1.8.7
|
1272
|
+
*
|
1273
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1274
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1275
|
+
* http://jquery.org/license
|
1276
|
+
*
|
1277
|
+
* http://docs.jquery.com/UI/Autocomplete#theming
|
1278
|
+
*/
|
1279
|
+
|
1280
|
+
#alchemy .ui-autocomplete {
|
1281
|
+
position: absolute;
|
1282
|
+
cursor: default;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
/* workarounds */
|
1286
|
+
|
1287
|
+
* html .ui-autocomplete {
|
1288
|
+
width: 1px;
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
/* without this, the menu expands to 100% in IE6 */
|
1292
|
+
|
1293
|
+
/*
|
1294
|
+
* jQuery UI Menu 1.8.7
|
1295
|
+
*
|
1296
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1297
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1298
|
+
* http://jquery.org/license
|
1299
|
+
*
|
1300
|
+
* http://docs.jquery.com/UI/Menu#theming
|
1301
|
+
*/
|
1302
|
+
|
1303
|
+
#alchemy .ui-menu {
|
1304
|
+
list-style: none;
|
1305
|
+
padding: 2px;
|
1306
|
+
margin: 0;
|
1307
|
+
display: block;
|
1308
|
+
float: left;
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
#alchemy .ui-menu .ui-menu {
|
1312
|
+
margin-top: -3px;
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
#alchemy .ui-menu .ui-menu-item {
|
1316
|
+
margin: 0;
|
1317
|
+
padding: 0;
|
1318
|
+
zoom: 1;
|
1319
|
+
float: left;
|
1320
|
+
clear: left;
|
1321
|
+
width: 100%;
|
1322
|
+
}
|
1323
|
+
|
1324
|
+
#alchemy .ui-menu .ui-menu-item a {
|
1325
|
+
text-decoration: none;
|
1326
|
+
display: block;
|
1327
|
+
padding: .2em .4em;
|
1328
|
+
line-height: 1.5;
|
1329
|
+
zoom: 1;
|
1330
|
+
}
|
1331
|
+
|
1332
|
+
#alchemy .ui-menu .ui-menu-item a.ui-state-hover,
|
1333
|
+
#alchemy .ui-menu .ui-menu-item a.ui-state-active {
|
1334
|
+
font-weight: normal;
|
1335
|
+
margin: -1px;
|
1336
|
+
}
|
1337
|
+
|
1338
|
+
/*
|
1339
|
+
* jQuery UI Button 1.8.7
|
1340
|
+
*
|
1341
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1342
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1343
|
+
* http://jquery.org/license
|
1344
|
+
*
|
1345
|
+
* http://docs.jquery.com/UI/Button#theming
|
1346
|
+
*/
|
1347
|
+
|
1348
|
+
#alchemy .ui-button {
|
1349
|
+
display: inline-block;
|
1350
|
+
position: relative;
|
1351
|
+
margin-right: .1em;
|
1352
|
+
text-decoration: none !important;
|
1353
|
+
cursor: pointer;
|
1354
|
+
text-align: center;
|
1355
|
+
zoom: 1;
|
1356
|
+
overflow: visible;
|
1357
|
+
padding: 0;
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
/* the overflow property removes extra width in IE */
|
1361
|
+
|
1362
|
+
#alchemy .ui-button-icon-only {
|
1363
|
+
width: 2.2em;
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
/* to make room for the icon, a width needs to be set here */
|
1367
|
+
|
1368
|
+
button.ui-button-icon-only {
|
1369
|
+
width: 2.4em;
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
/* button elements seem to need a little more width */
|
1373
|
+
|
1374
|
+
#alchemy .ui-button-icons-only {
|
1375
|
+
width: 3.4em;
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
button.ui-button-icons-only {
|
1379
|
+
width: 3.7em;
|
1380
|
+
}
|
1381
|
+
|
1382
|
+
/*button text element */
|
1383
|
+
|
1384
|
+
#alchemy .ui-button .ui-button-text {
|
1385
|
+
display: block;
|
1386
|
+
line-height: 1.4;
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
#alchemy .ui-button-text-only .ui-button-text {
|
1390
|
+
padding: 4px 16px;
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
#alchemy .ui-button-icon-only .ui-button-text, #alchemy .ui-button-icons-only .ui-button-text {
|
1394
|
+
padding: .4em;
|
1395
|
+
text-indent: -9999999px;
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
#alchemy .ui-button-text-icon-primary .ui-button-text, #alchemy .ui-button-text-icons .ui-button-text {
|
1399
|
+
padding: .4em 1em .4em 2.1em;
|
1400
|
+
}
|
1401
|
+
|
1402
|
+
#alchemy .ui-button-text-icon-secondary .ui-button-text, #alchemy .ui-button-text-icons .ui-button-text {
|
1403
|
+
padding: .4em 2.1em .4em 1em;
|
1404
|
+
}
|
1405
|
+
|
1406
|
+
#alchemy .ui-button-text-icons .ui-button-text {
|
1407
|
+
padding-left: 2.1em;
|
1408
|
+
padding-right: 2.1em;
|
1409
|
+
}
|
1410
|
+
|
1411
|
+
/* no icon support for input elements, provide padding by default */
|
1412
|
+
|
1413
|
+
input.ui-button {
|
1414
|
+
padding: .4em 1em;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
/*button icon element(s) */
|
1418
|
+
|
1419
|
+
#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 {
|
1420
|
+
position: absolute;
|
1421
|
+
top: 50%;
|
1422
|
+
margin-top: -8px;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
#alchemy .ui-button-icon-only .ui-icon {
|
1426
|
+
left: 50%;
|
1427
|
+
margin-left: -8px;
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
#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 {
|
1431
|
+
left: .5em;
|
1432
|
+
}
|
1433
|
+
|
1434
|
+
#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 {
|
1435
|
+
right: .5em;
|
1436
|
+
}
|
1437
|
+
|
1438
|
+
#alchemy .ui-button-text-icons .ui-button-icon-secondary, #alchemy .ui-button-icons-only .ui-button-icon-secondary {
|
1439
|
+
right: .5em;
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
/*button sets*/
|
1443
|
+
|
1444
|
+
#alchemy .ui-buttonset {
|
1445
|
+
margin-right: 7px;
|
1446
|
+
}
|
1447
|
+
|
1448
|
+
#alchemy .ui-buttonset .ui-button {
|
1449
|
+
margin-left: 0;
|
1450
|
+
margin-right: -.3em;
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
/* workarounds */
|
1454
|
+
|
1455
|
+
button.ui-button::-moz-focus-inner {
|
1456
|
+
border: 0;
|
1457
|
+
padding: 0;
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
/* reset extra padding in Firefox */
|
1461
|
+
|
1462
|
+
/*
|
1463
|
+
* jQuery UI Dialog 1.8.7
|
1464
|
+
*
|
1465
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1466
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1467
|
+
* http://jquery.org/license
|
1468
|
+
*
|
1469
|
+
* http://docs.jquery.com/UI/Dialog#theming
|
1470
|
+
*/
|
1471
|
+
|
1472
|
+
#alchemy .ui-dialog {
|
1473
|
+
position: absolute;
|
1474
|
+
width: 300px;
|
1475
|
+
overflow: hidden;
|
1476
|
+
padding: 0;
|
1477
|
+
-webkit-box-shadow: 0px 0px 8px rgba(0, 3, 51, 0.2);
|
1478
|
+
-moz-box-shadow: 0px 0px 8px rgba(0, 3, 51, 0.2);
|
1479
|
+
-o-box-shadow: 0px 0px 8px rgba(0, 3, 51, 0.2);
|
1480
|
+
box-shadow: 0px 0px 8px rgba(0, 3, 51, 0.2);
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
#alchemy .ui-dialog .ui-dialog-titlebar {
|
1484
|
+
padding: 6px 8px;
|
1485
|
+
position: relative;
|
1486
|
+
margin-bottom: 0;
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
#alchemy .ui-dialog .ui-dialog-title {
|
1490
|
+
float: left;
|
1491
|
+
margin: .1em 16px .2em 0;
|
1492
|
+
}
|
1493
|
+
|
1494
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-close {
|
1495
|
+
position: absolute;
|
1496
|
+
right: .3em;
|
1497
|
+
top: 50%;
|
1498
|
+
width: 19px;
|
1499
|
+
margin: -10px 0 0 0;
|
1500
|
+
padding: 1px;
|
1501
|
+
height: 18px;
|
1502
|
+
}
|
1503
|
+
|
1504
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-refresh {
|
1505
|
+
position: absolute;
|
1506
|
+
right: 46px;
|
1507
|
+
top: 50%;
|
1508
|
+
width: 19px;
|
1509
|
+
margin: -10px 0 0 0;
|
1510
|
+
padding: 1px;
|
1511
|
+
height: 18px;
|
1512
|
+
}
|
1513
|
+
|
1514
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-maximize,
|
1515
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-restore {
|
1516
|
+
margin-right: 8px;
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-close span {
|
1520
|
+
display: block;
|
1521
|
+
margin: 1px;
|
1522
|
+
}
|
1523
|
+
|
1524
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-close:hover, #alchemy .ui-dialog .ui-dialog-titlebar-close:focus {
|
1525
|
+
padding: 0;
|
1526
|
+
}
|
1527
|
+
|
1528
|
+
#alchemy .ui-dialog .ui-dialog-titlebar-refresh:hover, #alchemy .ui-dialog .ui-dialog-titlebar-refresh:focus {
|
1529
|
+
padding: 0;
|
1530
|
+
}
|
1531
|
+
|
1532
|
+
#alchemy .ui-dialog .ui-dialog-content {
|
1533
|
+
position: relative;
|
1534
|
+
border: 0;
|
1535
|
+
padding: 0;
|
1536
|
+
background: none;
|
1537
|
+
overflow: auto;
|
1538
|
+
zoom: 1;
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
#alchemy .ui-dialog .ui-dialog-content form {
|
1542
|
+
padding: 8px;
|
1543
|
+
overflow: auto;
|
1544
|
+
}
|
1545
|
+
|
1546
|
+
#alchemy .ui-dialog .ui-dialog-buttonpane {
|
1547
|
+
text-align: left;
|
1548
|
+
border-width: 0 0 0 0;
|
1549
|
+
background-image: none;
|
1550
|
+
margin: 0 0 0 0;
|
1551
|
+
padding: 0;
|
1552
|
+
}
|
1553
|
+
|
1554
|
+
#alchemy .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
1555
|
+
float: right;
|
1556
|
+
}
|
1557
|
+
|
1558
|
+
#alchemy .ui-dialog .ui-dialog-buttonpane button {
|
1559
|
+
margin: .5em .4em .5em 0;
|
1560
|
+
cursor: pointer;
|
1561
|
+
}
|
1562
|
+
|
1563
|
+
#alchemy .ui-dialog .ui-resizable-se {
|
1564
|
+
width: 14px;
|
1565
|
+
height: 14px;
|
1566
|
+
right: 3px;
|
1567
|
+
bottom: 3px;
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
#alchemy .ui-draggable .ui-dialog-titlebar {
|
1571
|
+
cursor: move;
|
1572
|
+
}
|
1573
|
+
|
1574
|
+
/*
|
1575
|
+
* jQuery UI Slider 1.8.7
|
1576
|
+
*
|
1577
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1578
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1579
|
+
* http://jquery.org/license
|
1580
|
+
*
|
1581
|
+
* http://docs.jquery.com/UI/Slider#theming
|
1582
|
+
*/
|
1583
|
+
|
1584
|
+
#alchemy .ui-slider {
|
1585
|
+
position: relative;
|
1586
|
+
text-align: left;
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
#alchemy .ui-slider .ui-slider-handle {
|
1590
|
+
position: absolute;
|
1591
|
+
z-index: 2;
|
1592
|
+
width: 1.2em;
|
1593
|
+
height: 1.2em;
|
1594
|
+
cursor: default;
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
#alchemy .ui-slider .ui-slider-range {
|
1598
|
+
position: absolute;
|
1599
|
+
z-index: 1;
|
1600
|
+
font-size: .7em;
|
1601
|
+
display: block;
|
1602
|
+
border: 0;
|
1603
|
+
background-position: 0 0;
|
1604
|
+
}
|
1605
|
+
|
1606
|
+
#alchemy .ui-slider-horizontal {
|
1607
|
+
height: .8em;
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
#alchemy .ui-slider-horizontal .ui-slider-handle {
|
1611
|
+
top: -.3em;
|
1612
|
+
margin-left: -.6em;
|
1613
|
+
}
|
1614
|
+
|
1615
|
+
#alchemy .ui-slider-horizontal .ui-slider-range {
|
1616
|
+
top: 0;
|
1617
|
+
height: 100%;
|
1618
|
+
}
|
1619
|
+
|
1620
|
+
#alchemy .ui-slider-horizontal .ui-slider-range-min {
|
1621
|
+
left: 0;
|
1622
|
+
}
|
1623
|
+
|
1624
|
+
#alchemy .ui-slider-horizontal .ui-slider-range-max {
|
1625
|
+
right: 0;
|
1626
|
+
}
|
1627
|
+
|
1628
|
+
#alchemy .ui-slider-vertical {
|
1629
|
+
width: .8em;
|
1630
|
+
height: 100px;
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
#alchemy .ui-slider-vertical .ui-slider-handle {
|
1634
|
+
left: -.3em;
|
1635
|
+
margin-left: 0;
|
1636
|
+
margin-bottom: -.6em;
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
#alchemy .ui-slider-vertical .ui-slider-range {
|
1640
|
+
left: 0;
|
1641
|
+
width: 100%;
|
1642
|
+
}
|
1643
|
+
|
1644
|
+
#alchemy .ui-slider-vertical .ui-slider-range-min {
|
1645
|
+
bottom: 0;
|
1646
|
+
}
|
1647
|
+
|
1648
|
+
#alchemy .ui-slider-vertical .ui-slider-range-max {
|
1649
|
+
top: 0;
|
1650
|
+
}
|
1651
|
+
|
1652
|
+
/*
|
1653
|
+
* jQuery UI Tabs 1.8.7
|
1654
|
+
*
|
1655
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1656
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1657
|
+
* http://jquery.org/license
|
1658
|
+
*
|
1659
|
+
* http://docs.jquery.com/UI/Tabs#theming
|
1660
|
+
*/
|
1661
|
+
|
1662
|
+
#alchemy .ui-tabs {
|
1663
|
+
position: relative;
|
1664
|
+
padding: 0;
|
1665
|
+
zoom: 1;
|
1666
|
+
margin: 0;
|
1667
|
+
border-style: none;
|
1668
|
+
border-width: 0;
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
1672
|
+
|
1673
|
+
#alchemy .ui-tabs .ui-tabs-nav {
|
1674
|
+
padding: 4px 8px 0;
|
1675
|
+
background: #e5e5e5 url(../../images/alchemy/gui/shading.png) 0 -59px;
|
1676
|
+
-webkit-border-radius: 0;
|
1677
|
+
-moz-border-radius: 0;
|
1678
|
+
border-radius: 0;
|
1679
|
+
margin: 0;
|
1680
|
+
}
|
1681
|
+
|
1682
|
+
#alchemy .ui-tabs .ui-tabs-nav li {
|
1683
|
+
list-style: none;
|
1684
|
+
float: left;
|
1685
|
+
position: relative;
|
1686
|
+
top: 1px;
|
1687
|
+
margin: 0 .2em 1px 0;
|
1688
|
+
border-bottom: 0 !important;
|
1689
|
+
padding: 0;
|
1690
|
+
white-space: nowrap;
|
1691
|
+
background-color: #e5e5e5;
|
1692
|
+
}
|
1693
|
+
|
1694
|
+
#alchemy .ui-tabs .ui-tabs-nav li a {
|
1695
|
+
float: left;
|
1696
|
+
text-decoration: none;
|
1697
|
+
padding: 6px 12px 5px;
|
1698
|
+
}
|
1699
|
+
|
1700
|
+
#alchemy .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
|
1701
|
+
margin-bottom: 0;
|
1702
|
+
padding-bottom: 1px;
|
1703
|
+
background: #EDEDED;
|
1704
|
+
height: 25px;
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
#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 {
|
1708
|
+
cursor: text;
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
#alchemy .ui-tabs .ui-tabs-nav li a, #alchemy .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
|
1712
|
+
cursor: pointer;
|
1713
|
+
}
|
1714
|
+
|
1715
|
+
/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
1716
|
+
|
1717
|
+
#alchemy .ui-tabs .ui-tabs-panel {
|
1718
|
+
display: block;
|
1719
|
+
border-width: 0;
|
1720
|
+
background: none;
|
1721
|
+
}
|
1722
|
+
|
1723
|
+
#alchemy .ui-tabs .ui-tabs-hide {
|
1724
|
+
display: none !important;
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
/* UI Tabs Paging */
|
1728
|
+
|
1729
|
+
#alchemy .ui-tabs li.ui-tabs-paging-next {
|
1730
|
+
float: right !important;
|
1731
|
+
padding: 0 !important;
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
#alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-prev a,
|
1735
|
+
#alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-next a {
|
1736
|
+
display: block;
|
1737
|
+
position: relative;
|
1738
|
+
top: 1px;
|
1739
|
+
border: 0;
|
1740
|
+
z-index: 2;
|
1741
|
+
padding: 5px;
|
1742
|
+
color: #444;
|
1743
|
+
text-decoration: none;
|
1744
|
+
background: #eee;
|
1745
|
+
cursor: pointer;
|
1746
|
+
}
|
1747
|
+
|
1748
|
+
#alchemy .ui-tabs .ui-tabs-paging-next a:hover,
|
1749
|
+
#alchemy .ui-tabs .ui-tabs-paging-next a:focus,
|
1750
|
+
#alchemy .ui-tabs .ui-tabs-paging-next a:active,
|
1751
|
+
#alchemy .ui-tabs .ui-tabs-paging-prev a:hover,
|
1752
|
+
#alchemy .ui-tabs .ui-tabs-paging-prev a:focus,
|
1753
|
+
#alchemy .ui-tabs .ui-tabs-paging-prev a:active {
|
1754
|
+
background: #eee;
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
#alchemy .ui-tabs .ui-tabs-nav .ui-tabs-paging-disabled {
|
1758
|
+
visibility: hidden;
|
1759
|
+
}
|
1760
|
+
|
1761
|
+
/*
|
1762
|
+
* jQuery UI Datepicker 1.8.7
|
1763
|
+
*
|
1764
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
1765
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
1766
|
+
* http://jquery.org/license
|
1767
|
+
*
|
1768
|
+
* http://docs.jquery.com/UI/Datepicker#theming
|
1769
|
+
*/
|
1770
|
+
|
1771
|
+
#alchemy .ui-datepicker {
|
1772
|
+
width: 17em;
|
1773
|
+
padding: .2em .2em 0;
|
1774
|
+
display: none;
|
1775
|
+
}
|
1776
|
+
|
1777
|
+
#alchemy .ui-datepicker .ui-datepicker-header {
|
1778
|
+
position: relative;
|
1779
|
+
padding: .2em 0;
|
1780
|
+
}
|
1781
|
+
|
1782
|
+
#alchemy .ui-datepicker .ui-datepicker-prev, #alchemy .ui-datepicker .ui-datepicker-next {
|
1783
|
+
position: absolute;
|
1784
|
+
top: 2px;
|
1785
|
+
width: 1.8em;
|
1786
|
+
height: 1.8em;
|
1787
|
+
}
|
1788
|
+
|
1789
|
+
#alchemy .ui-datepicker .ui-datepicker-prev-hover, #alchemy .ui-datepicker .ui-datepicker-next-hover {
|
1790
|
+
top: 1px;
|
1791
|
+
}
|
1792
|
+
|
1793
|
+
#alchemy .ui-datepicker .ui-datepicker-prev {
|
1794
|
+
left: 2px;
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
#alchemy .ui-datepicker .ui-datepicker-next {
|
1798
|
+
right: 2px;
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
#alchemy .ui-datepicker .ui-datepicker-prev-hover {
|
1802
|
+
left: 1px;
|
1803
|
+
}
|
1804
|
+
|
1805
|
+
#alchemy .ui-datepicker .ui-datepicker-next-hover {
|
1806
|
+
right: 1px;
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
#alchemy .ui-datepicker .ui-datepicker-prev span, #alchemy .ui-datepicker .ui-datepicker-next span {
|
1810
|
+
display: block;
|
1811
|
+
position: absolute;
|
1812
|
+
left: 50%;
|
1813
|
+
margin-left: -8px;
|
1814
|
+
top: 50%;
|
1815
|
+
margin-top: -8px;
|
1816
|
+
}
|
1817
|
+
|
1818
|
+
#alchemy .ui-datepicker .ui-datepicker-title {
|
1819
|
+
margin: 0 2.3em;
|
1820
|
+
line-height: 1.8em;
|
1821
|
+
text-align: center;
|
1822
|
+
}
|
1823
|
+
|
1824
|
+
#alchemy .ui-datepicker .ui-datepicker-title select {
|
1825
|
+
font-size: 1em;
|
1826
|
+
margin: 1px 0;
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
#alchemy .ui-datepicker select.ui-datepicker-month-year {
|
1830
|
+
width: 100%;
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
#alchemy .ui-datepicker select.ui-datepicker-month,
|
1834
|
+
#alchemy .ui-datepicker select.ui-datepicker-year {
|
1835
|
+
width: 49%;
|
1836
|
+
}
|
1837
|
+
|
1838
|
+
#alchemy .ui-datepicker table {
|
1839
|
+
width: 100%;
|
1840
|
+
font-size: .9em;
|
1841
|
+
border-collapse: collapse;
|
1842
|
+
margin: 0 0 .4em;
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
#alchemy .ui-datepicker th {
|
1846
|
+
padding: .7em .3em;
|
1847
|
+
text-align: center;
|
1848
|
+
font-weight: bold;
|
1849
|
+
border: 0;
|
1850
|
+
}
|
1851
|
+
|
1852
|
+
#alchemy .ui-datepicker td {
|
1853
|
+
border: 0;
|
1854
|
+
padding: 1px;
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
#alchemy .ui-datepicker td span, #alchemy .ui-datepicker td a {
|
1858
|
+
display: block;
|
1859
|
+
padding: .2em;
|
1860
|
+
text-align: right;
|
1861
|
+
text-decoration: none;
|
1862
|
+
}
|
1863
|
+
|
1864
|
+
#alchemy .ui-datepicker .ui-datepicker-buttonpane {
|
1865
|
+
background-image: none;
|
1866
|
+
margin: .7em 0 0 0;
|
1867
|
+
padding: 0 .2em;
|
1868
|
+
border-left: 0;
|
1869
|
+
border-right: 0;
|
1870
|
+
border-bottom: 0;
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
#alchemy .ui-datepicker .ui-datepicker-buttonpane button {
|
1874
|
+
float: right;
|
1875
|
+
margin: .5em .2em .4em;
|
1876
|
+
cursor: pointer;
|
1877
|
+
padding: .2em .6em .3em .6em;
|
1878
|
+
width: auto;
|
1879
|
+
overflow: visible;
|
1880
|
+
}
|
1881
|
+
|
1882
|
+
#alchemy .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
1883
|
+
float: left;
|
1884
|
+
}
|
1885
|
+
|
1886
|
+
/* with multiple calendars */
|
1887
|
+
|
1888
|
+
#alchemy .ui-datepicker.ui-datepicker-multi {
|
1889
|
+
width: auto;
|
1890
|
+
}
|
1891
|
+
|
1892
|
+
#alchemy .ui-datepicker-multi .ui-datepicker-group {
|
1893
|
+
float: left;
|
1894
|
+
}
|
1895
|
+
|
1896
|
+
#alchemy .ui-datepicker-multi .ui-datepicker-group table {
|
1897
|
+
width: 95%;
|
1898
|
+
margin: 0 auto .4em;
|
1899
|
+
}
|
1900
|
+
|
1901
|
+
#alchemy .ui-datepicker-multi-2 .ui-datepicker-group {
|
1902
|
+
width: 50%;
|
1903
|
+
}
|
1904
|
+
|
1905
|
+
#alchemy .ui-datepicker-multi-3 .ui-datepicker-group {
|
1906
|
+
width: 33.3%;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
#alchemy .ui-datepicker-multi-4 .ui-datepicker-group {
|
1910
|
+
width: 25%;
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
#alchemy .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
|
1914
|
+
border-left-width: 0;
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
#alchemy .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
1918
|
+
border-left-width: 0;
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
#alchemy .ui-datepicker-multi .ui-datepicker-buttonpane {
|
1922
|
+
clear: left;
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
#alchemy .ui-datepicker-row-break {
|
1926
|
+
clear: both;
|
1927
|
+
width: 100%;
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
/* RTL support */
|
1931
|
+
|
1932
|
+
#alchemy .ui-datepicker-rtl {
|
1933
|
+
direction: rtl;
|
1934
|
+
}
|
1935
|
+
|
1936
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-prev {
|
1937
|
+
right: 2px;
|
1938
|
+
left: auto;
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-next {
|
1942
|
+
left: 2px;
|
1943
|
+
right: auto;
|
1944
|
+
}
|
1945
|
+
|
1946
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-prev:hover {
|
1947
|
+
right: 1px;
|
1948
|
+
left: auto;
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-next:hover {
|
1952
|
+
left: 1px;
|
1953
|
+
right: auto;
|
1954
|
+
}
|
1955
|
+
|
1956
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-buttonpane {
|
1957
|
+
clear: right;
|
1958
|
+
}
|
1959
|
+
|
1960
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
1961
|
+
float: left;
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
|
1965
|
+
float: right;
|
1966
|
+
}
|
1967
|
+
|
1968
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-group {
|
1969
|
+
float: right;
|
1970
|
+
}
|
1971
|
+
|
1972
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
|
1973
|
+
border-right-width: 0;
|
1974
|
+
border-left-width: 1px;
|
1975
|
+
}
|
1976
|
+
|
1977
|
+
#alchemy .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
1978
|
+
border-right-width: 0;
|
1979
|
+
border-left-width: 1px;
|
1980
|
+
}
|
1981
|
+
|
1982
|
+
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
1983
|
+
|
1984
|
+
#alchemy .ui-datepicker-cover {
|
1985
|
+
display: none;
|
1986
|
+
/*sorry for IE5*/
|
1987
|
+
display/**/: block;
|
1988
|
+
/*sorry for IE5*/
|
1989
|
+
position: absolute;
|
1990
|
+
/*must have*/
|
1991
|
+
z-index: -1;
|
1992
|
+
/*must have*/
|
1993
|
+
filter: mask();
|
1994
|
+
/*must have*/
|
1995
|
+
top: -4px;
|
1996
|
+
/*must have*/
|
1997
|
+
left: -4px;
|
1998
|
+
/*must have*/
|
1999
|
+
width: 200px;
|
2000
|
+
/*must have*/
|
2001
|
+
height: 200px;
|
2002
|
+
/*must have*/
|
2003
|
+
}
|
2004
|
+
|
2005
|
+
/*
|
2006
|
+
* jQuery UI Progressbar 1.8.7
|
2007
|
+
*
|
2008
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
2009
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
2010
|
+
* http://jquery.org/license
|
2011
|
+
*
|
2012
|
+
* http://docs.jquery.com/UI/Progressbar#theming
|
2013
|
+
*/
|
2014
|
+
|
2015
|
+
#alchemy .ui-progressbar {
|
2016
|
+
height: 2em;
|
2017
|
+
text-align: left;
|
2018
|
+
}
|
2019
|
+
|
2020
|
+
#alchemy .ui-progressbar .ui-progressbar-value {
|
2021
|
+
margin: -1px;
|
2022
|
+
height: 100%;
|
2023
|
+
}
|