@openeuropa/bcl-theme-default 0.4068.202510062345 → 0.4185.202511191330
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 +3 -0
- package/css/color-scheme.min.css +1 -1
- package/css/color-scheme.min.css.map +1 -1
- package/css/oe-bcl-ckeditor5.min.css +1 -1
- package/css/oe-bcl-ckeditor5.min.css.map +1 -1
- package/css/oe-bcl-default.css +178 -73
- package/css/oe-bcl-default.css.map +1 -1
- package/css/oe-bcl-default.min.css +1 -1
- package/css/oe-bcl-default.min.css.map +1 -1
- package/icons/bcl-default-icons.svg +1 -1
- package/icons/bootstrap-icons.svg +1 -1
- package/js/oe-bcl-default.bundle.js +18 -13
- package/js/oe-bcl-default.bundle.js.map +1 -1
- package/js/oe-bcl-default.bundle.min.js +1 -1
- package/js/oe-bcl-default.bundle.min.js.map +1 -1
- package/js/oe-bcl-default.esm.js +18 -13
- package/js/oe-bcl-default.esm.js.map +1 -1
- package/js/oe-bcl-default.esm.min.js +1 -1
- package/js/oe-bcl-default.esm.min.js.map +1 -1
- package/js/oe-bcl-default.umd.js +18 -13
- package/js/oe-bcl-default.umd.js.map +1 -1
- package/js/oe-bcl-default.umd.min.js +1 -1
- package/js/oe-bcl-default.umd.min.js.map +1 -1
- package/js/slim-select-2/slimselect.min.js +1 -1
- package/package.json +8 -8
- package/src/js/accordion-toggle/accordion-toggle.js +24 -9
- package/src/scss/_header.scss +1 -1
- package/src/scss/_mega-menu.scss +50 -61
- package/src/scss/_multiselect-2.scss +12 -0
- package/src/scss/_pagination-v2.scss +86 -0
- package/src/scss/_pagination.scss +1 -0
- package/src/scss/base/_mixins.scss +9 -0
- package/src/scss/base/_variables.scss +3 -0
- package/src/scss/oe-bcl-default.scss +1 -0
- package/templates/bcl-base-templates/listing-page.html.twig +17 -19
- package/templates/bcl-contact-form/contact-form.html.twig +3 -3
- package/templates/bcl-content-banner/content-banner.html.twig +3 -0
- package/templates/bcl-dropdown/dropdown.html.twig +12 -7
- package/templates/bcl-event/event.html.twig +5 -5
- package/templates/bcl-file/file.html.twig +1 -1
- package/templates/bcl-glossary/glossary-detail.html.twig +4 -5
- package/templates/bcl-glossary/glossary-listing.html.twig +5 -5
- package/templates/bcl-group/group-landing.html.twig +5 -5
- package/templates/bcl-group/group.html.twig +3 -3
- package/templates/bcl-header/header.html.twig +7 -42
- package/templates/bcl-landing-page/landing-page.html.twig +5 -8
- package/templates/bcl-language-list/language-list-modal.html.twig +58 -5
- package/templates/bcl-mega-menu/mega-menu-submenu.html.twig +10 -7
- package/templates/bcl-modal/modal.html.twig +16 -4
- package/templates/bcl-navigation/navigation.html.twig +8 -0
- package/templates/bcl-page/page.html.twig +5 -5
- package/templates/bcl-pagination-v2/pagination-item.html.twig +90 -0
- package/templates/bcl-pagination-v2/pagination.html.twig +213 -0
- package/templates/bcl-person/person.html.twig +5 -5
- package/templates/bcl-project/project.html.twig +7 -7
- package/templates/bcl-project-status/project-contributions.html.twig +1 -1
- package/templates/bcl-search/search.html.twig +3 -3
- package/templates/bcl-subscription/subscription.html.twig +5 -5
- package/templates/{bcl-toast → bcl-toasts}/toasts.html.twig +17 -8
- package/templates/bcl-user/user-terms.html.twig +3 -3
- package/templates/bcl-user/user.html.twig +3 -3
package/css/oe-bcl-default.css
CHANGED
|
@@ -542,6 +542,11 @@ legend + * {
|
|
|
542
542
|
-webkit-appearance: textfield;
|
|
543
543
|
outline-offset: -2px;
|
|
544
544
|
}
|
|
545
|
+
[type=search]::-webkit-search-cancel-button {
|
|
546
|
+
cursor: pointer;
|
|
547
|
+
-webkit-filter: grayscale(1);
|
|
548
|
+
filter: grayscale(1);
|
|
549
|
+
}
|
|
545
550
|
|
|
546
551
|
/* rtl:raw:
|
|
547
552
|
[type="tel"],
|
|
@@ -5310,7 +5315,7 @@ textarea.form-control-lg {
|
|
|
5310
5315
|
--bs-pagination-color: var(--bs-link-color);
|
|
5311
5316
|
--bs-pagination-bg: var(--bs-body-bg);
|
|
5312
5317
|
--bs-pagination-border-width: var(--bs-border-width);
|
|
5313
|
-
--bs-pagination-border-color:
|
|
5318
|
+
--bs-pagination-border-color: #ced4da;
|
|
5314
5319
|
--bs-pagination-border-radius: var(--bs-border-radius);
|
|
5315
5320
|
--bs-pagination-hover-color: var(--bs-link-hover-color);
|
|
5316
5321
|
--bs-pagination-hover-bg: var(--bs-tertiary-bg);
|
|
@@ -6922,6 +6927,8 @@ textarea.form-control-lg {
|
|
|
6922
6927
|
.spinner-grow,
|
|
6923
6928
|
.spinner-border {
|
|
6924
6929
|
display: inline-block;
|
|
6930
|
+
-ms-flex-negative: 0;
|
|
6931
|
+
flex-shrink: 0;
|
|
6925
6932
|
width: var(--bs-spinner-width);
|
|
6926
6933
|
height: var(--bs-spinner-height);
|
|
6927
6934
|
vertical-align: var(--bs-spinner-vertical-align);
|
|
@@ -9742,7 +9749,7 @@ svg {
|
|
|
9742
9749
|
padding-top: 1rem !important;
|
|
9743
9750
|
}
|
|
9744
9751
|
|
|
9745
|
-
.pt-4 {
|
|
9752
|
+
.pt-4, .pagination-v2 .pagination {
|
|
9746
9753
|
padding-top: 1.5rem !important;
|
|
9747
9754
|
}
|
|
9748
9755
|
|
|
@@ -10130,7 +10137,7 @@ svg {
|
|
|
10130
10137
|
font-weight: 300 !important;
|
|
10131
10138
|
}
|
|
10132
10139
|
|
|
10133
|
-
.fw-normal {
|
|
10140
|
+
.fw-normal, .pagination-v2 .pagination.pagination--glossary .page-item .page-link {
|
|
10134
10141
|
font-weight: 400 !important;
|
|
10135
10142
|
}
|
|
10136
10143
|
|
|
@@ -10178,7 +10185,7 @@ svg {
|
|
|
10178
10185
|
text-align: center !important;
|
|
10179
10186
|
}
|
|
10180
10187
|
|
|
10181
|
-
.text-decoration-none {
|
|
10188
|
+
.text-decoration-none, .pagination-v2 .pagination.pagination--glossary .page-item .page-link:hover {
|
|
10182
10189
|
text-decoration: none !important;
|
|
10183
10190
|
}
|
|
10184
10191
|
|
|
@@ -10551,7 +10558,7 @@ svg {
|
|
|
10551
10558
|
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
|
|
10552
10559
|
}
|
|
10553
10560
|
|
|
10554
|
-
.bg-light {
|
|
10561
|
+
.bg-light, .pagination-v2 .pagination.pagination--glossary .page-item .page-link:hover {
|
|
10555
10562
|
--bs-bg-opacity: 1;
|
|
10556
10563
|
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
|
|
10557
10564
|
}
|
|
@@ -17842,7 +17849,6 @@ em.placeholder {
|
|
|
17842
17849
|
display: flex;
|
|
17843
17850
|
-ms-flex-flow: column;
|
|
17844
17851
|
flex-flow: column;
|
|
17845
|
-
overflow: auto;
|
|
17846
17852
|
}
|
|
17847
17853
|
header:has(.bcl-header__navbar #main-navbar.collapsing) > div:has(.breadcrumb),
|
|
17848
17854
|
header:has(.bcl-header__navbar #main-navbar.show) > div:has(.breadcrumb),
|
|
@@ -17869,6 +17875,7 @@ em.placeholder {
|
|
|
17869
17875
|
width: 100%;
|
|
17870
17876
|
-ms-flex-align: start;
|
|
17871
17877
|
align-items: flex-start;
|
|
17878
|
+
overflow: auto;
|
|
17872
17879
|
}
|
|
17873
17880
|
.bcl-header__navbar.navbar .navbar-nav {
|
|
17874
17881
|
width: 100%;
|
|
@@ -18187,12 +18194,14 @@ em.placeholder {
|
|
|
18187
18194
|
white-space: nowrap;
|
|
18188
18195
|
scrollbar-width: none;
|
|
18189
18196
|
-ms-overflow-style: none;
|
|
18190
|
-
border: none;
|
|
18191
18197
|
}
|
|
18192
18198
|
.nav-tabs::-webkit-scrollbar {
|
|
18193
18199
|
width: 0;
|
|
18194
18200
|
height: 0;
|
|
18195
18201
|
}
|
|
18202
|
+
.nav-tabs {
|
|
18203
|
+
border: none;
|
|
18204
|
+
}
|
|
18196
18205
|
.nav-tabs .nav-item {
|
|
18197
18206
|
z-index: 1;
|
|
18198
18207
|
}
|
|
@@ -18617,8 +18626,9 @@ a.badge:focus-within.text-bg-danger, a.badge:active.text-bg-danger, a.badge:hove
|
|
|
18617
18626
|
background-color: rgb(140.25, 26.35, 37.4) !important;
|
|
18618
18627
|
}
|
|
18619
18628
|
|
|
18620
|
-
.badge.bg-light a,
|
|
18621
|
-
.badge.bg-light
|
|
18629
|
+
.badge.bg-light a, .pagination-v2 .pagination.pagination--glossary .page-item .badge.page-link:hover a,
|
|
18630
|
+
.badge.bg-light,
|
|
18631
|
+
.pagination-v2 .pagination.pagination--glossary .page-item .badge.page-link:hover {
|
|
18622
18632
|
color: #000;
|
|
18623
18633
|
}
|
|
18624
18634
|
|
|
@@ -19912,6 +19922,19 @@ select.multi-select {
|
|
|
19912
19922
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM12.0303 4.96967C11.7374 4.67678 11.2626 4.67678 10.9697 4.96967C10.9626 4.97674 10.9559 4.98424 10.9498 4.9921L7.4774 9.41674L5.38388 7.32322C5.09098 7.03033 4.61611 7.03033 4.32322 7.32322C4.03032 7.61612 4.03032 8.09099 4.32322 8.38388L6.96966 11.0303C7.26256 11.3232 7.73743 11.3232 8.03032 11.0303C8.03685 11.0238 8.043 11.0169 8.04876 11.0097L12.041 6.01947C12.3232 5.72582 12.3196 5.25897 12.0303 4.96967Z' fill='%2328A745'/%3E%3C/svg%3E%0A");
|
|
19913
19923
|
}
|
|
19914
19924
|
|
|
19925
|
+
.ss-sr-only {
|
|
19926
|
+
position: absolute;
|
|
19927
|
+
width: 1px;
|
|
19928
|
+
height: 1px;
|
|
19929
|
+
margin: -1px;
|
|
19930
|
+
padding: 0;
|
|
19931
|
+
border: 0;
|
|
19932
|
+
clip: rect(0, 0, 0, 0);
|
|
19933
|
+
-webkit-clip-path: inset(50%);
|
|
19934
|
+
clip-path: inset(50%);
|
|
19935
|
+
overflow: hidden;
|
|
19936
|
+
}
|
|
19937
|
+
|
|
19915
19938
|
/* stylelint-disable no-descending-specificity, declaration-no-important */
|
|
19916
19939
|
/* -------------------------------------
|
|
19917
19940
|
Design tokens & helpers
|
|
@@ -19959,16 +19982,6 @@ select.multi-select {
|
|
|
19959
19982
|
}
|
|
19960
19983
|
.bcl-mega-menu__container[class] {
|
|
19961
19984
|
display: none;
|
|
19962
|
-
z-index: var(--bcl-mega-menu-zindex);
|
|
19963
|
-
position: absolute;
|
|
19964
|
-
inset-block-start: 0;
|
|
19965
|
-
inset-inline-start: 0;
|
|
19966
|
-
inline-size: 100%;
|
|
19967
|
-
-webkit-margin-before: 0;
|
|
19968
|
-
margin-block-start: 0;
|
|
19969
|
-
padding: 0;
|
|
19970
|
-
border: 0;
|
|
19971
|
-
border-radius: 0;
|
|
19972
19985
|
}
|
|
19973
19986
|
.bcl-mega-menu > [aria-expanded=true] + .bcl-mega-menu__container[class] {
|
|
19974
19987
|
display: block;
|
|
@@ -19979,6 +19992,9 @@ select.multi-select {
|
|
|
19979
19992
|
display: flex;
|
|
19980
19993
|
}
|
|
19981
19994
|
}
|
|
19995
|
+
.bcl-mega-menu__container[class] {
|
|
19996
|
+
z-index: var(--bcl-mega-menu-zindex);
|
|
19997
|
+
}
|
|
19982
19998
|
@media (prefers-reduced-motion: no-preference) {
|
|
19983
19999
|
.bcl-mega-menu__container[class] {
|
|
19984
20000
|
transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
|
|
@@ -19997,6 +20013,17 @@ select.multi-select {
|
|
|
19997
20013
|
pointer-events: none;
|
|
19998
20014
|
}
|
|
19999
20015
|
}
|
|
20016
|
+
.bcl-mega-menu__container[class] {
|
|
20017
|
+
position: absolute;
|
|
20018
|
+
inset-block-start: 0;
|
|
20019
|
+
inset-inline-start: 0;
|
|
20020
|
+
inline-size: 100%;
|
|
20021
|
+
-webkit-margin-before: 0;
|
|
20022
|
+
margin-block-start: 0;
|
|
20023
|
+
padding: 0;
|
|
20024
|
+
border: 0;
|
|
20025
|
+
border-radius: 0;
|
|
20026
|
+
}
|
|
20000
20027
|
@media (min-width: 992px) {
|
|
20001
20028
|
.bcl-mega-menu__container[class] {
|
|
20002
20029
|
inset-block-start: 100%;
|
|
@@ -20166,32 +20193,6 @@ ul.bcl-mega-menu__items > li > button[aria-expanded=true] {
|
|
|
20166
20193
|
background-color: #253ebe;
|
|
20167
20194
|
}
|
|
20168
20195
|
}
|
|
20169
|
-
ul.bcl-mega-menu__items > li:has(> a.see-all-button) {
|
|
20170
|
-
position: -webkit-sticky;
|
|
20171
|
-
position: sticky;
|
|
20172
|
-
inset-block-start: 100%;
|
|
20173
|
-
}
|
|
20174
|
-
ul.bcl-mega-menu__items > li > a.see-all-button {
|
|
20175
|
-
border-top: none;
|
|
20176
|
-
}
|
|
20177
|
-
ul.bcl-mega-menu__items > li > a.see-all-button:after {
|
|
20178
|
-
background: #b9c5e9;
|
|
20179
|
-
content: "";
|
|
20180
|
-
block-size: 1px;
|
|
20181
|
-
inset-inline-start: 0;
|
|
20182
|
-
position: absolute;
|
|
20183
|
-
inset-block-start: 0;
|
|
20184
|
-
inset-inline: 1rem;
|
|
20185
|
-
}
|
|
20186
|
-
ul.bcl-mega-menu__items > li > a.see-all-button > svg {
|
|
20187
|
-
inline-size: 0.8rem;
|
|
20188
|
-
}
|
|
20189
|
-
ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
20190
|
-
text-overflow: ellipsis;
|
|
20191
|
-
overflow: hidden;
|
|
20192
|
-
display: block;
|
|
20193
|
-
white-space: nowrap;
|
|
20194
|
-
}
|
|
20195
20196
|
|
|
20196
20197
|
@media (min-width: 992px) {
|
|
20197
20198
|
.bcl-mega-menu__menu {
|
|
@@ -20199,14 +20200,18 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
20199
20200
|
padding-right: 0;
|
|
20200
20201
|
}
|
|
20201
20202
|
}
|
|
20203
|
+
@media (max-width: 991.98px) {
|
|
20204
|
+
.bcl-mega-menu__menu > .bcl-mega-menu__items:has(.bcl-mega-menu__submenu:not([hidden])) > .__leaf,
|
|
20205
|
+
.bcl-mega-menu__menu > .bcl-mega-menu__items:has(.bcl-mega-menu__submenu:not([hidden])) > .__parent {
|
|
20206
|
+
display: none;
|
|
20207
|
+
}
|
|
20208
|
+
.bcl-mega-menu__menu > .bcl-mega-menu__items > .__parent:has(.bcl-mega-menu__submenu:not([hidden])) {
|
|
20209
|
+
display: block;
|
|
20210
|
+
}
|
|
20211
|
+
}
|
|
20202
20212
|
|
|
20203
20213
|
.bcl-mega-menu__submenu {
|
|
20204
20214
|
position: absolute;
|
|
20205
|
-
background: white;
|
|
20206
|
-
display: -ms-flexbox;
|
|
20207
|
-
display: flex;
|
|
20208
|
-
-ms-flex-direction: column;
|
|
20209
|
-
flex-direction: column;
|
|
20210
20215
|
}
|
|
20211
20216
|
@media (max-width: 991.98px) {
|
|
20212
20217
|
.bcl-mega-menu__submenu {
|
|
@@ -20234,11 +20239,20 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
20234
20239
|
z-index: -1;
|
|
20235
20240
|
}
|
|
20236
20241
|
}
|
|
20242
|
+
.bcl-mega-menu__submenu {
|
|
20243
|
+
background: white;
|
|
20244
|
+
}
|
|
20237
20245
|
@media (min-width: 992px) {
|
|
20238
20246
|
.bcl-mega-menu__submenu {
|
|
20239
20247
|
background: rgb(233.2, 235.7, 248.5);
|
|
20240
20248
|
}
|
|
20241
20249
|
}
|
|
20250
|
+
.bcl-mega-menu__submenu {
|
|
20251
|
+
display: -ms-flexbox;
|
|
20252
|
+
display: flex;
|
|
20253
|
+
-ms-flex-direction: column;
|
|
20254
|
+
flex-direction: column;
|
|
20255
|
+
}
|
|
20242
20256
|
.bcl-mega-menu__submenu > .__header > .__label {
|
|
20243
20257
|
padding: 1rem 1rem;
|
|
20244
20258
|
margin: 0;
|
|
@@ -20252,36 +20266,52 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
20252
20266
|
display: none;
|
|
20253
20267
|
}
|
|
20254
20268
|
}
|
|
20255
|
-
|
|
20256
20269
|
@media (min-width: 992px) {
|
|
20257
|
-
.bcl-mega-
|
|
20258
|
-
|
|
20270
|
+
.bcl-mega-menu__submenu > .bcl-mega-menu__items {
|
|
20271
|
+
-ms-flex: 1 1 0px;
|
|
20272
|
+
flex: 1 1 0;
|
|
20273
|
+
overflow-y: auto;
|
|
20259
20274
|
}
|
|
20260
|
-
|
|
20261
|
-
|
|
20262
|
-
.bcl-mega-menu__container:has(.bcl-mega-menu__second-submenu > .tab-content > .tab-pane.active) .bcl-mega-menu__info,
|
|
20263
|
-
.bcl-mega-menu__container:has(.bcl-mega-menu__second-submenu > .tab-content > .tab-pane.active) .bcl-mega-menu__first-submenu {
|
|
20264
|
-
display: none;
|
|
20275
|
+
.bcl-mega-menu__submenu > .bcl-mega-menu__items > li > :is(span, a, button) {
|
|
20276
|
+
padding: 0.75rem 1.75rem;
|
|
20265
20277
|
}
|
|
20266
20278
|
}
|
|
20267
|
-
.bcl-mega-
|
|
20268
|
-
|
|
20269
|
-
margin: 0;
|
|
20270
|
-
color: #212529;
|
|
20271
|
-
background: rgb(233.2, 235.7, 248.5);
|
|
20272
|
-
display: block;
|
|
20273
|
-
font-size: 20px;
|
|
20279
|
+
.bcl-mega-menu__submenu > .__see_all {
|
|
20280
|
+
border-top: 1px solid #b9c5e9;
|
|
20274
20281
|
}
|
|
20275
20282
|
@media (min-width: 992px) {
|
|
20276
|
-
.bcl-mega-
|
|
20277
|
-
|
|
20283
|
+
.bcl-mega-menu__submenu > .__see_all {
|
|
20284
|
+
border-top: 1px solid rgb(211.4, 216.4, 242);
|
|
20285
|
+
margin: 0 1.75rem;
|
|
20278
20286
|
}
|
|
20279
20287
|
}
|
|
20280
|
-
|
|
20281
|
-
|
|
20282
|
-
|
|
20288
|
+
.bcl-mega-menu__submenu > .__see_all > .see-all-button {
|
|
20289
|
+
padding: 0.75rem 1rem;
|
|
20290
|
+
display: -ms-flexbox;
|
|
20291
|
+
display: flex;
|
|
20292
|
+
-ms-flex-align: center;
|
|
20293
|
+
align-items: center;
|
|
20294
|
+
color: #253ebe;
|
|
20295
|
+
}
|
|
20296
|
+
@media (min-width: 992px) {
|
|
20297
|
+
.bcl-mega-menu__submenu > .__see_all > .see-all-button {
|
|
20298
|
+
padding: 0.75rem 1.75rem;
|
|
20299
|
+
margin: 0 -1.75rem;
|
|
20283
20300
|
}
|
|
20284
20301
|
}
|
|
20302
|
+
.bcl-mega-menu__submenu > .__see_all > .see-all-button:hover {
|
|
20303
|
+
background: rgb(233.2, 235.7, 248.5);
|
|
20304
|
+
}
|
|
20305
|
+
.bcl-mega-menu__submenu > .__see_all > .see-all-button > svg {
|
|
20306
|
+
-ms-flex-negative: 0;
|
|
20307
|
+
flex-shrink: 0;
|
|
20308
|
+
}
|
|
20309
|
+
.bcl-mega-menu__submenu > .__see_all > .see-all-button > span {
|
|
20310
|
+
text-overflow: ellipsis;
|
|
20311
|
+
overflow: hidden;
|
|
20312
|
+
display: block;
|
|
20313
|
+
white-space: nowrap;
|
|
20314
|
+
}
|
|
20285
20315
|
|
|
20286
20316
|
@media (max-width: 991.98px) {
|
|
20287
20317
|
.bcl-mega-menu__submenu > .__header,
|
|
@@ -20849,9 +20879,6 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
20849
20879
|
padding-bottom: 0;
|
|
20850
20880
|
}
|
|
20851
20881
|
}
|
|
20852
|
-
.bcl-gallery {
|
|
20853
|
-
/* lazyload */
|
|
20854
|
-
}
|
|
20855
20882
|
.bcl-gallery .bcl-gallery__thumbnails {
|
|
20856
20883
|
border-radius: 0.375rem;
|
|
20857
20884
|
overflow: hidden;
|
|
@@ -21003,6 +21030,9 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
21003
21030
|
-o-object-fit: contain;
|
|
21004
21031
|
object-fit: contain;
|
|
21005
21032
|
}
|
|
21033
|
+
.bcl-gallery {
|
|
21034
|
+
/* lazyload */
|
|
21035
|
+
}
|
|
21006
21036
|
.bcl-gallery img:not([src]):not([srcset]) {
|
|
21007
21037
|
visibility: hidden;
|
|
21008
21038
|
}
|
|
@@ -21104,6 +21134,10 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
21104
21134
|
}
|
|
21105
21135
|
|
|
21106
21136
|
/* stylelint-disable no-descending-specificity */
|
|
21137
|
+
.pagination {
|
|
21138
|
+
-ms-flex-wrap: wrap;
|
|
21139
|
+
flex-wrap: wrap;
|
|
21140
|
+
}
|
|
21107
21141
|
.pagination .page-item .page-link {
|
|
21108
21142
|
display: -ms-flexbox;
|
|
21109
21143
|
display: flex;
|
|
@@ -21164,4 +21198,75 @@ ul.bcl-mega-menu__items > li > a.see-all-button > span {
|
|
|
21164
21198
|
height: 0;
|
|
21165
21199
|
}
|
|
21166
21200
|
}
|
|
21201
|
+
.pagination-v2.pager .pagination {
|
|
21202
|
+
--bs-border-color: transparent;
|
|
21203
|
+
}
|
|
21204
|
+
.pagination-v2 .pagination {
|
|
21205
|
+
--bs-pagination-border-color: transparent;
|
|
21206
|
+
--bs-pagination-disabled-border-color: transparent;
|
|
21207
|
+
--bs-pagination-item-size: 2.75rem;
|
|
21208
|
+
--bs-pagination-hover-bg: #253ebe;
|
|
21209
|
+
--bs-pagination-hover-color: #fff;
|
|
21210
|
+
border-top: 1px solid #ced4da;
|
|
21211
|
+
}
|
|
21212
|
+
.pagination-v2 .pagination .page-item .page-link {
|
|
21213
|
+
display: -ms-inline-flexbox;
|
|
21214
|
+
display: inline-flex;
|
|
21215
|
+
-ms-flex-align: center;
|
|
21216
|
+
align-items: center;
|
|
21217
|
+
-ms-flex-pack: center;
|
|
21218
|
+
justify-content: center;
|
|
21219
|
+
min-width: var(--bs-pagination-item-size);
|
|
21220
|
+
min-height: var(--bs-pagination-item-size);
|
|
21221
|
+
text-decoration: none;
|
|
21222
|
+
}
|
|
21223
|
+
.pagination-v2 .pagination .page-item .page-link:is(div):hover {
|
|
21224
|
+
background-color: transparent;
|
|
21225
|
+
border-color: transparent;
|
|
21226
|
+
color: #253ebe;
|
|
21227
|
+
}
|
|
21228
|
+
.pagination-v2 .pagination .page-item.active .page-link {
|
|
21229
|
+
cursor: default;
|
|
21230
|
+
--bs-pagination-active-bg: #253ebe;
|
|
21231
|
+
--bs-pagination-active-color: #fff;
|
|
21232
|
+
}
|
|
21233
|
+
.pagination-v2 .pagination .page-item.active .page-link:active, .pagination-v2 .pagination .page-item.active .page-link:hover {
|
|
21234
|
+
--bs-pagination-active-bg: #253ebe;
|
|
21235
|
+
color: var(--bs-pagination-active-color);
|
|
21236
|
+
background-color: var(--bs-pagination-active-bg);
|
|
21237
|
+
}
|
|
21238
|
+
@media (max-width: 767.98px) {
|
|
21239
|
+
.pagination-v2 .pagination .page-item.active .page-link:active, .pagination-v2 .pagination .page-item.active .page-link:hover {
|
|
21240
|
+
--bs-pagination-active-bg: $white;
|
|
21241
|
+
--bs-pagination-active-color: $dark;
|
|
21242
|
+
--bs-pagination-active-border-color: transparent;
|
|
21243
|
+
}
|
|
21244
|
+
}
|
|
21245
|
+
@media (max-width: 767.98px) {
|
|
21246
|
+
.pagination-v2 .pagination .page-item.active .page-link {
|
|
21247
|
+
--bs-pagination-active-bg: $white;
|
|
21248
|
+
--bs-pagination-active-color: $dark;
|
|
21249
|
+
--bs-pagination-active-border-color: transparent;
|
|
21250
|
+
}
|
|
21251
|
+
}
|
|
21252
|
+
.pagination-v2 .pagination.pagination--glossary .page-item {
|
|
21253
|
+
margin-right: inherit;
|
|
21254
|
+
}
|
|
21255
|
+
.pagination-v2 .pagination.pagination--glossary .page-item .page-link {
|
|
21256
|
+
border: 1px solid #ced4da;
|
|
21257
|
+
padding: 0.375rem 0.75rem;
|
|
21258
|
+
}
|
|
21259
|
+
.pagination-v2 .pagination.pagination--glossary .page-item .page-link:focus, .pagination-v2 .pagination.pagination--glossary .page-item .page-link:focus-visible {
|
|
21260
|
+
box-shadow: none;
|
|
21261
|
+
outline: 2px solid #253ebe;
|
|
21262
|
+
outline-offset: 2px;
|
|
21263
|
+
}
|
|
21264
|
+
.pagination-v2 {
|
|
21265
|
+
/* Outline the group when any pager control is focused for keyboard users. */
|
|
21266
|
+
}
|
|
21267
|
+
.pagination-v2 .pager__items:focus-within {
|
|
21268
|
+
outline: 2px solid currentColor;
|
|
21269
|
+
outline-offset: 2px;
|
|
21270
|
+
border-radius: 6px;
|
|
21271
|
+
}
|
|
21167
21272
|
/*# sourceMappingURL=oe-bcl-default.css.map */
|