@openeuropa/bcl-theme-default 1.4.0 → 1.6.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 +3 -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 +81 -7
- 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/package.json +5 -5
- package/src/scss/_inpage-navigation.scss +65 -4
- package/templates/bcl-inpage-navigation/inpage-navigation.html.twig +30 -9
- package/templates/bcl-pagination/pagination.html.twig +13 -10
package/css/oe-bcl-default.css
CHANGED
|
@@ -2953,7 +2953,9 @@ textarea.form-control-lg {
|
|
|
2953
2953
|
padding-top: 1.625rem;
|
|
2954
2954
|
padding-bottom: 0.625rem;
|
|
2955
2955
|
}
|
|
2956
|
-
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
|
|
2956
|
+
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
|
|
2957
|
+
.form-floating > .form-control-plaintext:focus,
|
|
2958
|
+
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
|
|
2957
2959
|
padding-top: 1.625rem;
|
|
2958
2960
|
padding-bottom: 0.625rem;
|
|
2959
2961
|
}
|
|
@@ -3170,7 +3172,11 @@ textarea.form-control-lg {
|
|
|
3170
3172
|
margin-left: 0.5em;
|
|
3171
3173
|
}
|
|
3172
3174
|
|
|
3173
|
-
.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
|
|
3175
|
+
.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
|
|
3176
|
+
.was-validated .input-group > .form-select:not(:focus):valid,
|
|
3177
|
+
.input-group > .form-select:not(:focus).is-valid,
|
|
3178
|
+
.was-validated .input-group > .form-floating:not(:focus-within):valid,
|
|
3179
|
+
.input-group > .form-floating:not(:focus-within).is-valid {
|
|
3174
3180
|
z-index: 3;
|
|
3175
3181
|
}
|
|
3176
3182
|
|
|
@@ -3256,7 +3262,11 @@ textarea.form-control-lg {
|
|
|
3256
3262
|
margin-left: 0.5em;
|
|
3257
3263
|
}
|
|
3258
3264
|
|
|
3259
|
-
.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
|
|
3265
|
+
.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
|
|
3266
|
+
.was-validated .input-group > .form-select:not(:focus):invalid,
|
|
3267
|
+
.input-group > .form-select:not(:focus).is-invalid,
|
|
3268
|
+
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
|
|
3269
|
+
.input-group > .form-floating:not(:focus-within).is-invalid {
|
|
3260
3270
|
z-index: 4;
|
|
3261
3271
|
}
|
|
3262
3272
|
|
|
@@ -6587,7 +6597,9 @@ textarea.form-control-lg {
|
|
|
6587
6597
|
transition: none;
|
|
6588
6598
|
}
|
|
6589
6599
|
}
|
|
6590
|
-
.carousel-control-prev:hover, .carousel-control-prev:focus,
|
|
6600
|
+
.carousel-control-prev:hover, .carousel-control-prev:focus,
|
|
6601
|
+
.carousel-control-next:hover,
|
|
6602
|
+
.carousel-control-next:focus {
|
|
6591
6603
|
color: #fff;
|
|
6592
6604
|
text-decoration: none;
|
|
6593
6605
|
outline: 0;
|
|
@@ -16954,15 +16966,50 @@ select.multi-select {
|
|
|
16954
16966
|
transform: rotate(180deg);
|
|
16955
16967
|
}
|
|
16956
16968
|
|
|
16969
|
+
.bcl-sidebar:has(> .bcl-inpage-navigation) {
|
|
16970
|
+
position: -webkit-sticky;
|
|
16971
|
+
position: sticky;
|
|
16972
|
+
top: 0;
|
|
16973
|
+
z-index: 2;
|
|
16974
|
+
}
|
|
16975
|
+
|
|
16957
16976
|
.bcl-inpage-navigation {
|
|
16977
|
+
top: 0;
|
|
16978
|
+
background-color: #f8f9fa;
|
|
16979
|
+
}
|
|
16980
|
+
.bcl-inpage-navigation .dropdown-toggle {
|
|
16981
|
+
display: -ms-flexbox;
|
|
16982
|
+
display: flex;
|
|
16983
|
+
-ms-flex-pack: justify;
|
|
16984
|
+
justify-content: space-between;
|
|
16985
|
+
-ms-flex-align: center;
|
|
16986
|
+
align-items: center;
|
|
16987
|
+
white-space: normal;
|
|
16988
|
+
border-bottom: 1px solid #dee2e6;
|
|
16989
|
+
}
|
|
16990
|
+
.bcl-inpage-navigation .dropdown-toggle:after {
|
|
16958
16991
|
display: none;
|
|
16959
|
-
|
|
16992
|
+
}
|
|
16993
|
+
.bcl-inpage-navigation .dropdown-toggle .bi {
|
|
16994
|
+
transition: 0.3s ease;
|
|
16995
|
+
}
|
|
16996
|
+
.bcl-inpage-navigation .dropdown-toggle.show .bi {
|
|
16997
|
+
-webkit-transform: rotate(180deg);
|
|
16998
|
+
transform: rotate(180deg);
|
|
16999
|
+
}
|
|
17000
|
+
.bcl-inpage-navigation .dropdown-menu {
|
|
17001
|
+
position: relative;
|
|
16960
17002
|
background-color: #f8f9fa;
|
|
17003
|
+
width: 100%;
|
|
17004
|
+
top: 100% !important;
|
|
17005
|
+
border: none;
|
|
17006
|
+
border-radius: 0;
|
|
17007
|
+
-webkit-transform: none !important;
|
|
17008
|
+
transform: none !important;
|
|
16961
17009
|
}
|
|
16962
17010
|
.bcl-inpage-navigation .bcl-heading {
|
|
16963
17011
|
margin-bottom: 0;
|
|
16964
17012
|
padding: 1.25rem;
|
|
16965
|
-
border-bottom: 1px solid #dee2e6;
|
|
16966
17013
|
}
|
|
16967
17014
|
.bcl-inpage-navigation ul {
|
|
16968
17015
|
padding: 0.75rem;
|
|
@@ -16981,9 +17028,36 @@ select.multi-select {
|
|
|
16981
17028
|
padding: 0 0.75rem;
|
|
16982
17029
|
}
|
|
16983
17030
|
|
|
16984
|
-
@media (
|
|
17031
|
+
@media (max-width: 575.98px) {
|
|
17032
|
+
.bcl-sidebar:has(> .bcl-inpage-navigation) {
|
|
17033
|
+
padding-left: 0;
|
|
17034
|
+
padding-right: 0;
|
|
17035
|
+
}
|
|
17036
|
+
}
|
|
17037
|
+
@media (max-width: 991.98px) {
|
|
17038
|
+
.bcl-sidebar:has(> .bcl-inpage-navigation) {
|
|
17039
|
+
padding-bottom: 1rem;
|
|
17040
|
+
}
|
|
17041
|
+
}
|
|
17042
|
+
@media (min-width: 768px) {
|
|
16985
17043
|
.bcl-inpage-navigation {
|
|
16986
17044
|
display: block;
|
|
17045
|
+
top: 1rem;
|
|
17046
|
+
}
|
|
17047
|
+
.bcl-inpage-navigation .dropdown-toggle {
|
|
17048
|
+
cursor: auto;
|
|
17049
|
+
}
|
|
17050
|
+
.bcl-inpage-navigation .dropdown-toggle::after {
|
|
17051
|
+
display: none;
|
|
17052
|
+
}
|
|
17053
|
+
.bcl-inpage-navigation .dropdown-toggle .bi {
|
|
17054
|
+
display: none;
|
|
17055
|
+
}
|
|
17056
|
+
.bcl-inpage-navigation .dropdown-menu {
|
|
17057
|
+
position: relative !important;
|
|
17058
|
+
background: transparent;
|
|
17059
|
+
padding: 0;
|
|
17060
|
+
display: block;
|
|
16987
17061
|
}
|
|
16988
17062
|
}
|
|
16989
17063
|
.bcl-language-list .btn {
|