findify-bundle v7.0.32 -> v7.0.33 (#659)
This commit is contained in:
parent
fd39eb7055
commit
785639b6d8
|
@ -1617,15 +1617,15 @@ https://cdn.jsdelivr.net/npm/@findify/bundle@6.9.15/dist/styles.css
|
|||
https://cdn.jsdelivr.net/npm/@findify/bundle@6.9.15/dist/vendors~components~initializer.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@6.9.15/dist/vendors~initializer.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@6.9.15/dist/vendors~sentry.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/autocomplete.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/bundle.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/initializer.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/polyfill.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/raw.css
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/recommendation.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/search.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/sentry.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.32/dist/styles.css
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/autocomplete.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/bundle.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/initializer.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/polyfill.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/raw.css
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/recommendation.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/search.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/sentry.js
|
||||
https://cdn.jsdelivr.net/npm/@findify/bundle@7.0.33/dist/styles.css
|
||||
https://cdn.jsdelivr.net/npm/instantsearch.css@7.4.5/themes/algolia-min.css
|
||||
https://cdn.jsdelivr.net/npm/leaflet.featuregroup.subgroup@1.0.2/dist/leaflet.featuregroup.subgroup.js
|
||||
https://cdn.jsdelivr.net/npm/ngx-bootstrap@6.2.0/datepicker/bs-datepicker.css
|
||||
|
|
|
@ -284,7 +284,7 @@ targets.setLastVersion = function (type, version) {
|
|||
} else if (type.startsWith('/findify')) {
|
||||
if (helpers.compareVersion('6.9.15', version)) return '6.9.15'; // <= 6.9.15
|
||||
else if (helpers.compareVersion('6.17.0', version)) return '6.17.0'; // > 6.9.15 to <= 6.17.0
|
||||
else return '7.0.32';
|
||||
else return '7.0.33';
|
||||
} else if (type.startsWith('/fancybox/2.')) {
|
||||
return '2.1.7';
|
||||
} else if (type.startsWith('/fancybox/3.')) {
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
<li>socket.io v4.1.3 -> v4.2.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/656">#656</a>)</li>
|
||||
<li>spin.js v4.1.0 -> v4.1.1 (<a href="https://codeberg.org/nobody/LocalCDN/issues/657">#657</a>)</li>
|
||||
<li>vue v3.2.6 -> v3.2.7 (<a href="https://codeberg.org/nobody/LocalCDN/issues/658">#658</a>)</li>
|
||||
<li>findify-bundle v7.0.32 -> v7.0.33 (<a href="https://codeberg.org/nobody/LocalCDN/issues/659">#659</a>)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="generator-section">
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -35,6 +35,7 @@
|
|||
--components-dropdown-select-height: 40px;
|
||||
--components-dropdown-dropdown-background: var(--color-white);
|
||||
--components-dropdown-highlighted-background: var(--color-grey-1);
|
||||
--components-cards-promo-title-font-size: var(--font-size-huge);
|
||||
--components-pagination-height: 40px;
|
||||
--components-pagination-text-transform: uppercase;
|
||||
--components-search-desktopactions-padding: 25px;
|
||||
|
@ -915,6 +916,110 @@
|
|||
|
||||
/* imported from styles.css */
|
||||
|
||||
.findify-components--cards--promo {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding-bottom: 50px;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
font-family: var(--font-base);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__content {
|
||||
height: 100%;
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__container {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
color: white;
|
||||
-webkit-box-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
margin: 0 12%;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__button {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
background: white;
|
||||
padding: 10px;
|
||||
border-radius: 20px;
|
||||
text-transorm: uppercase;
|
||||
font-size: var(--font-size-medium);
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__button:hover,
|
||||
.findify-components--cards--promo__button:focus {
|
||||
background-color: var(--color-grey-2);
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__button-container {
|
||||
text-align: center;
|
||||
padding: 30px 12% 12% 12%;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__title {
|
||||
margin: 0;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
font-size: var(--components-cards-promo-title-font-size);
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__description {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.findify-components--cards--promo__footer {
|
||||
margin: 0;
|
||||
padding: 10px 12% 5px 12%;
|
||||
font-size: var(--font-size-small);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* imported from styles.css */
|
||||
|
||||
.findify-components--cards--product--variants__variants {
|
||||
color: var(--color-grey-3);
|
||||
font-family: var(--font-base);
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue