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