geoblacklight 5.3.0 → 6.0.0.pre.alpha.1
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/.engine_cart.yml +14 -0
- data/.github/workflows/ruby.yml +24 -25
- data/.gitignore +0 -9
- data/.prettierignore +4 -0
- data/.prettierrc +5 -0
- data/CONTRIBUTING.md +2 -4
- data/Gemfile +4 -2
- data/README.md +4 -4
- data/Rakefile +0 -22
- data/app/assets/stylesheets/geoblacklight/global.css +7 -0
- data/app/assets/stylesheets/geoblacklight/home.css +22 -0
- data/app/assets/stylesheets/geoblacklight/index_maps.css +36 -0
- data/app/assets/stylesheets/geoblacklight/record.css +39 -0
- data/app/assets/stylesheets/geoblacklight/search.css +56 -0
- data/app/assets/stylesheets/geoblacklight/viewers.css +50 -0
- data/app/assets/stylesheets/geoblacklight.css +14 -0
- data/app/components/blacklight/icons/web_services_component.rb +3 -3
- data/app/components/geoblacklight/accordion_component.html.erb +3 -3
- data/app/components/geoblacklight/accordion_component.rb +4 -0
- data/app/components/geoblacklight/arcgis_component.html.erb +1 -1
- data/app/components/geoblacklight/arcgis_component.rb +1 -1
- data/app/components/geoblacklight/attribute_table_component.html.erb +3 -3
- data/app/components/geoblacklight/data_dictionary_download_component.html.erb +1 -1
- data/app/components/geoblacklight/display_note_component.html.erb +1 -1
- data/app/components/geoblacklight/display_note_component.rb +2 -1
- data/app/components/geoblacklight/document/citation_component.html.erb +1 -1
- data/app/components/geoblacklight/document/sidebar_component.html.erb +1 -1
- data/app/components/geoblacklight/document/sidebar_component.rb +0 -1
- data/app/components/geoblacklight/document_component.html.erb +1 -2
- data/app/components/geoblacklight/header_component.html.erb +4 -4
- data/app/components/geoblacklight/header_icons_component.rb +4 -2
- data/app/components/geoblacklight/homepage_feature_facet_component.html.erb +3 -7
- data/app/components/geoblacklight/homepage_feature_facet_component.rb +12 -3
- data/app/components/geoblacklight/iiif_drag_drop_component.html.erb +2 -2
- data/app/components/geoblacklight/iiif_drag_drop_component.rb +2 -2
- data/app/components/geoblacklight/index_map_inspect_component.html.erb +3 -3
- data/app/components/geoblacklight/index_map_legend_component.html.erb +7 -7
- data/app/components/geoblacklight/index_map_legend_component.rb +7 -0
- data/app/components/geoblacklight/item_map_viewer_component.rb +8 -4
- data/app/components/geoblacklight/location_leaflet_map_component.rb +28 -15
- data/app/components/geoblacklight/relations_component.html.erb +2 -2
- data/app/components/geoblacklight/search_result_component.html.erb +28 -26
- data/app/components/geoblacklight/search_result_component.rb +2 -2
- data/app/components/geoblacklight/static_map_component.rb +5 -4
- data/app/components/geoblacklight/viewer_help_text_component.html.erb +1 -1
- data/app/components/geoblacklight/viewer_help_text_component.rb +1 -1
- data/app/components/geoblacklight/web_services_component.html.erb +1 -1
- data/app/components/geoblacklight/web_services_component.rb +1 -1
- data/app/components/geoblacklight/web_services_default_component.html.erb +6 -6
- data/app/components/geoblacklight/web_services_link_component.rb +12 -9
- data/app/components/geoblacklight/web_services_wfs_component.html.erb +4 -4
- data/app/components/geoblacklight/web_services_wms_component.html.erb +4 -4
- data/app/controllers/download_controller.rb +0 -1
- data/app/controllers/wms_controller.rb +1 -1
- data/app/helpers/geoblacklight_helper.rb +0 -15
- data/app/javascript/geoblacklight/controllers/clipboard_controller.js +6 -6
- data/app/javascript/geoblacklight/controllers/downloads_controller.js +37 -29
- data/app/javascript/geoblacklight/controllers/leaflet_viewer_controller.js +108 -117
- data/app/javascript/geoblacklight/controllers/oembed_viewer_controller.js +5 -5
- data/app/javascript/geoblacklight/controllers/openlayers_viewer_controller.js +27 -30
- data/app/javascript/geoblacklight/controllers/search_results_controller.js +18 -18
- data/app/javascript/geoblacklight/core.js +35 -36
- data/app/javascript/geoblacklight/index.js +10 -10
- data/app/javascript/geoblacklight/initializers/metadata_download.js +23 -25
- data/app/javascript/geoblacklight/initializers/popovers.js +4 -4
- data/app/javascript/geoblacklight/initializers/relations.js +20 -20
- data/app/javascript/geoblacklight/initializers/tooltips.js +19 -23
- data/app/javascript/geoblacklight/initializers/truncation.js +18 -18
- data/app/javascript/geoblacklight/leaflet/basemaps.js +2 -3
- data/app/javascript/geoblacklight/leaflet/constants.js +7 -7
- data/app/javascript/geoblacklight/leaflet/controls/geosearch.js +80 -74
- data/app/javascript/geoblacklight/leaflet/controls/layer_opacity.js +74 -73
- data/app/javascript/geoblacklight/leaflet/controls/sidebar.js +31 -29
- data/app/javascript/geoblacklight/leaflet/controls/sleep.js +54 -51
- data/app/javascript/geoblacklight/leaflet/inspection.js +77 -68
- data/app/javascript/geoblacklight/leaflet/layer_index_map.js +74 -69
- data/app/javascript/geoblacklight/leaflet/layer_wmts.js +14 -16
- data/app/javascript/geoblacklight/leaflet/layers.js +59 -66
- data/app/javascript/geoblacklight/leaflet/utils.js +37 -43
- data/app/javascript/geoblacklight/openlayers/basemaps.js +35 -27
- data/app/javascript/geoblacklight/openlayers/inspection.js +23 -23
- data/app/javascript/geoblacklight/openlayers/layers.js +11 -11
- data/app/models/concerns/geoblacklight/bbox_filter_query.rb +7 -9
- data/app/models/concerns/geoblacklight/solr_document.rb +16 -39
- data/app/models/concerns/geoblacklight/suppressed_records_search_behavior.rb +3 -3
- data/app/views/catalog/_document_split.html.erb +3 -3
- data/app/views/catalog/_home_text.html.erb +22 -14
- data/app/views/catalog/_metadata.html.erb +1 -1
- data/app/views/catalog/_relations_container.html.erb +1 -1
- data/app/views/catalog/index.html.erb +0 -1
- data/app/views/catalog/metadata/_markup.html.erb +1 -2
- data/app/views/catalog/metadata/_missing.html.erb +2 -2
- data/app/views/catalog/web_services.html.erb +1 -1
- data/app/views/relation/index.html.erb +1 -1
- data/app/views/relation/index.json.jbuilder +1 -1
- data/config/initializers/rails_config.rb +0 -3
- data/config/locales/geoblacklight.en.yml +79 -78
- data/geoblacklight.gemspec +1 -2
- data/lib/generators/geoblacklight/assets_generator.rb +35 -26
- data/lib/generators/geoblacklight/install_generator.rb +6 -11
- data/lib/generators/geoblacklight/templates/assets/customizations.css +6 -0
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +97 -73
- data/lib/generators/geoblacklight/templates/settings.yml +97 -113
- data/lib/geoblacklight/configuration/default_settings_builder.rb +18 -0
- data/lib/geoblacklight/configuration/display_note_shown_config.rb +13 -0
- data/lib/geoblacklight/configuration/fields_config.rb +51 -0
- data/lib/geoblacklight/configuration/leaflet_config.rb +73 -0
- data/lib/geoblacklight/configuration/leaflet_layers_config.rb +21 -0
- data/lib/geoblacklight/configuration/leaflet_sleep_config.rb +20 -0
- data/lib/geoblacklight/configuration/legacy_settings_builder.rb +94 -0
- data/lib/geoblacklight/configuration.rb +148 -0
- data/lib/geoblacklight/download.rb +2 -2
- data/lib/geoblacklight/engine.rb +7 -5
- data/lib/geoblacklight/metadata/base.rb +0 -2
- data/lib/geoblacklight/metadata_transformer.rb +0 -2
- data/lib/geoblacklight/references.rb +5 -4
- data/lib/geoblacklight/relation/ancestors.rb +3 -2
- data/lib/geoblacklight/relation/descendants.rb +2 -1
- data/lib/geoblacklight/relation/relation_response.rb +4 -4
- data/lib/geoblacklight/version.rb +1 -1
- data/lib/geoblacklight/wms_layer.rb +3 -3
- data/lib/geoblacklight.rb +7 -1
- data/package.json +10 -31
- data/schema/geoblacklight-schema-aardvark.json +1 -9
- data/schema/readme.md +3 -4
- data/solr/conf/_rest_managed.json +3 -2
- data/solr/conf/schema.xml +1 -1
- data/spec/components/geoblacklight/arcgis_component_spec.rb +6 -6
- data/spec/components/geoblacklight/attribute_table_component_spec.rb +6 -7
- data/spec/components/geoblacklight/citation_component_spec.rb +7 -4
- data/spec/components/geoblacklight/display_note_component_spec.rb +8 -8
- data/spec/components/geoblacklight/document_component_spec.rb +13 -13
- data/spec/components/geoblacklight/download_links_component_spec.rb +17 -14
- data/spec/components/geoblacklight/header_icons_component_spec.rb +6 -11
- data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +22 -30
- data/spec/components/geoblacklight/iiif_drag_drop_component_spec.rb +3 -3
- data/spec/components/geoblacklight/index_map_legend_component_spec.rb +5 -18
- data/spec/components/geoblacklight/item_map_viewer_component_spec.rb +5 -5
- data/spec/components/geoblacklight/login_link_component_spec.rb +4 -5
- data/spec/components/geoblacklight/search_result_component_spec.rb +2 -6
- data/spec/components/geoblacklight/static_map_component_spec.rb +2 -2
- data/spec/components/geoblacklight/viewer_help_text_component_spec.rb +4 -6
- data/spec/components/geoblacklight/web_services_component_spec.rb +11 -10
- data/spec/controllers/catalog_controller_spec.rb +7 -7
- data/spec/controllers/download_controller_spec.rb +1 -1
- data/spec/controllers/relation_controller_spec.rb +1 -1
- data/spec/controllers/wms_controller_spec.rb +1 -1
- data/spec/features/axe_spec.rb +4 -4
- data/spec/features/bookmarks_spec.rb +1 -1
- data/spec/features/citations_spec.rb +1 -1
- data/spec/features/configurable_basemap_spec.rb +1 -1
- data/spec/features/data_dictionary_download_spec.rb +1 -1
- data/spec/features/download_layer_spec.rb +1 -1
- data/spec/features/empty_search_spec.rb +1 -1
- data/spec/features/esri_viewer_spec.rb +1 -1
- data/spec/features/exports_spec.rb +1 -1
- data/spec/features/full_screen_control_spec.rb +3 -10
- data/spec/features/help_text_spec.rb +1 -1
- data/spec/features/home_page_spec.rb +1 -1
- data/spec/features/index_map_spec.rb +3 -3
- data/spec/features/index_view_spec.rb +7 -7
- data/spec/features/layer_inspection_spec.rb +1 -1
- data/spec/features/layer_opacity_spec.rb +1 -1
- data/spec/features/layer_preview_spec.rb +1 -1
- data/spec/features/layer_with_no_references_spec.rb +1 -1
- data/spec/features/linkified_attribute_table_spec.rb +1 -1
- data/spec/features/metadata_panel_spec.rb +1 -1
- data/spec/features/missing_metadata_spec.rb +1 -1
- data/spec/features/multiple_downloads_spec.rb +1 -1
- data/spec/features/oembed_spec.rb +1 -1
- data/spec/features/relations_spec.rb +2 -2
- data/spec/features/saved_searches_spec.rb +1 -1
- data/spec/features/search_bar_spec.rb +1 -1
- data/spec/features/search_results_complex_geometry_spec.rb +1 -1
- data/spec/features/search_results_icons_spec.rb +3 -4
- data/spec/features/search_results_map_spec.rb +1 -1
- data/spec/features/search_results_overlap_ratio_spec.rb +3 -3
- data/spec/features/search_spec.rb +1 -1
- data/spec/features/show_page_download_spec.rb +1 -1
- data/spec/features/show_page_metadata_spec.rb +2 -2
- data/spec/features/show_page_sidebar_static_map_spec.rb +1 -1
- data/spec/features/sms_spec.rb +1 -1
- data/spec/features/suppressed_records_spec.rb +1 -1
- data/spec/features/tilejson_spec.rb +1 -1
- data/spec/features/tms_spec.rb +1 -1
- data/spec/features/web_services_modal_spec.rb +1 -1
- data/spec/features/wmts_spec.rb +1 -1
- data/spec/features/xyz_spec.rb +1 -1
- data/spec/fixtures/manifests/tilejson.json +10 -19
- data/spec/fixtures/metadata/fgdc.html +1 -1
- data/spec/fixtures/metadata/iso.html +1 -1
- data/spec/fixtures/solr_documents/README.md +0 -1
- data/spec/fixtures/solr_documents/actual-papermap1.json +9 -28
- data/spec/fixtures/solr_documents/actual-point1.json +12 -39
- data/spec/fixtures/solr_documents/actual-polygon1.json +10 -30
- data/spec/fixtures/solr_documents/actual-raster1.json +14 -46
- data/spec/fixtures/solr_documents/all-relationships.json +12 -36
- data/spec/fixtures/solr_documents/b1g_iiif_manifest.json +33 -62
- data/spec/fixtures/solr_documents/b1g_wabash_child_15.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_child_16.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_child_17.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_child_18.json +13 -40
- data/spec/fixtures/solr_documents/b1g_wabash_parent.json +13 -40
- data/spec/fixtures/solr_documents/baruch_ancestor1.json +13 -40
- data/spec/fixtures/solr_documents/baruch_ancestor2.json +13 -40
- data/spec/fixtures/solr_documents/baruch_documentation_download.json +14 -46
- data/spec/fixtures/solr_documents/bbox-spans-180.json +7 -21
- data/spec/fixtures/solr_documents/complex-geom.json +11 -37
- data/spec/fixtures/solr_documents/cornell_html_metadata.json +12 -37
- data/spec/fixtures/solr_documents/display-note.json +11 -33
- data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +13 -39
- data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +13 -40
- data/spec/fixtures/solr_documents/esri-feature-layer.json +13 -39
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +13 -40
- data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +16 -54
- data/spec/fixtures/solr_documents/esri-wms-layer.json +12 -36
- data/spec/fixtures/solr_documents/harvard_raster.json +12 -37
- data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +9 -27
- data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +12 -41
- data/spec/fixtures/solr_documents/index-map-polygon.json +12 -41
- data/spec/fixtures/solr_documents/index-map-stanford.json +14 -45
- data/spec/fixtures/solr_documents/index-map-v1-complex.json +13 -38
- data/spec/fixtures/solr_documents/index_map_point.json +13 -42
- data/spec/fixtures/solr_documents/metadata_no_geom.json +4 -14
- data/spec/fixtures/solr_documents/metadata_no_provider.json +8 -25
- data/spec/fixtures/solr_documents/multiple-downloads.json +6 -18
- data/spec/fixtures/solr_documents/no_locn_geometry.json +4 -12
- data/spec/fixtures/solr_documents/no_spatial.json +4 -12
- data/spec/fixtures/solr_documents/oembed.json +8 -25
- data/spec/fixtures/solr_documents/princeton-child1.json +9 -29
- data/spec/fixtures/solr_documents/princeton-child2.json +9 -29
- data/spec/fixtures/solr_documents/princeton-child3.json +9 -29
- data/spec/fixtures/solr_documents/princeton-child4.json +9 -29
- data/spec/fixtures/solr_documents/princeton-parent.json +10 -33
- data/spec/fixtures/solr_documents/public_cog_princeton.json +9 -27
- data/spec/fixtures/solr_documents/public_iiif_princeton.json +13 -43
- data/spec/fixtures/solr_documents/public_pmtiles_princeton.json +29 -39
- data/spec/fixtures/solr_documents/public_polygon_mit.json +9 -30
- data/spec/fixtures/solr_documents/restricted-line.json +14 -47
- data/spec/fixtures/solr_documents/the-related-record.json +4 -12
- data/spec/fixtures/solr_documents/tilejson.json +23 -46
- data/spec/fixtures/solr_documents/tms.json +7 -21
- data/spec/fixtures/solr_documents/umn_metro_result1.json +13 -41
- data/spec/fixtures/solr_documents/umn_state_result1.json +13 -39
- data/spec/fixtures/solr_documents/umn_state_result2.json +13 -39
- data/spec/fixtures/solr_documents/uva_slug_colon.json +10 -30
- data/spec/fixtures/solr_documents/wmts-multiple.json +23 -39
- data/spec/fixtures/solr_documents/wmts-single-layer.json +23 -46
- data/spec/fixtures/solr_documents/xyz.json +10 -33
- data/spec/helpers/geoblacklight_helper_spec.rb +5 -50
- data/spec/javascripts/geoblacklight_spec.js +10 -10
- data/spec/javascripts/metadata_download_button_spec.js +14 -13
- data/spec/lib/geoblacklight/bounding_box_spec.rb +1 -1
- data/spec/lib/geoblacklight/configuration/default_settings_builder_spec.rb +9 -0
- data/spec/lib/geoblacklight/configuration_spec.rb +13 -0
- data/spec/lib/geoblacklight/download/csv_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/geojson_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +5 -2
- data/spec/lib/geoblacklight/download/kmz_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +2 -2
- data/spec/lib/geoblacklight/download_spec.rb +15 -6
- data/spec/lib/geoblacklight/geometry_spec.rb +1 -1
- data/spec/lib/geoblacklight/item_viewer_spec.rb +2 -2
- data/spec/lib/geoblacklight/metadata/base_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata/html_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer/base_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer/fgdc_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer/iso19139_spec.rb +1 -1
- data/spec/lib/geoblacklight/metadata_transformer_spec.rb +1 -1
- data/spec/lib/geoblacklight/reference_spec.rb +1 -1
- data/spec/lib/geoblacklight/references_spec.rb +6 -4
- data/spec/lib/geoblacklight/relation/ancestors_spec.rb +10 -4
- data/spec/lib/geoblacklight/relation/descendants_spec.rb +9 -4
- data/spec/lib/geoblacklight/relation/relation_response_spec.rb +12 -15
- data/spec/lib/geoblacklight/wms_layer/feature_info_response_spec.rb +1 -1
- data/spec/lib/geoblacklight/wms_layer_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +20 -11
- data/spec/models/concerns/geoblacklight/solr_document/citation_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/solr_document/finder_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +1 -1
- data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -39
- data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +2 -2
- data/spec/routing/catalog_routing_spec.rb +1 -1
- data/spec/spec_helper.rb +21 -10
- data/spec/tasks/geoblacklight_spec.rb +1 -1
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -3
- metadata +33 -184
- data/Procfile.dev +0 -3
- data/app/assets/stylesheets/geoblacklight/geoblacklight.scss +0 -2
- data/app/assets/stylesheets/geoblacklight/modules/_base.scss +0 -31
- data/app/assets/stylesheets/geoblacklight/modules/_blacklight_overrides.scss +0 -40
- data/app/assets/stylesheets/geoblacklight/modules/_styles.scss +0 -9
- data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +0 -62
- data/app/assets/stylesheets/geoblacklight/modules/geosearch.scss +0 -23
- data/app/assets/stylesheets/geoblacklight/modules/home.scss +0 -13
- data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +0 -116
- data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +0 -61
- data/app/assets/stylesheets/geoblacklight/modules/item.scss +0 -78
- data/app/assets/stylesheets/geoblacklight/modules/layer_opacity.scss +0 -87
- data/app/assets/stylesheets/geoblacklight/modules/leaflet.scss +0 -4
- data/app/assets/stylesheets/geoblacklight/modules/metadata.scss +0 -31
- data/app/assets/stylesheets/geoblacklight/modules/metadata_content.scss +0 -43
- data/app/assets/stylesheets/geoblacklight/modules/metadata_markup.scss +0 -9
- data/app/assets/stylesheets/geoblacklight/modules/metadata_missing.scss +0 -7
- data/app/assets/stylesheets/geoblacklight/modules/modal.scss +0 -5
- data/app/assets/stylesheets/geoblacklight/modules/results.scss +0 -60
- data/app/assets/stylesheets/geoblacklight/modules/search_widgets.scss +0 -5
- data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +0 -42
- data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +0 -34
- data/app/assets/stylesheets/geoblacklight/modules/web_services.scss +0 -5
- data/app/components/blacklight/icons/american_geographical_society_library_uwm_libraries_component.rb +0 -46
- data/app/components/blacklight/icons/arizona_component.rb +0 -24
- data/app/components/blacklight/icons/baruch_cuny_component.rb +0 -23
- data/app/components/blacklight/icons/bookmark_component.rb +0 -23
- data/app/components/blacklight/icons/circle_info_solid_component.rb +0 -23
- data/app/components/blacklight/icons/columbia_component.rb +0 -23
- data/app/components/blacklight/icons/cornell_component.rb +0 -25
- data/app/components/blacklight/icons/george_mason_component.rb +0 -24
- data/app/components/blacklight/icons/harvard_component.rb +0 -23
- data/app/components/blacklight/icons/indiana_component.rb +0 -23
- data/app/components/blacklight/icons/lewis_clark_component.rb +0 -25
- data/app/components/blacklight/icons/massgis_component.rb +0 -23
- data/app/components/blacklight/icons/michigan_state_university_component.rb +0 -25
- data/app/components/blacklight/icons/mit_component.rb +0 -23
- data/app/components/blacklight/icons/northwestern_university_component.rb +0 -24
- data/app/components/blacklight/icons/nyu_component.rb +0 -26
- data/app/components/blacklight/icons/pennsylvania_state_university_component.rb +0 -25
- data/app/components/blacklight/icons/princeton_component.rb +0 -23
- data/app/components/blacklight/icons/purdue_university_component.rb +0 -25
- data/app/components/blacklight/icons/rutgers_component.rb +0 -25
- data/app/components/blacklight/icons/sms_component.rb +0 -23
- data/app/components/blacklight/icons/stanford_component.rb +0 -23
- data/app/components/blacklight/icons/texas_component.rb +0 -23
- data/app/components/blacklight/icons/the_ohio_state_university_component.rb +0 -26
- data/app/components/blacklight/icons/tufts_component.rb +0 -23
- data/app/components/blacklight/icons/ucla_component.rb +0 -23
- data/app/components/blacklight/icons/university_of_california_berkeley_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_chicago_component.rb +0 -25
- data/app/components/blacklight/icons/university_of_colorado_boulder_component.rb +0 -26
- data/app/components/blacklight/icons/university_of_illinois_urbana_champaign_component.rb +0 -25
- data/app/components/blacklight/icons/university_of_iowa_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_maryland_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_michigan_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_minnesota_component.rb +0 -24
- data/app/components/blacklight/icons/university_of_nebraska_lincoln_component.rb +0 -27
- data/app/components/blacklight/icons/university_of_wisconsin_madison_component.rb +0 -24
- data/app/components/blacklight/icons/uva_component.rb +0 -23
- data/app/components/geoblacklight/icon_facet_item_component.rb +0 -33
- data/app/components/geoblacklight/web_services_link_component.html.erb +0 -3
- data/bin/vite +0 -29
- data/config/initializers/new_gbl_settings_defaults_4.1.yml +0 -104
- data/lib/generators/geoblacklight/assets/importmap_generator.rb +0 -73
- data/lib/generators/geoblacklight/assets/vite_generator.rb +0 -89
- data/lib/generators/geoblacklight/templates/assets/_customizations.scss +0 -23
- data/lib/generators/geoblacklight/templates/assets/application.js +0 -17
- data/lib/generators/geoblacklight/templates/assets/application.scss +0 -9
- data/lib/generators/geoblacklight/templates/assets/geoblacklight.scss +0 -11
- data/lib/generators/geoblacklight/templates/base.html.erb +0 -46
- data/lib/generators/geoblacklight/templates/vite.config.ts +0 -23
- data/lib/generators/geoblacklight/templates/vite.json +0 -16
- data/schema/geoblacklight-schema-1.0.json +0 -214
- data/solr/conf/xslt/example.xsl +0 -132
- data/solr/conf/xslt/example_atom.xsl +0 -67
- data/solr/conf/xslt/example_rss.xsl +0 -66
- data/solr/conf/xslt/luke.xsl +0 -337
- data/spec/components/blacklight/icons/american_geographical_society_library_uwm_libraries_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/arizona_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/arrow_circle_down_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/baruch_cuny_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/book_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/bookmark_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/cd_rom_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/child_item_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/circle_info_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/citation_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/collection_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/collections_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/columbia_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/cornell_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/datasets_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/dvd_rom_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/email_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/esri_globe_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/fire_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/george_mason_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/globe_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/harvard_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/home_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/iiif_drag_drop_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/image_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/imagery_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/indiana_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/leaf_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/lewis_clark_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/lightbulb_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/line_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/map_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/map_marker_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/maps_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/massgis_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/metadata_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/michigan_state_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/mit_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/mixed_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/multilinestring_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/multipoint_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/multipolygon_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/northwestern_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/nyu_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/pagelines_brands_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/paper_map_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/parent_item_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/pennsylvania_state_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/point_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/polygon_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/polyline_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/princeton_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/public_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/purdue_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/raster_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/restricted_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/rutgers_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/sms_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/stanford_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/table_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/tags_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/texas_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/the_ohio_state_university_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/triangle_exclamation_solid_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/tufts_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/ucla_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_california_berkeley_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_chicago_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_colorado_boulder_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_illinois_urbana_champaign_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_iowa_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_maryland_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_michigan_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_minnesota_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_nebraska_lincoln_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/university_of_wisconsin_madison_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/uva_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/web_services_component_spec.rb +0 -15
- data/spec/components/blacklight/icons/websites_component_spec.rb +0 -15
- data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +0 -18
- data/spec/config/initializers/rails_config_spec.rb +0 -16
- data/spec/fixtures/solr_documents/public_direct_download.json +0 -62
- data/spec/support/backport_test_helpers.rb +0 -47
- data/spec/support/view_component_capybara_test_helpers.rb +0 -8
- data/vite.config.ts +0 -32
- /data/app/assets/images/{blacklight → geoblacklight}/logo.svg +0 -0
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
// SVG icons via FontAwesome and IcoMoon, see geoblacklight-icons.json for project data
|
|
2
|
-
|
|
3
|
-
span.icon-missing {
|
|
4
|
-
display: inline-block;
|
|
5
|
-
height: 1em;
|
|
6
|
-
width: 1em;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
// CatalogController#index - Home
|
|
10
|
-
.category-icon {
|
|
11
|
-
display: flex;
|
|
12
|
-
place-content: center;
|
|
13
|
-
padding: 2rem 0;
|
|
14
|
-
|
|
15
|
-
.blacklight-icons {
|
|
16
|
-
height: 6rem;
|
|
17
|
-
width: 6rem;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.blacklight-icons svg {
|
|
21
|
-
aspect-ratio: 1;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// CatalogController#show
|
|
26
|
-
.document {
|
|
27
|
-
h1 {
|
|
28
|
-
.blacklight-icons {
|
|
29
|
-
height: 1.5rem;
|
|
30
|
-
width: auto;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.blacklight-icons svg {
|
|
34
|
-
width: auto;
|
|
35
|
-
height: 1.5rem;
|
|
36
|
-
vertical-align: baseline;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
// CatalogController#index - search results
|
|
42
|
-
.facet-label {
|
|
43
|
-
.blacklight-icons,
|
|
44
|
-
span.icon-missing {
|
|
45
|
-
margin-right: 0.5em;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.blacklight-icons-iiif-drag-drop,
|
|
50
|
-
.blacklight-icons-iiif-drag-drop svg {
|
|
51
|
-
height: 2rem;
|
|
52
|
-
width: 2rem;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// Begin - Addresses GBL issue #634
|
|
56
|
-
// Emulates font-size for SVG icons and aligns to baseline
|
|
57
|
-
.status-icons,
|
|
58
|
-
.facet-label,
|
|
59
|
-
.show-tools,
|
|
60
|
-
.gbl-display-note,
|
|
61
|
-
.relations {
|
|
62
|
-
.blacklight-icons {
|
|
63
|
-
display: inline-flex;
|
|
64
|
-
height: var(--bs-body-font-size);
|
|
65
|
-
width: var(--bs-body-font-size);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.blacklight-icons svg {
|
|
69
|
-
height: 1rem;
|
|
70
|
-
width: 1rem;
|
|
71
|
-
top: 0.125rem;
|
|
72
|
-
position: relative;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
// End - Addresses GBL issue #634
|
|
76
|
-
|
|
77
|
-
// Sidebar Action Icons
|
|
78
|
-
#citationLink {
|
|
79
|
-
margin-left: 0rem;
|
|
80
|
-
padding-left: 1.5rem;
|
|
81
|
-
background-position: left center;
|
|
82
|
-
background-repeat: no-repeat;
|
|
83
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='14' height='14' viewBox='0 0 512 512' aria-label='Citation' role='img'%3E%3Ctitle%3ECitation%3C/title%3E%3Cpath fill='%236c757d' d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'%3E%3C/path%3E%3C/svg%3E");
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
#emailLink {
|
|
87
|
-
margin-left: 0rem;
|
|
88
|
-
padding-left: 1.5rem;
|
|
89
|
-
background-position: left center;
|
|
90
|
-
background-repeat: no-repeat;
|
|
91
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='14' height='14' viewBox='0 0 28 28' aria-label='Email' role='img'%3E%3Ctitle%3EEmail%3C/title%3E%3Cpath fill='%236c757d' d='M28 11.1v12.4a2.5 2.5 0 0 1-2.5 2.5h-23A2.5 2.5 0 0 1 0 23.5V11.1c.47.51 1 .96 1.58 1.35 2.6 1.77 5.22 3.53 7.76 5.4 1.32.96 2.94 2.15 4.64 2.15h.04c1.7 0 3.32-1.19 4.64-2.16 2.54-1.84 5.17-3.62 7.78-5.39.56-.39 1.1-.84 1.56-1.36zm0-4.6c0 1.75-1.3 3.33-2.67 4.28-2.44 1.69-4.9 3.38-7.31 5.08-1.02.7-2.74 2.14-4 2.14h-.04c-1.26 0-2.98-1.44-4-2.14-2.42-1.7-4.87-3.4-7.3-5.08C1.59 10.03 0 8.26 0 6.84 0 5.31.83 4 2.5 4h23C26.86 4 28 5.12 28 6.5z'%3E%3C/path%3E%3C/svg%3E");
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
#smsLink {
|
|
95
|
-
margin-left: -0.2rem;
|
|
96
|
-
padding-left: 1.7rem;
|
|
97
|
-
background-position: left center;
|
|
98
|
-
background-repeat: no-repeat;
|
|
99
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='20' height='20' viewBox='0 0 12 28' aria-label='SMS' role='img'%3E%3Ctitle%3ESMS%3C/title%3E%3Cpath fill='%236c757d' d='M7.25 22a1.25 1.25 0 0 0-2.5 0 1.25 1.25 0 0 0 2.5 0zm3.25-2.5v-11c0-.27-.23-.5-.5-.5H2c-.27 0-.5.23-.5.5v11c0 .27.23.5.5.5h8c.27 0 .5-.23.5-.5zm-3-13.25c0-.14-.1-.25-.25-.25h-2.5c-.14 0-.25.1-.25.25s.1.25.25.25h2.5c.14 0 .25-.1.25-.25zM12 6v16c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2z'%3E%3C/path%3E%3C/svg%3E");
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
#web_servicesLink {
|
|
103
|
-
margin-left: 0rem;
|
|
104
|
-
padding-left: 1.5rem;
|
|
105
|
-
background-position: left center;
|
|
106
|
-
background-repeat: no-repeat;
|
|
107
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='14' height='14' viewBox='0 0 28 28' aria-label='Web Services' role='img'%3E%3Ctitle%3EWeb Services%3C/title%3E%3Cpath fill='%236c757d' d='M22 14.5v5a4.5 4.5 0 0 1-4.5 4.5h-13A4.5 4.5 0 0 1 0 19.5v-13A4.5 4.5 0 0 1 4.5 2h11c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-11A2.5 2.5 0 0 0 2 6.5v13A2.5 2.5 0 0 0 4.5 22h13a2.5 2.5 0 0 0 2.5-2.5v-5c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5zM28 1v8a1 1 0 0 1-1 1 .99.99 0 0 1-.7-.3l-2.75-2.75-10.19 10.19c-.1.1-.23.16-.36.16s-.26-.07-.36-.16l-1.78-1.78c-.1-.1-.15-.23-.15-.36s.06-.27.15-.36L21.05 4.45 18.3 1.7A1 1 0 0 1 18 1a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1z'%3E%3C/path%3E%3C/svg%3E");
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
#metadataLink {
|
|
111
|
-
margin-left: 0.1rem;
|
|
112
|
-
padding-left: 1.5rem;
|
|
113
|
-
background-position: left center;
|
|
114
|
-
background-repeat: no-repeat;
|
|
115
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='14' height='14' viewBox='0 0 27 32' role='img'%3E%3Ctitle%3EMetadata%3C/title%3E%3Cpath fill='%236c757d' d='M26.217 8.503c0.171 0.171 0.343 0.389 0.491 0.64h-8.423v-8.434c0.251 0.171 0.457 0.331 0.64 0.503zM17.714 11.429h9.714v18.857c0 0.949-0.766 1.714-1.714 1.714h-24c-0.947 0-1.714-0.767-1.714-1.714v0-28.571c0-0.949 0.766-1.714 1.714-1.714h14.286v9.714c0 0.949 0.766 1.714 1.714 1.714zM20.571 24.571v-1.143c0-0.316-0.256-0.571-0.571-0.571v0h-12.571c-0.316 0-0.571 0.256-0.571 0.571v0 1.143c0 0.32 0.251 0.571 0.571 0.571h12.571c0.316 0 0.571-0.256 0.571-0.571v0zM20.571 20v-1.143c0-0.316-0.256-0.571-0.571-0.571v0h-12.571c-0.316 0-0.571 0.256-0.571 0.571v0 1.143c0 0.32 0.251 0.571 0.571 0.571h12.571c0.316 0 0.571-0.256 0.571-0.571v0zM20.571 15.429v-1.143c0-0.316-0.256-0.571-0.571-0.571v0h-12.571c-0.316 0-0.571 0.256-0.571 0.571v0 1.143c0 0.32 0.251 0.571 0.571 0.571h12.571c0.316 0 0.571-0.256 0.571-0.571v0z'%3E%3C/path%3E%3C/svg%3E");
|
|
116
|
-
}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
.index-map-info {
|
|
2
|
-
margin-top: 20px;
|
|
3
|
-
|
|
4
|
-
dl, dt, dd {
|
|
5
|
-
margin: 5px 0;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.viewer[data-leaflet-viewer-protocol-value="IndexMap"] {
|
|
10
|
-
.leaflet-interactive {
|
|
11
|
-
stroke: black;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.index-map-legend {
|
|
16
|
-
font-size: 15px;
|
|
17
|
-
display: flex;
|
|
18
|
-
|
|
19
|
-
&-info {
|
|
20
|
-
display: flex;
|
|
21
|
-
flex-wrap: nowrap;
|
|
22
|
-
align-items: center;
|
|
23
|
-
margin-left: 15px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
span {
|
|
27
|
-
display: inline-block;
|
|
28
|
-
border: 1px solid black;
|
|
29
|
-
margin-right: 10px;
|
|
30
|
-
height: 24px;
|
|
31
|
-
width: 24px;
|
|
32
|
-
min-height: 24px;
|
|
33
|
-
min-width: 24px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
p {
|
|
37
|
-
margin-bottom: 0;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
&-default, &-unavailable, &-selected {
|
|
41
|
-
opacity: 0.65;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
@media(max-width: 768px){
|
|
45
|
-
position: revert;
|
|
46
|
-
margin-bottom: 1.25rem;
|
|
47
|
-
|
|
48
|
-
:first-child {
|
|
49
|
-
margin-left: 0;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@media(max-width: 480px){
|
|
54
|
-
display: block;
|
|
55
|
-
|
|
56
|
-
.index-map-legend-info {
|
|
57
|
-
margin-left: 0;
|
|
58
|
-
margin-bottom: 10px;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
#document {
|
|
2
|
-
.document-metadata.dl-invert {
|
|
3
|
-
dt {
|
|
4
|
-
font-weight: bold;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
#viewer-container {
|
|
9
|
-
.viewer {
|
|
10
|
-
border: 1px solid $gray-400;
|
|
11
|
-
min-height: 27.5rem;
|
|
12
|
-
width: 100%;
|
|
13
|
-
|
|
14
|
-
// Ensure embeds, openlayers viewer, and IIIF viewer fit their container
|
|
15
|
-
iframe, .ol-viewport, .openseadragon-container {
|
|
16
|
-
min-height: 27.5rem;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// set cursor for inspectable maps
|
|
21
|
-
.leaflet-clickable {
|
|
22
|
-
cursor: crosshair;
|
|
23
|
-
}
|
|
24
|
-
margin-bottom: 1rem;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
#mirador {
|
|
28
|
-
position: relative;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.help-text {
|
|
32
|
-
cursor: pointer;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// Remove bootstrap transition delay since we're not animating it
|
|
36
|
-
.truncate-abstract {
|
|
37
|
-
transition: none;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.truncate-abstract.collapse:not(.show),
|
|
41
|
-
.truncate-abstract.collapsing {
|
|
42
|
-
display: block;
|
|
43
|
-
display: -webkit-box;
|
|
44
|
-
height: auto;
|
|
45
|
-
min-height: #{8 * $line-height-base}rem;
|
|
46
|
-
max-height: #{8 * $line-height-base}rem;
|
|
47
|
-
overflow-y: hidden;
|
|
48
|
-
-webkit-box-orient: vertical;
|
|
49
|
-
-webkit-line-clamp: 8;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
#table-container {
|
|
53
|
-
margin-bottom: 1rem;
|
|
54
|
-
|
|
55
|
-
table {
|
|
56
|
-
margin-bottom: 0px;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.attribute-data {
|
|
61
|
-
--bs-accordion-active-bg: none;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.sidebar-container {
|
|
65
|
-
width: 25vw;
|
|
66
|
-
overflow: scroll;
|
|
67
|
-
overscroll-behavior: contain;
|
|
68
|
-
|
|
69
|
-
img {
|
|
70
|
-
width: 100%;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@media screen and (max-width: breakpoint-max(sm)) {
|
|
74
|
-
width: calc(100vw - 100px);
|
|
75
|
-
max-height: 20vh!important;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
.leaflet-control.opacity-control {
|
|
2
|
-
background-color: #a9acb1;
|
|
3
|
-
border-radius: 15px;
|
|
4
|
-
color: black;
|
|
5
|
-
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
6
|
-
display: block;
|
|
7
|
-
height: 200px;
|
|
8
|
-
left: 11px;
|
|
9
|
-
position: relative;
|
|
10
|
-
top: 15px;
|
|
11
|
-
width: 5px;
|
|
12
|
-
|
|
13
|
-
.opacity-handle {
|
|
14
|
-
background-color: #fff;
|
|
15
|
-
border-radius: 4px;
|
|
16
|
-
border: 1px solid #eee;
|
|
17
|
-
cursor: ns-resize;
|
|
18
|
-
font-size: 10px;
|
|
19
|
-
height: 26px;
|
|
20
|
-
left: -11px;
|
|
21
|
-
line-height: 26px;
|
|
22
|
-
position: absolute;
|
|
23
|
-
text-align: center;
|
|
24
|
-
top: 0;
|
|
25
|
-
width: 26px;
|
|
26
|
-
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
|
|
27
|
-
|
|
28
|
-
&:hover {
|
|
29
|
-
background-color: #f4f4f4;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.opacity-arrow-up {
|
|
34
|
-
color: #aaa;
|
|
35
|
-
position: absolute;
|
|
36
|
-
top: -11px;
|
|
37
|
-
text-align: center;
|
|
38
|
-
width: 100%;
|
|
39
|
-
|
|
40
|
-
&:before {
|
|
41
|
-
content: '=';
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.opacity-arrow-down {
|
|
46
|
-
bottom: -10px;
|
|
47
|
-
color: #aaa;
|
|
48
|
-
position: absolute;
|
|
49
|
-
text-align: center;
|
|
50
|
-
width: 100%;
|
|
51
|
-
|
|
52
|
-
&:before {
|
|
53
|
-
content: '=';
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.opacity-bottom {
|
|
58
|
-
background-color: #017afd;
|
|
59
|
-
border-radius: 15px;
|
|
60
|
-
display: block;
|
|
61
|
-
height: 137px;
|
|
62
|
-
left: 0px;
|
|
63
|
-
position: relative;
|
|
64
|
-
top: 63px;
|
|
65
|
-
width: 5px;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// Area underneath slider to prevent unintentioned map clicks
|
|
69
|
-
.opacity-area {
|
|
70
|
-
padding: 14px;
|
|
71
|
-
cursor: default;
|
|
72
|
-
height: 200px;
|
|
73
|
-
left: -11px;
|
|
74
|
-
position: absolute;
|
|
75
|
-
top: 0px;
|
|
76
|
-
width: 20px;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.opacity-control.unselectable {
|
|
81
|
-
-webkit-touch-callout: none;
|
|
82
|
-
-webkit-user-select: none;
|
|
83
|
-
-khtml-user-select: none;
|
|
84
|
-
-moz-user-select: none;
|
|
85
|
-
-ms-user-select: none;
|
|
86
|
-
user-select: none;
|
|
87
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Rules for the geospatial metadata Bootstrap Modal dialog
|
|
3
|
-
*/
|
|
4
|
-
.modal-dialog.metadata-modal {
|
|
5
|
-
width: 90%;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.metadata-body.modal-body {
|
|
9
|
-
overflow-y: scroll;
|
|
10
|
-
height: calc(100vh - 190px);
|
|
11
|
-
|
|
12
|
-
.metadata-view {
|
|
13
|
-
.nav-pills {
|
|
14
|
-
text-align: center;
|
|
15
|
-
|
|
16
|
-
li {
|
|
17
|
-
float: none;
|
|
18
|
-
display: inline-block;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// Begin - Addresses GBL issue #766 - adds space betwwen the links in the metadata modal
|
|
23
|
-
.nav>li>a {
|
|
24
|
-
position: relative;
|
|
25
|
-
display: block;
|
|
26
|
-
padding: 10px 15px;
|
|
27
|
-
}
|
|
28
|
-
//End - Addresses GBL issue #766
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Rules for the geospatial metadata markup generated by GeoCombine
|
|
3
|
-
*
|
|
4
|
-
*/
|
|
5
|
-
#metadata-container {
|
|
6
|
-
height: calc(100vh - 260px);
|
|
7
|
-
|
|
8
|
-
ul {
|
|
9
|
-
margin-top: 0;
|
|
10
|
-
margin-bottom: 10px;
|
|
11
|
-
display: inline-block;
|
|
12
|
-
border: 1px solid black;
|
|
13
|
-
background-color: #f5f5f5;
|
|
14
|
-
padding-right: 40px;
|
|
15
|
-
|
|
16
|
-
li {
|
|
17
|
-
margin-top: 6px;
|
|
18
|
-
margin-bottom: 6px;
|
|
19
|
-
list-style-type: decimal;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
div dl {
|
|
24
|
-
padding-right: 8px;
|
|
25
|
-
padding-left: 8px;
|
|
26
|
-
|
|
27
|
-
dt {
|
|
28
|
-
margin-top: 12px;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
/*
|
|
33
|
-
* Highest level heading in the attribute tree
|
|
34
|
-
*/
|
|
35
|
-
div > dl > dt {
|
|
36
|
-
font-size: 22px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
iframe {
|
|
40
|
-
height: 100%;
|
|
41
|
-
width: 100%;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
[data-page="index"], [data-page="bookmarks"] {
|
|
2
|
-
height: 480px;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.more-info-area {
|
|
6
|
-
max-height: 100px;
|
|
7
|
-
overflow:hidden;
|
|
8
|
-
padding-left: 2ch;
|
|
9
|
-
border-bottom: 1px dotted $gray-300 !important;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.documents-list {
|
|
13
|
-
@extend .mb-4;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.index-split {
|
|
17
|
-
.index_title {
|
|
18
|
-
display: flex;
|
|
19
|
-
font-size: 1rem;
|
|
20
|
-
padding-right: 0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.document-counter {
|
|
24
|
-
@extend .pe-1;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// rotate BS5's default caret
|
|
28
|
-
.dropdown-toggle:after {
|
|
29
|
-
transform: rotate(-90deg);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.dropdown-toggle[aria-expanded="true"]:after {
|
|
33
|
-
transform: rotate(0deg);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.status-icons {
|
|
37
|
-
cursor: pointer;
|
|
38
|
-
margin-left: 0.5rem;
|
|
39
|
-
margin-top: -3px;
|
|
40
|
-
white-space: nowrap;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
#main-container {
|
|
45
|
-
.viewer[data-page="index"] {
|
|
46
|
-
height: 400px;
|
|
47
|
-
|
|
48
|
-
.leaflet-control-container {
|
|
49
|
-
.search-control {
|
|
50
|
-
a {
|
|
51
|
-
color: $white;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.row > #leaflet-viewer {
|
|
59
|
-
--bs-gutter-x: 0;
|
|
60
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
// Mixins and shared properties for sidebar elements
|
|
2
|
-
@mixin sidebar-children {
|
|
3
|
-
margin-bottom: 20px;
|
|
4
|
-
margin-top: 20px;
|
|
5
|
-
|
|
6
|
-
.card-header h2 {
|
|
7
|
-
@extend .h6;
|
|
8
|
-
margin-bottom: 0px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.card-subtitle {
|
|
12
|
-
margin: 1rem 0 0;
|
|
13
|
-
font-size: 1rem;
|
|
14
|
-
font-weight: normal;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.list-group {
|
|
18
|
-
border: 0;
|
|
19
|
-
margin: 8px 0;
|
|
20
|
-
|
|
21
|
-
.list-group-item {
|
|
22
|
-
border: 0;
|
|
23
|
-
padding: 0 0 0 20px;
|
|
24
|
-
|
|
25
|
-
a {
|
|
26
|
-
display: block;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.card.relations {
|
|
33
|
-
margin-bottom: 20px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.page-sidebar .viewer {
|
|
37
|
-
height: 280px;
|
|
38
|
-
|
|
39
|
-
.leaflet-control-attribution {
|
|
40
|
-
display: none;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
.show-tools {
|
|
2
|
-
@include sidebar-children;
|
|
3
|
-
|
|
4
|
-
.list-group .list-group-item {
|
|
5
|
-
// Adjustments to give Bookmark same spacing as other Tools links
|
|
6
|
-
.checkbox {
|
|
7
|
-
label {
|
|
8
|
-
margin-bottom: 0;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.toggle-bookmark {
|
|
12
|
-
margin-right: 4px;
|
|
13
|
-
padding-bottom: 8px;
|
|
14
|
-
padding-top: 8px;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
// Spacing for Tools links other than Bookmark
|
|
19
|
-
a {
|
|
20
|
-
padding: 8px 1rem 8px 0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
a:hover {
|
|
24
|
-
text-decoration: underline;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// Spacing between Tools icons and their labels
|
|
29
|
-
.blacklight-icons {
|
|
30
|
-
padding-right: 2px;
|
|
31
|
-
margin-right: 0.5rem;
|
|
32
|
-
margin-left: 0.1rem;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class AmericanGeographicalSocietyLibraryUwmLibrariesComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
11
|
-
<!-- Generator: Adobe Illustrator 27.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
12
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
13
|
-
viewBox="0 0 201 141.2" style="enable-background:new 0 0 201 141.2;" xml:space="preserve">
|
|
14
|
-
<style type="text/css">
|
|
15
|
-
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#6c757d;}
|
|
16
|
-
.st1{fill-rule:evenodd;clip-rule:evenodd;stroke:#6c757d;stroke-width:0.1;fill:#6c757d;}
|
|
17
|
-
.st2{fill:#6c757d;}
|
|
18
|
-
</style>
|
|
19
|
-
<title>#{title}</title>
|
|
20
|
-
<path class="st0" d="M115.7,69.9h21.1l2.6-29.6c0.2-2.8,0.4-5.6,0.6-8.4h0.7c0.2,2.9,0.7,5.7,1.4,8.6l7.8,29.3h12.7l8.7-31
|
|
21
|
-
c0.6-2.2,1-4.6,1.4-6.9h0.4L176,70h21.1l-9.9-69.3H165l-6.8,27.2c-0.7,2.9-1.1,6.2-1.5,9.2h-0.6l-8.3-36.4h-22.5L115.7,69.9z"/>
|
|
22
|
-
<path class="st1" d="M197.1,98.5c-5-1.7-11-2.7-17.5-2.7c-23.3,0-37.2,15.4-65.7,13.3c-1.8,0-3.3-1.5-3.3-3.3c0-0.3,0-0.6,0.1-0.9
|
|
23
|
-
l-1.1,7.5c-0.1,0.3-0.1,0.6-0.1,0.9c0,1.8,1.5,3.3,3.3,3.3c28.5,2.1,43.4-13.3,66.8-13.3c6.5,0,12.5,1,17.5,2.7v20.8
|
|
24
|
-
c-5-1.7-11-2.7-17.5-2.7c-23.3,0-39.3,15.2-67.8,13.1c-2.6,0-4.8-2.1-4.8-4.8c0-0.3,0-0.6,0.1-0.8l1.9-13.1L5,130.2v-21.1l106.5-7.7
|
|
25
|
-
l0.8-5.7L5,99.9V78.8h104c2.6,0,4.7,2.1,4.7,4.8l-0.1,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,1.8,1.5,3.3,3.3,3.3
|
|
26
|
-
c28.5,2.1,39.4-13.1,62.8-13.1c6.5,0,12.5,1,17.5,2.7L197.1,98.5L197.1,98.5z"/>
|
|
27
|
-
<path class="st2" d="M78.2,0.7C78.9,0.7,79,1,79,1.6v3.3c0,0.3-0.1,0.6-0.1,0.7c-0.1,0.1-2.2,0.2-2.4,0.2c-1.9,0.1-4,0.8-4,3.7
|
|
28
|
-
c0,1.6,0.3,2.8,1.6,8l8.3,34.8c5-19,10.9-44,13-51.3c0.3-0.3,0.4-0.3,0.7-0.3c1.9,0,2.7-0.2,2.9,0.4l15,54.8c0,0-1.4,9.8-1.9,13.2
|
|
29
|
-
c-0.1,0.8-0.4,0.8-1,0.8h-4.4c-0.6,0-0.7-0.2-0.9-0.9c-1.6-7.7-2.2-10.4-4.7-19.4c-2.6-9.5-5-20.5-6.8-28.8
|
|
30
|
-
c-2.4,10.3-2.9,12.6-8.3,33.5c-1.9,7.2-2.4,9.5-3.7,14.9c-0.2,0.6-0.3,0.7-0.9,0.7H76c-0.5,0-0.6-0.3-0.7-1
|
|
31
|
-
c-1.5-6.1-12.6-49.3-12.9-50.6C60.9,12.4,60,6.6,56.6,6.6c-2,0-2.4,2.7-2.4,6.4v28.1c-0.1,6.5-0.1,16.1-6.3,23.5
|
|
32
|
-
c-1.7,2.1-7.1,7.7-18,7.7C25,72.4,18.7,71,14,66.1c-5.9-6.2-6.2-13.9-6.3-20.9V14.6c0-7-0.7-9-6.2-9C1.1,5.6,1.1,5.5,1,4.9V1.6
|
|
33
|
-
c0-0.7,0-1.1,0.8-1.1c1.8,0,19.2,0.1,23.5,0c0.2,0,0.5,0.1,0.5,0.7v3.7c-0.1,0.7-0.2,0.7-1.1,0.7c-6.1,0-5.8,2.5-5.8,9.7v22.1
|
|
34
|
-
l0.1,7.9c0.2,4,0.5,7.7,2.2,11.7c1.2,2.7,4.9,8.4,12.2,8.4c4,0,7.9-1.7,10.8-5.1c4.3-5.1,4.9-12,5-19.5V14.3c0-6.9-0.6-8.6-7.5-9
|
|
35
|
-
c-0.5,0-0.6-0.1-0.6-0.6V1.4c0-0.6,0-0.7,0.5-0.7C41.8,0.7,77.2,0.7,78.2,0.7z"/>
|
|
36
|
-
</svg>
|
|
37
|
-
SVG
|
|
38
|
-
end
|
|
39
|
-
|
|
40
|
-
def title
|
|
41
|
-
key = "blacklight.icon.#{name}"
|
|
42
|
-
t(key)
|
|
43
|
-
end
|
|
44
|
-
end
|
|
45
|
-
end
|
|
46
|
-
end
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Blacklight
|
|
4
|
-
module Icons
|
|
5
|
-
class ArizonaComponent < Blacklight::Icons::IconComponent
|
|
6
|
-
self.svg = svg
|
|
7
|
-
|
|
8
|
-
def svg
|
|
9
|
-
<<~SVG
|
|
10
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 32">
|
|
11
|
-
<title>#{title}</title>
|
|
12
|
-
<path fill="#6c757d" d="M 17.03125 3.980469 L 23.546875 3.980469 L 23.546875 6.632812 L 20.839844 6.632812 L 27.957031 25.300781 L 30.058594 25.300781 L 30.058594 28.046875 L 21.242188 28.046875 L 21.242188 25.375 L 18.765625 25.375 L 18.765625 30.613281 L 32.683594 30.613281 L 32.683594 22.800781 L 29.558594 22.808594 L 24.546875 9.210938 L 26.121094 9.210938 L 26.121094 1.402344 L 7.941406 1.402344 L 7.941406 9.210938 L 9.515625 9.210938 L 4.503906 22.789062 L 1.378906 22.800781 L 1.378906 30.613281 L 15.300781 30.613281 L 15.300781 25.375 L 12.824219 25.375 L 12.824219 28.046875 L 4.003906 28.046875 L 4.003906 25.300781 L 6.109375 25.300781 L 13.222656 6.632812 L 10.515625 6.632812 L 10.515625 3.980469 Z M 17.03125 3.980469"/>
|
|
13
|
-
<path fill="#6c757d" d="M 17.027344 4.003906 L 24.25 23.074219 C 24.25 23.074219 25.175781 25.394531 26.679688 25.394531 L 21.417969 25.394531 C 21.417969 25.394531 21.683594 25.433594 21.945312 24.988281 C 22.097656 24.734375 21.96875 24.351562 21.96875 24.351562 L 20.34375 20.09375 L 13.722656 20.09375 L 12.09375 24.351562 C 12.09375 24.351562 11.96875 24.734375 12.117188 24.988281 C 12.378906 25.433594 12.644531 25.394531 12.644531 25.394531 L 7.382812 25.394531 C 8.886719 25.394531 9.8125 23.074219 9.8125 23.074219 L 17.027344 4.003906 M 17.019531 18.070312 L 19.566406 18.070312 L 17.070312 11.382812 L 14.488281 18.070312 Z M 17.019531 18.070312"/>
|
|
14
|
-
</svg>
|
|
15
|
-
SVG
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def title
|
|
19
|
-
key = "blacklight.icon.#{name}"
|
|
20
|
-
t(key)
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|