@openeuropa/bcl-theme-ucpkn 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-ucpkn.css +45 -0
- package/css/oe-bcl-ucpkn.css.map +1 -1
- package/css/oe-bcl-ucpkn.min.css +1 -1
- package/css/oe-bcl-ucpkn.min.css.map +1 -1
- package/icons/bootstrap-icons.svg +1 -0
- package/package.json +9 -9
- 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-ucpkn.css
CHANGED
|
@@ -7035,6 +7035,40 @@ textarea.form-control-lg {
|
|
|
7035
7035
|
font-size: 1.5rem;
|
|
7036
7036
|
}
|
|
7037
7037
|
}
|
|
7038
|
+
.bcl-card-start-col {
|
|
7039
|
+
-ms-flex-preferred-size: 160px;
|
|
7040
|
+
flex-basis: 160px;
|
|
7041
|
+
padding: 0;
|
|
7042
|
+
}
|
|
7043
|
+
.bcl-card-start-col.bcl-size-small {
|
|
7044
|
+
-ms-flex-preferred-size: 120px;
|
|
7045
|
+
flex-basis: 120px;
|
|
7046
|
+
}
|
|
7047
|
+
.bcl-card-start-col.bcl-size-large {
|
|
7048
|
+
-ms-flex-preferred-size: 255px;
|
|
7049
|
+
flex-basis: 255px;
|
|
7050
|
+
}
|
|
7051
|
+
.bcl-card-start-col.bcl-size-extra-large {
|
|
7052
|
+
-ms-flex-preferred-size: 350px;
|
|
7053
|
+
flex-basis: 350px;
|
|
7054
|
+
}
|
|
7055
|
+
|
|
7056
|
+
.row .bcl-card-start-col {
|
|
7057
|
+
margin-left: calc(var(--bs-gutter-x) * 0.5);
|
|
7058
|
+
margin-right: calc(var(--bs-gutter-x) * 0.5);
|
|
7059
|
+
}
|
|
7060
|
+
|
|
7061
|
+
@media (max-width: 767.98px) {
|
|
7062
|
+
.bcl-content-banner .bcl-card-start-col {
|
|
7063
|
+
margin: 0 auto;
|
|
7064
|
+
padding: 0 calc(var(--bs-gutter-x) * 0.5);
|
|
7065
|
+
}
|
|
7066
|
+
}
|
|
7067
|
+
@media (max-width: 991.98px) {
|
|
7068
|
+
.bcl-content-banner .bcl-card-start-col.bcl-size-extra-large {
|
|
7069
|
+
margin: 0 auto;
|
|
7070
|
+
}
|
|
7071
|
+
}
|
|
7038
7072
|
/* stylelint-disable no-descending-specificity */
|
|
7039
7073
|
a {
|
|
7040
7074
|
text-underline-offset: 2px;
|
|
@@ -14275,6 +14309,17 @@ em.placeholder {
|
|
|
14275
14309
|
filter: invert(1) grayscale(100%) brightness(200%);
|
|
14276
14310
|
}
|
|
14277
14311
|
|
|
14312
|
+
dd {
|
|
14313
|
+
margin-bottom: 0;
|
|
14314
|
+
}
|
|
14315
|
+
dd > div + div {
|
|
14316
|
+
margin-top: 0.5rem;
|
|
14317
|
+
}
|
|
14318
|
+
|
|
14319
|
+
dd + dd {
|
|
14320
|
+
margin-top: 0.5rem;
|
|
14321
|
+
}
|
|
14322
|
+
|
|
14278
14323
|
@media (max-width: 767.98px) {
|
|
14279
14324
|
dd + dt {
|
|
14280
14325
|
margin-top: 0.75rem;
|