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