From 978678310b713b54465ab862f08010628ac93ae2 Mon Sep 17 00:00:00 2001 From: mateuswetah Date: Wed, 23 Dec 2020 09:38:30 -0300 Subject: [PATCH] Adds several options to tweak items list options. --- functions.php | 82 ++++++++++- .../archive-elements/filters-panel.php | 83 +++++++++++ inc/options/archive-elements/pagination.php | 48 +++++++ .../archive-elements/search-control.php | 131 ++++++++++++++++++ inc/options/posts/tainacan-item-archive.php | 35 +++++ .../single-elements/metadata-columns.php | 4 +- js/scripts.js | 1 + sass/tainacan-item-archive.scss | 1 + style.css | 1 + style.css.map | 4 +- style.min.css | 2 +- style.min.css.map | 2 +- tainacan/archive-items.php | 25 +++- template-parts/single-items-metadata.php | 2 +- 14 files changed, 411 insertions(+), 10 deletions(-) create mode 100644 inc/options/archive-elements/filters-panel.php create mode 100644 inc/options/archive-elements/pagination.php create mode 100644 inc/options/archive-elements/search-control.php create mode 100644 inc/options/posts/tainacan-item-archive.php diff --git a/functions.php b/functions.php index acad90a..8f57da1 100644 --- a/functions.php +++ b/functions.php @@ -404,11 +404,13 @@ function blocksy_tainacan_custom_post_types_single_options( $options, $post_type if ( in_array($post_type, $collections_post_types) ) { + // Change the section title in the customizer $options['title'] = sprintf( __('Item from %s', 'blocksy-tainacan'), $post_type_object->labels->name ); + // Extra options to the archive items list $item_extra_options = blocksy_get_options(get_stylesheet_directory() . '/inc/options/posts/tainacan-item-single.php', [ 'post_type' => $post_type_object, 'is_general_cpt' => true @@ -428,6 +430,41 @@ function blocksy_tainacan_custom_post_types_single_options( $options, $post_type } add_filter( 'blocksy:custom_post_types:single-options', 'blocksy_tainacan_custom_post_types_single_options', 10, 3 ); + +/** + * Adds extra customizer options to items single page template + */ +function blocksy_tainacan_custom_post_types_archive_options( $options, $post_type, $post_type_object ) { + + // This should only happen if we have Tainacan plugin installed + if ( defined ('TAINACAN_VERSION') ) { + $collections_post_types = \Tainacan\Repositories\Repository::get_collections_db_identifiers(); + + if ( in_array($post_type, $collections_post_types) ) { + + // Change the section title in the customizer + $options['title'] = sprintf( + __('Items list from %s', 'blocksy-tainacan'), + $post_type_object->labels->name + ); + + // Extra options to the archive items list + $items_extra_options = blocksy_get_options(get_stylesheet_directory() . '/inc/options/posts/tainacan-item-archive.php', [ + 'post_type' => $post_type_object, + 'is_general_cpt' => true + ], false); + + if ( is_array($items_extra_options) ) { + $options['options'][$post_type . '_section_options']['inner-options'] = $items_extra_options; + } + } + } + + return $options; +} +add_filter( 'blocksy:custom_post_types:archive-options', 'blocksy_tainacan_custom_post_types_archive_options', 10, 3 ); + + /** * Removes tainacan metadatum and filters from the custom metadata options in the customizer controller. */ @@ -485,4 +522,47 @@ function blocksy_tainacan_swiper_scripts() { add_action( 'wp_enqueue_scripts', 'blocksy_tainacan_swiper_scripts' ); /* Requires helpers */ -require get_stylesheet_directory() . '/helpers/blocksy-integration.php'; \ No newline at end of file +require get_stylesheet_directory() . '/helpers/blocksy-integration.php'; + +/** + * Enqueues front-end CSS for the items page fixed filters logic. + * + * @see wp_add_inline_style() + */ +function blocksy_tainacan_items_page_filters_fixed_on_scroll_output() { + $prefix = blocksy_manager()->screen->get_prefix(); + + $should_use_fixed_filters_logic = (version_compare(TAINACAN_VERSION, '0.17') >= 0) && get_theme_mod( $prefix . '_filters_fixed_on_scroll', 'no' ) == 'yes'; + + if (!$should_use_fixed_filters_logic) + return; + + $css = ' + /* Items list fixed filter logic (Introduced in Tainacan 0.17) */ + :not(.wp-block-tainacan-faceted-search)>.theme-items-list:not(.is-fullscreen).is-filters-menu-open.is-filters-menu-fixed-at-top .items-list-area { + margin-left: var(--tainacan-filter-menu-width-theme) !important; + } + :not(.wp-block-tainacan-faceted-search)>.theme-items-list:not(.is-fullscreen).is-filters-menu-open.is-filters-menu-fixed-at-top .filters-menu:not(.filters-menu-modal) { + position: fixed; + top: 0px !important; + z-index: 9; + } + :not(.wp-block-tainacan-faceted-search)>.theme-items-list:not(.is-fullscreen).is-filters-menu-open.is-filters-menu-fixed-at-top .filters-menu:not(.filters-menu-modal) .modal-content { + position: absolute; + top: 0px; + height: auto !important; + background: var(--tainacan-background-color, inherit); + } + :not(.wp-block-tainacan-faceted-search)>.theme-items-list:not(.is-fullscreen).is-filters-menu-open.is-filters-menu-fixed-at-top.is-filters-menu-fixed-at-bottom .filters-menu:not(.filters-menu-modal) { + position: absolute; + } + :not(.wp-block-tainacan-faceted-search)>.theme-items-list:not(.is-fullscreen).is-filters-menu-open.is-filters-menu-fixed-at-top.is-filters-menu-fixed-at-bottom .filters-menu:not(.filters-menu-modal) .modal-content { + top: auto; + bottom: 0; + } + '; + echo ''; + +} +add_action( 'wp_head', 'blocksy_tainacan_items_page_filters_fixed_on_scroll_output'); + diff --git a/inc/options/archive-elements/filters-panel.php b/inc/options/archive-elements/filters-panel.php new file mode 100644 index 0000000..cee3084 --- /dev/null +++ b/inc/options/archive-elements/filters-panel.php @@ -0,0 +1,83 @@ + [ + 'label' => __( 'Filters panel', 'blocksy-tainacan' ), + 'type' => 'ct-panel', + 'switch' => true, + 'value' => $enabled, + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix, + ]), + 'inner-options' => [ + $prefix . 'start_with_filters_hidden' => [ + 'label' => __( 'Start with filters hidden', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'no', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Load page with filters panel initially hidden.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + $prefix . 'show_hide_filters_button' => [ + 'label' => __( 'Show the "Hide filters" button', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the button for hidding the filters panel.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + blocksy_rand_md5() => [ + 'type' => 'ct-condition', + 'condition' => [ + $prefix . 'show_hide_filters_button' => 'yes' + ], + 'options' => [ + $prefix . 'show_filters_button_inside_search_control' => [ + 'label' => __( 'Show filters button inside search control', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the filters button inside the search control bar instead of floating aside.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + ], + ], + $prefix . 'filters_fixed_on_scroll' => [ + 'label' => __( 'Filters fixed on scroll', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'no', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'If you want filters panel to get fixed on screen when scrolling down the items list. This will only take effect if the items list itself is taller than the screen height.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + $prefix . 'filters_as_modal' => [ + 'label' => __( 'Filters as modal', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'no', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the filters panel as a full screen modal instead of aside, even on desktop.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ] + ], + ], +]; diff --git a/inc/options/archive-elements/pagination.php b/inc/options/archive-elements/pagination.php new file mode 100644 index 0000000..4df28d0 --- /dev/null +++ b/inc/options/archive-elements/pagination.php @@ -0,0 +1,48 @@ + [ + 'label' => __( 'Pagination', 'blocksy' ), + 'type' => 'ct-panel', + 'switch' => true, + 'value' => $enabled, + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix, + 'loader_selector' => 'section' + ]), + 'inner-options' => [ + $prefix . 'show_items_per_page_button' => [ + 'label' => __( 'Show the "Items per page" button', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the button for choosing how many items per page shoulb be loaded.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + $prefix . 'show_go_to_page_button' => [ + 'label' => __( 'Show the "Go to page" button', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the button for jumping to an specific page.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ] + ], + ], +]; diff --git a/inc/options/archive-elements/search-control.php b/inc/options/archive-elements/search-control.php new file mode 100644 index 0000000..99f99d7 --- /dev/null +++ b/inc/options/archive-elements/search-control.php @@ -0,0 +1,131 @@ + [ + 'label' => __( 'Search control', 'blocksy-tainacan' ), + 'type' => 'ct-panel', + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix, + ]), + 'inner-options' => [ + blocksy_rand_md5() => [ + 'type' => 'ct-title', + 'label' => __( 'Textual search', 'blocksy-tainacan' ), + ], + $prefix . 'show_search' => [ + 'label' => __( 'Show simple search', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display a simple textual search input for items title and description.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + blocksy_rand_md5() => [ + 'type' => 'ct-condition', + 'condition' => [ + $prefix . 'show_search' => 'yes' + ], + 'options' => [ + $prefix . 'show_advanced_search' => [ + 'label' => __( 'Show advanced search', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display a link to open the advanced search panel.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + ], + ], + blocksy_rand_md5() => [ + 'type' => 'ct-title', + 'label' => __( 'Sorting', 'blocksy-tainacan' ), + ], + $prefix . 'show_sorting_area' => [ + 'label' => __( 'Show sorting options', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display options related to the search such as the "Sort by" button and "Sort direction"', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + blocksy_rand_md5() => [ + 'type' => 'ct-condition', + 'condition' => [ + $prefix . 'show_sorting_area' => 'yes' + ], + 'options' => [ + $prefix . 'show_sort_by_button' => [ + 'label' => __( 'Show "Sort by" button', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the "Sort by" button, to select a metadata to sort by.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + ], + ], + blocksy_rand_md5() => [ + 'type' => 'ct-title', + 'label' => __( 'View modes', 'blocksy-tainacan' ), + ], + $prefix . 'show_inline_view_mode_options' => [ + 'label' => __( 'Show inline view mode options', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'no', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display view mode options as inline buttons instead of a dropdown.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + $prefix . 'show_fullscreen_with_view_modes' => [ + 'label' => __( 'Show full screen with view modes', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'no', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Offers full screen view mode options alongside other view modes instead of separated in the search control bar.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + $prefix . 'show_displayed_metadata_dropdown' => [ + 'label' => __( 'Show "Displayed metadata" dropdown', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display a dropdown for selecting the displayed metadata. This option may or not be present according to the current selected view mode.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + blocksy_rand_md5() => [ + 'type' => 'ct-title', + 'label' => __( 'Exposers', 'blocksy-tainacan' ), + ], + $prefix . 'show_exposers_button' => [ + 'label' => __( 'Show "View as..." button', 'blocksy-tainacan' ), + 'type' => 'ct-switch', + 'value' => 'yes', + 'setting' => [ 'transport' => 'postMessage' ], + 'desc' => __( 'Display the "View as..." button, which opens the exposers modal.', 'blocksy-tainacan' ), + 'sync' => blocksy_sync_whole_page([ + 'prefix' => $prefix + ]) + ], + ], + ], +]; diff --git a/inc/options/posts/tainacan-item-archive.php b/inc/options/posts/tainacan-item-archive.php new file mode 100644 index 0000000..9fab3da --- /dev/null +++ b/inc/options/posts/tainacan-item-archive.php @@ -0,0 +1,35 @@ + $post_type->name . '_archive', + 'is_cpt' => true, + 'is_archive' => true, + 'enabled_label' => sprintf( + __('%s Title', 'blocksy'), + $post_type->labels->name + ), + ]), + + [ + blocksy_rand_md5() => [ + 'type' => 'ct-title', + 'label' => __( 'Page Elements', 'blocksy' ), + ], + ], + + blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/search-control.php', [ + 'prefix' => $post_type->name . '_archive', + ], false), + + blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/filters-panel.php', [ + 'prefix' => $post_type->name . '_archive', + 'enabled' => 'yes' + ], false), + + blocksy_get_options(get_stylesheet_directory() . '/inc/options/archive-elements/pagination.php', [ + 'prefix' => $post_type->name . '_archive', + 'enabled' => 'yes' + ], false), + +]; diff --git a/inc/options/single-elements/metadata-columns.php b/inc/options/single-elements/metadata-columns.php index 97a125d..b8ce4f1 100644 --- a/inc/options/single-elements/metadata-columns.php +++ b/inc/options/single-elements/metadata-columns.php @@ -29,6 +29,8 @@ $options = [ ]), 'responsive' => true, 'divider' => 'top', - 'sync' => 'live', + 'sync' => blocksy_sync_single_post_container([ + 'prefix' => $prefix + ]) ], ]; \ No newline at end of file diff --git a/js/scripts.js b/js/scripts.js index e69de29..faa4ea0 100644 --- a/js/scripts.js +++ b/js/scripts.js @@ -0,0 +1 @@ +import { render, createElement, Component, Fragment } from '@wordpress/element' \ No newline at end of file diff --git a/sass/tainacan-item-archive.scss b/sass/tainacan-item-archive.scss index 862140e..dcbb7e2 100644 --- a/sass/tainacan-item-archive.scss +++ b/sass/tainacan-item-archive.scss @@ -14,6 +14,7 @@ --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1)); --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9)); --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9)); + --tainacan-skeleton-color: rgba(252, 252, 252, 0.5); &:not(.is-fullscreen) { justify-content: center; diff --git a/style.css b/style.css index 4fe0020..5c55a00 100644 --- a/style.css +++ b/style.css @@ -33,6 +33,7 @@ --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1)); --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9)); --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9)); + --tainacan-skeleton-color: rgba(252, 252, 252, 0.5); /* Search control */ /* Filters panel */ /* Items list container */ diff --git a/style.css.map b/style.css.map index e081bb3..0d8cd3f 100644 --- a/style.css.map +++ b/style.css.map @@ -8,9 +8,9 @@ ], "sourcesContent": [ "/**\n * Theme Name: Blocksy Tainacan\n * Description: A Blocksy Child theme compatible with Tainacan plugin\n * Author: Tainacan\n * Template: blocksy\n * Text Domain: blocksy-tainacan\n */\n\n /* Tainacan Gutenberg Blocks colors */\n :root {\n --tainacan-block-primary: var(--paletteColor1, #3eaf7c);\n --tainacan-block-gray0: var(--backgroundColor, #f8f9fb);\n --tainacan-block-gray1: var(--backgroundColor, #f8f9fb);\n --tainacan-block-gray2: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-block-gray3: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-block-gray4: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-block-gray5: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n/* Remaining imports */\n@import './tainacan-item-archive.scss';\n@import './tainacan-item-single.scss';", - "/* Tainacan Items list customization */\n.theme-items-list {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n --tainacan-item-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-item-heading-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n \n &:not(.is-fullscreen) {\n justify-content: center;\n top: -52px !important;\n background: transparent !important;\n padding: 6px 13px;\n display: grid;\n grid-template-columns: 1fr minmax(auto, 1300px) 1fr;\n grid-template-rows: auto 1fr;\n grid-template-areas:\n \". searchcontrol .\"\n \"itemslist itemslist itemslist\";\n }\n\n /* Search control */\n .search-control {\n grid-area: searchcontrol;\n border-radius: 0 0 var(--borderRadius, 3px) var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px 20px 6px 20px !important;\n margin: 5px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .search-control-item {\n margin-bottom: 20px !important;\n }\n }\n\n /* Filters panel */\n #filters-modal {\n grid-area: itemslist;\n justify-self: start;\n align-self: normal;\n width: 100%;\n\n .modal-content {\n padding: 16px 10px;\n\n #filters-items-list {\n border-radius: var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px;\n margin: -3px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .filters-components-list {\n margin-bottom: 24px;\n }\n }\n }\n\n &.tainacan-filter-list-fixed {\n left: 14px;\n }\n }\n\n /* Items list container */\n #items-list-area {\n grid-area: itemslist;\n justify-self: end;\n align-self: normal;\n width: 100%;\n\n #items-list-results {\n .table-container {\n min-width: 100%;\n padding-top: 14px;\n padding-left: 10px;\n padding-bottom: 14px;\n padding-right: 10px;\n }\n \n /* Tainacan items list view modes */\n .tainacan-masonry-container .tainacan-masonry-item,\n .tainacan-records-container .tainacan-record,\n .tainacan-cards-container .tainacan-card,\n .tainacan-list-container .tainacan-list {\n border-radius: var(--borderRadius, 3px);\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n border: var(--border, none);\n overflow: hidden;\n\n .metadata-title p {\n font-weight: 500;\n }\n .metadata-value,\n .metadata-label {\n font-size: 0.8125em !important;\n }\n }\n .tainacan-records-container .tainacan-record,\n .tainacan-list-container .tainacan-list {\n background-color: var(--tainacan-item-background-color, white) !important;\n }\n .tainacan-masonry-container .tainacan-masonry-item {\n display: flex !important;\n flex-direction: column-reverse;\n }\n .tainacan-cards-container .tainacan-card {\n min-height: 215px;\n max-height: 215px;\n\n .media .list-metadata {\n padding: 0.125em 1.375em !important;\n\n p.metadata-description {\n max-height: 12.75em !important;\n line-height: 1.25em;\n }\n }\n }\n .tainacan-table {\n padding: 0 12px;\n .column-main-content p { \n font-weight: 500;\n }\n td p {\n font-size: 0.725em !important;\n }\n }\n .tainacan-slide-main-view {\n iframe {\n border: none;\n border-radius: var(--borderRadius, 3px);\n }\n }\n .tainacan-slides-list {\n .swiper-slide img {\n border-radius: var(--borderRadius, 3px);\n padding-bottom: 0;\n }\n }\n\n /* Pagination */\n .pagination-area {\n border-top: none;\n margin-left: 12px;\n margin-right: 12px;\n\n .pagination {\n font-weight: bold;\n --colorActive: #ffffff;\n\n .pagination-link {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n height: 40px;\n width: 42px;\n border-radius: 4px;\n border: 2px solid transparent;\n font-size: 14px;\n font-weight: 600;\n color: var(--color);\n --linkInitialColor: var(--color);\n transition: color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), background 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);\n\n &:hover {\n text-decoration: none;\n border-color: var(--linkHoverColor);\n color: var(--linkHoverColor);\n }\n &.is-current {\n color: var(--colorActive) !important;\n background: var(--linkHoverColor);\n }\n }\n }\n }\n }\n }\n\n /* Advanced Search */\n .advanced-search-criteria-title hr {\n display: none;\n }\n}\n/* Tooltips and Modals are outside of the items list div */\nbody:not(.tainacan-admin-page) {\n\n .tooltip,\n .tainacan-modal-content {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n .tainacan-modal-content {\n border-radius: var(--borderRadius, 6px);\n\n .tainacan-modal-title {\n hr {\n display: none;\n }\n }\n .tabs li {\n margin-bottom: 0px;\n }\n .modal-card-body {\n background-color: var(--tainacan-item-background-color, white);\n }\n }\n}\n\n/* Collection Items List */\n.tainacan-collection-header {\n display: flex;\n padding: 36px 18px 28px 18px;\n justify-content: center;\n align-items: center;\n background-color: var(--backgroundColor, #f8f9fb);\n background-size: cover;\n background-repeat: no-repeat;\n\n // We also apply this here as we want to keep the same style of the .theme-items-list\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n\n .tainacan-collection-header__box {\n width: var(--maxSiteWidth, 1290px);\n border-radius: var(--borderRadius,3px) var(--borderRadius, 3px) 0 0;\n background-color: var(--tainacan-item-background-color,#fff);\n padding: 20px;\n box-shadow: var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04));\n\n h1 {\n margin-bottom: 4px;\n display: inline-block;\n }\n .ct-title-label {\n font-weight: normal;\n &::after {\n content: ': ';\n }\n }\n .collection-thumbnail {\n max-width: calc(var(--tainacan-filter-menu-width-theme, 20%) - 24px);\n float: left;\n margin-right: 24px;\n\n img {\n border-radius: var(--borderRadius,3px);\n }\n }\n }\n}\n\n", + "/* Tainacan Items list customization */\n.theme-items-list {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n --tainacan-item-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-item-heading-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-skeleton-color: rgba(252, 252, 252, 0.5);\n \n &:not(.is-fullscreen) {\n justify-content: center;\n top: -52px !important;\n background: transparent !important;\n padding: 6px 13px;\n display: grid;\n grid-template-columns: 1fr minmax(auto, 1300px) 1fr;\n grid-template-rows: auto 1fr;\n grid-template-areas:\n \". searchcontrol .\"\n \"itemslist itemslist itemslist\";\n }\n\n /* Search control */\n .search-control {\n grid-area: searchcontrol;\n border-radius: 0 0 var(--borderRadius, 3px) var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px 20px 6px 20px !important;\n margin: 5px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .search-control-item {\n margin-bottom: 20px !important;\n }\n }\n\n /* Filters panel */\n #filters-modal {\n grid-area: itemslist;\n justify-self: start;\n align-self: normal;\n width: 100%;\n\n .modal-content {\n padding: 16px 10px;\n\n #filters-items-list {\n border-radius: var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px;\n margin: -3px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .filters-components-list {\n margin-bottom: 24px;\n }\n }\n }\n\n &.tainacan-filter-list-fixed {\n left: 14px;\n }\n }\n\n /* Items list container */\n #items-list-area {\n grid-area: itemslist;\n justify-self: end;\n align-self: normal;\n width: 100%;\n\n #items-list-results {\n .table-container {\n min-width: 100%;\n padding-top: 14px;\n padding-left: 10px;\n padding-bottom: 14px;\n padding-right: 10px;\n }\n \n /* Tainacan items list view modes */\n .tainacan-masonry-container .tainacan-masonry-item,\n .tainacan-records-container .tainacan-record,\n .tainacan-cards-container .tainacan-card,\n .tainacan-list-container .tainacan-list {\n border-radius: var(--borderRadius, 3px);\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n border: var(--border, none);\n overflow: hidden;\n\n .metadata-title p {\n font-weight: 500;\n }\n .metadata-value,\n .metadata-label {\n font-size: 0.8125em !important;\n }\n }\n .tainacan-records-container .tainacan-record,\n .tainacan-list-container .tainacan-list {\n background-color: var(--tainacan-item-background-color, white) !important;\n }\n .tainacan-masonry-container .tainacan-masonry-item {\n display: flex !important;\n flex-direction: column-reverse;\n }\n .tainacan-cards-container .tainacan-card {\n min-height: 215px;\n max-height: 215px;\n\n .media .list-metadata {\n padding: 0.125em 1.375em !important;\n\n p.metadata-description {\n max-height: 12.75em !important;\n line-height: 1.25em;\n }\n }\n }\n .tainacan-table {\n padding: 0 12px;\n .column-main-content p { \n font-weight: 500;\n }\n td p {\n font-size: 0.725em !important;\n }\n }\n .tainacan-slide-main-view {\n iframe {\n border: none;\n border-radius: var(--borderRadius, 3px);\n }\n }\n .tainacan-slides-list {\n .swiper-slide img {\n border-radius: var(--borderRadius, 3px);\n padding-bottom: 0;\n }\n }\n\n /* Pagination */\n .pagination-area {\n border-top: none;\n margin-left: 12px;\n margin-right: 12px;\n\n .pagination {\n font-weight: bold;\n --colorActive: #ffffff;\n\n .pagination-link {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n height: 40px;\n width: 42px;\n border-radius: 4px;\n border: 2px solid transparent;\n font-size: 14px;\n font-weight: 600;\n color: var(--color);\n --linkInitialColor: var(--color);\n transition: color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), background 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);\n\n &:hover {\n text-decoration: none;\n border-color: var(--linkHoverColor);\n color: var(--linkHoverColor);\n }\n &.is-current {\n color: var(--colorActive) !important;\n background: var(--linkHoverColor);\n }\n }\n }\n }\n }\n }\n\n /* Advanced Search */\n .advanced-search-criteria-title hr {\n display: none;\n }\n}\n/* Tooltips and Modals are outside of the items list div */\nbody:not(.tainacan-admin-page) {\n\n .tooltip,\n .tainacan-modal-content {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n .tainacan-modal-content {\n border-radius: var(--borderRadius, 6px);\n\n .tainacan-modal-title {\n hr {\n display: none;\n }\n }\n .tabs li {\n margin-bottom: 0px;\n }\n .modal-card-body {\n background-color: var(--tainacan-item-background-color, white);\n }\n }\n}\n\n/* Collection Items List */\n.tainacan-collection-header {\n display: flex;\n padding: 36px 18px 28px 18px;\n justify-content: center;\n align-items: center;\n background-color: var(--backgroundColor, #f8f9fb);\n background-size: cover;\n background-repeat: no-repeat;\n\n // We also apply this here as we want to keep the same style of the .theme-items-list\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n\n .tainacan-collection-header__box {\n width: var(--maxSiteWidth, 1290px);\n border-radius: var(--borderRadius,3px) var(--borderRadius, 3px) 0 0;\n background-color: var(--tainacan-item-background-color,#fff);\n padding: 20px;\n box-shadow: var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04));\n\n h1 {\n margin-bottom: 4px;\n display: inline-block;\n }\n .ct-title-label {\n font-weight: normal;\n &::after {\n content: ': ';\n }\n }\n .collection-thumbnail {\n max-width: calc(var(--tainacan-filter-menu-width-theme, 20%) - 24px);\n float: left;\n margin-right: 24px;\n\n img {\n border-radius: var(--borderRadius,3px);\n }\n }\n }\n}\n\n", "\n/* Single Item Page */\n.single-item-data-section {\n \n h1 {\n --fontSize: 30px;\n }\n h2 {\n --fontSize: 26px;\n }\n h3 {\n --fontSize: 22px;\n }\n h4 {\n --fontSize: 20px;\n }\n h5 {\n --fontSize: 18px;\n }\n h6 {\n --fontSize: 16px;\n }\n section{\n margin-bottom: 2.25rem;\n }\n .tainacan-item-file-download {\n position: absolute;\n opacity: 0;\n transform: scale(0);\n border-radius: 24px;\n width: 36px;\n height: 36px;\n bottom: -18px;\n right: calc(50% - 18px);\n cursor: pointer;\n font-size: 0;\n background-color: var(--paletteColor1, #3eaf7c);\n color: white;\n transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;\n\n a {\n height: 38px;\n width: 38px;\n display: block;\n position: relative;\n z-index: 99;\n }\n\n &::after {\n position: relative;\n top: -38px;\n display: inline-block;\n font: normal normal normal 20px/1 \"TainacanIcons\";\n font-size: 1.25rem !important;\n line-height: 2.25rem;\n text-rendering: auto;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 1.25em;\n text-transform: none !important;\n letter-spacing: normal !important;\n content: 'download';\n display: flex;\n justify-content: center;\n align-items: center;\n }\n }\n .single-item-collection--document {\n display: flex;\n justify-content: center;\n position: relative;\n &:hover {\n .tainacan-item-file-download {\n opacity: 1;\n transform: scale(1);\n }\n }\n\n > iframe, img.attachment-large {\n display: block;\n height: auto;\n margin: 0 auto;\n border: none;\n }\n > audio {\n width: 100%;\n }\n > iframe {\n @media only screen and (min-width: 768px){\n min-height: 600px;\n }\n @media only screen and (max-width: 576px){\n min-height: 429px;\n }\n }\n .tainacan-embed-container{\n width: 100%;\n\n iframe {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n }\n }\n .single-item-collection--gallery-items {\n font-weight: normal;\n transition: font-weight 0.3s ease;\n\n img {\n border-bottom: 4px solid transparent;\n margin-bottom: 4px;\n transition: border 0.3s ease;\n }\n .slick-current{\n font-weight: bold;\n img {\n border-bottom: 4px solid #298596;\n }\n } \n }\n .single-item-collection--attachments-file {\n &:hover {\n .tainacan-item-file-download {\n opacity: 1;\n transform: scale(1);\n }\n }\n } \n .single-item-collection--gallery-items,\n .single-item-collection--attachments {\n .single-item-collection--attachments-file {\n text-align: center;\n vertical-align: top;\n cursor: pointer;\n word-break: break-all;\n font-size: 0.875em;\n padding: 0 6px;\n \n @media only screen and (max-width: 380px) {\n margin: 10px 0;\n }\n\n img {\n width: 130px;\n height: 130px;\n object-fit: cover;\n &:focus {\n outline: none;\n }\n }\n a {\n width: 100%;\n max-width: 130px;\n font-size: 0.875rem; \n text-align: center;\n word-break: break-all;\n line-height: 1.5rem\n }\n a,\n a:focus,\n a:hover {\n outline: none;\n text-decoration: none;\n cursor: pointer;\n color: black;\n }\n .attachment-without-image img {\n padding: 36px;\n background-color: #dbdbdb;\n object-fit: contain;\n }\n }\n }\n .single-item-collection--metadata {\n height: 100%;\n \n div {\n -webkit-column-break-inside: avoid;\n page-break-inside: avoid;\n break-inside: avoid;\n display: inline-block;\n width: 100%;\n &:last-child {\n -webkit-column-break-inside: auto;\n page-break-inside: auto;\n break-inside: auto;\n display: inline-block;\n width: 100%;\n }\n }\n @media only screen and (min-width: 768px) {\n -moz-column-gap: 0;\n -moz-column-rule: none;\n -webkit-column-gap: 0;\n -webkit-column-rule: none;\n column-gap: 4rem;;\n column-rule: none;\n }\n @media only screen and (min-width: 1366px) {\n -moz-column-gap: 7rem;\n -moz-column-rule: none;\n -webkit-column-gap: 7rem;\n -webkit-column-rule: none;\n column-gap: 7rem;\n column-rule: none;\n }\n h3 {\n padding-right: 1rem;\n margin-bottom: 0.25rem;\n width: 100%;\n &:first-of-type:last-of-type {\n display: inline-block;\n }\n }\n h4,\n label {\n padding-right: 0.875rem;\n width: 100%;\n &:first-of-type:last-of-type {\n display: inline-block;\n }\n }\n p {\n word-wrap: break-word;\n }\n\n // Metadata type textarea has different separator\n .multivalue-separator {\n color: #cbcbcb;\n margin: 0 8px; \n }\n .hierarchy-separator {\n color: #cbcbcb; \n }\n .metadata-type-compound,\n .metadata-type-textarea {\n .multivalue-separator {\n display: block;\n max-height: 1px;\n width: 35px;\n background: #cbcbcb;\n content: none;\n color: transparent;\n margin: 0.875rem auto;\n }\n }\n .tainacan-compound-group {\n padding-left: 1.5rem;\n border-left: 1px solid #f2f2f2;\n }\n }\n\n --swiper-theme-color: var(--paletteColor1, #3eaf7c);\n --swiper-navigation-color: var(--paletteColor1, #3eaf7c);\n .swiper-container {\n .swiper-button-disabled {\n display: none;\n }\n .swiper-button-next,\n .swiper-button-prev {\n top: calc(130px/2);\n\n &:after {\n filter: drop-shadow(0px 0px 1px white);\n }\n } \n .swiper-button-prev {\n left: -30px;\n transition: left 0.3s ease;\n }\n .swiper-button-next {\n right: -30px;\n transition: right 0.3s ease;\n }\n &:hover {\n .swiper-button-prev {\n left: 10px;\n }\n .swiper-button-next {\n right: 10px;\n }\n }\n } \n}" ], "names": [], - "mappings": "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" + "mappings": "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" } \ No newline at end of file diff --git a/style.min.css b/style.min.css index da04420..24d1428 100644 --- a/style.min.css +++ b/style.min.css @@ -1,2 +1,2 @@ -:root{--tainacan-block-primary:var(--paletteColor1, #3eaf7c);--tainacan-block-gray0:var(--backgroundColor, #f8f9fb);--tainacan-block-gray1:var(--backgroundColor, #f8f9fb);--tainacan-block-gray2:var(--formBorderInitialColor, #e0e5eb);--tainacan-block-gray3:var(--formBorderInitialColor, #e0e5eb);--tainacan-block-gray4:var(--color, rgba(44, 62, 80, 0.9));--tainacan-block-gray5:var(--headingColor, rgba(44, 62, 80, 1))}.theme-items-list{--tainacan-font-family:var(--fontFamily, inherit);--tainacan-base-font-size:var(--fontSize, 1em);--tainacan-secondary:var(--paletteColor1, #3eaf7c);--tainacan-primary:var(--formBorderInitialColor, #e0e5eb);--tainacan-background-color:var(--backgroundColor, #f8f9fb);--tainacan-item-background-color:var(--cardBackground, white);--tainacan-item-hover-background-color:var(--tainacan-item-background-color, white);--tainacan-item-heading-hover-background-color:var(--tainacan-item-background-color, white);--tainacan-input-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-input-background-color:var(--formBackgroundInitialColor, white);--tainacan-input-border-color:var(--formBorderInitialColor, #e0e5eb);--tainacan-heading-color:var(--headingColor, rgba(44, 62, 80, 1));--tainacan-label-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-info-color:var(--color, rgba(44, 62, 80, 0.9))}.theme-items-list:not(.is-fullscreen){justify-content:center;top:-52px!important;background:0 0!important;padding:6px 13px;display:grid;grid-template-columns:1fr minmax(auto,1300px) 1fr;grid-template-rows:auto 1fr;grid-template-areas:". searchcontrol ." "itemslist itemslist itemslist"}.theme-items-list .search-control{grid-area:searchcontrol;border-radius:0 0 var(--borderRadius,3px) var(--borderRadius,3px);background-color:var(--tainacan-item-background-color,#fff);padding:20px 20px 6px 20px!important;margin:5px;box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04))}.theme-items-list .search-control .search-control-item{margin-bottom:20px!important}.theme-items-list #filters-modal{grid-area:itemslist;justify-self:start;align-self:normal;width:100%}.theme-items-list #filters-modal .modal-content{padding:16px 10px}.theme-items-list #filters-modal .modal-content #filters-items-list{border-radius:var(--borderRadius,3px);background-color:var(--tainacan-item-background-color,#fff);padding:20px;margin:-3px;box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04))}.theme-items-list #filters-modal .modal-content #filters-items-list .filters-components-list{margin-bottom:24px}.theme-items-list #filters-modal.tainacan-filter-list-fixed{left:14px}.theme-items-list #items-list-area{grid-area:itemslist;justify-self:end;align-self:normal;width:100%}.theme-items-list #items-list-area #items-list-results .table-container{min-width:100%;padding-top:14px;padding-left:10px;padding-bottom:14px;padding-right:10px}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record{border-radius:var(--borderRadius,3px);box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04));border:var(--border,none);overflow:hidden}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-title p,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-title p,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-title p,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-title p{font-weight:500}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-value,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-value,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-value,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-value{font-size:.8125em!important}.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record{background-color:var(--tainacan-item-background-color,#fff)!important}.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item{display:flex!important;flex-direction:column-reverse}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card{min-height:215px;max-height:215px}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .media .list-metadata{padding:.125em 1.375em!important}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .media .list-metadata p.metadata-description{max-height:12.75em!important;line-height:1.25em}.theme-items-list #items-list-area #items-list-results .tainacan-table{padding:0 12px}.theme-items-list #items-list-area #items-list-results .tainacan-table .column-main-content p{font-weight:500}.theme-items-list #items-list-area #items-list-results .tainacan-table td p{font-size:.725em!important}.theme-items-list #items-list-area #items-list-results .tainacan-slide-main-view iframe{border:none;border-radius:var(--borderRadius,3px)}.theme-items-list #items-list-area #items-list-results .tainacan-slides-list .swiper-slide img{border-radius:var(--borderRadius,3px);padding-bottom:0}.theme-items-list #items-list-area #items-list-results .pagination-area{border-top:none;margin-left:12px;margin-right:12px}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination{font-weight:700;--colorActive:#ffffff}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link{display:inline-flex;align-items:center;justify-content:center;height:40px;width:42px;border-radius:4px;border:2px solid transparent;font-size:14px;font-weight:600;color:var(--color);--linkInitialColor:var(--color);transition:color .12s cubic-bezier(.455,.03,.515,.955),background .12s cubic-bezier(.455,.03,.515,.955),border-color .12s cubic-bezier(.455,.03,.515,.955)}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link:hover{text-decoration:none;border-color:var(--linkHoverColor);color:var(--linkHoverColor)}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link.is-current{color:var(--colorActive)!important;background:var(--linkHoverColor)}.theme-items-list .advanced-search-criteria-title hr{display:none}body:not(.tainacan-admin-page) .tainacan-modal-content,body:not(.tainacan-admin-page) .tooltip{--tainacan-font-family:var(--fontFamily, inherit);--tainacan-base-font-size:var(--fontSize, 1em);--tainacan-secondary:var(--paletteColor1, #3eaf7c);--tainacan-primary:var(--formBorderInitialColor, #e0e5eb);--tainacan-background-color:var(--backgroundColor, #f8f9fb);--tainacan-input-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-input-background-color:var(--formBackgroundInitialColor, white);--tainacan-input-border-color:var(--formBorderInitialColor, #e0e5eb);--tainacan-label-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-info-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-heading-color:var(--headingColor, rgba(44, 62, 80, 1))}body:not(.tainacan-admin-page) .tainacan-modal-content{border-radius:var(--borderRadius,6px)}body:not(.tainacan-admin-page) .tainacan-modal-content .tainacan-modal-title hr{display:none}body:not(.tainacan-admin-page) .tainacan-modal-content .tabs li{margin-bottom:0}body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body{background-color:var(--tainacan-item-background-color,#fff)}.tainacan-collection-header{display:flex;padding:36px 18px 28px 18px;justify-content:center;align-items:center;background-color:var(--backgroundColor,#f8f9fb);background-size:cover;background-repeat:no-repeat;--tainacan-secondary:var(--paletteColor1, #3eaf7c);--tainacan-primary:var(--formBorderInitialColor, #e0e5eb);--tainacan-background-color:var(--backgroundColor, #f8f9fb);--tainacan-item-background-color:var(--cardBackground, white)}.tainacan-collection-header .tainacan-collection-header__box{width:var(--maxSiteWidth,1290px);border-radius:var(--borderRadius,3px) var(--borderRadius,3px) 0 0;background-color:var(--tainacan-item-background-color,#fff);padding:20px;box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04))}.tainacan-collection-header .tainacan-collection-header__box h1{margin-bottom:4px;display:inline-block}.tainacan-collection-header .tainacan-collection-header__box .ct-title-label{font-weight:400}.tainacan-collection-header .tainacan-collection-header__box .ct-title-label::after{content:': '}.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail{max-width:calc(var(--tainacan-filter-menu-width-theme,20%) - 24px);float:left;margin-right:24px}.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail img{border-radius:var(--borderRadius,3px)}.single-item-data-section{--swiper-theme-color:var(--paletteColor1, #3eaf7c);--swiper-navigation-color:var(--paletteColor1, #3eaf7c)}.single-item-data-section h1{--fontSize:30px}.single-item-data-section h2{--fontSize:26px}.single-item-data-section h3{--fontSize:22px}.single-item-data-section h4{--fontSize:20px}.single-item-data-section h5{--fontSize:18px}.single-item-data-section h6{--fontSize:16px}.single-item-data-section section{margin-bottom:2.25rem}.single-item-data-section .tainacan-item-file-download{position:absolute;opacity:0;transform:scale(0);border-radius:24px;width:36px;height:36px;bottom:-18px;right:calc(50% - 18px);cursor:pointer;font-size:0;background-color:var(--paletteColor1,#3eaf7c);color:#fff;transition:opacity .3s ease,transform .3s ease,font-size .3s ease}.single-item-data-section .tainacan-item-file-download a{height:38px;width:38px;display:block;position:relative;z-index:99}.single-item-data-section .tainacan-item-file-download::after{position:relative;top:-38px;display:inline-block;font:normal normal normal 20px/1 TainacanIcons;font-size:1.25rem!important;line-height:2.25rem;text-rendering:auto;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.25em;text-transform:none!important;letter-spacing:normal!important;content:'download';display:flex;justify-content:center;align-items:center}.single-item-data-section .single-item-collection--document{display:flex;justify-content:center;position:relative}.single-item-data-section .single-item-collection--document:hover .tainacan-item-file-download{opacity:1;transform:scale(1)}.single-item-data-section .single-item-collection--document img.attachment-large,.single-item-data-section .single-item-collection--document>iframe{display:block;height:auto;margin:0 auto;border:none}.single-item-data-section .single-item-collection--document>audio{width:100%}@media only screen and (min-width:768px){.single-item-data-section .single-item-collection--document>iframe{min-height:600px}}@media only screen and (max-width:576px){.single-item-data-section .single-item-collection--document>iframe{min-height:429px}}.single-item-data-section .single-item-collection--document .tainacan-embed-container{width:100%}.single-item-data-section .single-item-collection--document .tainacan-embed-container iframe{position:absolute;top:0;left:0;right:0;bottom:0}.single-item-data-section .single-item-collection--gallery-items{font-weight:400;transition:font-weight .3s ease}.single-item-data-section .single-item-collection--gallery-items img{border-bottom:4px solid transparent;margin-bottom:4px;transition:border .3s ease}.single-item-data-section .single-item-collection--gallery-items .slick-current{font-weight:700}.single-item-data-section .single-item-collection--gallery-items .slick-current img{border-bottom:4px solid #298596}.single-item-data-section .single-item-collection--attachments-file:hover .tainacan-item-file-download{opacity:1;transform:scale(1)}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file{text-align:center;vertical-align:top;cursor:pointer;word-break:break-all;font-size:.875em;padding:0 6px}@media only screen and (max-width:380px){.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file{margin:10px 0}}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file img,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file img{width:130px;height:130px;object-fit:cover}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file img:focus,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file img:focus{outline:0}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a{width:100%;max-width:130px;font-size:.875rem;text-align:center;word-break:break-all;line-height:1.5rem}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a,.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a:focus,.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a:hover,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a:focus,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a:hover{outline:0;text-decoration:none;cursor:pointer;color:#000}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file .attachment-without-image img,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file .attachment-without-image img{padding:36px;background-color:#dbdbdb;object-fit:contain}.single-item-data-section .single-item-collection--metadata{height:100%}.single-item-data-section .single-item-collection--metadata div{-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid;display:inline-block;width:100%}.single-item-data-section .single-item-collection--metadata div:last-child{-webkit-column-break-inside:auto;page-break-inside:auto;break-inside:auto;display:inline-block;width:100%}@media only screen and (min-width:768px){.single-item-data-section .single-item-collection--metadata{-moz-column-gap:0;-moz-column-rule:none;-webkit-column-gap:0;-webkit-column-rule:none;column-gap:4rem;column-rule:none}}@media only screen and (min-width:1366px){.single-item-data-section .single-item-collection--metadata{-moz-column-gap:7rem;-moz-column-rule:none;-webkit-column-gap:7rem;-webkit-column-rule:none;column-gap:7rem;column-rule:none}}.single-item-data-section .single-item-collection--metadata h3{padding-right:1rem;margin-bottom:.25rem;width:100%}.single-item-data-section .single-item-collection--metadata h3:first-of-type:last-of-type{display:inline-block}.single-item-data-section .single-item-collection--metadata h4,.single-item-data-section .single-item-collection--metadata label{padding-right:.875rem;width:100%}.single-item-data-section .single-item-collection--metadata h4:first-of-type:last-of-type,.single-item-data-section .single-item-collection--metadata label:first-of-type:last-of-type{display:inline-block}.single-item-data-section .single-item-collection--metadata p{word-wrap:break-word}.single-item-data-section .single-item-collection--metadata .multivalue-separator{color:#cbcbcb;margin:0 8px}.single-item-data-section .single-item-collection--metadata .hierarchy-separator{color:#cbcbcb}.single-item-data-section .single-item-collection--metadata .metadata-type-compound .multivalue-separator,.single-item-data-section .single-item-collection--metadata .metadata-type-textarea .multivalue-separator{display:block;max-height:1px;width:35px;background:#cbcbcb;content:none;color:transparent;margin:.875rem auto}.single-item-data-section .single-item-collection--metadata .tainacan-compound-group{padding-left:1.5rem;border-left:1px solid #f2f2f2}.single-item-data-section .swiper-container .swiper-button-disabled{display:none}.single-item-data-section .swiper-container .swiper-button-next,.single-item-data-section .swiper-container .swiper-button-prev{top:calc(130px/2)}.single-item-data-section .swiper-container .swiper-button-next:after,.single-item-data-section .swiper-container .swiper-button-prev:after{filter:drop-shadow(0 0 1px #fff)}.single-item-data-section .swiper-container .swiper-button-prev{left:-30px;transition:left .3s ease}.single-item-data-section .swiper-container .swiper-button-next{right:-30px;transition:right .3s ease}.single-item-data-section .swiper-container:hover .swiper-button-prev{left:10px}.single-item-data-section .swiper-container:hover .swiper-button-next{right:10px} +:root{--tainacan-block-primary:var(--paletteColor1, #3eaf7c);--tainacan-block-gray0:var(--backgroundColor, #f8f9fb);--tainacan-block-gray1:var(--backgroundColor, #f8f9fb);--tainacan-block-gray2:var(--formBorderInitialColor, #e0e5eb);--tainacan-block-gray3:var(--formBorderInitialColor, #e0e5eb);--tainacan-block-gray4:var(--color, rgba(44, 62, 80, 0.9));--tainacan-block-gray5:var(--headingColor, rgba(44, 62, 80, 1))}.theme-items-list{--tainacan-font-family:var(--fontFamily, inherit);--tainacan-base-font-size:var(--fontSize, 1em);--tainacan-secondary:var(--paletteColor1, #3eaf7c);--tainacan-primary:var(--formBorderInitialColor, #e0e5eb);--tainacan-background-color:var(--backgroundColor, #f8f9fb);--tainacan-item-background-color:var(--cardBackground, white);--tainacan-item-hover-background-color:var(--tainacan-item-background-color, white);--tainacan-item-heading-hover-background-color:var(--tainacan-item-background-color, white);--tainacan-input-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-input-background-color:var(--formBackgroundInitialColor, white);--tainacan-input-border-color:var(--formBorderInitialColor, #e0e5eb);--tainacan-heading-color:var(--headingColor, rgba(44, 62, 80, 1));--tainacan-label-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-info-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-skeleton-color:rgba(252, 252, 252, 0.5)}.theme-items-list:not(.is-fullscreen){justify-content:center;top:-52px!important;background:0 0!important;padding:6px 13px;display:grid;grid-template-columns:1fr minmax(auto,1300px) 1fr;grid-template-rows:auto 1fr;grid-template-areas:". searchcontrol ." "itemslist itemslist itemslist"}.theme-items-list .search-control{grid-area:searchcontrol;border-radius:0 0 var(--borderRadius,3px) var(--borderRadius,3px);background-color:var(--tainacan-item-background-color,#fff);padding:20px 20px 6px 20px!important;margin:5px;box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04))}.theme-items-list .search-control .search-control-item{margin-bottom:20px!important}.theme-items-list #filters-modal{grid-area:itemslist;justify-self:start;align-self:normal;width:100%}.theme-items-list #filters-modal .modal-content{padding:16px 10px}.theme-items-list #filters-modal .modal-content #filters-items-list{border-radius:var(--borderRadius,3px);background-color:var(--tainacan-item-background-color,#fff);padding:20px;margin:-3px;box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04))}.theme-items-list #filters-modal .modal-content #filters-items-list .filters-components-list{margin-bottom:24px}.theme-items-list #filters-modal.tainacan-filter-list-fixed{left:14px}.theme-items-list #items-list-area{grid-area:itemslist;justify-self:end;align-self:normal;width:100%}.theme-items-list #items-list-area #items-list-results .table-container{min-width:100%;padding-top:14px;padding-left:10px;padding-bottom:14px;padding-right:10px}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record{border-radius:var(--borderRadius,3px);box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04));border:var(--border,none);overflow:hidden}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-title p,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-title p,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-title p,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-title p{font-weight:500}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-value,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-value,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-value,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-label,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-value{font-size:.8125em!important}.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list,.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record{background-color:var(--tainacan-item-background-color,#fff)!important}.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item{display:flex!important;flex-direction:column-reverse}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card{min-height:215px;max-height:215px}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .media .list-metadata{padding:.125em 1.375em!important}.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .media .list-metadata p.metadata-description{max-height:12.75em!important;line-height:1.25em}.theme-items-list #items-list-area #items-list-results .tainacan-table{padding:0 12px}.theme-items-list #items-list-area #items-list-results .tainacan-table .column-main-content p{font-weight:500}.theme-items-list #items-list-area #items-list-results .tainacan-table td p{font-size:.725em!important}.theme-items-list #items-list-area #items-list-results .tainacan-slide-main-view iframe{border:none;border-radius:var(--borderRadius,3px)}.theme-items-list #items-list-area #items-list-results .tainacan-slides-list .swiper-slide img{border-radius:var(--borderRadius,3px);padding-bottom:0}.theme-items-list #items-list-area #items-list-results .pagination-area{border-top:none;margin-left:12px;margin-right:12px}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination{font-weight:700;--colorActive:#ffffff}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link{display:inline-flex;align-items:center;justify-content:center;height:40px;width:42px;border-radius:4px;border:2px solid transparent;font-size:14px;font-weight:600;color:var(--color);--linkInitialColor:var(--color);transition:color .12s cubic-bezier(.455,.03,.515,.955),background .12s cubic-bezier(.455,.03,.515,.955),border-color .12s cubic-bezier(.455,.03,.515,.955)}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link:hover{text-decoration:none;border-color:var(--linkHoverColor);color:var(--linkHoverColor)}.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link.is-current{color:var(--colorActive)!important;background:var(--linkHoverColor)}.theme-items-list .advanced-search-criteria-title hr{display:none}body:not(.tainacan-admin-page) .tainacan-modal-content,body:not(.tainacan-admin-page) .tooltip{--tainacan-font-family:var(--fontFamily, inherit);--tainacan-base-font-size:var(--fontSize, 1em);--tainacan-secondary:var(--paletteColor1, #3eaf7c);--tainacan-primary:var(--formBorderInitialColor, #e0e5eb);--tainacan-background-color:var(--backgroundColor, #f8f9fb);--tainacan-input-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-input-background-color:var(--formBackgroundInitialColor, white);--tainacan-input-border-color:var(--formBorderInitialColor, #e0e5eb);--tainacan-label-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-info-color:var(--color, rgba(44, 62, 80, 0.9));--tainacan-heading-color:var(--headingColor, rgba(44, 62, 80, 1))}body:not(.tainacan-admin-page) .tainacan-modal-content{border-radius:var(--borderRadius,6px)}body:not(.tainacan-admin-page) .tainacan-modal-content .tainacan-modal-title hr{display:none}body:not(.tainacan-admin-page) .tainacan-modal-content .tabs li{margin-bottom:0}body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body{background-color:var(--tainacan-item-background-color,#fff)}.tainacan-collection-header{display:flex;padding:36px 18px 28px 18px;justify-content:center;align-items:center;background-color:var(--backgroundColor,#f8f9fb);background-size:cover;background-repeat:no-repeat;--tainacan-secondary:var(--paletteColor1, #3eaf7c);--tainacan-primary:var(--formBorderInitialColor, #e0e5eb);--tainacan-background-color:var(--backgroundColor, #f8f9fb);--tainacan-item-background-color:var(--cardBackground, white)}.tainacan-collection-header .tainacan-collection-header__box{width:var(--maxSiteWidth,1290px);border-radius:var(--borderRadius,3px) var(--borderRadius,3px) 0 0;background-color:var(--tainacan-item-background-color,#fff);padding:20px;box-shadow:var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04))}.tainacan-collection-header .tainacan-collection-header__box h1{margin-bottom:4px;display:inline-block}.tainacan-collection-header .tainacan-collection-header__box .ct-title-label{font-weight:400}.tainacan-collection-header .tainacan-collection-header__box .ct-title-label::after{content:': '}.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail{max-width:calc(var(--tainacan-filter-menu-width-theme,20%) - 24px);float:left;margin-right:24px}.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail img{border-radius:var(--borderRadius,3px)}.single-item-data-section{--swiper-theme-color:var(--paletteColor1, #3eaf7c);--swiper-navigation-color:var(--paletteColor1, #3eaf7c)}.single-item-data-section h1{--fontSize:30px}.single-item-data-section h2{--fontSize:26px}.single-item-data-section h3{--fontSize:22px}.single-item-data-section h4{--fontSize:20px}.single-item-data-section h5{--fontSize:18px}.single-item-data-section h6{--fontSize:16px}.single-item-data-section section{margin-bottom:2.25rem}.single-item-data-section .tainacan-item-file-download{position:absolute;opacity:0;transform:scale(0);border-radius:24px;width:36px;height:36px;bottom:-18px;right:calc(50% - 18px);cursor:pointer;font-size:0;background-color:var(--paletteColor1,#3eaf7c);color:#fff;transition:opacity .3s ease,transform .3s ease,font-size .3s ease}.single-item-data-section .tainacan-item-file-download a{height:38px;width:38px;display:block;position:relative;z-index:99}.single-item-data-section .tainacan-item-file-download::after{position:relative;top:-38px;display:inline-block;font:normal normal normal 20px/1 TainacanIcons;font-size:1.25rem!important;line-height:2.25rem;text-rendering:auto;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.25em;text-transform:none!important;letter-spacing:normal!important;content:'download';display:flex;justify-content:center;align-items:center}.single-item-data-section .single-item-collection--document{display:flex;justify-content:center;position:relative}.single-item-data-section .single-item-collection--document:hover .tainacan-item-file-download{opacity:1;transform:scale(1)}.single-item-data-section .single-item-collection--document img.attachment-large,.single-item-data-section .single-item-collection--document>iframe{display:block;height:auto;margin:0 auto;border:none}.single-item-data-section .single-item-collection--document>audio{width:100%}@media only screen and (min-width:768px){.single-item-data-section .single-item-collection--document>iframe{min-height:600px}}@media only screen and (max-width:576px){.single-item-data-section .single-item-collection--document>iframe{min-height:429px}}.single-item-data-section .single-item-collection--document .tainacan-embed-container{width:100%}.single-item-data-section .single-item-collection--document .tainacan-embed-container iframe{position:absolute;top:0;left:0;right:0;bottom:0}.single-item-data-section .single-item-collection--gallery-items{font-weight:400;transition:font-weight .3s ease}.single-item-data-section .single-item-collection--gallery-items img{border-bottom:4px solid transparent;margin-bottom:4px;transition:border .3s ease}.single-item-data-section .single-item-collection--gallery-items .slick-current{font-weight:700}.single-item-data-section .single-item-collection--gallery-items .slick-current img{border-bottom:4px solid #298596}.single-item-data-section .single-item-collection--attachments-file:hover .tainacan-item-file-download{opacity:1;transform:scale(1)}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file{text-align:center;vertical-align:top;cursor:pointer;word-break:break-all;font-size:.875em;padding:0 6px}@media only screen and (max-width:380px){.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file{margin:10px 0}}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file img,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file img{width:130px;height:130px;object-fit:cover}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file img:focus,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file img:focus{outline:0}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a{width:100%;max-width:130px;font-size:.875rem;text-align:center;word-break:break-all;line-height:1.5rem}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a,.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a:focus,.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a:hover,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a:focus,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a:hover{outline:0;text-decoration:none;cursor:pointer;color:#000}.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file .attachment-without-image img,.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file .attachment-without-image img{padding:36px;background-color:#dbdbdb;object-fit:contain}.single-item-data-section .single-item-collection--metadata{height:100%}.single-item-data-section .single-item-collection--metadata div{-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid;display:inline-block;width:100%}.single-item-data-section .single-item-collection--metadata div:last-child{-webkit-column-break-inside:auto;page-break-inside:auto;break-inside:auto;display:inline-block;width:100%}@media only screen and (min-width:768px){.single-item-data-section .single-item-collection--metadata{-moz-column-gap:0;-moz-column-rule:none;-webkit-column-gap:0;-webkit-column-rule:none;column-gap:4rem;column-rule:none}}@media only screen and (min-width:1366px){.single-item-data-section .single-item-collection--metadata{-moz-column-gap:7rem;-moz-column-rule:none;-webkit-column-gap:7rem;-webkit-column-rule:none;column-gap:7rem;column-rule:none}}.single-item-data-section .single-item-collection--metadata h3{padding-right:1rem;margin-bottom:.25rem;width:100%}.single-item-data-section .single-item-collection--metadata h3:first-of-type:last-of-type{display:inline-block}.single-item-data-section .single-item-collection--metadata h4,.single-item-data-section .single-item-collection--metadata label{padding-right:.875rem;width:100%}.single-item-data-section .single-item-collection--metadata h4:first-of-type:last-of-type,.single-item-data-section .single-item-collection--metadata label:first-of-type:last-of-type{display:inline-block}.single-item-data-section .single-item-collection--metadata p{word-wrap:break-word}.single-item-data-section .single-item-collection--metadata .multivalue-separator{color:#cbcbcb;margin:0 8px}.single-item-data-section .single-item-collection--metadata .hierarchy-separator{color:#cbcbcb}.single-item-data-section .single-item-collection--metadata .metadata-type-compound .multivalue-separator,.single-item-data-section .single-item-collection--metadata .metadata-type-textarea .multivalue-separator{display:block;max-height:1px;width:35px;background:#cbcbcb;content:none;color:transparent;margin:.875rem auto}.single-item-data-section .single-item-collection--metadata .tainacan-compound-group{padding-left:1.5rem;border-left:1px solid #f2f2f2}.single-item-data-section .swiper-container .swiper-button-disabled{display:none}.single-item-data-section .swiper-container .swiper-button-next,.single-item-data-section .swiper-container .swiper-button-prev{top:calc(130px/2)}.single-item-data-section .swiper-container .swiper-button-next:after,.single-item-data-section .swiper-container .swiper-button-prev:after{filter:drop-shadow(0 0 1px #fff)}.single-item-data-section .swiper-container .swiper-button-prev{left:-30px;transition:left .3s ease}.single-item-data-section .swiper-container .swiper-button-next{right:-30px;transition:right .3s ease}.single-item-data-section .swiper-container:hover .swiper-button-prev{left:10px}.single-item-data-section .swiper-container:hover .swiper-button-next{right:10px} /*# sourceMappingURL=style.min.css.map */ \ No newline at end of file diff --git a/style.min.css.map b/style.min.css.map index 356a1d4..8b695fa 100644 --- a/style.min.css.map +++ b/style.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["sass/style.scss","sass/tainacan-item-archive.scss","sass/tainacan-item-single.scss"],"names":[],"mappings":"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","sourcesContent":["/**\n * Theme Name: Blocksy Tainacan\n * Description: A Blocksy Child theme compatible with Tainacan plugin\n * Author: Tainacan\n * Template: blocksy\n * Text Domain: blocksy-tainacan\n */\n\n /* Tainacan Gutenberg Blocks colors */\n :root {\n --tainacan-block-primary: var(--paletteColor1, #3eaf7c);\n --tainacan-block-gray0: var(--backgroundColor, #f8f9fb);\n --tainacan-block-gray1: var(--backgroundColor, #f8f9fb);\n --tainacan-block-gray2: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-block-gray3: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-block-gray4: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-block-gray5: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n/* Remaining imports */\n@import './tainacan-item-archive.scss';\n@import './tainacan-item-single.scss';","/* Tainacan Items list customization */\n.theme-items-list {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n --tainacan-item-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-item-heading-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n \n &:not(.is-fullscreen) {\n justify-content: center;\n top: -52px !important;\n background: transparent !important;\n padding: 6px 13px;\n display: grid;\n grid-template-columns: 1fr minmax(auto, 1300px) 1fr;\n grid-template-rows: auto 1fr;\n grid-template-areas:\n \". searchcontrol .\"\n \"itemslist itemslist itemslist\";\n }\n\n /* Search control */\n .search-control {\n grid-area: searchcontrol;\n border-radius: 0 0 var(--borderRadius, 3px) var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px 20px 6px 20px !important;\n margin: 5px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .search-control-item {\n margin-bottom: 20px !important;\n }\n }\n\n /* Filters panel */\n #filters-modal {\n grid-area: itemslist;\n justify-self: start;\n align-self: normal;\n width: 100%;\n\n .modal-content {\n padding: 16px 10px;\n\n #filters-items-list {\n border-radius: var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px;\n margin: -3px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .filters-components-list {\n margin-bottom: 24px;\n }\n }\n }\n\n &.tainacan-filter-list-fixed {\n left: 14px;\n }\n }\n\n /* Items list container */\n #items-list-area {\n grid-area: itemslist;\n justify-self: end;\n align-self: normal;\n width: 100%;\n\n #items-list-results {\n .table-container {\n min-width: 100%;\n padding-top: 14px;\n padding-left: 10px;\n padding-bottom: 14px;\n padding-right: 10px;\n }\n \n /* Tainacan items list view modes */\n .tainacan-masonry-container .tainacan-masonry-item,\n .tainacan-records-container .tainacan-record,\n .tainacan-cards-container .tainacan-card,\n .tainacan-list-container .tainacan-list {\n border-radius: var(--borderRadius, 3px);\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n border: var(--border, none);\n overflow: hidden;\n\n .metadata-title p {\n font-weight: 500;\n }\n .metadata-value,\n .metadata-label {\n font-size: 0.8125em !important;\n }\n }\n .tainacan-records-container .tainacan-record,\n .tainacan-list-container .tainacan-list {\n background-color: var(--tainacan-item-background-color, white) !important;\n }\n .tainacan-masonry-container .tainacan-masonry-item {\n display: flex !important;\n flex-direction: column-reverse;\n }\n .tainacan-cards-container .tainacan-card {\n min-height: 215px;\n max-height: 215px;\n\n .media .list-metadata {\n padding: 0.125em 1.375em !important;\n\n p.metadata-description {\n max-height: 12.75em !important;\n line-height: 1.25em;\n }\n }\n }\n .tainacan-table {\n padding: 0 12px;\n .column-main-content p { \n font-weight: 500;\n }\n td p {\n font-size: 0.725em !important;\n }\n }\n .tainacan-slide-main-view {\n iframe {\n border: none;\n border-radius: var(--borderRadius, 3px);\n }\n }\n .tainacan-slides-list {\n .swiper-slide img {\n border-radius: var(--borderRadius, 3px);\n padding-bottom: 0;\n }\n }\n\n /* Pagination */\n .pagination-area {\n border-top: none;\n margin-left: 12px;\n margin-right: 12px;\n\n .pagination {\n font-weight: bold;\n --colorActive: #ffffff;\n\n .pagination-link {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n height: 40px;\n width: 42px;\n border-radius: 4px;\n border: 2px solid transparent;\n font-size: 14px;\n font-weight: 600;\n color: var(--color);\n --linkInitialColor: var(--color);\n transition: color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), background 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);\n\n &:hover {\n text-decoration: none;\n border-color: var(--linkHoverColor);\n color: var(--linkHoverColor);\n }\n &.is-current {\n color: var(--colorActive) !important;\n background: var(--linkHoverColor);\n }\n }\n }\n }\n }\n }\n\n /* Advanced Search */\n .advanced-search-criteria-title hr {\n display: none;\n }\n}\n/* Tooltips and Modals are outside of the items list div */\nbody:not(.tainacan-admin-page) {\n\n .tooltip,\n .tainacan-modal-content {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n .tainacan-modal-content {\n border-radius: var(--borderRadius, 6px);\n\n .tainacan-modal-title {\n hr {\n display: none;\n }\n }\n .tabs li {\n margin-bottom: 0px;\n }\n .modal-card-body {\n background-color: var(--tainacan-item-background-color, white);\n }\n }\n}\n\n/* Collection Items List */\n.tainacan-collection-header {\n display: flex;\n padding: 36px 18px 28px 18px;\n justify-content: center;\n align-items: center;\n background-color: var(--backgroundColor, #f8f9fb);\n background-size: cover;\n background-repeat: no-repeat;\n\n // We also apply this here as we want to keep the same style of the .theme-items-list\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n\n .tainacan-collection-header__box {\n width: var(--maxSiteWidth, 1290px);\n border-radius: var(--borderRadius,3px) var(--borderRadius, 3px) 0 0;\n background-color: var(--tainacan-item-background-color,#fff);\n padding: 20px;\n box-shadow: var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04));\n\n h1 {\n margin-bottom: 4px;\n display: inline-block;\n }\n .ct-title-label {\n font-weight: normal;\n &::after {\n content: ': ';\n }\n }\n .collection-thumbnail {\n max-width: calc(var(--tainacan-filter-menu-width-theme, 20%) - 24px);\n float: left;\n margin-right: 24px;\n\n img {\n border-radius: var(--borderRadius,3px);\n }\n }\n }\n}\n\n","\n/* Single Item Page */\n.single-item-data-section {\n \n h1 {\n --fontSize: 30px;\n }\n h2 {\n --fontSize: 26px;\n }\n h3 {\n --fontSize: 22px;\n }\n h4 {\n --fontSize: 20px;\n }\n h5 {\n --fontSize: 18px;\n }\n h6 {\n --fontSize: 16px;\n }\n section{\n margin-bottom: 2.25rem;\n }\n .tainacan-item-file-download {\n position: absolute;\n opacity: 0;\n transform: scale(0);\n border-radius: 24px;\n width: 36px;\n height: 36px;\n bottom: -18px;\n right: calc(50% - 18px);\n cursor: pointer;\n font-size: 0;\n background-color: var(--paletteColor1, #3eaf7c);\n color: white;\n transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;\n\n a {\n height: 38px;\n width: 38px;\n display: block;\n position: relative;\n z-index: 99;\n }\n\n &::after {\n position: relative;\n top: -38px;\n display: inline-block;\n font: normal normal normal 20px/1 \"TainacanIcons\";\n font-size: 1.25rem !important;\n line-height: 2.25rem;\n text-rendering: auto;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 1.25em;\n text-transform: none !important;\n letter-spacing: normal !important;\n content: 'download';\n display: flex;\n justify-content: center;\n align-items: center;\n }\n }\n .single-item-collection--document {\n display: flex;\n justify-content: center;\n position: relative;\n &:hover {\n .tainacan-item-file-download {\n opacity: 1;\n transform: scale(1);\n }\n }\n\n > iframe, img.attachment-large {\n display: block;\n height: auto;\n margin: 0 auto;\n border: none;\n }\n > audio {\n width: 100%;\n }\n > iframe {\n @media only screen and (min-width: 768px){\n min-height: 600px;\n }\n @media only screen and (max-width: 576px){\n min-height: 429px;\n }\n }\n .tainacan-embed-container{\n width: 100%;\n\n iframe {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n }\n }\n .single-item-collection--gallery-items {\n font-weight: normal;\n transition: font-weight 0.3s ease;\n\n img {\n border-bottom: 4px solid transparent;\n margin-bottom: 4px;\n transition: border 0.3s ease;\n }\n .slick-current{\n font-weight: bold;\n img {\n border-bottom: 4px solid #298596;\n }\n } \n }\n .single-item-collection--attachments-file {\n &:hover {\n .tainacan-item-file-download {\n opacity: 1;\n transform: scale(1);\n }\n }\n } \n .single-item-collection--gallery-items,\n .single-item-collection--attachments {\n .single-item-collection--attachments-file {\n text-align: center;\n vertical-align: top;\n cursor: pointer;\n word-break: break-all;\n font-size: 0.875em;\n padding: 0 6px;\n \n @media only screen and (max-width: 380px) {\n margin: 10px 0;\n }\n\n img {\n width: 130px;\n height: 130px;\n object-fit: cover;\n &:focus {\n outline: none;\n }\n }\n a {\n width: 100%;\n max-width: 130px;\n font-size: 0.875rem; \n text-align: center;\n word-break: break-all;\n line-height: 1.5rem\n }\n a,\n a:focus,\n a:hover {\n outline: none;\n text-decoration: none;\n cursor: pointer;\n color: black;\n }\n .attachment-without-image img {\n padding: 36px;\n background-color: #dbdbdb;\n object-fit: contain;\n }\n }\n }\n .single-item-collection--metadata {\n height: 100%;\n \n div {\n -webkit-column-break-inside: avoid;\n page-break-inside: avoid;\n break-inside: avoid;\n display: inline-block;\n width: 100%;\n &:last-child {\n -webkit-column-break-inside: auto;\n page-break-inside: auto;\n break-inside: auto;\n display: inline-block;\n width: 100%;\n }\n }\n @media only screen and (min-width: 768px) {\n -moz-column-gap: 0;\n -moz-column-rule: none;\n -webkit-column-gap: 0;\n -webkit-column-rule: none;\n column-gap: 4rem;;\n column-rule: none;\n }\n @media only screen and (min-width: 1366px) {\n -moz-column-gap: 7rem;\n -moz-column-rule: none;\n -webkit-column-gap: 7rem;\n -webkit-column-rule: none;\n column-gap: 7rem;\n column-rule: none;\n }\n h3 {\n padding-right: 1rem;\n margin-bottom: 0.25rem;\n width: 100%;\n &:first-of-type:last-of-type {\n display: inline-block;\n }\n }\n h4,\n label {\n padding-right: 0.875rem;\n width: 100%;\n &:first-of-type:last-of-type {\n display: inline-block;\n }\n }\n p {\n word-wrap: break-word;\n }\n\n // Metadata type textarea has different separator\n .multivalue-separator {\n color: #cbcbcb;\n margin: 0 8px; \n }\n .hierarchy-separator {\n color: #cbcbcb; \n }\n .metadata-type-compound,\n .metadata-type-textarea {\n .multivalue-separator {\n display: block;\n max-height: 1px;\n width: 35px;\n background: #cbcbcb;\n content: none;\n color: transparent;\n margin: 0.875rem auto;\n }\n }\n .tainacan-compound-group {\n padding-left: 1.5rem;\n border-left: 1px solid #f2f2f2;\n }\n }\n\n --swiper-theme-color: var(--paletteColor1, #3eaf7c);\n --swiper-navigation-color: var(--paletteColor1, #3eaf7c);\n .swiper-container {\n .swiper-button-disabled {\n display: none;\n }\n .swiper-button-next,\n .swiper-button-prev {\n top: calc(130px/2);\n\n &:after {\n filter: drop-shadow(0px 0px 1px white);\n }\n } \n .swiper-button-prev {\n left: -30px;\n transition: left 0.3s ease;\n }\n .swiper-button-next {\n right: -30px;\n transition: right 0.3s ease;\n }\n &:hover {\n .swiper-button-prev {\n left: 10px;\n }\n .swiper-button-next {\n right: 10px;\n }\n }\n } \n}"]} \ No newline at end of file +{"version":3,"sources":["sass/style.scss","sass/tainacan-item-archive.scss","sass/tainacan-item-single.scss"],"names":[],"mappings":"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","sourcesContent":["/**\n * Theme Name: Blocksy Tainacan\n * Description: A Blocksy Child theme compatible with Tainacan plugin\n * Author: Tainacan\n * Template: blocksy\n * Text Domain: blocksy-tainacan\n */\n\n /* Tainacan Gutenberg Blocks colors */\n :root {\n --tainacan-block-primary: var(--paletteColor1, #3eaf7c);\n --tainacan-block-gray0: var(--backgroundColor, #f8f9fb);\n --tainacan-block-gray1: var(--backgroundColor, #f8f9fb);\n --tainacan-block-gray2: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-block-gray3: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-block-gray4: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-block-gray5: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n/* Remaining imports */\n@import './tainacan-item-archive.scss';\n@import './tainacan-item-single.scss';","/* Tainacan Items list customization */\n.theme-items-list {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n --tainacan-item-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-item-heading-hover-background-color: var(--tainacan-item-background-color, white);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-skeleton-color: rgba(252, 252, 252, 0.5);\n \n &:not(.is-fullscreen) {\n justify-content: center;\n top: -52px !important;\n background: transparent !important;\n padding: 6px 13px;\n display: grid;\n grid-template-columns: 1fr minmax(auto, 1300px) 1fr;\n grid-template-rows: auto 1fr;\n grid-template-areas:\n \". searchcontrol .\"\n \"itemslist itemslist itemslist\";\n }\n\n /* Search control */\n .search-control {\n grid-area: searchcontrol;\n border-radius: 0 0 var(--borderRadius, 3px) var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px 20px 6px 20px !important;\n margin: 5px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .search-control-item {\n margin-bottom: 20px !important;\n }\n }\n\n /* Filters panel */\n #filters-modal {\n grid-area: itemslist;\n justify-self: start;\n align-self: normal;\n width: 100%;\n\n .modal-content {\n padding: 16px 10px;\n\n #filters-items-list {\n border-radius: var(--borderRadius, 3px);\n background-color: var(--tainacan-item-background-color, white);\n padding: 20px;\n margin: -3px;\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n\n .filters-components-list {\n margin-bottom: 24px;\n }\n }\n }\n\n &.tainacan-filter-list-fixed {\n left: 14px;\n }\n }\n\n /* Items list container */\n #items-list-area {\n grid-area: itemslist;\n justify-self: end;\n align-self: normal;\n width: 100%;\n\n #items-list-results {\n .table-container {\n min-width: 100%;\n padding-top: 14px;\n padding-left: 10px;\n padding-bottom: 14px;\n padding-right: 10px;\n }\n \n /* Tainacan items list view modes */\n .tainacan-masonry-container .tainacan-masonry-item,\n .tainacan-records-container .tainacan-record,\n .tainacan-cards-container .tainacan-card,\n .tainacan-list-container .tainacan-list {\n border-radius: var(--borderRadius, 3px);\n box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));\n border: var(--border, none);\n overflow: hidden;\n\n .metadata-title p {\n font-weight: 500;\n }\n .metadata-value,\n .metadata-label {\n font-size: 0.8125em !important;\n }\n }\n .tainacan-records-container .tainacan-record,\n .tainacan-list-container .tainacan-list {\n background-color: var(--tainacan-item-background-color, white) !important;\n }\n .tainacan-masonry-container .tainacan-masonry-item {\n display: flex !important;\n flex-direction: column-reverse;\n }\n .tainacan-cards-container .tainacan-card {\n min-height: 215px;\n max-height: 215px;\n\n .media .list-metadata {\n padding: 0.125em 1.375em !important;\n\n p.metadata-description {\n max-height: 12.75em !important;\n line-height: 1.25em;\n }\n }\n }\n .tainacan-table {\n padding: 0 12px;\n .column-main-content p { \n font-weight: 500;\n }\n td p {\n font-size: 0.725em !important;\n }\n }\n .tainacan-slide-main-view {\n iframe {\n border: none;\n border-radius: var(--borderRadius, 3px);\n }\n }\n .tainacan-slides-list {\n .swiper-slide img {\n border-radius: var(--borderRadius, 3px);\n padding-bottom: 0;\n }\n }\n\n /* Pagination */\n .pagination-area {\n border-top: none;\n margin-left: 12px;\n margin-right: 12px;\n\n .pagination {\n font-weight: bold;\n --colorActive: #ffffff;\n\n .pagination-link {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n height: 40px;\n width: 42px;\n border-radius: 4px;\n border: 2px solid transparent;\n font-size: 14px;\n font-weight: 600;\n color: var(--color);\n --linkInitialColor: var(--color);\n transition: color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), background 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);\n\n &:hover {\n text-decoration: none;\n border-color: var(--linkHoverColor);\n color: var(--linkHoverColor);\n }\n &.is-current {\n color: var(--colorActive) !important;\n background: var(--linkHoverColor);\n }\n }\n }\n }\n }\n }\n\n /* Advanced Search */\n .advanced-search-criteria-title hr {\n display: none;\n }\n}\n/* Tooltips and Modals are outside of the items list div */\nbody:not(.tainacan-admin-page) {\n\n .tooltip,\n .tainacan-modal-content {\n --tainacan-font-family: var(--fontFamily, inherit);\n --tainacan-base-font-size: var(--fontSize, 1em);\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-input-background-color: var(--formBackgroundInitialColor, white);\n --tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));\n --tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));\n }\n\n .tainacan-modal-content {\n border-radius: var(--borderRadius, 6px);\n\n .tainacan-modal-title {\n hr {\n display: none;\n }\n }\n .tabs li {\n margin-bottom: 0px;\n }\n .modal-card-body {\n background-color: var(--tainacan-item-background-color, white);\n }\n }\n}\n\n/* Collection Items List */\n.tainacan-collection-header {\n display: flex;\n padding: 36px 18px 28px 18px;\n justify-content: center;\n align-items: center;\n background-color: var(--backgroundColor, #f8f9fb);\n background-size: cover;\n background-repeat: no-repeat;\n\n // We also apply this here as we want to keep the same style of the .theme-items-list\n --tainacan-secondary: var(--paletteColor1, #3eaf7c);\n --tainacan-primary: var(--formBorderInitialColor, #e0e5eb);\n --tainacan-background-color: var(--backgroundColor, #f8f9fb);\n --tainacan-item-background-color: var(--cardBackground, white);\n\n .tainacan-collection-header__box {\n width: var(--maxSiteWidth, 1290px);\n border-radius: var(--borderRadius,3px) var(--borderRadius, 3px) 0 0;\n background-color: var(--tainacan-item-background-color,#fff);\n padding: 20px;\n box-shadow: var(--boxShadow,0 12px 18px -6px rgba(34,56,101,.04));\n\n h1 {\n margin-bottom: 4px;\n display: inline-block;\n }\n .ct-title-label {\n font-weight: normal;\n &::after {\n content: ': ';\n }\n }\n .collection-thumbnail {\n max-width: calc(var(--tainacan-filter-menu-width-theme, 20%) - 24px);\n float: left;\n margin-right: 24px;\n\n img {\n border-radius: var(--borderRadius,3px);\n }\n }\n }\n}\n\n","\n/* Single Item Page */\n.single-item-data-section {\n \n h1 {\n --fontSize: 30px;\n }\n h2 {\n --fontSize: 26px;\n }\n h3 {\n --fontSize: 22px;\n }\n h4 {\n --fontSize: 20px;\n }\n h5 {\n --fontSize: 18px;\n }\n h6 {\n --fontSize: 16px;\n }\n section{\n margin-bottom: 2.25rem;\n }\n .tainacan-item-file-download {\n position: absolute;\n opacity: 0;\n transform: scale(0);\n border-radius: 24px;\n width: 36px;\n height: 36px;\n bottom: -18px;\n right: calc(50% - 18px);\n cursor: pointer;\n font-size: 0;\n background-color: var(--paletteColor1, #3eaf7c);\n color: white;\n transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;\n\n a {\n height: 38px;\n width: 38px;\n display: block;\n position: relative;\n z-index: 99;\n }\n\n &::after {\n position: relative;\n top: -38px;\n display: inline-block;\n font: normal normal normal 20px/1 \"TainacanIcons\";\n font-size: 1.25rem !important;\n line-height: 2.25rem;\n text-rendering: auto;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 1.25em;\n text-transform: none !important;\n letter-spacing: normal !important;\n content: 'download';\n display: flex;\n justify-content: center;\n align-items: center;\n }\n }\n .single-item-collection--document {\n display: flex;\n justify-content: center;\n position: relative;\n &:hover {\n .tainacan-item-file-download {\n opacity: 1;\n transform: scale(1);\n }\n }\n\n > iframe, img.attachment-large {\n display: block;\n height: auto;\n margin: 0 auto;\n border: none;\n }\n > audio {\n width: 100%;\n }\n > iframe {\n @media only screen and (min-width: 768px){\n min-height: 600px;\n }\n @media only screen and (max-width: 576px){\n min-height: 429px;\n }\n }\n .tainacan-embed-container{\n width: 100%;\n\n iframe {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n }\n }\n .single-item-collection--gallery-items {\n font-weight: normal;\n transition: font-weight 0.3s ease;\n\n img {\n border-bottom: 4px solid transparent;\n margin-bottom: 4px;\n transition: border 0.3s ease;\n }\n .slick-current{\n font-weight: bold;\n img {\n border-bottom: 4px solid #298596;\n }\n } \n }\n .single-item-collection--attachments-file {\n &:hover {\n .tainacan-item-file-download {\n opacity: 1;\n transform: scale(1);\n }\n }\n } \n .single-item-collection--gallery-items,\n .single-item-collection--attachments {\n .single-item-collection--attachments-file {\n text-align: center;\n vertical-align: top;\n cursor: pointer;\n word-break: break-all;\n font-size: 0.875em;\n padding: 0 6px;\n \n @media only screen and (max-width: 380px) {\n margin: 10px 0;\n }\n\n img {\n width: 130px;\n height: 130px;\n object-fit: cover;\n &:focus {\n outline: none;\n }\n }\n a {\n width: 100%;\n max-width: 130px;\n font-size: 0.875rem; \n text-align: center;\n word-break: break-all;\n line-height: 1.5rem\n }\n a,\n a:focus,\n a:hover {\n outline: none;\n text-decoration: none;\n cursor: pointer;\n color: black;\n }\n .attachment-without-image img {\n padding: 36px;\n background-color: #dbdbdb;\n object-fit: contain;\n }\n }\n }\n .single-item-collection--metadata {\n height: 100%;\n \n div {\n -webkit-column-break-inside: avoid;\n page-break-inside: avoid;\n break-inside: avoid;\n display: inline-block;\n width: 100%;\n &:last-child {\n -webkit-column-break-inside: auto;\n page-break-inside: auto;\n break-inside: auto;\n display: inline-block;\n width: 100%;\n }\n }\n @media only screen and (min-width: 768px) {\n -moz-column-gap: 0;\n -moz-column-rule: none;\n -webkit-column-gap: 0;\n -webkit-column-rule: none;\n column-gap: 4rem;;\n column-rule: none;\n }\n @media only screen and (min-width: 1366px) {\n -moz-column-gap: 7rem;\n -moz-column-rule: none;\n -webkit-column-gap: 7rem;\n -webkit-column-rule: none;\n column-gap: 7rem;\n column-rule: none;\n }\n h3 {\n padding-right: 1rem;\n margin-bottom: 0.25rem;\n width: 100%;\n &:first-of-type:last-of-type {\n display: inline-block;\n }\n }\n h4,\n label {\n padding-right: 0.875rem;\n width: 100%;\n &:first-of-type:last-of-type {\n display: inline-block;\n }\n }\n p {\n word-wrap: break-word;\n }\n\n // Metadata type textarea has different separator\n .multivalue-separator {\n color: #cbcbcb;\n margin: 0 8px; \n }\n .hierarchy-separator {\n color: #cbcbcb; \n }\n .metadata-type-compound,\n .metadata-type-textarea {\n .multivalue-separator {\n display: block;\n max-height: 1px;\n width: 35px;\n background: #cbcbcb;\n content: none;\n color: transparent;\n margin: 0.875rem auto;\n }\n }\n .tainacan-compound-group {\n padding-left: 1.5rem;\n border-left: 1px solid #f2f2f2;\n }\n }\n\n --swiper-theme-color: var(--paletteColor1, #3eaf7c);\n --swiper-navigation-color: var(--paletteColor1, #3eaf7c);\n .swiper-container {\n .swiper-button-disabled {\n display: none;\n }\n .swiper-button-next,\n .swiper-button-prev {\n top: calc(130px/2);\n\n &:after {\n filter: drop-shadow(0px 0px 1px white);\n }\n } \n .swiper-button-prev {\n left: -30px;\n transition: left 0.3s ease;\n }\n .swiper-button-next {\n right: -30px;\n transition: right 0.3s ease;\n }\n &:hover {\n .swiper-button-prev {\n left: 10px;\n }\n .swiper-button-next {\n right: 10px;\n }\n }\n } \n}"]} \ No newline at end of file diff --git a/tainacan/archive-items.php b/tainacan/archive-items.php index 5dfa052..6ce1ebe 100644 --- a/tainacan/archive-items.php +++ b/tainacan/archive-items.php @@ -1,3 +1,9 @@ +screen->get_prefix(); + +?> +
@@ -14,12 +20,25 @@ echo blocksy_output_hero_section( 'type-1' ); ?> - + -
+
true + 'hide_filters' => get_theme_mod($prefix . '_display_filters_panel', 'yes') == 'no', + 'start_with_filters_hidden' => get_theme_mod($prefix . '_start_with_filters_hidden', 'no') == 'yes', + 'hide_hide_filters_button' => get_theme_mod($prefix . '_show_hide_filters_button', 'yes') == 'no', + 'show_filters_button_inside_search_control' => get_theme_mod($prefix . '_show_filters_button_inside_search_control', 'yes') == 'yes', + 'filters_as_modal' => get_theme_mod($prefix . '_filters_as_modal', 'no') == 'yes', + 'hide_search' => get_theme_mod($prefix . '_show_search', 'yes') == 'no', + 'hide_advanced_search' => get_theme_mod($prefix . '_show_advanced_search', 'yes') == 'no', + 'hide_sorting_area' => get_theme_mod($prefix . '_show_sorting_area', 'yes') == 'no', + 'hide_sort_by_button' => get_theme_mod($prefix . '_show_sort_by_button', 'yes') == 'no', + 'hide_displayed_metadata_dropdown' => get_theme_mod($prefix . '_show_displayed_metadata_dropdown', 'yes') == 'no', + 'show_inline_view_mode_options' => get_theme_mod($prefix . '_show_inline_view_mode_options', 'no') == 'yes', + 'show_fullscreen_with_view_modes' => get_theme_mod($prefix . '_show_fullscreen_with_view_modes', 'no') == 'yes', + 'hide_exposers_button' => get_theme_mod($prefix . '_show_exposers_button', 'yes') == 'no', + 'hide_pagination_area' => get_theme_mod($prefix . '_has_pagination', 'yes') == 'no', ]); ?>
diff --git a/template-parts/single-items-metadata.php b/template-parts/single-items-metadata.php index 56e9012..a6103ef 100644 --- a/template-parts/single-items-metadata.php +++ b/template-parts/single-items-metadata.php @@ -14,7 +14,7 @@

- 'item-card--thumbnail')); ?> +

'item-card--thumbnail')); ?>