@openeuropa/bcl-theme-ucpkn 0.14.0 → 0.18.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 +4 -0
- package/css/oe-bcl-ucpkn.css +267 -61
- 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/icons-flag.svg +1 -0
- package/js/slimselect.min.js +1 -1
- package/package.json +8 -7
- package/src/scss/base/_variables.scss +22 -0
- package/src/scss/oe-bcl-ucpkn.scss +1 -14
- package/templates/bcl-accordion/accordion.html.twig +9 -0
- package/templates/bcl-alert/alert.html.twig +4 -0
- package/templates/bcl-badge/badge.html.twig +9 -1
- package/templates/bcl-banner/banner.html.twig +12 -5
- package/templates/bcl-base-templates/content-type.html.twig +48 -20
- package/templates/bcl-base-templates/listing-page.html.twig +26 -21
- package/templates/bcl-blockquote/blockquote.html.twig +4 -0
- package/templates/bcl-breadcrumb/breadcrumb.html.twig +6 -2
- package/templates/bcl-button/button.html.twig +8 -2
- package/templates/bcl-button-group/button-group.html.twig +4 -0
- package/templates/bcl-card/card.html.twig +24 -20
- package/templates/bcl-card-layout/card-layout.html.twig +4 -0
- package/templates/bcl-carousel/carousel.html.twig +4 -0
- package/templates/bcl-content-banner/content-banner.html.twig +33 -8
- package/templates/bcl-date-block/date-block.html.twig +4 -0
- package/templates/bcl-description-list/description-list.html.twig +37 -8
- package/templates/bcl-event/event.html.twig +41 -0
- package/templates/bcl-fact-figures/fact-figures.html.twig +15 -7
- package/templates/bcl-featured-media/featured-media.html.twig +53 -5
- package/templates/bcl-file/file.html.twig +19 -4
- package/templates/bcl-footer/footer.html.twig +4 -1
- package/templates/bcl-form/form.html.twig +4 -0
- package/templates/bcl-group/group-landing.html.twig +101 -0
- package/templates/bcl-group/group.html.twig +27 -0
- package/templates/bcl-header/header.html.twig +11 -2
- package/templates/bcl-inpage-navigation/inpage-navigation.html.twig +14 -1
- package/templates/bcl-landing-page/landing-page.html.twig +46 -52
- package/templates/bcl-links-block/links-block.html.twig +5 -2
- package/templates/bcl-list-group/list-group.html.twig +6 -0
- package/templates/bcl-listing/listing.html.twig +29 -16
- package/templates/bcl-navbar/navbar.html.twig +22 -20
- package/templates/bcl-navigation/navigation.html.twig +141 -111
- package/templates/bcl-offcanvas/offcanvas.html.twig +4 -0
- package/templates/bcl-page/page.html.twig +64 -0
- package/templates/bcl-pagination/pagination.html.twig +13 -1
- package/templates/bcl-placeholder/placeholder.html.twig +43 -0
- package/templates/bcl-progress/progress.html.twig +5 -0
- package/templates/bcl-recent-activities/recent-activities.html.twig +4 -0
- package/templates/bcl-search/search.html.twig +10 -40
- package/templates/bcl-search-form/search-form.html.twig +52 -0
- package/templates/bcl-select/select.html.twig +6 -0
- package/templates/bcl-table/table.html.twig +4 -0
- package/templates/bcl-timeline/timeline.html.twig +16 -1
- package/templates/bcl-toast/toasts.html.twig +5 -0
- package/templates/bcl-user/user-edit.html.twig +38 -0
- package/templates/{bcl-user-view → bcl-user}/user-view-compact.html.twig +5 -1
- package/templates/bcl-user/user-view.html.twig +96 -0
- package/templates/bcl-group-landing/group-landing.html.twig +0 -106
- package/templates/bcl-group-landing-listing/group-landing-listing-offcanvas.html.twig +0 -8
- package/templates/bcl-group-landing-listing/group-landing-listing.html.twig +0 -69
- package/templates/bcl-search/search-offcanvas.html.twig +0 -8
- package/templates/bcl-user-edit/edit-contents.html.twig +0 -32
- package/templates/bcl-user-edit/user-edit.html.twig +0 -19
- package/templates/bcl-user-listing/user-listing-offcanvas.html.twig +0 -8
- package/templates/bcl-user-listing/user-listing.html.twig +0 -45
- package/templates/bcl-user-view/user-view.html.twig +0 -106
package/bcl-builder.config.js
CHANGED
|
@@ -112,6 +112,10 @@ module.exports = {
|
|
|
112
112
|
nodeModules,
|
|
113
113
|
"@openeuropa/bcl-bootstrap/bootstrap-icons.svg"
|
|
114
114
|
),
|
|
115
|
+
path.resolve(
|
|
116
|
+
nodeModules,
|
|
117
|
+
"@ecl/resources-flag-icons/dist/sprites/icons-flag.svg"
|
|
118
|
+
),
|
|
115
119
|
],
|
|
116
120
|
to: path.resolve(outputFolder, "icons"),
|
|
117
121
|
options: { up: true },
|
package/css/oe-bcl-ucpkn.css
CHANGED
|
@@ -2694,9 +2694,9 @@ progress {
|
|
|
2694
2694
|
.form-control:focus {
|
|
2695
2695
|
color: #212529;
|
|
2696
2696
|
background-color: #fff;
|
|
2697
|
-
border-color: #
|
|
2697
|
+
border-color: #918bc2;
|
|
2698
2698
|
outline: 0;
|
|
2699
|
-
box-shadow: 0 0 0 0.25rem rgba(
|
|
2699
|
+
box-shadow: 0 0 0 0.25rem rgba(34, 22, 132, 0.25);
|
|
2700
2700
|
}
|
|
2701
2701
|
.form-control::-webkit-date-and-time-value {
|
|
2702
2702
|
height: 1.5em;
|
|
@@ -2920,9 +2920,9 @@ textarea.form-control-lg {
|
|
|
2920
2920
|
}
|
|
2921
2921
|
}
|
|
2922
2922
|
.form-select:focus {
|
|
2923
|
-
border-color: #
|
|
2923
|
+
border-color: #918bc2;
|
|
2924
2924
|
outline: 0;
|
|
2925
|
-
box-shadow: 0 0 0 0.25rem rgba(
|
|
2925
|
+
box-shadow: 0 0 0 0.25rem rgba(34, 22, 132, 0.25);
|
|
2926
2926
|
}
|
|
2927
2927
|
.form-select[multiple], .form-select[size]:not([size="1"]) {
|
|
2928
2928
|
padding-right: 0.75rem;
|
|
@@ -2990,9 +2990,9 @@ textarea.form-control-lg {
|
|
|
2990
2990
|
filter: brightness(90%);
|
|
2991
2991
|
}
|
|
2992
2992
|
.form-check-input:focus {
|
|
2993
|
-
border-color: #
|
|
2993
|
+
border-color: #918bc2;
|
|
2994
2994
|
outline: 0;
|
|
2995
|
-
box-shadow: 0 0 0 0.25rem rgba(
|
|
2995
|
+
box-shadow: 0 0 0 0.25rem rgba(34, 22, 132, 0.25);
|
|
2996
2996
|
}
|
|
2997
2997
|
.form-check-input:checked {
|
|
2998
2998
|
background-color: #0d6efd;
|
|
@@ -3036,7 +3036,7 @@ textarea.form-control-lg {
|
|
|
3036
3036
|
}
|
|
3037
3037
|
}
|
|
3038
3038
|
.form-switch .form-check-input:focus {
|
|
3039
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%
|
|
3039
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23918bc2'/%3e%3c/svg%3e");
|
|
3040
3040
|
}
|
|
3041
3041
|
.form-switch .form-check-input:checked {
|
|
3042
3042
|
background-position: right center;
|
|
@@ -4288,7 +4288,7 @@ textarea.form-control-lg {
|
|
|
4288
4288
|
.dropdown-item.active, .dropdown-item:active {
|
|
4289
4289
|
color: #fff;
|
|
4290
4290
|
text-decoration: none;
|
|
4291
|
-
background-color: #
|
|
4291
|
+
background-color: #221684;
|
|
4292
4292
|
}
|
|
4293
4293
|
.dropdown-item.disabled, .dropdown-item:disabled {
|
|
4294
4294
|
color: #adb5bd;
|
|
@@ -4471,7 +4471,7 @@ textarea.form-control-lg {
|
|
|
4471
4471
|
}
|
|
4472
4472
|
}
|
|
4473
4473
|
.nav-link:hover, .nav-link:focus {
|
|
4474
|
-
color: #
|
|
4474
|
+
color: #1b126a;
|
|
4475
4475
|
}
|
|
4476
4476
|
.nav-link.disabled {
|
|
4477
4477
|
color: #6c757d;
|
|
@@ -4670,8 +4670,8 @@ textarea.form-control-lg {
|
|
|
4670
4670
|
position: absolute;
|
|
4671
4671
|
}
|
|
4672
4672
|
.navbar-expand-sm .navbar-nav .nav-link {
|
|
4673
|
-
padding-right: 0.
|
|
4674
|
-
padding-left: 0.
|
|
4673
|
+
padding-right: 0.75rem;
|
|
4674
|
+
padding-left: 0.75rem;
|
|
4675
4675
|
}
|
|
4676
4676
|
.navbar-expand-sm .navbar-nav-scroll {
|
|
4677
4677
|
overflow: visible;
|
|
@@ -4732,8 +4732,8 @@ textarea.form-control-lg {
|
|
|
4732
4732
|
position: absolute;
|
|
4733
4733
|
}
|
|
4734
4734
|
.navbar-expand-md .navbar-nav .nav-link {
|
|
4735
|
-
padding-right: 0.
|
|
4736
|
-
padding-left: 0.
|
|
4735
|
+
padding-right: 0.75rem;
|
|
4736
|
+
padding-left: 0.75rem;
|
|
4737
4737
|
}
|
|
4738
4738
|
.navbar-expand-md .navbar-nav-scroll {
|
|
4739
4739
|
overflow: visible;
|
|
@@ -4794,8 +4794,8 @@ textarea.form-control-lg {
|
|
|
4794
4794
|
position: absolute;
|
|
4795
4795
|
}
|
|
4796
4796
|
.navbar-expand-lg .navbar-nav .nav-link {
|
|
4797
|
-
padding-right: 0.
|
|
4798
|
-
padding-left: 0.
|
|
4797
|
+
padding-right: 0.75rem;
|
|
4798
|
+
padding-left: 0.75rem;
|
|
4799
4799
|
}
|
|
4800
4800
|
.navbar-expand-lg .navbar-nav-scroll {
|
|
4801
4801
|
overflow: visible;
|
|
@@ -4856,8 +4856,8 @@ textarea.form-control-lg {
|
|
|
4856
4856
|
position: absolute;
|
|
4857
4857
|
}
|
|
4858
4858
|
.navbar-expand-xl .navbar-nav .nav-link {
|
|
4859
|
-
padding-right: 0.
|
|
4860
|
-
padding-left: 0.
|
|
4859
|
+
padding-right: 0.75rem;
|
|
4860
|
+
padding-left: 0.75rem;
|
|
4861
4861
|
}
|
|
4862
4862
|
.navbar-expand-xl .navbar-nav-scroll {
|
|
4863
4863
|
overflow: visible;
|
|
@@ -4918,8 +4918,8 @@ textarea.form-control-lg {
|
|
|
4918
4918
|
position: absolute;
|
|
4919
4919
|
}
|
|
4920
4920
|
.navbar-expand-xxl .navbar-nav .nav-link {
|
|
4921
|
-
padding-right: 0.
|
|
4922
|
-
padding-left: 0.
|
|
4921
|
+
padding-right: 0.75rem;
|
|
4922
|
+
padding-left: 0.75rem;
|
|
4923
4923
|
}
|
|
4924
4924
|
.navbar-expand-xxl .navbar-nav-scroll {
|
|
4925
4925
|
overflow: visible;
|
|
@@ -4979,8 +4979,8 @@ textarea.form-control-lg {
|
|
|
4979
4979
|
position: absolute;
|
|
4980
4980
|
}
|
|
4981
4981
|
.navbar-expand .navbar-nav .nav-link {
|
|
4982
|
-
padding-right: 0.
|
|
4983
|
-
padding-left: 0.
|
|
4982
|
+
padding-right: 0.75rem;
|
|
4983
|
+
padding-left: 0.75rem;
|
|
4984
4984
|
}
|
|
4985
4985
|
.navbar-expand .navbar-nav-scroll {
|
|
4986
4986
|
overflow: visible;
|
|
@@ -5282,9 +5282,9 @@ textarea.form-control-lg {
|
|
|
5282
5282
|
}
|
|
5283
5283
|
}
|
|
5284
5284
|
.accordion-button:not(.collapsed) {
|
|
5285
|
-
color: #
|
|
5286
|
-
background-color: #
|
|
5287
|
-
box-shadow: inset 0 -1px 0
|
|
5285
|
+
color: #212529;
|
|
5286
|
+
background-color: #f8f9fa;
|
|
5287
|
+
box-shadow: inset 0 -1px 0 #dee2e6;
|
|
5288
5288
|
}
|
|
5289
5289
|
.accordion-button:not(.collapsed)::after {
|
|
5290
5290
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
@@ -5315,9 +5315,9 @@ textarea.form-control-lg {
|
|
|
5315
5315
|
}
|
|
5316
5316
|
.accordion-button:focus {
|
|
5317
5317
|
z-index: 3;
|
|
5318
|
-
border-color: #
|
|
5318
|
+
border-color: #918bc2;
|
|
5319
5319
|
outline: 0;
|
|
5320
|
-
box-shadow: 0 0 0 0.25rem rgba(
|
|
5320
|
+
box-shadow: 0 0 0 0.25rem rgba(34, 22, 132, 0.25);
|
|
5321
5321
|
}
|
|
5322
5322
|
|
|
5323
5323
|
.accordion-header {
|
|
@@ -5326,7 +5326,7 @@ textarea.form-control-lg {
|
|
|
5326
5326
|
|
|
5327
5327
|
.accordion-item {
|
|
5328
5328
|
background-color: #fff;
|
|
5329
|
-
border: 1px solid
|
|
5329
|
+
border: 1px solid #dee2e6;
|
|
5330
5330
|
}
|
|
5331
5331
|
.accordion-item:first-of-type {
|
|
5332
5332
|
border-top-left-radius: 0.25rem;
|
|
@@ -5429,7 +5429,7 @@ textarea.form-control-lg {
|
|
|
5429
5429
|
color: #0a58ca;
|
|
5430
5430
|
background-color: #e9ecef;
|
|
5431
5431
|
outline: 0;
|
|
5432
|
-
box-shadow: 0 0 0 0.25rem rgba(
|
|
5432
|
+
box-shadow: 0 0 0 0.25rem rgba(34, 22, 132, 0.25);
|
|
5433
5433
|
}
|
|
5434
5434
|
|
|
5435
5435
|
.page-item:not(:first-child) .page-link {
|
|
@@ -5487,6 +5487,69 @@ textarea.form-control-lg {
|
|
|
5487
5487
|
border-bottom-right-radius: 0.2rem;
|
|
5488
5488
|
}
|
|
5489
5489
|
|
|
5490
|
+
.placeholder {
|
|
5491
|
+
display: inline-block;
|
|
5492
|
+
min-height: 1em;
|
|
5493
|
+
vertical-align: middle;
|
|
5494
|
+
cursor: wait;
|
|
5495
|
+
background-color: currentColor;
|
|
5496
|
+
opacity: 0.5;
|
|
5497
|
+
}
|
|
5498
|
+
.placeholder.btn::before {
|
|
5499
|
+
display: inline-block;
|
|
5500
|
+
content: "";
|
|
5501
|
+
}
|
|
5502
|
+
|
|
5503
|
+
.placeholder-xs {
|
|
5504
|
+
min-height: 0.6em;
|
|
5505
|
+
}
|
|
5506
|
+
|
|
5507
|
+
.placeholder-sm {
|
|
5508
|
+
min-height: 0.8em;
|
|
5509
|
+
}
|
|
5510
|
+
|
|
5511
|
+
.placeholder-lg {
|
|
5512
|
+
min-height: 1.2em;
|
|
5513
|
+
}
|
|
5514
|
+
|
|
5515
|
+
.placeholder-glow .placeholder {
|
|
5516
|
+
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
|
|
5517
|
+
animation: placeholder-glow 2s ease-in-out infinite;
|
|
5518
|
+
}
|
|
5519
|
+
|
|
5520
|
+
@-webkit-keyframes placeholder-glow {
|
|
5521
|
+
50% {
|
|
5522
|
+
opacity: 0.2;
|
|
5523
|
+
}
|
|
5524
|
+
}
|
|
5525
|
+
|
|
5526
|
+
@keyframes placeholder-glow {
|
|
5527
|
+
50% {
|
|
5528
|
+
opacity: 0.2;
|
|
5529
|
+
}
|
|
5530
|
+
}
|
|
5531
|
+
.placeholder-wave {
|
|
5532
|
+
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
|
5533
|
+
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
|
5534
|
+
-webkit-mask-size: 200% 100%;
|
|
5535
|
+
mask-size: 200% 100%;
|
|
5536
|
+
-webkit-animation: placeholder-wave 2s linear infinite;
|
|
5537
|
+
animation: placeholder-wave 2s linear infinite;
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
@-webkit-keyframes placeholder-wave {
|
|
5541
|
+
100% {
|
|
5542
|
+
-webkit-mask-position: -200% 0%;
|
|
5543
|
+
mask-position: -200% 0%;
|
|
5544
|
+
}
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5547
|
+
@keyframes placeholder-wave {
|
|
5548
|
+
100% {
|
|
5549
|
+
-webkit-mask-position: -200% 0%;
|
|
5550
|
+
mask-position: -200% 0%;
|
|
5551
|
+
}
|
|
5552
|
+
}
|
|
5490
5553
|
.badge {
|
|
5491
5554
|
display: inline-block;
|
|
5492
5555
|
padding: 0.35em 0.65em;
|
|
@@ -5639,7 +5702,7 @@ textarea.form-control-lg {
|
|
|
5639
5702
|
color: #fff;
|
|
5640
5703
|
text-align: center;
|
|
5641
5704
|
white-space: nowrap;
|
|
5642
|
-
background-color: #
|
|
5705
|
+
background-color: #221684;
|
|
5643
5706
|
transition: width 0.6s ease;
|
|
5644
5707
|
}
|
|
5645
5708
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -7280,10 +7343,8 @@ textarea.form-control-lg {
|
|
|
7280
7343
|
}
|
|
7281
7344
|
|
|
7282
7345
|
.grid-3-9 {
|
|
7283
|
-
-ms-grid-columns: 25%
|
|
7284
|
-
-
|
|
7285
|
-
grid-template-columns: 25% -webkit-max-content;
|
|
7286
|
-
grid-template-columns: 25% max-content;
|
|
7346
|
+
-ms-grid-columns: 25% 75%;
|
|
7347
|
+
grid-template-columns: 25% 75%;
|
|
7287
7348
|
grid-gap: 0.75rem;
|
|
7288
7349
|
}
|
|
7289
7350
|
|
|
@@ -15511,13 +15572,9 @@ body {
|
|
|
15511
15572
|
padding-bottom: 1rem;
|
|
15512
15573
|
}
|
|
15513
15574
|
|
|
15514
|
-
.bcl-header__project
|
|
15515
|
-
|
|
15516
|
-
|
|
15517
|
-
|
|
15518
|
-
.ec__header .bcl-header__project,
|
|
15519
|
-
.ec__header .bcl-header__navbar {
|
|
15520
|
-
background: #004494;
|
|
15575
|
+
.bcl-header--neutral .bcl-header__project,
|
|
15576
|
+
.bcl-header--neutral .bcl-header__navbar {
|
|
15577
|
+
background: #495057;
|
|
15521
15578
|
}
|
|
15522
15579
|
|
|
15523
15580
|
.bcl-navbar-header {
|
|
@@ -15529,12 +15586,26 @@ body {
|
|
|
15529
15586
|
color: #1b4ac3;
|
|
15530
15587
|
}
|
|
15531
15588
|
|
|
15532
|
-
.bcl-header
|
|
15589
|
+
.bcl-header--ec .bcl-header__project,
|
|
15590
|
+
.bcl-header--ec .bcl-header__navbar,
|
|
15591
|
+
.ec__header .bcl-header__project,
|
|
15592
|
+
.ec__header .bcl-header__navbar {
|
|
15593
|
+
background: #004494;
|
|
15594
|
+
}
|
|
15595
|
+
.bcl-header--ec .nav-link,
|
|
15596
|
+
.ec__header .nav-link {
|
|
15533
15597
|
color: #17458f;
|
|
15534
15598
|
}
|
|
15535
15599
|
|
|
15600
|
+
.bcl-header:not(.bcl-header--neutral) .bcl-header__project {
|
|
15601
|
+
padding-top: 1rem;
|
|
15602
|
+
}
|
|
15603
|
+
|
|
15536
15604
|
.bcl-header__navbar .navbar-nav .nav-link {
|
|
15537
|
-
color: #
|
|
15605
|
+
color: #f8f9fa;
|
|
15606
|
+
}
|
|
15607
|
+
.bcl-header__navbar .navbar-nav .nav-link:first-child {
|
|
15608
|
+
padding-left: 0;
|
|
15538
15609
|
}
|
|
15539
15610
|
|
|
15540
15611
|
.bcl-header__navbar .navbar-nav .nav-link:focus,
|
|
@@ -15568,13 +15639,14 @@ body {
|
|
|
15568
15639
|
transform: translate(-11px, 5px);
|
|
15569
15640
|
}
|
|
15570
15641
|
|
|
15571
|
-
.bcl-header__project
|
|
15642
|
+
.bcl-header__project .bcl-header__site-name {
|
|
15572
15643
|
display: inline-block;
|
|
15573
15644
|
margin-bottom: 0;
|
|
15574
15645
|
font-size: 1.3rem;
|
|
15575
15646
|
font-weight: 300;
|
|
15576
15647
|
color: #fff;
|
|
15577
15648
|
vertical-align: middle;
|
|
15649
|
+
max-width: 80%;
|
|
15578
15650
|
}
|
|
15579
15651
|
|
|
15580
15652
|
.bcl-header .navbar-toggler {
|
|
@@ -15588,28 +15660,65 @@ body {
|
|
|
15588
15660
|
background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
|
|
15589
15661
|
}
|
|
15590
15662
|
|
|
15663
|
+
@media only screen and (max-width: 400px) {
|
|
15664
|
+
.bcl-header--neutral .bcl-header__project-logo {
|
|
15665
|
+
display: none;
|
|
15666
|
+
}
|
|
15667
|
+
}
|
|
15591
15668
|
@media (max-width: 575.98px) {
|
|
15592
15669
|
.bcl-header .navbar:first-child .nav-link {
|
|
15593
15670
|
padding: 0.5rem 0.4rem;
|
|
15594
15671
|
}
|
|
15595
15672
|
}
|
|
15596
15673
|
@media (min-width: 768px) {
|
|
15597
|
-
.
|
|
15674
|
+
.bcl-header--ec .navbar-brand img,
|
|
15675
|
+
.ec__header .navbar-brand img {
|
|
15598
15676
|
width: 180px;
|
|
15599
15677
|
}
|
|
15600
15678
|
}
|
|
15679
|
+
@media (max-width: 991.98px) {
|
|
15680
|
+
.bcl-header__project {
|
|
15681
|
+
min-height: 3rem;
|
|
15682
|
+
padding-top: 1rem;
|
|
15683
|
+
}
|
|
15684
|
+
|
|
15685
|
+
.bcl-header nav + nav {
|
|
15686
|
+
min-height: 3rem;
|
|
15687
|
+
}
|
|
15688
|
+
.bcl-header nav + nav .navbar-toggler {
|
|
15689
|
+
position: static;
|
|
15690
|
+
}
|
|
15691
|
+
.bcl-header nav + nav .container {
|
|
15692
|
+
-ms-flex-pack: right;
|
|
15693
|
+
justify-content: right;
|
|
15694
|
+
}
|
|
15695
|
+
|
|
15696
|
+
.bcl-header__navbar .navbar-collapse {
|
|
15697
|
+
max-width: 100%;
|
|
15698
|
+
}
|
|
15699
|
+
.bcl-header__navbar .navbar-collapse .nav-item.dropdown {
|
|
15700
|
+
max-width: 100%;
|
|
15701
|
+
}
|
|
15702
|
+
.bcl-header__navbar .navbar-collapse .nav-item.dropdown a {
|
|
15703
|
+
white-space: normal;
|
|
15704
|
+
}
|
|
15705
|
+
.bcl-header__navbar .navbar-collapse .nav-item.dropdown .dropdown-menu {
|
|
15706
|
+
max-width: 100%;
|
|
15707
|
+
}
|
|
15708
|
+
}
|
|
15601
15709
|
@media (min-width: 992px) {
|
|
15602
15710
|
.bcl-header__project.light,
|
|
15711
|
+
.bcl-header--ec .bcl-header__project.light,
|
|
15603
15712
|
.ec__header .bcl-header__project.light {
|
|
15604
15713
|
background: #fff;
|
|
15605
15714
|
}
|
|
15606
15715
|
|
|
15607
|
-
.bcl-
|
|
15716
|
+
.bcl-header__site-name {
|
|
15608
15717
|
padding-left: 1.5rem;
|
|
15609
15718
|
font-weight: 500;
|
|
15610
15719
|
}
|
|
15611
15720
|
|
|
15612
|
-
.bcl-header__project.light
|
|
15721
|
+
.bcl-header__project.light .bcl-header__site-name {
|
|
15613
15722
|
color: #000;
|
|
15614
15723
|
}
|
|
15615
15724
|
|
|
@@ -15638,11 +15747,12 @@ body {
|
|
|
15638
15747
|
z-index: 1050;
|
|
15639
15748
|
}
|
|
15640
15749
|
|
|
15641
|
-
.bcl-header__project {
|
|
15750
|
+
.bcl-header:not(.bcl-header--neutral) .bcl-header__project {
|
|
15642
15751
|
padding-bottom: 1rem;
|
|
15643
15752
|
}
|
|
15644
15753
|
|
|
15645
|
-
.
|
|
15754
|
+
.bcl-header--ec .navbar-brand img,
|
|
15755
|
+
.ec__header .navbar-brand img {
|
|
15646
15756
|
width: 285px;
|
|
15647
15757
|
}
|
|
15648
15758
|
}
|
|
@@ -15685,16 +15795,31 @@ body {
|
|
|
15685
15795
|
filter: invert(1) grayscale(100%) brightness(200%);
|
|
15686
15796
|
}
|
|
15687
15797
|
|
|
15688
|
-
.bcl-footer {
|
|
15689
|
-
background: #
|
|
15798
|
+
.bcl-footer--neutral {
|
|
15799
|
+
background: #6c757d;
|
|
15800
|
+
}
|
|
15801
|
+
.bcl-footer--neutral a,
|
|
15802
|
+
.bcl-footer--neutral p {
|
|
15803
|
+
color: #fff;
|
|
15690
15804
|
}
|
|
15691
15805
|
|
|
15692
|
-
.bcl-footer
|
|
15693
|
-
|
|
15806
|
+
.bcl-footer--eu,
|
|
15807
|
+
.eu__footer {
|
|
15808
|
+
background: #f3f6fc;
|
|
15809
|
+
}
|
|
15810
|
+
.bcl-footer--eu a,
|
|
15811
|
+
.eu__footer a {
|
|
15812
|
+
color: #0e47cb;
|
|
15694
15813
|
}
|
|
15695
15814
|
|
|
15696
|
-
.bcl-footer
|
|
15697
|
-
.
|
|
15815
|
+
.bcl-footer--ec,
|
|
15816
|
+
.ec__footer {
|
|
15817
|
+
background: #17458f;
|
|
15818
|
+
}
|
|
15819
|
+
.bcl-footer--ec a,
|
|
15820
|
+
.bcl-footer--ec p,
|
|
15821
|
+
.ec__footer a,
|
|
15822
|
+
.ec__footer p {
|
|
15698
15823
|
color: #fff;
|
|
15699
15824
|
}
|
|
15700
15825
|
|
|
@@ -16006,6 +16131,87 @@ a .badge {
|
|
|
16006
16131
|
font-size: 0.75em;
|
|
16007
16132
|
}
|
|
16008
16133
|
|
|
16134
|
+
.badge-outline-primary {
|
|
16135
|
+
border: 1px solid #221684;
|
|
16136
|
+
color: #221684 !important;
|
|
16137
|
+
background: transparent !important;
|
|
16138
|
+
}
|
|
16139
|
+
.badge-outline-primary .icon--close {
|
|
16140
|
+
background: #221684;
|
|
16141
|
+
color: #fff;
|
|
16142
|
+
}
|
|
16143
|
+
|
|
16144
|
+
.badge-outline-secondary {
|
|
16145
|
+
border: 1px solid #f25924;
|
|
16146
|
+
color: #f25924 !important;
|
|
16147
|
+
background: transparent !important;
|
|
16148
|
+
}
|
|
16149
|
+
.badge-outline-secondary .icon--close {
|
|
16150
|
+
background: #f25924;
|
|
16151
|
+
color: #fff;
|
|
16152
|
+
}
|
|
16153
|
+
|
|
16154
|
+
.badge-outline-success {
|
|
16155
|
+
border: 1px solid #3c8f38;
|
|
16156
|
+
color: #3c8f38 !important;
|
|
16157
|
+
background: transparent !important;
|
|
16158
|
+
}
|
|
16159
|
+
.badge-outline-success .icon--close {
|
|
16160
|
+
background: #3c8f38;
|
|
16161
|
+
color: #fff;
|
|
16162
|
+
}
|
|
16163
|
+
|
|
16164
|
+
.badge-outline-info {
|
|
16165
|
+
border: 1px solid #2b768a;
|
|
16166
|
+
color: #2b768a !important;
|
|
16167
|
+
background: transparent !important;
|
|
16168
|
+
}
|
|
16169
|
+
.badge-outline-info .icon--close {
|
|
16170
|
+
background: #2b768a;
|
|
16171
|
+
color: #fff;
|
|
16172
|
+
}
|
|
16173
|
+
|
|
16174
|
+
.badge-outline-warning {
|
|
16175
|
+
border: 1px solid #e1ab00;
|
|
16176
|
+
color: #e1ab00 !important;
|
|
16177
|
+
background: transparent !important;
|
|
16178
|
+
}
|
|
16179
|
+
.badge-outline-warning .icon--close {
|
|
16180
|
+
background: #e1ab00;
|
|
16181
|
+
color: #fff;
|
|
16182
|
+
}
|
|
16183
|
+
|
|
16184
|
+
.badge-outline-danger {
|
|
16185
|
+
border: 1px solid #b8282a;
|
|
16186
|
+
color: #b8282a !important;
|
|
16187
|
+
background: transparent !important;
|
|
16188
|
+
}
|
|
16189
|
+
.badge-outline-danger .icon--close {
|
|
16190
|
+
background: #b8282a;
|
|
16191
|
+
color: #fff;
|
|
16192
|
+
}
|
|
16193
|
+
|
|
16194
|
+
.badge-outline-light {
|
|
16195
|
+
border: 1px solid #f0f0f0;
|
|
16196
|
+
color: #f0f0f0 !important;
|
|
16197
|
+
background: transparent !important;
|
|
16198
|
+
}
|
|
16199
|
+
.badge-outline-light .icon--close {
|
|
16200
|
+
background: #f0f0f0;
|
|
16201
|
+
color: #fff;
|
|
16202
|
+
color: #000;
|
|
16203
|
+
}
|
|
16204
|
+
|
|
16205
|
+
.badge-outline-dark {
|
|
16206
|
+
border: 1px solid #2e3338;
|
|
16207
|
+
color: #2e3338 !important;
|
|
16208
|
+
background: transparent !important;
|
|
16209
|
+
}
|
|
16210
|
+
.badge-outline-dark .icon--close {
|
|
16211
|
+
background: #2e3338;
|
|
16212
|
+
color: #fff;
|
|
16213
|
+
}
|
|
16214
|
+
|
|
16009
16215
|
.ss-main {
|
|
16010
16216
|
position: relative;
|
|
16011
16217
|
display: inline-block;
|
|
@@ -16615,7 +16821,7 @@ select.multi-select {
|
|
|
16615
16821
|
background-position: right 1.6rem center;
|
|
16616
16822
|
}
|
|
16617
16823
|
}
|
|
16618
|
-
@media
|
|
16824
|
+
@media (min-width: 992px) {
|
|
16619
16825
|
.bcl-offcanvas {
|
|
16620
16826
|
position: relative;
|
|
16621
16827
|
width: auto;
|
|
@@ -16661,7 +16867,7 @@ select.multi-select {
|
|
|
16661
16867
|
|
|
16662
16868
|
.bcl-banner__content {
|
|
16663
16869
|
padding: 2.5rem 2rem;
|
|
16664
|
-
border-color: #
|
|
16870
|
+
border-color: #221684;
|
|
16665
16871
|
}
|
|
16666
16872
|
|
|
16667
16873
|
.bcl-banner__image {
|
|
@@ -16687,7 +16893,7 @@ select.multi-select {
|
|
|
16687
16893
|
}
|
|
16688
16894
|
.bcl-banner.overlay .bcl-banner__content {
|
|
16689
16895
|
background: #fff;
|
|
16690
|
-
border-bottom: 4px solid #
|
|
16896
|
+
border-bottom: 4px solid #221684;
|
|
16691
16897
|
}
|
|
16692
16898
|
.bcl-banner.shade {
|
|
16693
16899
|
color: #fff;
|
|
@@ -16832,20 +17038,20 @@ select.multi-select {
|
|
|
16832
17038
|
transform: rotate(180deg);
|
|
16833
17039
|
}
|
|
16834
17040
|
|
|
16835
|
-
|
|
17041
|
+
.bcl-inpage-navigation {
|
|
16836
17042
|
top: 1rem;
|
|
16837
17043
|
background-color: #f8f9fa;
|
|
16838
17044
|
}
|
|
16839
|
-
|
|
17045
|
+
.bcl-inpage-navigation h5, .bcl-inpage-navigation .h5 {
|
|
16840
17046
|
font-weight: bold;
|
|
16841
17047
|
margin-bottom: 0;
|
|
16842
17048
|
padding: 1.25rem;
|
|
16843
17049
|
border-bottom: 1px solid #dee2e6;
|
|
16844
17050
|
}
|
|
16845
|
-
|
|
17051
|
+
.bcl-inpage-navigation ul {
|
|
16846
17052
|
padding: 0.75rem;
|
|
16847
17053
|
}
|
|
16848
|
-
|
|
17054
|
+
.bcl-inpage-navigation ul .nav-link {
|
|
16849
17055
|
padding: 0.5rem;
|
|
16850
17056
|
margin-bottom: 0.5rem;
|
|
16851
17057
|
}
|