blacklight 6.24.0 → 7.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.npmignore +23 -0
- data/.rubocop.yml +15 -3
- data/.rubocop_todo.yml +242 -379
- data/.solr_wrapper.yml +1 -1
- data/.travis.yml +20 -24
- data/Gemfile +1 -4
- data/README.md +21 -4
- data/Rakefile +1 -2
- data/VERSION +1 -1
- data/app/assets/images/blacklight/list.svg +1 -0
- data/app/assets/images/blacklight/search.svg +1 -0
- data/app/assets/javascripts/blacklight/blacklight.js +496 -56
- data/app/assets/stylesheets/blacklight/_balanced_list.scss +7 -12
- data/app/assets/stylesheets/blacklight/_blacklight_base.scss +3 -1
- data/app/assets/stylesheets/blacklight/_bookmark.scss +1 -13
- data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +27 -0
- data/app/assets/stylesheets/blacklight/_constraints.scss +17 -25
- data/app/assets/stylesheets/blacklight/_controls.scss +8 -16
- data/app/assets/stylesheets/blacklight/_facets.scss +74 -92
- data/app/assets/stylesheets/blacklight/_header.scss +35 -48
- data/app/assets/stylesheets/blacklight/_icons.scss +29 -0
- data/app/assets/stylesheets/blacklight/_layout.scss +0 -10
- data/app/assets/stylesheets/blacklight/_mixins.scss +15 -0
- data/app/assets/stylesheets/blacklight/_modal.scss +9 -17
- data/app/assets/stylesheets/blacklight/_pagination.scss +2 -17
- data/app/assets/stylesheets/blacklight/_search_history.scss +5 -13
- data/app/assets/stylesheets/blacklight/_search_results.scss +9 -8
- data/app/assets/stylesheets/blacklight/_twitter_typeahead.scss +1 -2
- data/app/builders/blacklight/action_builder.rb +56 -0
- data/app/controllers/bookmarks_controller.rb +2 -2
- data/app/controllers/catalog_controller.rb +2 -2
- data/app/controllers/concerns/blacklight/base.rb +0 -33
- data/app/controllers/concerns/blacklight/bookmarks.rb +20 -37
- data/app/controllers/concerns/blacklight/catalog.rb +254 -213
- data/app/controllers/concerns/blacklight/controller.rb +117 -133
- data/app/controllers/concerns/blacklight/default_component_configuration.rb +12 -43
- data/app/controllers/concerns/blacklight/search_context.rb +10 -14
- data/app/controllers/concerns/blacklight/search_fields.rb +4 -14
- data/app/controllers/concerns/blacklight/token_based_user.rb +6 -10
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +32 -118
- data/app/helpers/blacklight/catalog_helper_behavior.rb +94 -88
- data/app/helpers/blacklight/component_helper_behavior.rb +19 -19
- data/app/helpers/blacklight/configuration_helper_behavior.rb +25 -54
- data/app/helpers/blacklight/facets_helper_behavior.rb +40 -39
- data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +9 -11
- data/app/helpers/blacklight/icon_helper_behavior.rb +16 -0
- data/app/helpers/blacklight/layout_helper_behavior.rb +3 -10
- data/app/helpers/blacklight/render_constraints_helper_behavior.rb +6 -6
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +195 -0
- data/app/helpers/blacklight/search_history_constraints_helper_behavior.rb +18 -11
- data/app/helpers/blacklight/suggest_helper_behavior.rb +1 -0
- data/app/helpers/blacklight/url_helper_behavior.rb +21 -27
- data/app/{assets/javascripts → javascript}/blacklight/autocomplete.js +3 -2
- data/app/javascript/blacklight/autofocus.js +20 -0
- data/app/javascript/blacklight/bookmark_toggle.js +25 -0
- data/app/javascript/blacklight/checkbox_submit.js +133 -0
- data/app/{assets/javascripts → javascript}/blacklight/collapsable.js +1 -1
- data/app/javascript/blacklight/core.js +39 -0
- data/app/{assets/javascripts → javascript}/blacklight/facet_load.js +6 -6
- data/app/{assets/javascripts/blacklight/ajax_modal.js → javascript/blacklight/modal.js} +63 -63
- data/app/{assets/javascripts → javascript}/blacklight/search_context.js +10 -2
- data/app/models/blacklight/facet_paginator.rb +3 -3
- data/app/models/blacklight/icon.rb +53 -0
- data/app/models/blacklight/solr/facet_paginator.rb +3 -3
- data/app/models/blacklight/suggest_search.rb +15 -4
- data/app/models/bookmark.rb +4 -9
- data/app/models/concerns/blacklight/configurable.rb +13 -13
- data/app/models/concerns/blacklight/document.rb +8 -42
- data/app/models/concerns/blacklight/document/active_model_shim.rb +8 -11
- data/app/models/concerns/blacklight/document/cache_key.rb +1 -1
- data/app/models/concerns/blacklight/document/dublin_core.rb +2 -2
- data/app/models/concerns/blacklight/document/email.rb +1 -1
- data/app/models/concerns/blacklight/document/extensions.rb +5 -5
- data/app/models/concerns/blacklight/document/semantic_fields.rb +9 -9
- data/app/models/concerns/blacklight/document/sms.rb +1 -1
- data/app/models/concerns/blacklight/solr/document.rb +7 -8
- data/app/models/concerns/blacklight/suggest/response.rb +3 -5
- data/app/models/concerns/blacklight/user.rb +6 -6
- data/app/models/record_mailer.rb +5 -6
- data/app/models/search.rb +4 -7
- data/app/presenters/blacklight/field_presenter.rb +5 -5
- data/app/presenters/blacklight/index_presenter.rb +34 -71
- data/app/presenters/blacklight/json_presenter.rb +7 -4
- data/app/presenters/blacklight/link_alternate_presenter.rb +1 -1
- data/app/presenters/blacklight/rendering/abstract_step.rb +5 -5
- data/app/presenters/blacklight/rendering/helper_method.rb +8 -8
- data/app/presenters/blacklight/rendering/join.rb +3 -3
- data/app/presenters/blacklight/rendering/link_to_facet.rb +19 -19
- data/app/presenters/blacklight/rendering/microdata.rb +3 -3
- data/app/presenters/blacklight/rendering/pipeline.rb +5 -5
- data/app/presenters/blacklight/search_bar_presenter.rb +37 -0
- data/app/presenters/blacklight/show_presenter.rb +20 -69
- data/app/presenters/blacklight/thumbnail_presenter.rb +72 -0
- data/app/services/blacklight/document_factory.rb +11 -0
- data/app/services/blacklight/field_retriever.rb +24 -24
- data/app/services/blacklight/search_service.rb +154 -0
- data/app/views/blacklight/nav/_bookmark.html.erb +2 -2
- data/app/views/blacklight/nav/_search_history.html.erb +1 -1
- data/app/views/bookmarks/_tools.html.erb +2 -2
- data/app/views/bookmarks/index.html.erb +2 -2
- data/app/views/catalog/_bookmark_control.html.erb +26 -10
- data/app/views/catalog/_citation.html.erb +18 -23
- data/app/views/catalog/_constraints.html.erb +5 -8
- data/app/views/catalog/_constraints_element.html.erb +6 -6
- data/app/views/catalog/{_document_default.atom.builder → _document.atom.builder} +2 -2
- data/app/views/catalog/_document.html.erb +5 -3
- data/app/views/catalog/{_document_default.rss.builder → _document.rss.builder} +0 -0
- data/app/views/catalog/_document_action.html.erb +2 -1
- data/app/views/catalog/_email_form.html.erb +8 -4
- data/app/views/catalog/_facet_index_navigation.html.erb +3 -3
- data/app/views/catalog/_facet_layout.html.erb +5 -7
- data/app/views/catalog/_facet_limit.html.erb +3 -2
- data/app/views/catalog/_facet_pagination.html.erb +10 -10
- data/app/views/catalog/_facet_pivot.html.erb +2 -2
- data/app/views/catalog/_facets.html.erb +8 -12
- data/app/views/catalog/{_group_default.html.erb → _group.html.erb} +0 -0
- data/app/views/catalog/_home_text.html.erb +32 -36
- data/app/views/catalog/_index.html.erb +12 -0
- data/app/views/catalog/{_index_header_default.html.erb → _index_header.html.erb} +2 -2
- data/app/views/catalog/_per_page_widget.html.erb +6 -7
- data/app/views/catalog/_previous_next_doc.html.erb +6 -14
- data/app/views/catalog/_search_form.html.erb +12 -8
- data/app/views/catalog/_search_header.html.erb +0 -3
- data/app/views/catalog/_search_results.html.erb +4 -0
- data/app/views/catalog/_show.html.erb +10 -0
- data/app/views/catalog/{_show_header_default.html.erb → _show_header.html.erb} +0 -0
- data/app/views/catalog/_show_main_content.html.erb +4 -4
- data/app/views/catalog/_show_sidebar.html.erb +3 -3
- data/app/views/catalog/_show_tools.html.erb +9 -11
- data/app/views/catalog/_sms_form.html.erb +8 -4
- data/app/views/catalog/_sort_and_per_page.html.erb +3 -3
- data/app/views/catalog/_sort_widget.html.erb +7 -7
- data/app/views/catalog/_thumbnail.html.erb +5 -0
- data/app/views/catalog/_view_type_group.html.erb +2 -2
- data/app/views/catalog/citation.html.erb +1 -1
- data/app/views/catalog/citation.js.erb +9 -1
- data/app/views/catalog/email.html.erb +5 -5
- data/app/views/catalog/email_success.html.erb +11 -9
- data/app/views/catalog/facet.html.erb +5 -6
- data/app/views/catalog/index.atom.builder +10 -15
- data/app/views/catalog/index.html.erb +9 -11
- data/app/views/catalog/index.json.jbuilder +65 -3
- data/app/views/catalog/index.rss.builder +5 -5
- data/app/views/catalog/opensearch.xml.builder +10 -10
- data/app/views/catalog/show.html.erb +11 -6
- data/app/views/catalog/sms.html.erb +2 -3
- data/app/views/catalog/sms_success.html.erb +11 -10
- data/app/views/kaminari/blacklight/_first_page.html.erb +2 -2
- data/app/views/kaminari/blacklight/_gap.html.erb +2 -2
- data/app/views/kaminari/blacklight/_last_page.html.erb +2 -2
- data/app/views/kaminari/blacklight/_next_page.html.erb +4 -4
- data/app/views/kaminari/blacklight/_page.html.erb +3 -3
- data/app/views/kaminari/blacklight/_prev_page.html.erb +4 -4
- data/app/views/kaminari/blacklight_compact/_paginator.html.erb +4 -4
- data/app/views/layouts/blacklight.html.erb +14 -41
- data/app/views/layouts/blacklight/base.html.erb +43 -0
- data/app/views/layouts/catalog_result.html.erb +11 -0
- data/app/views/search_history/index.html.erb +16 -21
- data/app/views/{_flash_msg.html.erb → shared/_flash_msg.html.erb} +0 -0
- data/app/views/shared/_header_navbar.html.erb +8 -13
- data/app/views/shared/_modal.html.erb +6 -0
- data/app/views/shared/_user_util_links.html.erb +22 -0
- data/blacklight.gemspec +10 -11
- data/config/locales/blacklight.de.yml +0 -30
- data/config/locales/blacklight.en.yml +1 -27
- data/config/locales/blacklight.es.yml +0 -30
- data/config/locales/blacklight.fr.yml +0 -30
- data/config/locales/blacklight.hu.yml +210 -0
- data/config/locales/blacklight.it.yml +0 -30
- data/config/locales/blacklight.nl.yml +210 -0
- data/config/locales/blacklight.pt-BR.yml +6 -32
- data/config/locales/blacklight.sq.yml +1 -28
- data/config/locales/blacklight.zh.yml +0 -25
- data/config/routes.rb +3 -10
- data/db/migrate/20140202020202_create_bookmarks.rb +0 -1
- data/db/migrate/20140320000000_add_polymorphic_type_to_bookmarks.rb +1 -1
- data/lib/blacklight.rb +4 -5
- data/lib/blacklight/abstract_repository.rb +9 -21
- data/lib/blacklight/configuration.rb +82 -89
- data/lib/blacklight/configuration/context.rb +1 -1
- data/lib/blacklight/configuration/facet_field.rb +16 -9
- data/lib/blacklight/configuration/field.rb +32 -3
- data/lib/blacklight/configuration/fields.rb +41 -48
- data/lib/blacklight/configuration/search_field.rb +2 -2
- data/lib/blacklight/configuration/sort_field.rb +2 -2
- data/lib/blacklight/configuration/view_config.rb +4 -0
- data/lib/blacklight/engine.rb +6 -10
- data/lib/blacklight/exceptions.rb +4 -7
- data/lib/blacklight/nested_open_struct_with_hash_access.rb +107 -0
- data/lib/blacklight/open_struct_with_hash_access.rb +49 -0
- data/lib/blacklight/parameters.rb +1 -1
- data/lib/blacklight/routes/searchable.rb +1 -0
- data/lib/blacklight/search_builder.rb +26 -35
- data/lib/blacklight/search_state.rb +8 -8
- data/lib/blacklight/solr/repository.rb +3 -36
- data/lib/blacklight/solr/request.rb +1 -1
- data/lib/blacklight/solr/response.rb +29 -30
- data/lib/blacklight/solr/response/facets.rb +29 -31
- data/lib/blacklight/solr/response/group.rb +3 -3
- data/lib/blacklight/solr/response/group_response.rb +1 -1
- data/lib/blacklight/solr/response/more_like_this.rb +2 -2
- data/lib/blacklight/solr/response/response.rb +2 -2
- data/lib/blacklight/solr/response/spelling.rb +3 -3
- data/lib/blacklight/solr/search_builder_behavior.rb +25 -29
- data/lib/blacklight/version.rb +1 -1
- data/lib/generators/blacklight/assets_generator.rb +8 -8
- data/lib/generators/blacklight/controller_generator.rb +4 -5
- data/lib/generators/blacklight/document_generator.rb +1 -1
- data/lib/generators/blacklight/install_generator.rb +18 -21
- data/lib/generators/blacklight/search_builder_generator.rb +1 -1
- data/lib/generators/blacklight/{solr5_generator.rb → solr_generator.rb} +4 -6
- data/lib/generators/blacklight/templates/.solr_wrapper.yml +5 -0
- data/lib/generators/blacklight/templates/blacklight.scss +0 -2
- data/lib/generators/blacklight/templates/catalog_controller.rb +52 -51
- data/{solr → lib/generators/blacklight/templates/solr}/conf/_rest_managed.json +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/admin-extra.html +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/elevate.xml +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/mapping-ISOLatin1Accent.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/protwords.txt +0 -0
- data/lib/generators/blacklight/templates/solr/conf/schema.xml +390 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/scripts.conf +0 -0
- data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +195 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/spellings.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords_en.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/synonyms.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_atom.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_rss.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/luke.xsl +0 -0
- data/lib/generators/blacklight/test_support_generator.rb +10 -10
- data/lib/generators/blacklight/user_generator.rb +3 -6
- data/lib/railties/blacklight.rake +19 -14
- data/package-lock.json +2057 -0
- data/package.json +28 -0
- data/spec/controllers/alternate_controller_spec.rb +1 -1
- data/spec/controllers/application_controller_spec.rb +1 -1
- data/spec/controllers/blacklight/base_spec.rb +1 -1
- data/spec/controllers/blacklight/catalog/component_configuration_spec.rb +11 -7
- data/spec/controllers/blacklight/facet_spec.rb +1 -1
- data/spec/controllers/blacklight/search_fields_spec.rb +1 -13
- data/spec/controllers/bookmarks_controller_spec.rb +1 -36
- data/spec/controllers/catalog_controller_spec.rb +153 -53
- data/spec/controllers/search_history_controller_spec.rb +2 -2
- data/spec/features/alternate_controller_spec.rb +1 -1
- data/spec/features/autocomplete_spec.rb +2 -2
- data/spec/features/bookmarks_spec.rb +10 -10
- data/spec/features/did_you_mean_spec.rb +3 -9
- data/spec/features/facets_spec.rb +11 -11
- data/spec/features/record_view_spec.rb +1 -6
- data/spec/features/search_context_spec.rb +2 -2
- data/spec/features/search_filters_spec.rb +41 -41
- data/spec/features/search_formats_spec.rb +1 -1
- data/spec/features/search_history_spec.rb +1 -26
- data/spec/features/search_pagination_spec.rb +1 -1
- data/spec/features/search_results_spec.rb +3 -4
- data/spec/features/search_sort_spec.rb +2 -2
- data/spec/features/search_spec.rb +5 -10
- data/{solr → spec/fixtures}/sample_solr_documents.yml +688 -688
- data/spec/helpers/{configuration_helper_spec.rb → blacklight/configuration_helper_behavior_spec.rb} +70 -65
- data/spec/helpers/{facets_helper_spec.rb → blacklight/facets_helper_behavior_spec.rb} +7 -8
- data/spec/helpers/{hash_as_hidden_fields_spec.rb → blacklight/hash_as_hidden_fields_behavior_spec.rb} +1 -1
- data/spec/helpers/blacklight/icon_helper_behavior_spec.rb +8 -0
- data/spec/helpers/{layout_helper_spec.rb → blacklight/layout_helper_behavior_spec.rb} +5 -15
- data/spec/helpers/{render_constraints_helper_spec.rb → blacklight/render_constraints_helper_behavior_spec.rb} +2 -3
- data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +80 -0
- data/spec/helpers/{search_history_constraints_helper_spec.rb → blacklight/search_history_constraints_helper_behavior_spec.rb} +9 -9
- data/spec/helpers/{suggest_helper_spec.rb → blacklight/suggest_helper_behavior_spec.rb} +4 -2
- data/spec/helpers/{url_helper_spec.rb → blacklight/url_helper_behavior_spec.rb} +11 -15
- data/spec/helpers/blacklight_helper_spec.rb +36 -141
- data/spec/helpers/catalog_helper_spec.rb +37 -56
- data/spec/integration/generators/blacklight/{solr5_generator_spec.rb → solr_generator_spec.rb} +3 -3
- data/spec/lib/blacklight/configuration/facet_field_spec.rb +11 -0
- data/spec/lib/blacklight/configuration/field_spec.rb +12 -0
- data/spec/lib/blacklight/nested_open_struct_with_hash_access_spec.rb +17 -0
- data/spec/lib/blacklight/open_struct_with_hash_access_spec.rb +153 -0
- data/spec/lib/blacklight/parameters_spec.rb +1 -1
- data/spec/lib/blacklight/search_state_spec.rb +2 -2
- data/spec/lib/blacklight_spec.rb +1 -1
- data/spec/lib/tasks/blacklight_task_spec.rb +1 -1
- data/spec/models/blacklight/configurable_spec.rb +15 -16
- data/spec/models/blacklight/configuration/context_spec.rb +1 -1
- data/spec/models/blacklight/configuration_spec.rb +146 -135
- data/spec/models/blacklight/document/active_model_shim_spec.rb +11 -1
- data/spec/models/blacklight/document/cache_key_spec.rb +1 -1
- data/spec/models/blacklight/document/dublin_core_spec.rb +5 -5
- data/spec/models/blacklight/document/email_spec.rb +3 -3
- data/spec/models/blacklight/document/sms_spec.rb +3 -3
- data/spec/models/blacklight/document_spec.rb +3 -16
- data/spec/models/blacklight/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/icon_spec.rb +34 -0
- data/spec/models/blacklight/search_builder_spec.rb +33 -27
- data/spec/models/blacklight/solr/document_spec.rb +18 -7
- data/spec/models/blacklight/solr/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/solr/repository_spec.rb +32 -27
- data/spec/models/blacklight/solr/request_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/facets_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/group_response_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/group_spec.rb +1 -1
- data/spec/models/blacklight/solr/response_spec.rb +9 -6
- data/spec/models/blacklight/solr/search_builder_spec.rb +35 -48
- data/spec/models/blacklight/suggest/response_spec.rb +4 -5
- data/spec/models/blacklight/suggest_search_spec.rb +14 -7
- data/spec/models/blacklight/user_spec.rb +1 -1
- data/spec/models/bookmark_spec.rb +1 -1
- data/spec/models/record_mailer_spec.rb +2 -2
- data/spec/models/search_spec.rb +1 -1
- data/spec/models/solr_document_spec.rb +3 -3
- data/spec/presenters/blacklight/search_bar_presenter_spec.rb +72 -0
- data/spec/presenters/index_presenter_spec.rb +70 -143
- data/spec/presenters/pipeline_spec.rb +4 -4
- data/spec/presenters/show_presenter_spec.rb +83 -145
- data/spec/presenters/thumbnail_presenter_spec.rb +171 -0
- data/spec/routing/catalog_routing_spec.rb +1 -17
- data/spec/services/blacklight/search_service_spec.rb +446 -0
- data/spec/spec_helper.rb +22 -9
- data/spec/test_app_templates/Gemfile.extra +2 -5
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/catalog/_constraints.html.erb_spec.rb +1 -3
- data/spec/views/catalog/_constraints_element.html.erb_spec.rb +8 -8
- data/spec/views/catalog/_document.html.erb_spec.rb +7 -7
- data/spec/views/catalog/_document_list.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_facet_layout.html.erb_spec.rb +6 -6
- data/spec/views/catalog/_facets.html.erb_spec.rb +2 -2
- data/spec/views/catalog/{_index_default.erb_spec.rb → _index.html.erb_spec.rb} +1 -1
- data/spec/views/catalog/{_index_header_default.html.erb_spec.rb → _index_header.html.erb_spec.rb} +4 -4
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +4 -27
- data/spec/views/catalog/_search_header.erb_spec.rb +1 -3
- data/spec/views/catalog/{_show_default.erb_spec.rb → _show.html.erb_spec.rb} +1 -1
- data/spec/views/catalog/_show_sidebar.erb_spec.rb +3 -3
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +3 -3
- data/spec/views/catalog/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/catalog/{_thumbnail_default.erb_spec.rb → _thumbnail.html.erb_spec.rb} +3 -3
- data/spec/views/catalog/_view_type_group.html.erb_spec.rb +5 -1
- data/spec/views/catalog/email_success.html.erb_spec.rb +9 -0
- data/spec/views/catalog/facet.html.erb_spec.rb +1 -1
- data/spec/views/catalog/facet.json.jbuilder_spec.rb +1 -1
- data/spec/views/catalog/index.atom.builder_spec.rb +2 -2
- data/spec/views/catalog/index.html.erb_spec.rb +4 -7
- data/spec/views/catalog/index.json.jbuilder_spec.rb +66 -21
- data/spec/views/catalog/opensearch.xml.builder_spec.rb +1 -1
- data/spec/views/catalog/show.html.erb_spec.rb +2 -2
- data/spec/views/catalog/sms_success.html.erb_spec.rb +9 -0
- data/spec/views/{_user_util_links.html.erb_spec.rb → shared/_user_util_links.html.erb_spec.rb} +4 -4
- data/tasks/blacklight.rake +10 -8
- data/template.demo.rb +1 -11
- metadata +171 -189
- data/app/assets/javascripts/blacklight/autofocus.js +0 -16
- data/app/assets/javascripts/blacklight/bookmark_toggle.js +0 -23
- data/app/assets/javascripts/blacklight/checkbox_submit.js +0 -139
- data/app/assets/javascripts/blacklight/core.js +0 -30
- data/app/controllers/concerns/blacklight/request_builders.rb +0 -77
- data/app/controllers/concerns/blacklight/saved_searches.rb +0 -70
- data/app/controllers/concerns/blacklight/search_helper.rb +0 -161
- data/app/controllers/concerns/blacklight/suggest.rb +0 -25
- data/app/controllers/saved_searches_controller.rb +0 -4
- data/app/controllers/suggest_controller.rb +0 -4
- data/app/helpers/blacklight/deprecated_url_helper_behavior.rb +0 -57
- data/app/helpers/blacklight/render_partials_helper.rb +0 -205
- data/app/helpers/blacklight_configuration_helper.rb +0 -4
- data/app/helpers/blacklight_url_helper.rb +0 -4
- data/app/helpers/component_helper.rb +0 -4
- data/app/helpers/facets_helper.rb +0 -4
- data/app/helpers/hash_as_hidden_fields_helper.rb +0 -4
- data/app/helpers/layout_helper.rb +0 -4
- data/app/helpers/render_constraints_helper.rb +0 -4
- data/app/helpers/search_history_constraints_helper.rb +0 -4
- data/app/helpers/suggest_helper.rb +0 -4
- data/app/models/concerns/blacklight/solr/document/more_like_this.rb +0 -6
- data/app/presenters/blacklight/document_presenter.rb +0 -153
- data/app/views/_user_util_links.html.erb +0 -26
- data/app/views/blacklight/nav/_saved_searches.html.erb +0 -1
- data/app/views/catalog/_index_default.html.erb +0 -12
- data/app/views/catalog/_show_default.html.erb +0 -10
- data/app/views/catalog/_thumbnail_default.html.erb +0 -5
- data/app/views/saved_searches/index.html.erb +0 -32
- data/app/views/shared/_ajax_modal.html.erb +0 -6
- data/lib/blacklight/utils.rb +0 -183
- data/lib/generators/blacklight/solr4_generator.rb +0 -31
- data/solr/conf/schema.xml +0 -627
- data/solr/conf/solrconfig.xml +0 -411
- data/spec/controllers/blacklight/search_helper_spec.rb +0 -489
- data/spec/controllers/saved_searches_controller_spec.rb +0 -32
- data/spec/controllers/suggest_controller_spec.rb +0 -17
- data/spec/features/saved_searches_spec.rb +0 -47
- data/spec/helpers/deprecated_url_helper_behavior_spec.rb +0 -101
- data/spec/lib/blacklight/utils_spec.rb +0 -167
- data/spec/models/blacklight/solr/document/more_like_this_spec.rb +0 -18
- data/spec/presenters/document_presenter_spec.rb +0 -438
- data/spec/support/backport_test.rb +0 -14
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
.dl-horizontal {
|
|
2
|
-
dd {
|
|
3
|
-
margin-bottom: $padding-base-vertical;
|
|
4
|
-
|
|
5
|
-
&:after {
|
|
6
|
-
clear: none;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
1
|
.dl-invert {
|
|
12
2
|
dt {
|
|
13
3
|
font-weight: normal;
|
|
14
4
|
color: $field_name_color;
|
|
5
|
+
@media (max-width: breakpoint-max(sm)) {
|
|
6
|
+
text-align: left;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@media (min-width: breakpoint-max(sm)) {
|
|
10
|
+
text-align: right;
|
|
11
|
+
}
|
|
15
12
|
}
|
|
16
13
|
}
|
|
17
|
-
|
|
18
|
-
|
|
@@ -6,8 +6,9 @@
|
|
|
6
6
|
which over-rides things in this file. Or of course you can choose
|
|
7
7
|
not to use the Blacklight CSS file at all in your local app. */
|
|
8
8
|
|
|
9
|
+
@import "mixins";
|
|
9
10
|
@import 'blacklight/blacklight_defaults';
|
|
10
|
-
|
|
11
|
+
@import "blacklight/bootstrap_overrides";
|
|
11
12
|
@import "blacklight/layout";
|
|
12
13
|
@import "blacklight/header";
|
|
13
14
|
@import "blacklight/constraints";
|
|
@@ -21,3 +22,4 @@
|
|
|
21
22
|
@import "blacklight/search_history";
|
|
22
23
|
@import "blacklight/modal";
|
|
23
24
|
@import "blacklight/twitter_typeahead";
|
|
25
|
+
@import "blacklight/icons";
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
.
|
|
2
|
-
margin-left: $border-radius-base;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
label.toggle_bookmark {
|
|
1
|
+
label.toggle-bookmark {
|
|
6
2
|
font-weight: inherit;
|
|
7
3
|
min-width: 8.5em;
|
|
8
4
|
}
|
|
9
|
-
|
|
10
|
-
// Tools link on document show page
|
|
11
|
-
.show-tools {
|
|
12
|
-
.bookmark_toggle {
|
|
13
|
-
padding: $nav-link-padding;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.navbar + .container {
|
|
2
|
+
@extend .py-2;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.card-header.collapse-toggle {
|
|
6
|
+
margin-bottom: 0;
|
|
7
|
+
|
|
8
|
+
&::after {
|
|
9
|
+
content: "❯";
|
|
10
|
+
float: right;
|
|
11
|
+
transform: rotate(90deg);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.collapsed {
|
|
15
|
+
border-bottom: 0;
|
|
16
|
+
|
|
17
|
+
&::after {
|
|
18
|
+
transform: rotate(0deg);
|
|
19
|
+
transition: transform 0.1s ease;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
.page-link {
|
|
26
|
+
white-space: nowrap;
|
|
27
|
+
}
|
|
@@ -1,49 +1,41 @@
|
|
|
1
1
|
.constraints-container {
|
|
2
|
-
@extend .
|
|
3
|
-
line-height: 2.5;
|
|
4
|
-
padding: 16px 19px;
|
|
2
|
+
@extend .mb-2;
|
|
5
3
|
}
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
@extend .h5;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.appliedFilter {
|
|
5
|
+
.applied-filter {
|
|
12
6
|
.constraint-value {
|
|
13
7
|
cursor: default;
|
|
14
8
|
text-overflow: ellipsis;
|
|
15
9
|
overflow: hidden;
|
|
16
10
|
|
|
17
|
-
@media (max-width:
|
|
18
|
-
max-width:
|
|
11
|
+
@media (max-width: breakpoint-max(xs)) {
|
|
12
|
+
max-width: breakpoint-max(xs) / 2;
|
|
19
13
|
}
|
|
20
14
|
|
|
21
|
-
@media (min-width:
|
|
22
|
-
max-width:
|
|
15
|
+
@media (min-width: breakpoint-min(sm)) and (max-width: breakpoint-max(sm)) {
|
|
16
|
+
max-width: breakpoint-min(sm) / 2;
|
|
23
17
|
}
|
|
24
18
|
|
|
25
|
-
@media (min-width:
|
|
26
|
-
max-width:
|
|
19
|
+
@media (min-width: breakpoint-min(md)) and (max-width: breakpoint-max(md)) {
|
|
20
|
+
max-width: breakpoint-min(md) / 2;
|
|
27
21
|
}
|
|
28
22
|
|
|
29
|
-
@media (min-width:
|
|
30
|
-
max-width:
|
|
23
|
+
@media (min-width: breakpoint-min(lg)) {
|
|
24
|
+
max-width: breakpoint-min(lg) / 2;
|
|
31
25
|
}
|
|
32
26
|
|
|
33
27
|
&:hover, &:active {
|
|
34
|
-
background-color:
|
|
35
|
-
border-color:
|
|
28
|
+
background-color: theme-color("secondary");
|
|
29
|
+
border-color: theme-color("secondary");
|
|
36
30
|
box-shadow: none;
|
|
37
31
|
}
|
|
38
32
|
}
|
|
39
33
|
|
|
40
|
-
.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
font-size: 70%;
|
|
46
|
-
padding-left: $caret-width-base;
|
|
34
|
+
.filter-name:after {
|
|
35
|
+
color: $gray-100;
|
|
36
|
+
content: "❯";
|
|
37
|
+
font-size: 90%;
|
|
38
|
+
padding-left: $caret-width;
|
|
47
39
|
}
|
|
48
40
|
|
|
49
41
|
.remove:hover, .remove:active {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
.sort-pagination,
|
|
2
|
+
.pagination-search-widgets {
|
|
3
|
+
border-bottom: $pagination-border-width solid $pagination-border-color;
|
|
3
4
|
margin-bottom: 1em;
|
|
4
5
|
padding-bottom: 1em;
|
|
5
6
|
}
|
|
@@ -7,14 +8,14 @@
|
|
|
7
8
|
.pagination-search-widgets {
|
|
8
9
|
@extend .clearfix;
|
|
9
10
|
padding-top: 1px;
|
|
10
|
-
padding-bottom: $
|
|
11
|
+
padding-bottom: $spacer;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
.sort-pagination .dropdown-toggle {
|
|
14
15
|
cursor: pointer;
|
|
15
16
|
}
|
|
16
17
|
|
|
17
|
-
.no-js
|
|
18
|
+
.no-js .sort-pagination {
|
|
18
19
|
& {
|
|
19
20
|
@extend .clearfix;
|
|
20
21
|
}
|
|
@@ -37,25 +38,16 @@
|
|
|
37
38
|
}
|
|
38
39
|
}
|
|
39
40
|
|
|
40
|
-
#sort-dropdown .dropdown-toggle, #per_page-dropdown .dropdown-toggle {
|
|
41
|
-
color: $link-color;
|
|
42
|
-
|
|
43
|
-
.caret {
|
|
44
|
-
color: $text-color;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
41
|
.search-input-group {
|
|
49
42
|
width: 80%;
|
|
50
43
|
}
|
|
51
44
|
|
|
52
|
-
@media (max-width:
|
|
45
|
+
@media (max-width: breakpoint-max(xs)) {
|
|
53
46
|
.search-input-group {
|
|
54
47
|
width: auto;
|
|
55
48
|
}
|
|
56
49
|
}
|
|
57
50
|
|
|
58
|
-
.
|
|
51
|
+
.modal_form {
|
|
59
52
|
margin-bottom: 0;
|
|
60
53
|
}
|
|
61
|
-
|
|
@@ -1,40 +1,70 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
.sidenav {
|
|
2
|
+
.navbar-toggler {
|
|
3
|
+
border-color: $navbar-light-toggler-border-color;
|
|
4
|
+
color: $navbar-light-active-color;
|
|
5
|
+
|
|
6
|
+
@include hover-focus {
|
|
7
|
+
color: $navbar-light-active-color;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
5
10
|
|
|
6
|
-
.
|
|
7
|
-
|
|
11
|
+
.navbar-toggler-icon {
|
|
12
|
+
background-image: $navbar-light-toggler-icon-bg;
|
|
13
|
+
}
|
|
8
14
|
}
|
|
9
15
|
|
|
10
|
-
.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
.facets-toggleable {
|
|
17
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
18
|
+
$next: breakpoint-next($breakpoint, $grid-breakpoints);
|
|
19
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
20
|
+
|
|
21
|
+
&#{$infix} {
|
|
22
|
+
@include media-breakpoint-down($breakpoint) {
|
|
23
|
+
.top-panel-heading {
|
|
24
|
+
margin-right: 3em;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@include media-breakpoint-up($next) {
|
|
29
|
+
|
|
30
|
+
// scss-lint:disable ImportantRule
|
|
31
|
+
.facets-collapse {
|
|
32
|
+
display: block !important;
|
|
33
|
+
width: 100%;
|
|
34
|
+
}
|
|
35
|
+
// scss-lint:enable ImportantRule
|
|
36
|
+
|
|
37
|
+
.navbar-toggler {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
14
43
|
}
|
|
15
44
|
|
|
16
|
-
.
|
|
17
|
-
@extend .
|
|
45
|
+
.top-panel-heading {
|
|
46
|
+
@extend .navbar-light;
|
|
47
|
+
@extend .clearfix;
|
|
18
48
|
}
|
|
19
49
|
|
|
20
|
-
|
|
21
|
-
@extend .
|
|
22
|
-
|
|
23
|
-
padding-right: 0;
|
|
24
|
-
border-top: none;
|
|
25
|
-
box-shadow: none;
|
|
26
|
-
max-height: none;
|
|
50
|
+
.facets-heading {
|
|
51
|
+
@extend .h4;
|
|
52
|
+
line-height: inherit;
|
|
27
53
|
}
|
|
28
54
|
|
|
29
|
-
.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
55
|
+
.facet-limit {
|
|
56
|
+
margin-bottom: $spacer;
|
|
57
|
+
|
|
58
|
+
.card-block {
|
|
59
|
+
padding: $spacer;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
33
62
|
|
|
34
|
-
|
|
63
|
+
.facet-limit-active {
|
|
64
|
+
@extend .border-success;
|
|
35
65
|
|
|
36
|
-
.
|
|
37
|
-
|
|
66
|
+
.card-header {
|
|
67
|
+
@extend .bg-success;
|
|
38
68
|
}
|
|
39
69
|
}
|
|
40
70
|
|
|
@@ -42,6 +72,7 @@
|
|
|
42
72
|
display: table;
|
|
43
73
|
table-layout: fixed;
|
|
44
74
|
width: 100%;
|
|
75
|
+
margin-bottom: 0;
|
|
45
76
|
|
|
46
77
|
li {
|
|
47
78
|
|
|
@@ -53,18 +84,14 @@
|
|
|
53
84
|
}
|
|
54
85
|
|
|
55
86
|
.remove {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
.glyphicon {
|
|
60
|
-
top: 0.1em;
|
|
61
|
-
vertical-align: text-top;
|
|
62
|
-
}
|
|
87
|
+
color: $text-muted;
|
|
88
|
+
font-weight: bold;
|
|
89
|
+
padding-left: $spacer / 2;
|
|
63
90
|
|
|
64
91
|
&:hover {
|
|
65
|
-
color:
|
|
92
|
+
color: theme-color("danger");
|
|
93
|
+
text-decoration: none;
|
|
66
94
|
}
|
|
67
|
-
|
|
68
95
|
}
|
|
69
96
|
|
|
70
97
|
@mixin hyphens-auto {
|
|
@@ -79,7 +106,7 @@
|
|
|
79
106
|
padding-right: 1em;
|
|
80
107
|
text-indent: -15px;
|
|
81
108
|
padding-left: 15px;
|
|
82
|
-
padding-bottom: $
|
|
109
|
+
padding-bottom: $spacer / 2;
|
|
83
110
|
@include hyphens-auto;
|
|
84
111
|
}
|
|
85
112
|
|
|
@@ -91,50 +118,28 @@
|
|
|
91
118
|
}
|
|
92
119
|
}
|
|
93
120
|
|
|
94
|
-
.
|
|
95
|
-
{
|
|
96
|
-
.sort_options
|
|
97
|
-
{
|
|
121
|
+
.facet-extended-list {
|
|
122
|
+
.sort-options {
|
|
98
123
|
text-align:right;
|
|
99
124
|
}
|
|
100
125
|
|
|
101
|
-
|
|
102
|
-
.prev_next_links
|
|
103
|
-
{
|
|
126
|
+
.prev-next-links {
|
|
104
127
|
float:left;
|
|
105
128
|
}
|
|
106
|
-
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
/* deprecated in Blacklight 5.x */
|
|
110
|
-
ul.facet_extended_list, .facet_extended_list ul
|
|
111
|
-
{
|
|
112
|
-
@extend .list-unstyled;
|
|
113
|
-
|
|
114
129
|
}
|
|
115
130
|
|
|
116
|
-
.
|
|
117
|
-
|
|
118
|
-
}
|
|
131
|
+
.facet-field-heading {
|
|
132
|
+
@extend .h6;
|
|
119
133
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
content: "\e114"; /* adjust as needed, taken from bootstrap.css */
|
|
124
|
-
float: right; /* adjust as needed */
|
|
125
|
-
color: grey; /* adjust as needed */
|
|
126
|
-
font-size: 0.8em;
|
|
127
|
-
line-height: normal;
|
|
128
|
-
}
|
|
129
|
-
.panel-heading.collapse-toggle.collapsed .panel-title:after {
|
|
130
|
-
/* symbol for "collapsed" panels */
|
|
131
|
-
content: "\e080"; /* adjust as needed, taken from bootstrap.css */
|
|
134
|
+
a {
|
|
135
|
+
color: inherit;
|
|
136
|
+
}
|
|
132
137
|
}
|
|
133
138
|
|
|
134
139
|
/* Sidenav
|
|
135
140
|
-------------------------------------------------- */
|
|
136
141
|
|
|
137
|
-
.
|
|
142
|
+
.facet-pagination {
|
|
138
143
|
@extend .clearfix;
|
|
139
144
|
|
|
140
145
|
&.top {
|
|
@@ -143,29 +148,6 @@ ul.facet_extended_list, .facet_extended_list ul
|
|
|
143
148
|
}
|
|
144
149
|
|
|
145
150
|
|
|
146
|
-
// Facet modal alphabetical filter
|
|
147
|
-
.alpha-filter {
|
|
148
|
-
.btn {
|
|
149
|
-
vertical-align: top;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.pagination {
|
|
153
|
-
margin: 0;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
@media (max-width: $grid-float-breakpoint) {
|
|
158
|
-
|
|
159
|
-
.facets-toggle {
|
|
160
|
-
margin-top: 3px;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
#facets .top-panel-heading {
|
|
164
|
-
border: 1px solid $breadcrumb-color;
|
|
165
|
-
margin-bottom: 1em;
|
|
166
|
-
@include border-bottom-radius($panel-border-radius - 1);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
151
|
|
|
170
152
|
/* style for pivot facet's nested list */
|
|
171
153
|
|
|
@@ -174,7 +156,7 @@ ul.facet_extended_list, .facet_extended_list ul
|
|
|
174
156
|
|
|
175
157
|
ul, .pivot-facet {
|
|
176
158
|
@extend .list-unstyled;
|
|
177
|
-
|
|
178
|
-
|
|
159
|
+
@extend .py-1;
|
|
160
|
+
@extend .px-3;
|
|
179
161
|
}
|
|
180
162
|
}
|
|
@@ -2,67 +2,54 @@
|
|
|
2
2
|
Header bar at top (Bootstrap nav-bar)
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
@if $logo-image {
|
|
10
|
-
background: transparent $logo-image no-repeat top left;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@if $logo_image {
|
|
14
|
-
// deprecated
|
|
15
|
-
background: transparent image_url($logo_image) no-repeat top left;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
display: inline-block;
|
|
19
|
-
text-indent: 100%;
|
|
20
|
-
white-space: nowrap;
|
|
21
|
-
overflow: hidden;
|
|
22
|
-
padding-right:0;
|
|
23
|
-
margin-right:20px;
|
|
24
|
-
padding-left: 0;
|
|
5
|
+
.topbar > .container {
|
|
6
|
+
@media (max-width: breakpoint-max(xs)) {
|
|
7
|
+
margin-left: 0;
|
|
8
|
+
margin-right: 0;
|
|
25
9
|
}
|
|
26
10
|
}
|
|
27
11
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
.input-group {
|
|
32
|
-
width: 100%;
|
|
12
|
+
.navbar-brand { /* The main logo image for the Blacklight instance */
|
|
13
|
+
@if $logo-image {
|
|
14
|
+
background: transparent $logo-image no-repeat top left;
|
|
33
15
|
}
|
|
34
16
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
border-radius: $border-radius-base 0 0 $border-radius-base;
|
|
39
|
-
width: 15ch;
|
|
40
|
-
}
|
|
17
|
+
@if $logo_image {
|
|
18
|
+
// deprecated
|
|
19
|
+
background: transparent image_url($logo_image) no-repeat top left;
|
|
41
20
|
}
|
|
42
21
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
22
|
+
display: inline-block;
|
|
23
|
+
flex: 0 0 150px;
|
|
24
|
+
height: 50px;
|
|
25
|
+
margin-right:20px;
|
|
26
|
+
margin-top: -0.4rem;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
padding-left: 0;
|
|
29
|
+
padding-right: 0;
|
|
30
|
+
text-indent: 100%;
|
|
31
|
+
white-space: nowrap;
|
|
32
|
+
width: 150px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.navbar-search {
|
|
36
|
+
z-index: 1;
|
|
37
|
+
|
|
38
|
+
.search-field {
|
|
39
|
+
// This prevents the widget from being squished so the text overflows
|
|
40
|
+
min-width: 7em;
|
|
46
41
|
}
|
|
47
42
|
|
|
48
43
|
.search-query-form {
|
|
49
|
-
@extend .col-md-
|
|
50
|
-
|
|
44
|
+
@extend .col-md-12;
|
|
45
|
+
@extend .col-lg-8;
|
|
51
46
|
padding-left: 0;
|
|
52
47
|
}
|
|
48
|
+
|
|
53
49
|
.submit-search-text {
|
|
54
50
|
// hide 'search' label at very small screens
|
|
55
|
-
@media screen and (max-width:
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
position: absolute;
|
|
59
|
-
width: 1px;
|
|
60
|
-
height: 1px;
|
|
61
|
-
margin: -1px;
|
|
62
|
-
padding: 0;
|
|
63
|
-
overflow: hidden;
|
|
64
|
-
clip: rect(0,0,0,0);
|
|
65
|
-
border: 0;
|
|
66
|
-
}
|
|
51
|
+
@media screen and (max-width: breakpoint-max(xs)) {
|
|
52
|
+
@include sr-only();
|
|
53
|
+
}
|
|
67
54
|
}
|
|
68
55
|
}
|