@openeuropa/bcl-theme-joinup 0.24.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bcl-builder.config.js +10 -0
- package/css/oe-bcl-joinup.css +45 -0
- package/css/oe-bcl-joinup.css.map +1 -1
- package/css/oe-bcl-joinup.min.css +1 -1
- package/css/oe-bcl-joinup.min.css.map +1 -1
- package/icons/bootstrap-icons.svg +1 -0
- package/package.json +13 -13
- package/templates/bcl-accordion/accordion.html.twig +17 -0
- package/templates/bcl-blockquote/blockquote.html.twig +17 -0
- package/templates/bcl-card/card.html.twig +7 -5
- package/templates/bcl-carousel/carousel.html.twig +18 -2
- package/templates/bcl-content-banner/content-banner.html.twig +11 -8
- package/templates/bcl-description-list/description-list.html.twig +129 -88
- package/templates/bcl-fact-figures/fact-figures.html.twig +2 -2
- package/templates/bcl-featured-media/featured-media.html.twig +21 -9
- package/templates/bcl-file/file.html.twig +3 -1
- package/templates/bcl-links-block/links-block.html.twig +4 -0
- package/templates/bcl-listing/listing.html.twig +40 -50
- package/templates/bcl-modal/modal.html.twig +1 -1
- package/templates/bcl-page/page.html.twig +4 -23
- package/templates/bcl-project/project-lists.html.twig +1 -1
- package/templates/bcl-search-form/search-form.html.twig +1 -1
- package/templates/bcl-subscription-block/subscription-block.html.twig +3 -1
- package/templates/bcl-user/user-compact.html.twig +3 -2
- package/templates/bcl-user/user-terms.html.twig +4 -4
- package/templates/bcl-user/user.html.twig +2 -2
package/bcl-builder.config.js
CHANGED
|
@@ -116,6 +116,16 @@ module.exports = {
|
|
|
116
116
|
to: path.resolve(outputFolder, "js"),
|
|
117
117
|
options: { up: true },
|
|
118
118
|
},
|
|
119
|
+
{
|
|
120
|
+
from: [
|
|
121
|
+
path.resolve(
|
|
122
|
+
nodeModules,
|
|
123
|
+
"@openeuropa/bcl-bootstrap/bootstrap-icons.svg"
|
|
124
|
+
),
|
|
125
|
+
],
|
|
126
|
+
to: path.resolve(outputFolder, "icons"),
|
|
127
|
+
options: { up: true },
|
|
128
|
+
},
|
|
119
129
|
{
|
|
120
130
|
from: [
|
|
121
131
|
path.resolve(
|
package/css/oe-bcl-joinup.css
CHANGED
|
@@ -7196,6 +7196,40 @@ textarea.form-control-lg {
|
|
|
7196
7196
|
font-size: 1.25rem;
|
|
7197
7197
|
}
|
|
7198
7198
|
}
|
|
7199
|
+
.bcl-card-start-col {
|
|
7200
|
+
-ms-flex-preferred-size: 160px;
|
|
7201
|
+
flex-basis: 160px;
|
|
7202
|
+
padding: 0;
|
|
7203
|
+
}
|
|
7204
|
+
.bcl-card-start-col.bcl-size-small {
|
|
7205
|
+
-ms-flex-preferred-size: 120px;
|
|
7206
|
+
flex-basis: 120px;
|
|
7207
|
+
}
|
|
7208
|
+
.bcl-card-start-col.bcl-size-large {
|
|
7209
|
+
-ms-flex-preferred-size: 255px;
|
|
7210
|
+
flex-basis: 255px;
|
|
7211
|
+
}
|
|
7212
|
+
.bcl-card-start-col.bcl-size-extra-large {
|
|
7213
|
+
-ms-flex-preferred-size: 350px;
|
|
7214
|
+
flex-basis: 350px;
|
|
7215
|
+
}
|
|
7216
|
+
|
|
7217
|
+
.row .bcl-card-start-col {
|
|
7218
|
+
margin-left: calc(var(--bs-gutter-x) * 0.5);
|
|
7219
|
+
margin-right: calc(var(--bs-gutter-x) * 0.5);
|
|
7220
|
+
}
|
|
7221
|
+
|
|
7222
|
+
@media (max-width: 767.98px) {
|
|
7223
|
+
.bcl-content-banner .bcl-card-start-col {
|
|
7224
|
+
margin: 0 auto;
|
|
7225
|
+
padding: 0 calc(var(--bs-gutter-x) * 0.5);
|
|
7226
|
+
}
|
|
7227
|
+
}
|
|
7228
|
+
@media (max-width: 991.98px) {
|
|
7229
|
+
.bcl-content-banner .bcl-card-start-col.bcl-size-extra-large {
|
|
7230
|
+
margin: 0 auto;
|
|
7231
|
+
}
|
|
7232
|
+
}
|
|
7199
7233
|
/* stylelint-disable no-descending-specificity */
|
|
7200
7234
|
a {
|
|
7201
7235
|
text-underline-offset: 2px;
|
|
@@ -14461,6 +14495,17 @@ em.placeholder {
|
|
|
14461
14495
|
filter: invert(1) grayscale(100%) brightness(200%);
|
|
14462
14496
|
}
|
|
14463
14497
|
|
|
14498
|
+
dd {
|
|
14499
|
+
margin-bottom: 0;
|
|
14500
|
+
}
|
|
14501
|
+
dd > div + div {
|
|
14502
|
+
margin-top: 0.5rem;
|
|
14503
|
+
}
|
|
14504
|
+
|
|
14505
|
+
dd + dd {
|
|
14506
|
+
margin-top: 0.5rem;
|
|
14507
|
+
}
|
|
14508
|
+
|
|
14464
14509
|
@media (max-width: 767.98px) {
|
|
14465
14510
|
dd + dt {
|
|
14466
14511
|
margin-top: 0.75rem;
|