2020-09-08 00:12:18 +00:00
|
|
|
/**
|
2021-04-14 17:40:23 +00:00
|
|
|
* Theme Name: Tainacan Support for Blocksy
|
|
|
|
* Description: A Tainacan plugin/child theme compatible with Blocksy theme
|
2020-09-08 00:29:23 +00:00
|
|
|
* Author: Tainacan
|
2020-09-08 00:12:18 +00:00
|
|
|
* Template: blocksy
|
2021-04-14 17:40:23 +00:00
|
|
|
* Text Domain: tainacan-blocksy
|
2020-09-08 00:12:18 +00:00
|
|
|
*/
|
2020-09-16 02:15:40 +00:00
|
|
|
/* Tainacan Gutenberg Blocks colors */
|
|
|
|
: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));
|
2022-05-09 20:16:50 +00:00
|
|
|
--background-color: var(--paletteColor7);
|
2022-09-30 14:22:34 +00:00
|
|
|
--maxSiteWidth: var(--normal-container-max-width);
|
2020-09-16 02:15:40 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
/* Remaining imports */
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Tainacan Items list customization */
|
|
|
|
.theme-items-list {
|
|
|
|
--tainacan-font-family: var(--fontFamily, inherit);
|
|
|
|
--tainacan-base-font-size: var(--fontSize, 1em);
|
|
|
|
--tainacan-item-heading-hover-background-color: var(--tainacan-item-background-color, white);
|
|
|
|
--tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);
|
2021-02-02 13:31:52 +00:00
|
|
|
--tainacan-skeleton-color: var(--tainacan-item-background-color, white);
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Search control */
|
2022-02-23 20:10:03 +00:00
|
|
|
/* Advanced Search */
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Filters panel */
|
|
|
|
/* Items list container */
|
|
|
|
/* Advanced Search */
|
2021-02-02 13:31:52 +00:00
|
|
|
/* Inputs style */
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-13 23:38:20 +00:00
|
|
|
.theme-items-list:not(.is-fullscreen) {
|
|
|
|
justify-content: center;
|
|
|
|
background: transparent !important;
|
2020-09-23 23:11:03 +00:00
|
|
|
padding: 6px 13px;
|
2020-12-29 04:33:20 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
display: -ms-grid;
|
2020-09-23 23:11:03 +00:00
|
|
|
display: grid;
|
2021-02-15 00:37:52 +00:00
|
|
|
grid-template-columns: 0fr 100% 1fr;
|
2020-09-23 23:11:03 +00:00
|
|
|
grid-template-rows: auto 1fr;
|
|
|
|
grid-template-areas: ". searchcontrol ." "itemslist itemslist itemslist";
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list .search-control {
|
2020-09-23 23:11:03 +00:00
|
|
|
grid-area: searchcontrol;
|
2020-09-29 21:38:03 +00:00
|
|
|
border-radius: 0 0 var(--borderRadius, 3px) var(--borderRadius, 3px);
|
2020-09-11 02:47:04 +00:00
|
|
|
padding: 20px 20px 6px 20px !important;
|
2020-09-23 23:11:03 +00:00
|
|
|
margin: 5px;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list .search-control .search-control-item {
|
2020-09-13 23:38:20 +00:00
|
|
|
margin-bottom: 20px !important;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2021-02-02 13:31:52 +00:00
|
|
|
.theme-items-list .search-control .control.has-icons-right .icon .mdi-magnify::before {
|
|
|
|
color: var(--tainacan-secondary, #3eaf7c);
|
|
|
|
}
|
|
|
|
|
2022-02-23 20:10:03 +00:00
|
|
|
.theme-items-list #advanced-search-container {
|
|
|
|
max-width: 100%;
|
|
|
|
width: var(--maxSiteWidth, 1290px);
|
|
|
|
margin: 0.5rem auto;
|
|
|
|
border-radius: var(--borderRadius, 3px) var(--borderRadius, 3px) 0 0;
|
|
|
|
box-shadow: var(--boxShadow, 0 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
.theme-items-list #filters-modal {
|
|
|
|
grid-area: itemslist;
|
|
|
|
justify-self: start;
|
|
|
|
align-self: normal;
|
2020-09-24 02:39:33 +00:00
|
|
|
width: 100%;
|
2020-09-23 23:11:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #filters-modal .modal-content {
|
2021-05-13 13:08:00 +00:00
|
|
|
padding: 16px 10px !important;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2021-01-05 03:07:06 +00:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.theme-items-list #filters-modal .modal-content {
|
|
|
|
padding: 16px 10px 16px 12vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #filters-modal .modal-content #filters-items-list {
|
2021-01-05 03:07:06 +00:00
|
|
|
background-color: var(--backgroundColor, #f8f9fb);
|
2020-09-11 02:47:04 +00:00
|
|
|
padding: 20px;
|
|
|
|
margin: -3px;
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
.theme-items-list #filters-modal .modal-content #filters-items-list .filters-components-list {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
2020-11-18 01:04:40 +00:00
|
|
|
.theme-items-list #filters-modal.tainacan-filter-list-fixed {
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
.theme-items-list #items-list-area {
|
|
|
|
grid-area: itemslist;
|
|
|
|
justify-self: end;
|
|
|
|
align-self: normal;
|
2020-09-24 02:39:33 +00:00
|
|
|
width: 100%;
|
2020-09-23 23:11:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-29 21:38:03 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results {
|
2021-06-14 00:08:22 +00:00
|
|
|
padding-top: 12px;
|
2020-09-29 21:38:03 +00:00
|
|
|
/* Tainacan items list view modes */
|
|
|
|
/* Pagination */
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .table-container {
|
|
|
|
min-width: 100%;
|
2021-05-13 13:08:00 +00:00
|
|
|
padding-top: 0px;
|
2020-09-23 23:11:03 +00:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
padding-right: 10px;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-29 21:38:03 +00:00
|
|
|
.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,
|
|
|
|
.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 {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
border: var(--border, none);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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,
|
|
|
|
.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 {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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-masonry-container .tainacan-masonry-item .metadata-label,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .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-cards-container .tainacan-card .metadata-value,
|
|
|
|
.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-list-container .tainacan-list .metadata-value,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-label {
|
|
|
|
font-size: 0.8125em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record,
|
2021-11-19 20:41:28 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .list-metadata,
|
2020-09-29 21:38:03 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list {
|
|
|
|
background-color: var(--tainacan-item-background-color, white) !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: 0.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: 0.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;
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area {
|
2020-09-13 23:38:20 +00:00
|
|
|
border-top: none;
|
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area .pagination {
|
|
|
|
font-weight: bold;
|
|
|
|
--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 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
.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);
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list .advanced-search-criteria-title hr {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-02-02 13:31:52 +00:00
|
|
|
.theme-items-list input.input,
|
|
|
|
.theme-items-list .input,
|
|
|
|
.theme-items-list textarea.textarea,
|
|
|
|
.theme-items-list .textarea,
|
|
|
|
.theme-items-list input[type="color"].input,
|
|
|
|
.theme-items-list input[type="date"].input,
|
|
|
|
.theme-items-list input[type="datetime-local"].input,
|
|
|
|
.theme-items-list input[type="datetime"].input,
|
|
|
|
.theme-items-list input[type="email"].input,
|
|
|
|
.theme-items-list input[type="number"].input,
|
|
|
|
.theme-items-list input[type="month"].input,
|
|
|
|
.theme-items-list input[type="password"].input,
|
|
|
|
.theme-items-list input[type="search"].input,
|
|
|
|
.theme-items-list input[type="tel"].input,
|
|
|
|
.theme-items-list input[type="text"].input,
|
|
|
|
.theme-items-list input[type="time"].input,
|
|
|
|
.theme-items-list input[type="url"].input,
|
|
|
|
.theme-items-list input[type="week"].input {
|
|
|
|
border-radius: var(--borderRadius, 3px) !important;
|
|
|
|
border: 1px solid var(--tainacan-input-border-color);
|
|
|
|
}
|
|
|
|
|
2021-11-19 20:24:24 +00:00
|
|
|
:not(.wp-block-tainacan-faceted-search) > .theme-items-list:not(.is-fullscreen) {
|
|
|
|
top: -52px !important;
|
|
|
|
}
|
|
|
|
|
2021-01-05 03:07:06 +00:00
|
|
|
/* Extra classes applied from customizer */
|
|
|
|
.page.has-filters-panel-style-boxed #filters-modal .modal-content #filters-items-list {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Tooltips and Modals are outside of the items list div */
|
|
|
|
body:not(.tainacan-admin-page) .tooltip,
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content {
|
|
|
|
--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: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Collection Items List */
|
|
|
|
.tainacan-collection-header {
|
|
|
|
display: flex;
|
2020-09-23 23:11:03 +00:00
|
|
|
padding: 36px 18px 28px 18px;
|
2020-09-11 02:47:04 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-01-08 22:45:22 +00:00
|
|
|
background-color: var(--tainacan-background-color, #f8f9fb);
|
2020-09-13 23:38:20 +00:00
|
|
|
background-size: cover;
|
2021-01-03 21:17:51 +00:00
|
|
|
background-position: center;
|
2020-09-13 23:38:20 +00:00
|
|
|
background-repeat: no-repeat;
|
2021-01-08 22:45:22 +00:00
|
|
|
--headingColor: var(--tainacan-heading-color, rgba(44, 62, 80, 1));
|
|
|
|
--color: var(--tainacan-label-color, #454647);
|
|
|
|
--linkInitialColor: var(--tainacan-secondary, #3eaf7c);
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box {
|
2021-02-15 00:37:52 +00:00
|
|
|
width: 100%;
|
2020-09-11 02:47:04 +00:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2021-01-08 22:45:22 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .page-title {
|
2021-02-23 02:09:46 +00:00
|
|
|
margin-top: 0px;
|
2020-09-24 02:39:33 +00:00
|
|
|
margin-bottom: 4px;
|
2021-08-26 20:21:24 +00:00
|
|
|
display: block;
|
|
|
|
clear: none;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-24 02:39:33 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .ct-title-label {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .ct-title-label::after {
|
|
|
|
content: ': ';
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail {
|
2021-08-26 20:21:24 +00:00
|
|
|
max-width: calc(var(--thumbnail-size, 20%) - 24px);
|
2020-09-11 02:47:04 +00:00
|
|
|
float: left;
|
|
|
|
margin-right: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail img {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
}
|
|
|
|
|
2021-08-26 20:21:24 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .page-description,
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .page-description p {
|
|
|
|
display: block !important;
|
|
|
|
clear: none;
|
2021-06-14 19:01:04 +00:00
|
|
|
}
|
|
|
|
|
2021-02-15 00:37:52 +00:00
|
|
|
.page.has-page-header-style-boxed .theme-items-list:not(.is-fullscreen) {
|
2022-09-30 14:22:34 +00:00
|
|
|
grid-template-columns: 1fr minmax(auto, var(--maxSiteWidth, 1300px)) 1fr;
|
2021-02-15 00:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page.has-page-header-style-boxed .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);
|
|
|
|
box-shadow: var(--boxShadow, 0 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
|
|
|
.page.has-page-header-style-boxed .search-control {
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
2020-09-13 23:38:20 +00:00
|
|
|
/* Single Item Page */
|
2021-11-19 20:24:24 +00:00
|
|
|
.tainacan-item-single-page {
|
2022-05-12 15:05:35 +00:00
|
|
|
/* Metadata section layouts */
|
2021-11-19 20:24:24 +00:00
|
|
|
/* Items related to this section */
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-section {
|
|
|
|
max-width: var(--block-max-width);
|
|
|
|
align-self: flex-start;
|
|
|
|
align-self: start;
|
2022-09-30 14:22:34 +00:00
|
|
|
margin-bottom: 2.5rem;
|
2021-07-06 18:11:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single {
|
2020-12-29 04:33:20 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
display: -ms-grid;
|
|
|
|
display: grid;
|
|
|
|
align-items: start;
|
2021-02-28 03:26:12 +00:00
|
|
|
grid-column-gap: 48px;
|
|
|
|
column-gap: 48px;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section--document,
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section--gallery {
|
2020-12-29 04:33:20 +00:00
|
|
|
grid-area: document;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section--attachments {
|
2020-12-29 04:33:20 +00:00
|
|
|
grid-area: attachments;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section--metadata {
|
2020-12-29 04:33:20 +00:00
|
|
|
grid-area: metadata;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-13 22:51:53 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section--items-related-to-this {
|
|
|
|
grid-area: related;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-dam {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'document' 'attachments' 'metadata' 'related';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100%;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-dma {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'document' 'metadata' 'attachments' 'related';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100%;
|
2020-09-24 02:39:33 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-mda {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'metadata' 'document' 'attachments' 'related';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100%;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-mg {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'metadata document' 'metadata attachments' 'metadata related' 'metadata .';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 60% 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 960px) {
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-mg {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'metadata' 'document' 'attachments' 'related';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100% !important;
|
|
|
|
}
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-gm {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'document metadata' 'attachments metadata' 'related metadata' '. metadata';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 60% 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 960px) {
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-gm {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'document' 'attachments' 'metadata' 'related';
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100% !important;
|
|
|
|
}
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single.tainacan-item-single--layout-type-gtm {
|
2021-07-13 22:51:53 +00:00
|
|
|
grid-template-areas: 'metadata' 'related';
|
2021-07-06 18:11:01 +00:00
|
|
|
grid-template-columns: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single h1 {
|
2020-12-29 04:33:20 +00:00
|
|
|
--fontSize: 30px;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:05:35 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single h2:not(.tainacan-single-item-section) {
|
2022-05-12 15:27:34 +00:00
|
|
|
--fontSize: 22px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 17:52:22 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single h3:not(.tainacan-metadata-label) {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 20px;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single h4 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 18px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single h5 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 16px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single h6 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 14px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-single-item-section {
|
2021-01-04 22:57:51 +00:00
|
|
|
text-align: var(--section-alignment, left);
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
height: 100%;
|
2021-01-03 23:47:07 +00:00
|
|
|
-moz-column-width: var(--metadata-column-width, 400px);
|
|
|
|
-webkit-column-width: var(--metadata-column-width, 400px);
|
|
|
|
column-width: var(--metadata-column-width, 400px);
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata div {
|
2020-09-13 23:38:20 +00:00
|
|
|
-webkit-column-break-inside: avoid;
|
|
|
|
page-break-inside: avoid;
|
|
|
|
break-inside: avoid;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata div:last-child {
|
2020-09-13 23:38:20 +00:00
|
|
|
-webkit-column-break-inside: auto;
|
|
|
|
page-break-inside: auto;
|
|
|
|
break-inside: auto;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 768px) {
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
-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) {
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
-moz-column-gap: 7rem;
|
|
|
|
-moz-column-rule: none;
|
|
|
|
-webkit-column-gap: 7rem;
|
|
|
|
-webkit-column-rule: none;
|
|
|
|
column-gap: 7rem;
|
|
|
|
column-rule: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata h3 {
|
2020-09-13 23:38:20 +00:00
|
|
|
padding-right: 1rem;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata h3:first-of-type:last-of-type {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata h4,
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata label {
|
2020-09-13 23:38:20 +00:00
|
|
|
padding-right: 0.875rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata h4:first-of-type:last-of-type,
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata label:first-of-type:last-of-type {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata p {
|
2020-09-13 23:38:20 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-metadata-label {
|
2021-01-04 22:57:51 +00:00
|
|
|
text-align: var(--metadata-label-alignment, left);
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-metadata-value {
|
2021-01-04 22:57:51 +00:00
|
|
|
text-align: var(--metadata-value-alignment, left);
|
2021-01-03 21:17:51 +00:00
|
|
|
font-family: var(--fontFamily);
|
|
|
|
font-size: var(--fontSize);
|
|
|
|
font-weight: var(--fontWeight);
|
|
|
|
font-style: var(--fontStyle, inherit);
|
|
|
|
line-height: var(--lineHeight);
|
|
|
|
letter-spacing: var(--letterSpacing);
|
|
|
|
text-transform: var(--textTransform);
|
|
|
|
-webkit-text-decoration: var(--textDecoration);
|
|
|
|
text-decoration: var(--textDecoration);
|
2021-01-03 23:47:07 +00:00
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
padding-bottom: 0.75rem;
|
2021-01-04 21:40:54 +00:00
|
|
|
border-bottom: var(--metadata-value-border, 0px solid rgba(125, 125, 125, 0.5));
|
2021-01-03 21:17:51 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-item-section__metadata-thumbnail img {
|
2020-12-29 04:33:20 +00:00
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
}
|
|
|
|
|
2021-11-19 20:24:24 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata p:empty {
|
|
|
|
display: none;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .multivalue-separator {
|
2020-09-13 23:38:20 +00:00
|
|
|
color: #cbcbcb;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .hierarchy-separator {
|
2020-09-13 23:38:20 +00:00
|
|
|
color: #cbcbcb;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .metadata-type-compound .multivalue-separator,
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .metadata-type-textarea .multivalue-separator {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: block;
|
|
|
|
max-height: 1px;
|
2021-08-12 14:54:08 +00:00
|
|
|
width: 45%;
|
2022-09-30 14:22:34 +00:00
|
|
|
background: var(--formBorderInitialColor, #e0e5eb);
|
2020-09-13 23:38:20 +00:00
|
|
|
content: none;
|
|
|
|
color: transparent;
|
|
|
|
margin: 0.875rem auto;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group {
|
2021-11-19 20:24:24 +00:00
|
|
|
padding-top: 0.5em;
|
2022-09-30 14:22:34 +00:00
|
|
|
margin-bottom: .75rem;
|
2020-09-13 23:38:20 +00:00
|
|
|
padding-left: 1.5rem;
|
2022-09-30 14:22:34 +00:00
|
|
|
border-left: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
2021-01-03 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
2021-11-19 20:24:24 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group .label {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group p {
|
|
|
|
margin-top: 0rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group > .multivalue-separator {
|
|
|
|
margin: 1em auto 1.5em -1.5em;
|
|
|
|
}
|
|
|
|
|
2021-08-12 14:54:08 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group .tainacan-relationship-metadatum .tainacan-relationship-metadatum-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group .tainacan-relationship-metadatum .tainacan-relationship-metadatum-header img {
|
|
|
|
margin-right: 12px;
|
|
|
|
max-width: 28px;
|
|
|
|
max-height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group .tainacan-relationship-metadatum .tainacan-relationship-metadatum-header .label {
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group .tainacan-relationship-metadatum .tainacan-metadatum {
|
|
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group .tainacan-relationship-metadatum .tainacan-metadatum .label {
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 1em;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group .tainacan-relationship-metadatum .tainacan-metadatum p {
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata .tainacan-relationship-group > .multivalue-separator {
|
|
|
|
display: block;
|
|
|
|
max-height: 1px;
|
|
|
|
width: calc(100% - 40px);
|
2022-09-30 14:22:34 +00:00
|
|
|
background: var(--formBorderInitialColor, #e0e5eb);
|
2021-08-12 14:54:08 +00:00
|
|
|
content: none;
|
|
|
|
color: transparent;
|
|
|
|
margin: 0.5em 0 0.5em 40px;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 .tainacan-item-section__metadatum {
|
2021-01-03 23:47:07 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 .tainacan-item-section__metadatum .tainacan-metadata-label {
|
2021-01-03 23:47:07 +00:00
|
|
|
flex-basis: 40%;
|
2021-04-02 19:56:34 +00:00
|
|
|
margin-bottom: .75rem;
|
2021-01-04 21:40:54 +00:00
|
|
|
border-right: var(--metadata-label-border, 0px solid rgba(125, 125, 125, 0.5));
|
2021-01-03 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 .tainacan-item-section__metadatum .tainacan-metadata-value {
|
2021-01-03 23:47:07 +00:00
|
|
|
flex-basis: 60%;
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 767px) {
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 .tainacan-item-section__metadatum {
|
2021-01-03 23:47:07 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 .tainacan-item-section__metadatum .tainacan-metadata-label {
|
2021-01-03 23:47:07 +00:00
|
|
|
flex-basis: 100%;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
}
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 .tainacan-item-section__metadatum .tainacan-metadata-value {
|
2021-01-03 23:47:07 +00:00
|
|
|
flex-basis: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-media-component {
|
|
|
|
--swiper-theme-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
--swiper-navigation-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
--swiper-navigation-size: 2.5rem;
|
|
|
|
--tainacan-media-background: var(--background-color, #ffffff);
|
|
|
|
--tainacan-media-main-carousel-height: var(--document-height, 60vh);
|
|
|
|
--tainacan-media-main-carousel-width: var(--document-width, 100%);
|
|
|
|
--tainacan-media-thumbs-carousel-width: var(--attachments-carousel-width, 100%);
|
|
|
|
--tainacan-media-thumbs-carousel-item-size: var(--attachments-size, 140px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-media-component .tainacan-media-component__swiper-main .swiper-slide-metadata__name,
|
|
|
|
.tainacan-item-single-page .tainacan-media-component .tainacan-media-component__swiper-main .swiper-slide-metadata__caption,
|
|
|
|
.tainacan-item-single-page .tainacan-media-component .tainacan-media-component__swiper-main .swiper-slide-metadata__description {
|
|
|
|
font-family: var(--fontFamily);
|
|
|
|
font-size: var(--fontSize);
|
|
|
|
font-weight: var(--fontWeight);
|
|
|
|
font-style: var(--fontStyle, inherit);
|
|
|
|
line-height: var(--lineHeight);
|
|
|
|
letter-spacing: var(--letterSpacing);
|
|
|
|
text-transform: var(--textTransform);
|
|
|
|
-webkit-text-decoration: var(--textDecoration);
|
|
|
|
text-decoration: var(--textDecoration);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-media-component .tainacan-media-component__swiper-thumbs {
|
|
|
|
font-weight: normal;
|
|
|
|
transition: font-weight 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-media-component .tainacan-media-component__swiper-thumbs img {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
transition: border 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2022-09-30 14:22:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-media-component .tainacan-media-component__swiper-thumbs .swiper-slide-metadata__name {
|
2021-07-06 18:11:01 +00:00
|
|
|
display: block;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
font-family: var(--fontFamily);
|
|
|
|
font-size: var(--fontSize);
|
|
|
|
font-weight: var(--fontWeight);
|
|
|
|
font-style: var(--fontStyle, inherit);
|
|
|
|
line-height: var(--lineHeight);
|
|
|
|
letter-spacing: var(--letterSpacing);
|
|
|
|
text-transform: var(--textTransform);
|
|
|
|
-webkit-text-decoration: var(--textDecoration);
|
|
|
|
text-decoration: var(--textDecoration);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-gallery-above-title {
|
|
|
|
background-color: var(--tainacan-media-background-color, var(--paletteColor6));
|
|
|
|
margin-top: calc(-1 * var(--content-vertical-spacing));
|
|
|
|
margin-bottom: var(--content-vertical-spacing);
|
|
|
|
margin-left: var(--has-boxed, calc(-1 * var(--boxed-content-spacing)));
|
|
|
|
margin-right: var(--has-boxed, calc(-1 * var(--boxed-content-spacing)));
|
|
|
|
padding-top: calc(var(--content-vertical-spacing)/2);
|
|
|
|
padding-bottom: calc(var(--content-vertical-spacing)/2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-gallery-above-title .tainacan-media-component {
|
|
|
|
--tainacan-media-background: var(--tainacan-media-background-color, var(--paletteColor6));
|
|
|
|
--swiper-navigation-color: var(--tainacan-media-accent-color, --paletteColor1);
|
|
|
|
--swiper-theme-color: var(--tainacan-media-accent-color, --paletteColor1);
|
|
|
|
--tainacan-label-color: var(--tainacan-media-color, --tainacan-label-color);
|
|
|
|
--tainacan-info-color: var(--tainacan-media-color, --tainacan-info-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-gallery-above-title .tainacan-item-section {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2022-09-30 14:22:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-single--affix-column .tainacan-item-section.tainacan-item-section--gallery {
|
|
|
|
position: sticky;
|
|
|
|
top: 2rem;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-file-download {
|
2020-12-29 04:33:20 +00:00
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0);
|
|
|
|
border-radius: 24px;
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2021-08-12 14:54:08 +00:00
|
|
|
bottom: 0px;
|
2020-12-29 04:33:20 +00:00
|
|
|
right: calc(50% - 18px);
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 0;
|
|
|
|
background-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
color: white;
|
|
|
|
transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-file-download a {
|
2020-12-29 04:33:20 +00:00
|
|
|
height: 38px;
|
|
|
|
width: 38px;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
2020-12-28 19:39:26 +00:00
|
|
|
z-index: 99;
|
2021-04-02 13:58:40 +00:00
|
|
|
background: transparent !important;
|
2021-06-25 01:08:34 +00:00
|
|
|
padding: 0px !important;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-file-download::after {
|
2020-12-29 04:33:20 +00:00
|
|
|
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;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-section__document {
|
2021-04-14 01:36:47 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-section__document > .twitter-tweet,
|
|
|
|
.tainacan-item-single-page .tainacan-item-section__document > iframe.wp-embedded-content {
|
2021-05-13 13:08:00 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2021-07-06 18:11:01 +00:00
|
|
|
.tainacan-item-single-page .tainacan-media-component__swiper-main:hover .tainacan-item-file-download,
|
|
|
|
.tainacan-item-single-page .tainacan-item-section__document:hover .tainacan-item-file-download {
|
2021-04-02 13:58:40 +00:00
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:05:35 +00:00
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs .tainacan-item-section {
|
|
|
|
width: 100%;
|
|
|
|
display: none;
|
2022-10-05 14:36:04 +00:00
|
|
|
padding: 2rem 42px 1rem 42px;
|
2022-05-12 15:05:35 +00:00
|
|
|
border-top: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.85;
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
transition: border-bottom 0.2s ease;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label .tainacan-single-item-section {
|
2022-05-12 15:05:35 +00:00
|
|
|
margin: 0.75rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs input {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs input:checked + label {
|
|
|
|
opacity: 1.0;
|
|
|
|
border-bottom-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs input:checked + label + .tainacan-item-section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs .tainacan-item-section {
|
|
|
|
order: 99;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses .tainacan-item-section, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion .tainacan-item-section {
|
|
|
|
width: 100%;
|
|
|
|
display: none;
|
2022-10-05 14:36:04 +00:00
|
|
|
padding: 2rem 42px 1rem 42px;
|
2022-05-12 15:05:35 +00:00
|
|
|
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.85;
|
|
|
|
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:27:34 +00:00
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label .tainacan-single-item-section, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label .tainacan-single-item-section {
|
2022-05-12 15:05:35 +00:00
|
|
|
margin: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label .tainacan-icon, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label .tainacan-icon {
|
|
|
|
color: var(--paletteColor1, #3eaf7c);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
transition: transform 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label .tainacan-icon::before, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label .tainacan-icon::before {
|
|
|
|
font-size: 1.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label:hover, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input:checked + label, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input:checked + label {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input:checked + label .tainacan-icon, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input:checked + label .tainacan-icon {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input:checked + label + .tainacan-item-section, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input:checked + label + .tainacan-item-section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-11-19 20:24:24 +00:00
|
|
|
.tainacan-item-single-page .tainacan-item-section--items-related-to-this .wp-block-tainacan-dynamic-items-list {
|
|
|
|
margin-top: 0.25em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
/*# sourceMappingURL=style.css.map */
|