browsercms 3.5.7 → 4.0.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/COPYRIGHT.txt +2 -1
- data/README.markdown +3 -3
- data/app/assets/fonts/icomoon.dev.svg +61 -0
- data/app/assets/fonts/icomoon.eot +0 -0
- data/app/assets/fonts/icomoon.svg +61 -0
- data/app/assets/fonts/icomoon.ttf +0 -0
- data/app/assets/fonts/icomoon.woff +0 -0
- data/app/assets/images/ckeditor/plugins/delete_content/icons/deletecontent.png +0 -0
- data/app/assets/images/ckeditor/plugins/edit_content/icons/editcontent.png +0 -0
- data/app/assets/images/ckeditor/plugins/move_content/icons/movecontentdown.png +0 -0
- data/app/assets/images/ckeditor/plugins/move_content/icons/movecontentup.png +0 -0
- data/app/assets/images/cms/arrow-down.png +0 -0
- data/app/assets/images/cms/arrow-up.png +0 -0
- data/app/assets/images/cms/cogs.png +0 -0
- data/app/assets/images/cms/dashboard/home.png +0 -0
- data/app/assets/images/cms/home.png +0 -0
- data/app/assets/images/cms/logo.png +0 -0
- data/app/assets/images/cms/pencil.png +0 -0
- data/app/assets/images/cms/plus.png +0 -0
- data/app/assets/images/cms/user.png +0 -0
- data/app/assets/javascripts/bcms/ckeditor_inline.js +23 -0
- data/app/assets/javascripts/bcms/ckeditor_standard_config.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/delete_content/plugin.js +36 -0
- data/app/assets/javascripts/ckeditor/plugins/edit_content/plugin.js +24 -0
- data/app/assets/javascripts/ckeditor/plugins/move_content/plugin.js +25 -0
- data/app/assets/javascripts/cms/ajax.js +60 -0
- data/app/assets/javascripts/cms/application.js +6 -1
- data/app/assets/javascripts/cms/attachment_manager.js.erb +3 -10
- data/app/assets/javascripts/cms/content_library.js +31 -12
- data/app/assets/javascripts/cms/core_library.js.erb +68 -36
- data/app/assets/javascripts/cms/form_builder.js +250 -0
- data/app/assets/javascripts/cms/namespace.js +2 -0
- data/app/assets/javascripts/cms/new_content_button.js +27 -0
- data/app/assets/javascripts/cms/page_editor.js +188 -0
- data/app/assets/javascripts/cms/page_toolbar.js +13 -0
- data/app/assets/javascripts/cms/site.js +2 -0
- data/app/assets/javascripts/cms/sitemap.js +219 -0
- data/app/assets/javascripts/cms/toolbar.js +17 -1
- data/app/assets/javascripts/cms/user.js +40 -0
- data/app/assets/javascripts/jquery.exists.js +5 -0
- data/app/assets/javascripts/jquery.taglist.js +37 -23
- data/app/assets/stylesheets/cms/_assets.css.scss +55 -0
- data/app/assets/stylesheets/cms/_base.css.scss +42 -0
- data/app/assets/stylesheets/cms/_cms-buttons.css.scss +73 -0
- data/app/assets/stylesheets/cms/_cms-forms.css.scss +70 -0
- data/app/assets/stylesheets/cms/_colors.css.scss +20 -0
- data/app/assets/stylesheets/cms/_dashboard.css.scss +25 -0
- data/app/assets/stylesheets/cms/_glyph.css.scss +60 -0
- data/app/assets/stylesheets/cms/_main-area.css.scss +62 -0
- data/app/assets/stylesheets/cms/_nav.css.scss +197 -0
- data/app/assets/stylesheets/cms/_sidebar.css.scss +64 -0
- data/app/assets/stylesheets/cms/_sitemap.css.scss +196 -0
- data/app/assets/stylesheets/cms/_submenu.css.scss +48 -0
- data/app/assets/stylesheets/cms/application.css.scss +49 -0
- data/app/assets/stylesheets/cms/core.css.scss +96 -0
- data/app/assets/stylesheets/cms/default-forms.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/_animation.css.scss +2 -0
- data/app/assets/stylesheets/cms/includes/_rem.css.scss +120 -0
- data/app/assets/stylesheets/cms/includes/animation/_animate.css.scss +31 -0
- data/app/assets/stylesheets/cms/includes/animation/_core.css.scss +127 -0
- data/app/assets/stylesheets/cms/includes/animation/_shared.css.scss +22 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_attention-seekers.css.scss +152 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_bouncing.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_classes.css.scss +21 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_fading.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_flippers.css.scss +87 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_lightspeed.css.scss +24 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_rotating.css.scss +3 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/_specials.css.scss +42 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/bouncing/_bouncing-entrances.css.scss +68 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/bouncing/_bouncing-exits.css.scss +60 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/fading/_fading-entrances.css.scss +86 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/fading/_fading-exits.css.scss +86 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/rotating/_rotating-entrances.css.scss +58 -0
- data/app/assets/stylesheets/cms/includes/animation/animate/rotating/_rotating-exits.css.scss +58 -0
- data/app/assets/stylesheets/cms/page_content_editing.css.scss +4 -0
- data/app/assets/stylesheets/cms/page_editor.css.scss +4 -0
- data/app/assets/stylesheets/cms/style.css.scss +138 -0
- data/app/assets/stylesheets/cms/styles/_alerts.css.scss +150 -0
- data/app/assets/stylesheets/cms/styles/_base-grid.css.scss +299 -0
- data/app/assets/stylesheets/cms/styles/_buttons.css.scss +247 -0
- data/app/assets/stylesheets/cms/styles/_dropdown.css.scss +155 -0
- data/app/assets/stylesheets/cms/styles/_forms.css.scss +728 -0
- data/app/assets/stylesheets/cms/styles/_glyph.css.scss +86 -0
- data/app/assets/stylesheets/cms/styles/_images.css.scss +75 -0
- data/app/assets/stylesheets/cms/styles/_lists.css.scss +115 -0
- data/app/assets/stylesheets/cms/styles/_modal.css.scss +174 -0
- data/app/assets/stylesheets/cms/styles/_progress.css.scss +43 -0
- data/app/assets/stylesheets/cms/styles/_tables.css.scss +141 -0
- data/app/assets/stylesheets/cms/styles/_text.css.scss +134 -0
- data/app/controllers/cms/application_controller.rb +3 -68
- data/app/controllers/cms/attachments_controller.rb +5 -5
- data/app/controllers/cms/base_controller.rb +20 -13
- data/app/controllers/cms/cache_controller.rb +16 -17
- data/app/controllers/cms/category_types_controller.rb +6 -1
- data/app/controllers/cms/connectors_controller.rb +12 -7
- data/app/controllers/cms/content_block_controller.rb +128 -71
- data/app/controllers/cms/content_controller.rb +54 -56
- data/app/controllers/cms/dashboard_controller.rb +5 -6
- data/app/controllers/cms/dynamic_views_controller.rb +12 -9
- data/app/controllers/cms/email_messages_controller.rb +18 -13
- data/app/controllers/cms/form_entries_controller.rb +119 -0
- data/app/controllers/cms/form_fields_controller.rb +74 -0
- data/app/controllers/cms/forms_controller.rb +35 -0
- data/app/controllers/cms/groups_controller.rb +13 -16
- data/app/controllers/cms/html_blocks_controller.rb +2 -2
- data/app/controllers/cms/inline_content_controller.rb +48 -0
- data/app/controllers/cms/links_controller.rb +58 -46
- data/app/controllers/cms/page_components_controller.rb +20 -0
- data/app/controllers/cms/page_routes_controller.rb +44 -40
- data/app/controllers/cms/pages_controller.rb +111 -97
- data/app/controllers/cms/passwords_controller.rb +17 -0
- data/app/controllers/cms/portlet_controller.rb +0 -1
- data/app/controllers/cms/portlets_controller.rb +20 -27
- data/app/controllers/cms/redirects_controller.rb +13 -9
- data/app/controllers/cms/resource_controller.rb +15 -4
- data/app/controllers/cms/routes_controller.rb +2 -4
- data/app/controllers/cms/section_nodes_controller.rb +6 -37
- data/app/controllers/cms/sections_controller.rb +13 -8
- data/app/controllers/cms/sessions_controller.rb +8 -66
- data/app/controllers/cms/sites/passwords_controller.rb +27 -0
- data/app/controllers/cms/sites/sessions_controller.rb +20 -0
- data/app/controllers/cms/tags_controller.rb +12 -12
- data/app/controllers/cms/tasks_controller.rb +45 -46
- data/app/controllers/cms/user_controller.rb +8 -0
- data/app/controllers/cms/users_controller.rb +91 -68
- data/app/helpers/cms/application_helper.rb +58 -52
- data/app/helpers/cms/content_block_helper.rb +8 -7
- data/app/helpers/cms/form_tag_helper.rb +21 -25
- data/app/helpers/cms/menu_helper.rb +1 -3
- data/app/helpers/cms/mobile_helper.rb +12 -2
- data/app/helpers/cms/nav_menu_helper.rb +23 -0
- data/app/helpers/cms/page_helper.rb +72 -30
- data/app/helpers/cms/path_helper.rb +46 -70
- data/app/helpers/cms/rendering_helper.rb +68 -12
- data/app/helpers/cms/section_nodes_helper.rb +92 -31
- data/app/helpers/cms/sites/authentication_helper.rb +25 -0
- data/app/helpers/cms/sites/devise_shim_helper.rb +31 -0
- data/app/helpers/cms/template_support.rb +1 -7
- data/app/helpers/cms/ui_elements_helper.rb +147 -6
- data/app/helpers/forgot_password_portlet_helper.rb +9 -0
- data/app/helpers/login_portlet_helper.rb +10 -0
- data/app/inputs/attachments_input.rb +14 -0
- data/app/inputs/cms_text_area_input.rb +10 -0
- data/app/inputs/cms_text_field_input.rb +29 -0
- data/app/inputs/date_picker_input.rb +8 -0
- data/app/inputs/file_picker_input.rb +75 -0
- data/app/inputs/path_input.rb +18 -0
- data/app/inputs/tag_list_input.rb +3 -0
- data/app/inputs/template_editor_input.rb +24 -0
- data/app/inputs/text_editor_input.rb +19 -0
- data/app/models/cms/abstract_file_block.rb +10 -6
- data/app/models/cms/attachment.rb +20 -27
- data/app/models/cms/category.rb +17 -7
- data/app/models/cms/category_type.rb +8 -4
- data/app/models/cms/connector.rb +32 -20
- data/app/models/cms/content.rb +31 -0
- data/app/models/cms/content_type.rb +114 -62
- data/app/models/cms/dynamic_view.rb +19 -45
- data/app/models/cms/email_message.rb +32 -2
- data/app/models/cms/external_user.rb +60 -0
- data/app/models/cms/file_block.rb +1 -0
- data/app/models/cms/form.rb +47 -0
- data/app/models/cms/form_entry.rb +71 -0
- data/app/models/cms/form_field.rb +78 -0
- data/app/models/cms/group.rb +19 -9
- data/app/models/cms/group_permission.rb +1 -1
- data/app/models/cms/group_section.rb +1 -1
- data/app/models/cms/group_type.rb +5 -5
- data/app/models/cms/group_type_permission.rb +1 -1
- data/app/models/cms/html_block.rb +14 -19
- data/app/models/cms/image_block.rb +1 -0
- data/app/models/cms/link.rb +8 -6
- data/app/models/cms/page.rb +156 -59
- data/app/models/cms/page_component.rb +43 -0
- data/app/models/cms/page_partial.rb +16 -8
- data/app/models/cms/page_route.rb +1 -1
- data/app/models/cms/page_route_condition.rb +1 -1
- data/app/models/cms/page_route_option.rb +1 -1
- data/app/models/cms/page_route_requirement.rb +1 -1
- data/app/models/cms/page_template.rb +14 -9
- data/app/models/cms/permission.rb +4 -2
- data/app/models/cms/persistent_user.rb +208 -0
- data/app/models/cms/portlet.rb +56 -9
- data/app/models/cms/redirect.rb +1 -1
- data/app/models/cms/search_filter.rb +18 -0
- data/app/models/cms/section.rb +39 -28
- data/app/models/cms/section_node.rb +32 -5
- data/app/models/cms/site.rb +3 -3
- data/app/models/cms/tag.rb +14 -12
- data/app/models/cms/tagging.rb +2 -2
- data/app/models/cms/task.rb +14 -21
- data/app/models/cms/templates.rb +1 -2
- data/app/models/cms/user.rb +21 -160
- data/app/models/cms/user_group_membership.rb +2 -2
- data/app/portlets/deprecated_placeholder.rb +12 -0
- data/app/portlets/dynamic_portlet.rb +1 -1
- data/app/portlets/email_page_portlet.rb +10 -3
- data/app/portlets/forgot_password_portlet.rb +9 -28
- data/app/portlets/login_portlet.rb +8 -5
- data/app/portlets/tag_cloud_portlet.rb +3 -1
- data/app/presenters/cms/user_presenter.rb +24 -0
- data/app/views/cms/application/_add_content_modal.html.erb +3 -0
- data/app/views/cms/application/_buttons.html.erb +7 -0
- data/app/views/cms/{shared → application}/_exception.html.erb +0 -0
- data/app/views/cms/application/_form_errors.html.erb +7 -0
- data/app/views/cms/application/_form_with_buttons.html.erb +10 -0
- data/app/views/cms/application/_main_content.html.erb +3 -0
- data/app/views/cms/application/_main_with_sidebar.html.erb +8 -0
- data/app/views/cms/application/_mobile_toolbar.html.erb +16 -0
- data/app/views/cms/application/_page_title.html.erb +5 -0
- data/app/views/cms/application/_pagination.html.erb +26 -0
- data/app/views/cms/application/_row.html.erb +1 -0
- data/app/views/cms/application/_save_buttons.html.erb +7 -0
- data/app/views/cms/application/_sidebar_layout.html.erb +3 -0
- data/app/views/cms/application/_version.html.erb +23 -0
- data/app/views/cms/{shared → application}/_version_conflict_diff.html.erb +0 -0
- data/app/views/cms/{shared → application}/_version_conflict_error.html.erb +0 -0
- data/app/views/cms/attachments/_attachment_manager.html.erb +22 -0
- data/app/views/cms/attachments/_no_attachments_defined.html.erb +1 -0
- data/app/views/cms/cache/show.html.erb +5 -10
- data/app/views/cms/categories/_form.html.erb +15 -24
- data/app/views/cms/category_types/_form.html.erb +1 -1
- data/app/views/cms/connectors/new.html.erb +33 -64
- data/app/views/cms/content/editing_frame.html.erb +1 -0
- data/app/views/cms/content/no_page.html.erb +9 -27
- data/app/views/cms/content/show.html.erb +14 -15
- data/app/views/cms/content_block/_block_form.html.erb +15 -0
- data/app/views/cms/content_block/_buttonbar.html.erb +29 -0
- data/app/views/cms/content_block/_buttons.html.erb +13 -0
- data/app/views/cms/content_block/_hidden_fields.html.erb +13 -0
- data/app/views/cms/content_block/_sidebar.html.erb +35 -0
- data/app/views/cms/content_block/edit.html.erb +3 -0
- data/app/views/cms/content_block/index.html.erb +87 -0
- data/app/views/cms/content_block/new.html.erb +3 -0
- data/app/views/cms/content_block/render_block_in_main_container.html.erb +10 -0
- data/app/views/cms/content_block/show.html.erb +1 -0
- data/app/views/cms/content_block/show_in_isolation.html.erb +15 -0
- data/app/views/cms/content_block/versions.html.erb +24 -0
- data/app/views/cms/dashboard/_page_drafts.html.erb +12 -22
- data/app/views/cms/dashboard/_tasks.html.erb +32 -45
- data/app/views/cms/dashboard/index.html.erb +11 -13
- data/app/views/cms/dynamic_views/_form.html.erb +8 -10
- data/app/views/cms/dynamic_views/edit.html.erb +2 -3
- data/app/views/cms/dynamic_views/index.html.erb +22 -44
- data/app/views/cms/dynamic_views/new.html.erb +2 -3
- data/app/views/cms/email_messages/index.html.erb +31 -34
- data/app/views/cms/email_messages/show.html.erb +45 -52
- data/app/views/cms/file_blocks/_form.html.erb +2 -4
- data/app/views/cms/form_entries/_buttons.html.erb +2 -0
- data/app/views/cms/form_entries/_form.html.erb +7 -0
- data/app/views/cms/form_entries/_internal_form.html.erb +9 -0
- data/app/views/cms/form_entries/edit.html.erb +5 -0
- data/app/views/cms/form_entries/error.html.erb +3 -0
- data/app/views/cms/form_entries/index.html.erb +4 -0
- data/app/views/cms/form_entries/new.html.erb +5 -0
- data/app/views/cms/form_entries/show.html.erb +13 -0
- data/app/views/cms/form_entries/submit.html.erb +1 -0
- data/app/views/cms/form_fields/_form.html.erb +8 -0
- data/app/views/cms/form_fields/_select.html.erb +3 -0
- data/app/views/cms/form_fields/_text_area.html.erb +3 -0
- data/app/views/cms/form_fields/_text_field.html.erb +3 -0
- data/app/views/cms/form_fields/edit.html.erb +0 -0
- data/app/views/cms/form_fields/new.html.erb +26 -0
- data/app/views/cms/form_fields/preview.html.erb +16 -0
- data/app/views/cms/forms/_form.html.erb +66 -0
- data/app/views/cms/forms/render.html.erb +15 -0
- data/app/views/cms/forms/show.html.erb +6 -0
- data/app/views/cms/groups/_form.html.erb +32 -38
- data/app/views/cms/groups/_permissions.html.erb +11 -34
- data/app/views/cms/groups/_sections.html.erb +11 -17
- data/app/views/cms/groups/edit.html.erb +1 -3
- data/app/views/cms/groups/index.html.erb +10 -32
- data/app/views/cms/groups/new.html.erb +2 -4
- data/app/views/cms/html_blocks/_form.html.erb +2 -2
- data/app/views/cms/html_blocks/render.html.erb +1 -1
- data/app/views/cms/image_blocks/_form.html.erb +3 -3
- data/app/views/cms/links/_form.html.erb +6 -11
- data/app/views/cms/links/edit.html.erb +3 -12
- data/app/views/cms/links/new.html.erb +4 -13
- data/app/views/cms/page_components/_content.html.erb +18 -0
- data/app/views/cms/page_components/new.html.erb +12 -0
- data/app/views/cms/page_routes/_form.html.erb +11 -10
- data/app/views/cms/page_routes/edit.html.erb +2 -3
- data/app/views/cms/page_routes/index.html.erb +25 -48
- data/app/views/cms/page_routes/new.html.erb +2 -3
- data/app/views/cms/pages/_edit_content.html.erb +28 -0
- data/app/views/cms/pages/_form.html.erb +20 -37
- data/app/views/cms/pages/_main_form.html.erb +23 -0
- data/app/views/cms/pages/_simple_container.html.erb +8 -0
- data/app/views/cms/pages/edit.html.erb +2 -23
- data/app/views/cms/pages/new.html.erb +2 -16
- data/app/views/cms/pages/versions.html.erb +18 -87
- data/app/views/cms/redirects/_form.html.erb +6 -14
- data/app/views/cms/redirects/edit.html.erb +2 -3
- data/app/views/cms/redirects/index.html.erb +24 -50
- data/app/views/cms/redirects/new.html.erb +2 -3
- data/app/views/cms/routes/index.html.erb +15 -20
- data/app/views/cms/section_nodes/_children.html.erb +3 -0
- data/app/views/cms/section_nodes/_row_buttons.html.erb +11 -0
- data/app/views/cms/section_nodes/_section_node.html.erb +24 -10
- data/app/views/cms/section_nodes/_sitemap_buttons.html.erb +47 -0
- data/app/views/cms/section_nodes/_status.html.erb +5 -0
- data/app/views/cms/section_nodes/show.html.erb +9 -0
- data/app/views/cms/sections/_buttons.html.erb +6 -0
- data/app/views/cms/sections/_form.html.erb +22 -49
- data/app/views/cms/sections/edit.html.erb +3 -8
- data/app/views/cms/sections/new.html.erb +4 -20
- data/app/views/cms/sessions/new.html.erb +16 -31
- data/app/views/cms/shared/access_denied.html.erb +1 -2
- data/app/views/cms/shared/error.html.erb +5 -5
- data/app/views/cms/sites/_flash.html.erb +8 -0
- data/app/views/cms/sites/passwords/new.html.erb +2 -0
- data/app/views/cms/sites/sessions/new.html.erb +2 -0
- data/app/views/cms/tags/_form.html.erb +1 -1
- data/app/views/cms/tags/render.html.erb +0 -1
- data/app/views/cms/tasks/new.html.erb +18 -32
- data/app/views/cms/toolbar/_new_pages_menu.html.erb +10 -0
- data/app/views/cms/users/_form.html.erb +8 -11
- data/app/views/cms/users/_password.html.erb +2 -8
- data/app/views/cms/users/_user_fields.html.erb +7 -20
- data/app/views/cms/users/change_password.html.erb +12 -21
- data/app/views/cms/users/edit.html.erb +1 -15
- data/app/views/cms/users/index.html.erb +61 -58
- data/app/views/cms/users/new.html.erb +1 -12
- data/app/views/devise/confirmations/new.html.erb +16 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +19 -0
- data/app/views/devise/passwords/new.html.erb +15 -0
- data/app/views/devise/registrations/edit.html.erb +28 -0
- data/app/views/devise/registrations/new.html.erb +18 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +16 -0
- data/app/views/layouts/cms/_content_types.html.erb +13 -0
- data/app/views/layouts/cms/_footer.erb +2 -2
- data/app/views/layouts/cms/_head.html.erb +8 -18
- data/app/views/layouts/cms/_main_menu.html.erb +78 -0
- data/app/views/layouts/cms/application.html.erb +19 -24
- data/app/views/layouts/cms/content_page.html.erb +5 -0
- data/app/views/layouts/cms/page_editor.html.erb +90 -0
- data/app/views/portlets/deprecated_placeholders/_form.html.erb +1 -0
- data/app/views/portlets/deprecated_placeholders/render.html.erb +8 -0
- data/app/views/portlets/dynamic/_form.html.erb +3 -3
- data/app/views/portlets/email_page/_form.html.erb +5 -6
- data/app/views/portlets/forgot_password/_form.html.erb +2 -3
- data/app/views/portlets/forgot_password/render.html.erb +2 -14
- data/app/views/portlets/login/_form.html.erb +4 -6
- data/app/views/portlets/login/render.html.erb +8 -27
- data/app/views/portlets/portlets/_form.html.erb +7 -6
- data/app/views/portlets/tag_cloud/_form.html.erb +4 -4
- data/app/views/tests/pretend/open_with_layout.html.erb +1 -1
- data/bin/bcms +13 -16
- data/config/routes.rb +58 -29
- data/db/browsercms.seeds.rb +0 -6
- data/db/migrate/{20080815014337_browsercms_3_0_0.rb → 20080815014337_browsercms300.rb} +94 -73
- data/db/migrate/20130327184912_browsercms400.rb +90 -0
- data/db/migrate/20131206214021_devise_create_users.rb +47 -0
- data/db/migrate/20131211223908_kill_reset_password.rb +5 -0
- data/db/migrate/20131218222005_create_cms_external_users.rb +10 -0
- data/doc/features/design_integration.md +45 -0
- data/doc/features/external_user.md +7 -0
- data/doc/features/form_builder.md +40 -0
- data/doc/features/simple_form_refactor.md +60 -0
- data/doc/release_notes.md +224 -10
- data/lib/acts_as_list.rb +72 -71
- data/lib/browsercms.rb +41 -1
- data/lib/cms/acts/content_block.rb +12 -2
- data/lib/cms/acts/content_page.rb +3 -4
- data/lib/cms/admin_tab.rb +15 -0
- data/lib/cms/attachments/configuration.rb +1 -1
- data/lib/cms/authentication/controller.rb +83 -177
- data/lib/cms/authentication/test_password_strategy.rb +19 -0
- data/lib/cms/behaviors.rb +1 -0
- data/lib/cms/behaviors/archiving.rb +2 -2
- data/lib/cms/behaviors/attaching.rb +21 -45
- data/lib/cms/behaviors/connecting.rb +14 -4
- data/lib/cms/behaviors/dynamic_attributes.rb +3 -3
- data/lib/cms/behaviors/hiding.rb +2 -2
- data/lib/cms/behaviors/namespacing.rb +6 -36
- data/lib/cms/behaviors/publishing.rb +92 -45
- data/lib/cms/behaviors/rendering.rb +15 -7
- data/lib/cms/behaviors/searching.rb +5 -4
- data/lib/cms/behaviors/soft_deleting.rb +13 -16
- data/lib/cms/behaviors/taggable.rb +17 -10
- data/lib/cms/behaviors/versioning.rb +12 -16
- data/lib/cms/commands/to_version400.rb +10 -0
- data/lib/cms/concerns.rb +7 -0
- data/lib/cms/concerns/can_be_addressable.rb +326 -0
- data/lib/cms/concerns/has_content_type.rb +46 -0
- data/lib/cms/concerns/ignores_publishing.rb +9 -0
- data/lib/cms/configuration.rb +14 -4
- data/lib/cms/configuration/configurable_template.rb +24 -0
- data/lib/cms/configuration/devise.rb +256 -0
- data/lib/cms/configure_simple_form.rb +142 -0
- data/lib/cms/configure_simple_form_bootstrap.rb +49 -0
- data/lib/cms/content_filter.rb +18 -0
- data/lib/cms/content_page.rb +77 -0
- data/lib/cms/content_rendering_support.rb +25 -16
- data/lib/cms/controllers/admin_controller.rb +78 -0
- data/lib/cms/data_loader.rb +30 -11
- data/lib/cms/default_accessible.rb +6 -6
- data/lib/cms/domain_support.rb +0 -4
- data/lib/cms/engine.rb +52 -20
- data/lib/cms/engine_helper.rb +41 -51
- data/{app/controllers → lib}/cms/error_handling.rb +11 -5
- data/lib/cms/extensions.rb +2 -1
- data/lib/cms/extensions/active_model/name.rb +13 -0
- data/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements.rb +49 -89
- data/lib/cms/extensions/hash.rb +0 -12
- data/lib/cms/form_builder/content_block_form_builder.rb +45 -0
- data/lib/cms/form_builder/default_input.rb +13 -0
- data/lib/cms/form_builder/deprecated_inputs.rb +40 -0
- data/lib/cms/form_builder/workflow_buttons.rb +38 -0
- data/lib/cms/module.rb +1 -7
- data/lib/cms/polymorphic_single_table_inheritance.rb +19 -0
- data/lib/cms/publish_workflow.rb +26 -0
- data/lib/cms/responders/content_responder.rb +14 -0
- data/lib/cms/route_extensions.rb +112 -20
- data/lib/cms/version.rb +1 -1
- data/lib/generators/browser_cms/demo_site/templates/demo.seeds.rb +0 -2
- data/lib/generators/cms/content_block/content_block_generator.rb +19 -46
- data/lib/generators/cms/content_block/templates/_form.html.erb +22 -28
- data/lib/generators/cms/project/templates/devise.rb.erb +7 -0
- metadata +383 -150
- data/app/assets/javascripts/cms/sitemap.js.erb +0 -464
- data/app/assets/stylesheets/browsercms/application.css +0 -7
- data/app/assets/stylesheets/cms/administration.css.erb +0 -91
- data/app/assets/stylesheets/cms/application.css.erb +0 -171
- data/app/assets/stylesheets/cms/attachment_manager.css.scss +0 -28
- data/app/assets/stylesheets/cms/block.css +0 -26
- data/app/assets/stylesheets/cms/buttons.css.erb +0 -120
- data/app/assets/stylesheets/cms/content_library.css.erb +0 -139
- data/app/assets/stylesheets/cms/content_types.css +0 -4
- data/app/assets/stylesheets/cms/dashboard.css.erb +0 -118
- data/app/assets/stylesheets/cms/data_table.css.erb.erb +0 -156
- data/app/assets/stylesheets/cms/date_picker.css.erb +0 -82
- data/app/assets/stylesheets/cms/form_layout.css.erb +0 -282
- data/app/assets/stylesheets/cms/login.css.erb +0 -78
- data/app/assets/stylesheets/cms/menu.css.erb +0 -116
- data/app/assets/stylesheets/cms/nav.css.erb +0 -99
- data/app/assets/stylesheets/cms/page_toolbar.css.erb +0 -135
- data/app/assets/stylesheets/cms/reset.css +0 -46
- data/app/assets/stylesheets/cms/selectbox.css.erb +0 -56
- data/app/assets/stylesheets/cms/sitemap.css.erb +0 -390
- data/app/assets/stylesheets/cms/taglist.css +0 -18
- data/app/controllers/application_controller.rb +0 -14
- data/app/controllers/cms/content_types_controller.rb +0 -9
- data/app/helpers/application_helper.rb +0 -5
- data/app/helpers/cms/form_builder.rb +0 -241
- data/app/models/cms/content_type_group.rb +0 -15
- data/app/models/cms/forgot_password_mailer.rb +0 -14
- data/app/portlets/reset_password_portlet.rb +0 -28
- data/app/views/cms/blocks/_hidden_fields.html.erb +0 -10
- data/app/views/cms/blocks/_toolbar.html.erb +0 -9
- data/app/views/cms/blocks/_toolbar_for_collection.html.erb +0 -23
- data/app/views/cms/blocks/_toolbar_for_member.html.erb +0 -36
- data/app/views/cms/blocks/edit.html.erb +0 -28
- data/app/views/cms/blocks/index.html.erb +0 -86
- data/app/views/cms/blocks/new.html.erb +0 -19
- data/app/views/cms/blocks/show.html.erb +0 -43
- data/app/views/cms/blocks/usages.html.erb +0 -44
- data/app/views/cms/blocks/versions.html.erb +0 -90
- data/app/views/cms/content_types/index.html.erb +0 -14
- data/app/views/cms/form_builder/_cms_attachment_manager.html.erb +0 -27
- data/app/views/cms/form_builder/_cms_check_box.html.erb +0 -7
- data/app/views/cms/form_builder/_cms_date_picker.html.erb +0 -12
- data/app/views/cms/form_builder/_cms_datetime_select.html.erb +0 -12
- data/app/views/cms/form_builder/_cms_drop_down.html.erb +0 -12
- data/app/views/cms/form_builder/_cms_fancy_drop_down.html.erb +0 -9
- data/app/views/cms/form_builder/_cms_file_field.html.erb +0 -28
- data/app/views/cms/form_builder/_cms_instructions.html.erb +0 -4
- data/app/views/cms/form_builder/_cms_tag_list.html.erb +0 -15
- data/app/views/cms/form_builder/_cms_template_editor.html.erb +0 -9
- data/app/views/cms/form_builder/_cms_text_area.html.erb +0 -10
- data/app/views/cms/form_builder/_cms_text_editor.html.erb +0 -19
- data/app/views/cms/form_builder/_cms_text_field.html.erb +0 -12
- data/app/views/cms/links/destroy.js.rjs +0 -2
- data/app/views/cms/page_routes/show.html.erb +0 -10
- data/app/views/cms/pages/_edit_connector.html.erb +0 -19
- data/app/views/cms/pages/_edit_container.html.erb +0 -11
- data/app/views/cms/section_nodes/_link.html.erb +0 -14
- data/app/views/cms/section_nodes/_node.html.erb +0 -44
- data/app/views/cms/section_nodes/_page.html.erb +0 -20
- data/app/views/cms/section_nodes/_section.html.erb +0 -28
- data/app/views/cms/section_nodes/index.html.erb +0 -43
- data/app/views/cms/sections/_page.html.erb +0 -4
- data/app/views/cms/sections/_section.html.erb +0 -8
- data/app/views/cms/sections/destroy.js.rjs +0 -2
- data/app/views/cms/sections/index.html.erb +0 -23
- data/app/views/cms/shared/_admin_sidebar.html.erb +0 -36
- data/app/views/cms/shared/_pagination.html.erb +0 -31
- data/app/views/cms/toolbar/_mobile_toggle.html.erb +0 -33
- data/app/views/cms/toolbar/index.html.erb +0 -1
- data/app/views/cms/users/_groups.html.erb +0 -12
- data/app/views/cms/users/_toolbar.html.erb +0 -24
- data/app/views/cms/users/show.html.erb +0 -50
- data/app/views/layouts/_cms_toolbar.html.erb +0 -54
- data/app/views/layouts/_page_toolbar.html.erb +0 -119
- data/app/views/layouts/cms/administration.html.erb +0 -51
- data/app/views/layouts/cms/content_library.html.erb +0 -96
- data/app/views/layouts/cms/dashboard.html.erb +0 -16
- data/app/views/layouts/cms/login.html.erb +0 -31
- data/app/views/layouts/cms/section_nodes.html.erb +0 -20
- data/app/views/layouts/cms/toolbar.html.erb +0 -23
- data/app/views/portlets/reset_password/_form.html.erb +0 -3
- data/app/views/portlets/reset_password/render.html.erb +0 -22
- data/bin/bcms-upgrade +0 -332
- data/db/migrate/20091109175123_browsercms_3_0_5.rb +0 -9
- data/db/migrate/20100117144038_browsercms314.rb +0 -20
- data/db/migrate/20100117144039_browsercms315.rb +0 -95
- data/db/migrate/20100705083859_browsercms_3_3_0.rb +0 -56
- data/db/migrate/20111130221145_browsercms340.rb +0 -56
- data/db/migrate/20120329144406_browsercms350.rb +0 -32
- data/db/migrate/20120717182827_browsercms353.rb +0 -19
- data/db/migrate/20120813180110_browsercms354.rb +0 -9
- data/lib/cms/addressable.rb +0 -93
- data/lib/cms/authentication/model.rb +0 -116
- data/lib/cms/behaviors/pagination.rb +0 -212
- data/lib/cms/upgrades/v3_4_0.rb +0 -31
- data/lib/cms/upgrades/v3_5_0.rb +0 -227
@@ -0,0 +1,155 @@
|
|
1
|
+
/* DROPDOWN STYLES */
|
2
|
+
.dropup,
|
3
|
+
.dropdown {
|
4
|
+
position: relative;
|
5
|
+
}
|
6
|
+
|
7
|
+
.dropdown-toggle {
|
8
|
+
*margin-bottom: -3px;
|
9
|
+
}
|
10
|
+
|
11
|
+
.dropdown-toggle:active,
|
12
|
+
.open .dropdown-toggle {
|
13
|
+
outline: 0;
|
14
|
+
}
|
15
|
+
|
16
|
+
.caret {
|
17
|
+
font-size: 1em;
|
18
|
+
margin: 0;
|
19
|
+
padding: 0;
|
20
|
+
vertical-align: top;
|
21
|
+
border-top: none;
|
22
|
+
display: inline;
|
23
|
+
|
24
|
+
&:before {
|
25
|
+
content: "\25BE";
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
.dropdown .caret {
|
30
|
+
}
|
31
|
+
|
32
|
+
.dropdown-menu {
|
33
|
+
position: absolute;
|
34
|
+
top: 100%;
|
35
|
+
left: 0;
|
36
|
+
z-index: 1000;
|
37
|
+
display: none;
|
38
|
+
float: left;
|
39
|
+
@include rem(padding, 0.5rem 0);
|
40
|
+
margin: 0;
|
41
|
+
margin-top: 5px;
|
42
|
+
margin-left: -1px;
|
43
|
+
list-style: none;
|
44
|
+
min-width: 100%;
|
45
|
+
background-color: #ffffff;
|
46
|
+
border: 1px solid rgba(black,0.375);
|
47
|
+
*border-right-width: 2px;
|
48
|
+
*border-bottom-width: 2px;
|
49
|
+
@include border-radius(0 0 5px 5px);
|
50
|
+
|
51
|
+
&:after {
|
52
|
+
width: 16px;
|
53
|
+
height: 16px;
|
54
|
+
background: white;
|
55
|
+
display: block;
|
56
|
+
position: absolute;
|
57
|
+
bottom: 100%;
|
58
|
+
left: 26px;
|
59
|
+
margin-bottom: -8px;
|
60
|
+
border-left: 1px solid rgba(black,0.375);
|
61
|
+
border-top: 1px solid rgba(black,0.375);
|
62
|
+
@include rotate(45deg);
|
63
|
+
content: "";
|
64
|
+
}
|
65
|
+
|
66
|
+
li {
|
67
|
+
margin-bottom: 0;
|
68
|
+
z-index: 5;
|
69
|
+
position: relative;
|
70
|
+
|
71
|
+
&:before {
|
72
|
+
display: none;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
.dropdown-menu.pull-right {
|
78
|
+
right: 0;
|
79
|
+
left: auto;
|
80
|
+
|
81
|
+
&:after {
|
82
|
+
left: auto;
|
83
|
+
right: 26px;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
.dropdown-menu .divider {
|
88
|
+
width: 100%;
|
89
|
+
height: 1px;
|
90
|
+
display: block;
|
91
|
+
@include rem(margin,0.5rem 0);
|
92
|
+
*margin: -5px 0 5px;
|
93
|
+
overflow: hidden;
|
94
|
+
background: rgba(black,0.1);
|
95
|
+
}
|
96
|
+
|
97
|
+
.dropdown-menu > li > a {
|
98
|
+
display: block;
|
99
|
+
@include rem(padding, 0 1.5rem 0 0.75rem);
|
100
|
+
@include rem(font-size,1rem);
|
101
|
+
clear: both;
|
102
|
+
font-weight: normal;
|
103
|
+
@include rem(line-height, 2.15rem);
|
104
|
+
margin: 0;
|
105
|
+
color: $dark;
|
106
|
+
white-space: nowrap;
|
107
|
+
}
|
108
|
+
|
109
|
+
.dropdown-menu > li > a:hover,
|
110
|
+
.dropdown-menu > li > a:focus,
|
111
|
+
.dropdown-submenu:hover > a,
|
112
|
+
.dropdown-submenu:focus > a {
|
113
|
+
color: $dark;
|
114
|
+
text-decoration: none;
|
115
|
+
background-color: rgba($primary,0.1);
|
116
|
+
background-image: none;
|
117
|
+
}
|
118
|
+
|
119
|
+
.dropdown-menu > .active > a,
|
120
|
+
.dropdown-menu > .active > a:hover,
|
121
|
+
.dropdown-menu > .active > a:focus {
|
122
|
+
color: #ffffff;
|
123
|
+
text-decoration: none;
|
124
|
+
background-color: #0081c2;
|
125
|
+
outline: 0;
|
126
|
+
}
|
127
|
+
|
128
|
+
.dropdown-menu > .disabled > a,
|
129
|
+
.dropdown-menu > .disabled > a:hover,
|
130
|
+
.dropdown-menu > .disabled > a:focus {
|
131
|
+
color: #999999;
|
132
|
+
}
|
133
|
+
|
134
|
+
.dropdown-menu > .disabled > a:hover,
|
135
|
+
.dropdown-menu > .disabled > a:focus {
|
136
|
+
text-decoration: none;
|
137
|
+
cursor: default;
|
138
|
+
background-color: transparent;
|
139
|
+
background-image: none;
|
140
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
.open {
|
145
|
+
*z-index: 1000;
|
146
|
+
}
|
147
|
+
.open > .dropdown-toggle {
|
148
|
+
background: darken($light,15%);
|
149
|
+
}
|
150
|
+
.open > .btn-primary.dropdown-toggle {
|
151
|
+
background: darken($primary,5%);
|
152
|
+
}
|
153
|
+
.open > .dropdown-menu {
|
154
|
+
display: block;
|
155
|
+
}
|
@@ -0,0 +1,728 @@
|
|
1
|
+
/* FORM STYLES */
|
2
|
+
form {
|
3
|
+
@include rem(margin-bottom, 1.5rem);
|
4
|
+
padding: 0;
|
5
|
+
}
|
6
|
+
fieldset {
|
7
|
+
padding: 0;
|
8
|
+
margin: 0;
|
9
|
+
border: 0;
|
10
|
+
}
|
11
|
+
|
12
|
+
.form-inline .btn {
|
13
|
+
@include rem(height,2.5rem);
|
14
|
+
vertical-align: top;
|
15
|
+
@include rem(font-size, 1rem);
|
16
|
+
@include rem(line-height, 1.25rem);
|
17
|
+
}
|
18
|
+
|
19
|
+
legend {
|
20
|
+
display: block;
|
21
|
+
width: 100%;
|
22
|
+
padding: 0;
|
23
|
+
@include rem(margin-bottom, 1rem);
|
24
|
+
font-family: 'Roboto', sans-serif;
|
25
|
+
@include rem(font-size,1.4rem);
|
26
|
+
@include rem(padding-bottom,0.75rem);
|
27
|
+
font-weight: 500;
|
28
|
+
line-height: 1.25;
|
29
|
+
color: $dark;
|
30
|
+
border-bottom: 1px solid $light;
|
31
|
+
|
32
|
+
small {
|
33
|
+
@include rem(font-size,1.1rem);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
label,
|
38
|
+
input,
|
39
|
+
select,
|
40
|
+
textarea,
|
41
|
+
.uneditable-input {
|
42
|
+
font-family: 'Source Sans Pro', sans-serif;
|
43
|
+
@include rem(font-size, 1.1rem);
|
44
|
+
line-height: 1.3;
|
45
|
+
font-weight: 400;
|
46
|
+
color: $dark;
|
47
|
+
}
|
48
|
+
label {
|
49
|
+
display: block;
|
50
|
+
@include rem(margin-bottom,0.4rem);
|
51
|
+
@include rem(margin-top,0.5rem);
|
52
|
+
}
|
53
|
+
|
54
|
+
select,
|
55
|
+
textarea,
|
56
|
+
input[type="text"],
|
57
|
+
input[type="password"],
|
58
|
+
input[type="datetime"],
|
59
|
+
input[type="datetime-local"],
|
60
|
+
input[type="date"],
|
61
|
+
input[type="month"],
|
62
|
+
input[type="time"],
|
63
|
+
input[type="week"],
|
64
|
+
input[type="number"],
|
65
|
+
input[type="email"],
|
66
|
+
input[type="url"],
|
67
|
+
input[type="search"],
|
68
|
+
input[type="tel"],
|
69
|
+
input[type="color"],
|
70
|
+
input[type="tag_list"],
|
71
|
+
input[type="number"],
|
72
|
+
.uneditable-input {
|
73
|
+
@include rem(height, 2.5rem);
|
74
|
+
@include rem(padding, 0.5rem 0.65rem);
|
75
|
+
@include rem(margin-bottom,0.75rem);
|
76
|
+
@include rem(font-size, 1rem);
|
77
|
+
@include rem(line-height, 1.5rem);
|
78
|
+
@include rem(font-size,1rem);
|
79
|
+
vertical-align: middle;
|
80
|
+
color: lighten($dark,10%);
|
81
|
+
@include border-radius(5px);
|
82
|
+
}
|
83
|
+
input[type="date"] {
|
84
|
+
min-width: 166px;
|
85
|
+
}
|
86
|
+
|
87
|
+
input,
|
88
|
+
textarea,
|
89
|
+
.uneditable-input {
|
90
|
+
@include rem(width, 25rem);
|
91
|
+
}
|
92
|
+
textarea {
|
93
|
+
height: auto;
|
94
|
+
resize: both;
|
95
|
+
max-width: 100%;
|
96
|
+
}
|
97
|
+
|
98
|
+
textarea,
|
99
|
+
input[type="text"],
|
100
|
+
input[type="password"],
|
101
|
+
input[type="datetime"],
|
102
|
+
input[type="datetime-local"],
|
103
|
+
input[type="date"],
|
104
|
+
input[type="month"],
|
105
|
+
input[type="time"],
|
106
|
+
input[type="week"],
|
107
|
+
input[type="number"],
|
108
|
+
input[type="email"],
|
109
|
+
input[type="url"],
|
110
|
+
input[type="search"],
|
111
|
+
input[type="tel"],
|
112
|
+
input[type="color"],
|
113
|
+
input[type="tag_list"],
|
114
|
+
input[type="number"],
|
115
|
+
.uneditable-input {
|
116
|
+
background: white;
|
117
|
+
border: 1px solid rgba(black,0.15);
|
118
|
+
@include transition(border 0.2s, background 0.2s);
|
119
|
+
}
|
120
|
+
.uneditable-input,
|
121
|
+
.uneditable-textarea {
|
122
|
+
display: inline-block;
|
123
|
+
cursor: not-allowed;
|
124
|
+
background-color: rgba($light,0.6);
|
125
|
+
}
|
126
|
+
.uneditable-input {
|
127
|
+
overflow: hidden;
|
128
|
+
white-space: nowrap;
|
129
|
+
}
|
130
|
+
.uneditable-textarea {
|
131
|
+
width: auto;
|
132
|
+
height: auto;
|
133
|
+
}
|
134
|
+
|
135
|
+
textarea:focus,
|
136
|
+
input[type="text"]:focus,
|
137
|
+
input[type="password"]:focus,
|
138
|
+
input[type="datetime"]:focus,
|
139
|
+
input[type="datetime-local"]:focus,
|
140
|
+
input[type="date"]:focus,
|
141
|
+
input[type="month"]:focus,
|
142
|
+
input[type="time"]:focus,
|
143
|
+
input[type="week"]:focus,
|
144
|
+
input[type="number"]:focus,
|
145
|
+
input[type="email"]:focus,
|
146
|
+
input[type="url"]:focus,
|
147
|
+
input[type="search"]:focus,
|
148
|
+
input[type="tel"]:focus,
|
149
|
+
input[type="color"]:focus,
|
150
|
+
input[type="tag_list"]:focus,
|
151
|
+
.uneditable-input:focus {
|
152
|
+
outline: 0;
|
153
|
+
outline: thin dotted \9;
|
154
|
+
border: 1px solid rgba(black,0.35);
|
155
|
+
background: rgba($light,0.5);
|
156
|
+
}
|
157
|
+
|
158
|
+
input[type="radio"],
|
159
|
+
input[type="checkbox"] {
|
160
|
+
@include rem(margin, 0.2rem 1rem 0.5rem 0);
|
161
|
+
margin-top: 1px \9;
|
162
|
+
*margin-top: 0;
|
163
|
+
line-height: normal;
|
164
|
+
}
|
165
|
+
|
166
|
+
input[type="file"],
|
167
|
+
input[type="image"],
|
168
|
+
input[type="submit"],
|
169
|
+
input[type="reset"],
|
170
|
+
input[type="button"],
|
171
|
+
input[type="radio"],
|
172
|
+
input[type="checkbox"] {
|
173
|
+
width: auto;
|
174
|
+
}
|
175
|
+
select,
|
176
|
+
input[type="file"] {
|
177
|
+
@include rem(height, 2.5rem);
|
178
|
+
/* In IE7, the height of the select element cannot be changed by height, only font-size */
|
179
|
+
*margin-top: 4px;
|
180
|
+
/* For IE7, add top margin to align select with labels */
|
181
|
+
@include rem(line-height, 1.5rem);
|
182
|
+
}
|
183
|
+
|
184
|
+
select {
|
185
|
+
@include rem(width, 25rem);
|
186
|
+
@include rem(padding, 0.5rem 0.65rem);
|
187
|
+
background-color: white;
|
188
|
+
border: 1px solid rgba(black,0.15);
|
189
|
+
}
|
190
|
+
select[multiple],
|
191
|
+
select[size] {
|
192
|
+
height: auto;
|
193
|
+
}
|
194
|
+
select:focus,
|
195
|
+
input[type="file"]:focus,
|
196
|
+
input[type="radio"]:focus,
|
197
|
+
input[type="checkbox"]:focus {
|
198
|
+
outline: thin dotted #333;
|
199
|
+
outline: 5px auto -webkit-focus-ring-color;
|
200
|
+
outline-offset: -2px;
|
201
|
+
}
|
202
|
+
|
203
|
+
input:-moz-placeholder,
|
204
|
+
textarea:-moz-placeholder {
|
205
|
+
color: rgba($dark,0.5);
|
206
|
+
}
|
207
|
+
input:-ms-input-placeholder,
|
208
|
+
textarea:-ms-input-placeholder {
|
209
|
+
color: rgba($dark,0.5);
|
210
|
+
}
|
211
|
+
input::-webkit-input-placeholder,
|
212
|
+
textarea::-webkit-input-placeholder {
|
213
|
+
color: rgba($dark,0.5);
|
214
|
+
}
|
215
|
+
|
216
|
+
.radio,
|
217
|
+
.checkbox {
|
218
|
+
@include rem(min-height,1.5rem);
|
219
|
+
@include rem(padding-left,1.5rem);
|
220
|
+
}
|
221
|
+
|
222
|
+
.radio input[type="radio"],
|
223
|
+
.checkbox input[type="checkbox"] {
|
224
|
+
float: left;
|
225
|
+
@include rem(margin-left, -1.5rem);
|
226
|
+
@include rem(margin-top,0.25rem);
|
227
|
+
}
|
228
|
+
|
229
|
+
.controls > .radio:first-child,
|
230
|
+
.controls > .checkbox:first-child {
|
231
|
+
@include rem(padding-top, 0.6rem);
|
232
|
+
}
|
233
|
+
|
234
|
+
.radio.inline,
|
235
|
+
.checkbox.inline {
|
236
|
+
display: inline-block;
|
237
|
+
@include rem(padding-top, 0.5rem);
|
238
|
+
margin-bottom: 0;
|
239
|
+
vertical-align: middle;
|
240
|
+
@include rem(margin-right, 0);
|
241
|
+
}
|
242
|
+
.radio.inline + .radio.inline,
|
243
|
+
.checkbox.inline + .checkbox.inline {
|
244
|
+
@include rem(margin-left,2.5rem);
|
245
|
+
}
|
246
|
+
|
247
|
+
|
248
|
+
.input-mini {
|
249
|
+
@include rem(width, 5rem);
|
250
|
+
}
|
251
|
+
.input-small {
|
252
|
+
@include rem(width, 9rem);
|
253
|
+
}
|
254
|
+
.input-medium {
|
255
|
+
@include rem(width, 12rem);
|
256
|
+
}
|
257
|
+
.input-large {
|
258
|
+
@include rem(width, 15rem);
|
259
|
+
}
|
260
|
+
.input-xlarge {
|
261
|
+
@include rem(width, 22rem);
|
262
|
+
}
|
263
|
+
.input-xxlarge {
|
264
|
+
@include rem(width, 35rem);
|
265
|
+
@include rem(font-size, 1.2rem !important);
|
266
|
+
@include rem(height,3.25rem !important);
|
267
|
+
@include rem(line-height,3.1rem !important);
|
268
|
+
}
|
269
|
+
.input-block-level {
|
270
|
+
display: block;
|
271
|
+
width: 100%;
|
272
|
+
}
|
273
|
+
|
274
|
+
|
275
|
+
.help-block,
|
276
|
+
.help-inline {
|
277
|
+
font-family: 'Source Sans Pro', sans-serif;
|
278
|
+
@include rem(font-size, 0.95rem);
|
279
|
+
line-height: 1;
|
280
|
+
font-weight: 400;
|
281
|
+
color: $dark;
|
282
|
+
}
|
283
|
+
.help-block {
|
284
|
+
display: block;
|
285
|
+
@include rem(margin-bottom, 1rem);
|
286
|
+
}
|
287
|
+
.help-inline {
|
288
|
+
display: inline-block;
|
289
|
+
*display: inline;
|
290
|
+
line-height: 1;
|
291
|
+
@include rem(margin-bottom,0.875rem);
|
292
|
+
@include rem(padding-left, 1rem);
|
293
|
+
vertical-align: middle;
|
294
|
+
*zoom: 1;
|
295
|
+
}
|
296
|
+
|
297
|
+
|
298
|
+
.input-append,
|
299
|
+
.input-prepend {
|
300
|
+
display: inline-block;
|
301
|
+
@include rem(margin-bottom, 1rem);
|
302
|
+
font-size: 0;
|
303
|
+
white-space: nowrap;
|
304
|
+
vertical-align: middle;
|
305
|
+
}
|
306
|
+
|
307
|
+
.input-append input,
|
308
|
+
.input-prepend input,
|
309
|
+
.input-append select,
|
310
|
+
.input-prepend select,
|
311
|
+
.input-append .uneditable-input,
|
312
|
+
.input-prepend .uneditable-input,
|
313
|
+
.input-append .dropdown-menu,
|
314
|
+
.input-prepend .dropdown-menu,
|
315
|
+
.input-append .popover,
|
316
|
+
.input-prepend .popover {
|
317
|
+
@include rem(font-size, 1rem);
|
318
|
+
}
|
319
|
+
|
320
|
+
.input-append input,
|
321
|
+
.input-prepend input,
|
322
|
+
.input-append select,
|
323
|
+
.input-prepend select,
|
324
|
+
.input-append .uneditable-input,
|
325
|
+
.input-prepend .uneditable-input {
|
326
|
+
position: relative;
|
327
|
+
margin-bottom: 0;
|
328
|
+
*margin-left: 0;
|
329
|
+
vertical-align: top;
|
330
|
+
@include border-radius(0 5px 5px 0);
|
331
|
+
}
|
332
|
+
|
333
|
+
.input-append input:focus,
|
334
|
+
.input-prepend input:focus,
|
335
|
+
.input-append select:focus,
|
336
|
+
.input-prepend select:focus,
|
337
|
+
.input-append .uneditable-input:focus,
|
338
|
+
.input-prepend .uneditable-input:focus {
|
339
|
+
z-index: 2;
|
340
|
+
}
|
341
|
+
|
342
|
+
.input-append .add-on,
|
343
|
+
.input-prepend .add-on {
|
344
|
+
display: inline-block;
|
345
|
+
width: auto;
|
346
|
+
@include rem(height,2.5rem);
|
347
|
+
@include rem(padding, 0.5rem 0.65rem);
|
348
|
+
@include rem(font-size, 1rem);
|
349
|
+
@include rem(line-height, 1.25rem);
|
350
|
+
font-family: 'Source Sans Pro', sans-serif;
|
351
|
+
font-weight: 400;
|
352
|
+
color: rgba($dark,0.65);
|
353
|
+
text-align: center;
|
354
|
+
background: $light;
|
355
|
+
border: 1px solid rgba(black,0.15);
|
356
|
+
@include border-radius(5px);
|
357
|
+
}
|
358
|
+
.input-prepend .btn {
|
359
|
+
@include border-radius(5px 0 0 5px);
|
360
|
+
@include rem(height,2.5rem);
|
361
|
+
@include rem(line-height, 2.1rem);
|
362
|
+
@include rem(font-size,1.1rem);
|
363
|
+
margin-bottom: 0;
|
364
|
+
}
|
365
|
+
.input-append .btn {
|
366
|
+
@include border-radius(0 5px 5px 0);
|
367
|
+
@include rem(height,2.5rem);
|
368
|
+
@include rem(line-height, 2.1rem);
|
369
|
+
@include rem(font-size,1.1rem);
|
370
|
+
margin-bottom: 0;
|
371
|
+
}
|
372
|
+
|
373
|
+
.input-append .add-on,
|
374
|
+
.input-prepend .add-on,
|
375
|
+
.input-append .btn,
|
376
|
+
.input-prepend .btn,
|
377
|
+
.input-append .btn-group > .dropdown-toggle,
|
378
|
+
.input-prepend .btn-group > .dropdown-toggle {
|
379
|
+
vertical-align: top;
|
380
|
+
}
|
381
|
+
|
382
|
+
.input-append .active,
|
383
|
+
.input-prepend .active {
|
384
|
+
background-color: #a9dba9;
|
385
|
+
border-color: #46a546;
|
386
|
+
}
|
387
|
+
|
388
|
+
.input-prepend .add-on,
|
389
|
+
.input-prepend .btn {
|
390
|
+
margin-right: -1px;
|
391
|
+
}
|
392
|
+
|
393
|
+
.input-prepend .add-on:first-child,
|
394
|
+
.input-prepend .btn:first-child {
|
395
|
+
@include border-radius(5px 0 0 5px);
|
396
|
+
}
|
397
|
+
|
398
|
+
.input-append input,
|
399
|
+
.input-append select,
|
400
|
+
.input-append .uneditable-input {
|
401
|
+
@include border-radius(5px 0 0 5px);
|
402
|
+
}
|
403
|
+
.input-append input + .btn-group .btn:last-child,
|
404
|
+
.input-append select + .btn-group .btn:last-child,
|
405
|
+
.input-append .uneditable-input + .btn-group .btn:last-child {
|
406
|
+
@include border-radius(0 5px 5px 0);
|
407
|
+
}
|
408
|
+
.input-append .add-on,
|
409
|
+
.input-append .btn,
|
410
|
+
.input-append .btn-group {
|
411
|
+
margin-left: -1px;
|
412
|
+
@include border-radius(0);
|
413
|
+
}
|
414
|
+
.input-append .add-on:last-child,
|
415
|
+
.input-append .btn:last-child,
|
416
|
+
.input-append .btn-group:last-child > .dropdown-toggle {
|
417
|
+
@include border-radius(0 5px 5px 0);
|
418
|
+
}
|
419
|
+
|
420
|
+
.input-prepend.input-append input,
|
421
|
+
.input-prepend.input-append select,
|
422
|
+
.input-prepend.input-append .uneditable-input {
|
423
|
+
@include border-radius(0);
|
424
|
+
}
|
425
|
+
.input-prepend.input-append input + .btn-group .btn,
|
426
|
+
.input-prepend.input-append select + .btn-group .btn,
|
427
|
+
.input-prepend.input-append .uneditable-input + .btn-group .btn {
|
428
|
+
@include border-radius(0 5px 5px 0);
|
429
|
+
}
|
430
|
+
.input-prepend.input-append .add-on:first-child,
|
431
|
+
.input-prepend.input-append .btn:first-child {
|
432
|
+
margin-right: -1px;
|
433
|
+
@include border-radius(5px 0 0 5px);
|
434
|
+
}
|
435
|
+
.input-prepend.input-append .add-on:last-child,
|
436
|
+
.input-prepend.input-append .btn:last-child {
|
437
|
+
margin-right: -1px;
|
438
|
+
@include border-radius(0 5px 5px 0);
|
439
|
+
}
|
440
|
+
.input-prepend.input-append .btn-group:first-child {
|
441
|
+
margin-left: 0;
|
442
|
+
}
|
443
|
+
|
444
|
+
input.search-query {
|
445
|
+
@include rem(padding-left,2.5rem);
|
446
|
+
background-image: asset-url("cms/search.png");
|
447
|
+
background-repeat: no-repeat;
|
448
|
+
background-position: 10px center;
|
449
|
+
background-size: auto 50%;
|
450
|
+
|
451
|
+
&:focus {
|
452
|
+
background-image: asset-url("cms/search.png");
|
453
|
+
background-repeat: no-repeat;
|
454
|
+
background-position: 10px center;
|
455
|
+
background-size: auto 50%;
|
456
|
+
}
|
457
|
+
}
|
458
|
+
|
459
|
+
.form-search input,
|
460
|
+
.form-inline input,
|
461
|
+
.form-horizontal input,
|
462
|
+
.form-search textarea,
|
463
|
+
.form-inline textarea,
|
464
|
+
.form-horizontal textarea,
|
465
|
+
.form-search select,
|
466
|
+
.form-inline select,
|
467
|
+
.form-horizontal select,
|
468
|
+
.form-search .help-inline,
|
469
|
+
.form-inline .help-inline,
|
470
|
+
.form-horizontal .help-inline,
|
471
|
+
.form-search .uneditable-input,
|
472
|
+
.form-inline .uneditable-input,
|
473
|
+
.form-horizontal .uneditable-input,
|
474
|
+
.form-search .input-prepend,
|
475
|
+
.form-inline .input-prepend,
|
476
|
+
.form-horizontal .input-prepend,
|
477
|
+
.form-search .input-append,
|
478
|
+
.form-inline .input-append,
|
479
|
+
.form-horizontal .input-append {
|
480
|
+
display: inline-block;
|
481
|
+
*display: inline;
|
482
|
+
margin-bottom: 0;
|
483
|
+
vertical-align: middle;
|
484
|
+
*zoom: 1;
|
485
|
+
}
|
486
|
+
|
487
|
+
.form-search .hide,
|
488
|
+
.form-inline .hide,
|
489
|
+
.form-horizontal .hide {
|
490
|
+
display: none;
|
491
|
+
}
|
492
|
+
|
493
|
+
.form-search label,
|
494
|
+
.form-inline label,
|
495
|
+
.form-search .btn-group,
|
496
|
+
.form-inline .btn-group {
|
497
|
+
display: inline-block;
|
498
|
+
}
|
499
|
+
|
500
|
+
.form-search .input-append,
|
501
|
+
.form-inline .input-append,
|
502
|
+
.form-search .input-prepend,
|
503
|
+
.form-inline .input-prepend {
|
504
|
+
margin-bottom: 0;
|
505
|
+
}
|
506
|
+
|
507
|
+
.form-search .radio,
|
508
|
+
.form-search .checkbox,
|
509
|
+
.form-inline .radio,
|
510
|
+
.form-inline .checkbox {
|
511
|
+
padding-left: 0;
|
512
|
+
margin-bottom: 0;
|
513
|
+
vertical-align: middle;
|
514
|
+
}
|
515
|
+
|
516
|
+
.form-search .radio input[type="radio"],
|
517
|
+
.form-search .checkbox input[type="checkbox"],
|
518
|
+
.form-inline .radio input[type="radio"],
|
519
|
+
.form-inline .checkbox input[type="checkbox"] {
|
520
|
+
float: left;
|
521
|
+
@include rem(margin-right,0.5rem);
|
522
|
+
margin-left: 0;
|
523
|
+
}
|
524
|
+
|
525
|
+
|
526
|
+
input[disabled],
|
527
|
+
select[disabled],
|
528
|
+
textarea[disabled],
|
529
|
+
input[readonly],
|
530
|
+
select[readonly],
|
531
|
+
textarea[readonly] {
|
532
|
+
cursor: not-allowed;
|
533
|
+
background-color: rgba($light,0.6);
|
534
|
+
}
|
535
|
+
|
536
|
+
input[type="radio"][disabled],
|
537
|
+
input[type="checkbox"][disabled],
|
538
|
+
input[type="radio"][readonly],
|
539
|
+
input[type="checkbox"][readonly] {
|
540
|
+
background-color: transparent;
|
541
|
+
}
|
542
|
+
|
543
|
+
|
544
|
+
input:focus:invalid,
|
545
|
+
textarea:focus:invalid,
|
546
|
+
select:focus:invalid {
|
547
|
+
color:$danger;
|
548
|
+
}
|
549
|
+
|
550
|
+
input:focus:invalid:focus,
|
551
|
+
textarea:focus:invalid:focus,
|
552
|
+
select:focus:invalid:focus {
|
553
|
+
border: 1px solid $danger;
|
554
|
+
}
|
555
|
+
|
556
|
+
|
557
|
+
.form-actions {
|
558
|
+
@include rem(padding, 1.5rem 2.127659574468085% 1.75rem 2.127659574468085%);
|
559
|
+
@include rem(margin, 1rem 0);
|
560
|
+
background: rgba($light,0.2);
|
561
|
+
border-top: 1px solid rgba(black,0.05);
|
562
|
+
*zoom: 1;
|
563
|
+
}
|
564
|
+
.form-actions:before,
|
565
|
+
.form-actions:after {
|
566
|
+
display: table;
|
567
|
+
line-height: 0;
|
568
|
+
content: "";
|
569
|
+
}
|
570
|
+
.form-actions:after {
|
571
|
+
clear: both;
|
572
|
+
}
|
573
|
+
|
574
|
+
|
575
|
+
.control-group {
|
576
|
+
// Removed since input elements themselves have bottom margins.
|
577
|
+
//@include rem(margin-bottom,0.75rem);
|
578
|
+
}
|
579
|
+
legend + .control-group {
|
580
|
+
@include rem(margin-top,1.25rem);
|
581
|
+
-webkit-margin-top-collapse: separate;
|
582
|
+
}
|
583
|
+
.form-horizontal .control-group {
|
584
|
+
@include rem(margin-bottom,0.75rem);
|
585
|
+
*zoom: 1;
|
586
|
+
}
|
587
|
+
.form-horizontal .control-group:before,
|
588
|
+
.form-horizontal .control-group:after {
|
589
|
+
display: table;
|
590
|
+
line-height: 0;
|
591
|
+
content: "";
|
592
|
+
}
|
593
|
+
.form-horizontal .control-group:after {
|
594
|
+
clear: both;
|
595
|
+
}
|
596
|
+
|
597
|
+
.form-horizontal .control-label {
|
598
|
+
float: left;
|
599
|
+
@include rem(width,10rem);
|
600
|
+
@include rem(padding-top,0.5rem);
|
601
|
+
text-align: right;
|
602
|
+
}
|
603
|
+
.form-horizontal .controls {
|
604
|
+
*display: inline-block;
|
605
|
+
*padding-left: 20px;
|
606
|
+
@include rem(margin-left, 11.5rem);
|
607
|
+
*margin-left: 0;
|
608
|
+
}
|
609
|
+
.form-horizontal .controls:first-child {
|
610
|
+
*padding-left: 180px;
|
611
|
+
}
|
612
|
+
.form-horizontal .help-block {
|
613
|
+
margin-bottom: 0;
|
614
|
+
}
|
615
|
+
.form-horizontal input + .help-block,
|
616
|
+
.form-horizontal select + .help-block,
|
617
|
+
.form-horizontal textarea + .help-block,
|
618
|
+
.form-horizontal .uneditable-input + .help-block,
|
619
|
+
.form-horizontal .input-prepend + .help-block,
|
620
|
+
.form-horizontal .input-append + .help-block {
|
621
|
+
@include rem(margin-top,0.75rem);
|
622
|
+
}
|
623
|
+
.form-horizontal .form-actions {
|
624
|
+
@include rem(padding-left,11.5rem);
|
625
|
+
}
|
626
|
+
|
627
|
+
.control-group.warning {
|
628
|
+
background:none;
|
629
|
+
}
|
630
|
+
.control-group.warning .control-label,
|
631
|
+
.control-group.warning .help-block,
|
632
|
+
.control-group.warning .help-inline {
|
633
|
+
color: $warning;
|
634
|
+
}
|
635
|
+
.control-group.warning .checkbox,
|
636
|
+
.control-group.warning .radio,
|
637
|
+
.control-group.warning input,
|
638
|
+
.control-group.warning select,
|
639
|
+
.control-group.warning textarea {
|
640
|
+
color: $warning;
|
641
|
+
}
|
642
|
+
.control-group.warning input,
|
643
|
+
.control-group.warning select,
|
644
|
+
.control-group.warning textarea {
|
645
|
+
border-color: $warning;
|
646
|
+
}
|
647
|
+
.control-group.warning input:focus,
|
648
|
+
.control-group.warning select:focus,
|
649
|
+
.control-group.warning textarea:focus {
|
650
|
+
border-color: $warning;
|
651
|
+
}
|
652
|
+
|
653
|
+
.control-group.error {
|
654
|
+
background: none;
|
655
|
+
}
|
656
|
+
.control-group.error .control-label,
|
657
|
+
.control-group.error .help-block,
|
658
|
+
.control-group.error .help-inline {
|
659
|
+
color: $danger;
|
660
|
+
}
|
661
|
+
.control-group.error .checkbox,
|
662
|
+
.control-group.error .radio,
|
663
|
+
.control-group.error input,
|
664
|
+
.control-group.error select,
|
665
|
+
.control-group.error textarea {
|
666
|
+
color: $danger;
|
667
|
+
}
|
668
|
+
.control-group.error input,
|
669
|
+
.control-group.error select,
|
670
|
+
.control-group.error textarea {
|
671
|
+
border-color: $danger;
|
672
|
+
}
|
673
|
+
.control-group.error input:focus,
|
674
|
+
.control-group.error select:focus,
|
675
|
+
.control-group.error textarea:focus {
|
676
|
+
border-color: $danger;
|
677
|
+
}
|
678
|
+
|
679
|
+
.control-group.success {
|
680
|
+
background: none;
|
681
|
+
}
|
682
|
+
.control-group.success .control-label,
|
683
|
+
.control-group.success .help-block,
|
684
|
+
.control-group.success .help-inline {
|
685
|
+
color: $success;
|
686
|
+
}
|
687
|
+
.control-group.success .checkbox,
|
688
|
+
.control-group.success .radio,
|
689
|
+
.control-group.success input,
|
690
|
+
.control-group.success select,
|
691
|
+
.control-group.success textarea {
|
692
|
+
color: $success;
|
693
|
+
}
|
694
|
+
.control-group.success input,
|
695
|
+
.control-group.success select,
|
696
|
+
.control-group.success textarea {
|
697
|
+
border-color: $success;
|
698
|
+
}
|
699
|
+
.control-group.success input:focus,
|
700
|
+
.control-group.success select:focus,
|
701
|
+
.control-group.success textarea:focus {
|
702
|
+
border-color: $success;
|
703
|
+
}
|
704
|
+
|
705
|
+
|
706
|
+
.control-group.info .control-label,
|
707
|
+
.control-group.info .help-block,
|
708
|
+
.control-group.info .help-inline {
|
709
|
+
color: $secondary;
|
710
|
+
}
|
711
|
+
.control-group.info .checkbox,
|
712
|
+
.control-group.info .radio,
|
713
|
+
.control-group.info input,
|
714
|
+
.control-group.info select,
|
715
|
+
.control-group.info textarea {
|
716
|
+
color: $secondary;
|
717
|
+
}
|
718
|
+
.control-group.info input,
|
719
|
+
.control-group.info select,
|
720
|
+
.control-group.info textarea {
|
721
|
+
border-color: $secondary;
|
722
|
+
}
|
723
|
+
|
724
|
+
.control-group.info input:focus,
|
725
|
+
.control-group.info select:focus,
|
726
|
+
.control-group.info textarea:focus {
|
727
|
+
border-color: $secondary;
|
728
|
+
}
|