@eeacms/volto-clms-theme 1.1.119 → 1.1.121
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/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.1.121](https://github.com/eea/volto-clms-theme/compare/1.1.120...1.1.121) - 12 March 2024
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix:CLMS-3092 [Unai Etxaburu - [`29efbc1`](https://github.com/eea/volto-clms-theme/commit/29efbc17c76c50b6e6c8a78b80716df820930f49)]
|
|
12
|
+
- fix: CLMS-3110 small style changes in edit mode [Unai Etxaburu - [`7f3c4cb`](https://github.com/eea/volto-clms-theme/commit/7f3c4cb05c797827cd32b5e1e0e79667892b8f67)]
|
|
13
|
+
|
|
14
|
+
### [1.1.120](https://github.com/eea/volto-clms-theme/compare/1.1.119...1.1.120) - 8 March 2024
|
|
15
|
+
|
|
7
16
|
### [1.1.119](https://github.com/eea/volto-clms-theme/compare/1.1.118...1.1.119) - 28 February 2024
|
|
8
17
|
|
|
9
18
|
#### :hammer_and_wrench: Others
|
|
10
19
|
|
|
11
20
|
- remove consolelog [Mikel Larreategi - [`9c88aa2`](https://github.com/eea/volto-clms-theme/commit/9c88aa298fe8fdfe28dd8267a1015726b17e5065)]
|
|
12
|
-
- remove traces of email and fullname in the profile edit form [Mikel Larreategi - [`bd3089f`](https://github.com/eea/volto-clms-theme/commit/bd3089fa6a8ed1dea95d25709349325aa6d6f582)]
|
|
13
21
|
### [1.1.118](https://github.com/eea/volto-clms-theme/compare/1.1.117...1.1.118) - 23 February 2024
|
|
14
22
|
|
|
15
23
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -276,9 +276,9 @@
|
|
|
276
276
|
|
|
277
277
|
.block.search .search-wrapper .ui.input > input {
|
|
278
278
|
height: 2.5rem;
|
|
279
|
+
padding: 0.5rem 1rem !important;
|
|
279
280
|
border: 1px solid #dadada;
|
|
280
281
|
border-radius: 0;
|
|
281
|
-
padding: 0.5rem 1rem !important;
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
.block.search .search-wrapper .ui.input > input:focus-visible {
|
|
@@ -356,14 +356,15 @@
|
|
|
356
356
|
|
|
357
357
|
.search-filters {
|
|
358
358
|
display: flex;
|
|
359
|
-
justify-content: space-between;
|
|
360
359
|
align-items: center;
|
|
360
|
+
justify-content: space-between;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
@media (max-width: 576px) {
|
|
364
364
|
.search-filters {
|
|
365
365
|
flex-direction: column;
|
|
366
366
|
}
|
|
367
|
+
|
|
367
368
|
.block.search .search-results-count-sort .search-details {
|
|
368
369
|
width: 100%;
|
|
369
370
|
}
|
|
@@ -413,25 +414,25 @@
|
|
|
413
414
|
|
|
414
415
|
/* Filters modal */
|
|
415
416
|
.modal-filters {
|
|
416
|
-
display: none;
|
|
417
417
|
position: fixed;
|
|
418
|
+
z-index: 10000;
|
|
418
419
|
top: 0;
|
|
419
420
|
bottom: 0;
|
|
421
|
+
display: none;
|
|
420
422
|
width: 100%;
|
|
421
|
-
z-index: 10000;
|
|
422
423
|
}
|
|
423
424
|
|
|
424
425
|
.modal-filters-background {
|
|
425
|
-
height: 100vh;
|
|
426
426
|
display: flex;
|
|
427
|
-
justify-content: flex-end;
|
|
428
427
|
overflow: auto;
|
|
428
|
+
height: 100vh;
|
|
429
|
+
justify-content: flex-end;
|
|
429
430
|
}
|
|
430
431
|
|
|
431
432
|
.modal-filters-container {
|
|
432
433
|
display: flex;
|
|
433
|
-
flex-direction: column;
|
|
434
434
|
width: 100%;
|
|
435
|
+
flex-direction: column;
|
|
435
436
|
background: white;
|
|
436
437
|
}
|
|
437
438
|
@media (min-width: 576px) {
|
|
@@ -452,8 +453,8 @@
|
|
|
452
453
|
|
|
453
454
|
.modal-filters-header {
|
|
454
455
|
display: flex;
|
|
455
|
-
justify-content: space-between;
|
|
456
456
|
align-items: center;
|
|
457
|
+
justify-content: space-between;
|
|
457
458
|
padding: 1rem;
|
|
458
459
|
border-bottom: solid 1px @clmsGreen;
|
|
459
460
|
}
|
|
@@ -469,13 +470,13 @@
|
|
|
469
470
|
}
|
|
470
471
|
|
|
471
472
|
.modal-filters-clear {
|
|
472
|
-
text-decoration: underline;
|
|
473
|
-
font-size: 0.85rem;
|
|
474
473
|
padding-right: 1rem;
|
|
475
|
-
margin-right: 1rem;
|
|
476
474
|
border-right: solid 1px #273b4b;
|
|
477
|
-
|
|
475
|
+
margin-right: 1rem;
|
|
478
476
|
cursor: pointer;
|
|
477
|
+
font-size: 0.85rem;
|
|
478
|
+
line-height: 1.5rem;
|
|
479
|
+
text-decoration: underline;
|
|
479
480
|
}
|
|
480
481
|
|
|
481
482
|
.modal-filters-close {
|
|
@@ -509,29 +510,29 @@
|
|
|
509
510
|
}
|
|
510
511
|
|
|
511
512
|
.modal-filters-dropdown .ccl-expandable__button {
|
|
512
|
-
|
|
513
|
-
color: #212529;
|
|
514
|
-
border-bottom: solid 1px @clmsGreen;
|
|
513
|
+
position: relative;
|
|
515
514
|
display: -webkit-flex;
|
|
516
515
|
display: flex;
|
|
517
516
|
align-items: center;
|
|
517
|
+
padding: 1rem 1.5rem;
|
|
518
|
+
border-bottom: solid 1px @clmsGreen;
|
|
519
|
+
margin: 0;
|
|
520
|
+
background-color: white;
|
|
521
|
+
color: #212529;
|
|
522
|
+
cursor: pointer;
|
|
518
523
|
font-size: 1rem;
|
|
519
524
|
font-weight: bold;
|
|
520
|
-
position: relative;
|
|
521
525
|
text-decoration: none;
|
|
522
|
-
margin: 0;
|
|
523
|
-
padding: 1rem 1.5rem;
|
|
524
|
-
cursor: pointer;
|
|
525
526
|
}
|
|
526
527
|
|
|
527
528
|
.modal-filters-dropdown .ccl-expandable__button::after {
|
|
528
|
-
|
|
529
|
-
|
|
529
|
+
position: absolute;
|
|
530
|
+
right: 0;
|
|
530
531
|
margin-right: 1.5rem;
|
|
532
|
+
color: @clmsGreen;
|
|
533
|
+
font-family: 'ccl-icons';
|
|
531
534
|
-moz-osx-font-smoothing: grayscale;
|
|
532
535
|
-webkit-font-smoothing: antialiased;
|
|
533
|
-
position: absolute;
|
|
534
|
-
right: 0;
|
|
535
536
|
-webkit-transition: all 0.3s ease-in-out;
|
|
536
537
|
transition: all 0.3s ease-in-out;
|
|
537
538
|
}
|
|
@@ -579,13 +580,13 @@
|
|
|
579
580
|
.ccl-expandable__button
|
|
580
581
|
+ .ccl-form
|
|
581
582
|
.ccl-expandable__button {
|
|
582
|
-
background-color: transparent;
|
|
583
|
-
margin: 0;
|
|
584
583
|
padding: 0;
|
|
585
|
-
font-weight: normal;
|
|
586
584
|
border: none;
|
|
587
|
-
|
|
585
|
+
margin: 0;
|
|
588
586
|
margin-top: 1.66rem;
|
|
587
|
+
background-color: transparent;
|
|
588
|
+
font-size: 1rem;
|
|
589
|
+
font-weight: normal;
|
|
589
590
|
}
|
|
590
591
|
|
|
591
592
|
.modal-filters-dropdown
|
|
@@ -607,11 +608,11 @@
|
|
|
607
608
|
}
|
|
608
609
|
|
|
609
610
|
.modal-filters-dropdown .filters-tag-container {
|
|
610
|
-
padding: 0.5rem 1.5rem 1rem 1.5rem;
|
|
611
611
|
display: grid;
|
|
612
|
+
align-items: center;
|
|
613
|
+
padding: 0.5rem 1.5rem 1rem 1.5rem;
|
|
612
614
|
grid-gap: 0.5rem;
|
|
613
615
|
grid-template-columns: auto auto auto;
|
|
614
|
-
align-items: center;
|
|
615
616
|
}
|
|
616
617
|
|
|
617
618
|
.modal-filters-dropdown .filters-tag input {
|
|
@@ -623,8 +624,8 @@
|
|
|
623
624
|
}
|
|
624
625
|
|
|
625
626
|
.modal-filters-dropdown .filters-tag .checkbox input:checked + label {
|
|
626
|
-
color: white;
|
|
627
627
|
background: @clmsGreen;
|
|
628
|
+
color: white;
|
|
628
629
|
-webkit-transition: all 0.3s ease-out;
|
|
629
630
|
transition: all 0.3s ease-out;
|
|
630
631
|
}
|
|
@@ -645,23 +646,26 @@
|
|
|
645
646
|
}
|
|
646
647
|
|
|
647
648
|
.modal-filters-dropdown .filters-tag .checkbox label:hover {
|
|
648
|
-
color: white;
|
|
649
649
|
background: @clmsGreen;
|
|
650
|
+
color: white;
|
|
650
651
|
}
|
|
651
652
|
|
|
652
653
|
.modal-filters-dropdown .filters-tag .ui.checkbox label:before,
|
|
653
654
|
.modal-filters-dropdown .filters-tag .ui.checkbox input:checked ~ label:after {
|
|
654
655
|
content: none;
|
|
655
656
|
}
|
|
657
|
+
|
|
656
658
|
.modal-filters-dropdown .ui.checkbox label:before {
|
|
657
659
|
border: 1px solid #404040;
|
|
658
660
|
border-radius: 2px;
|
|
659
661
|
box-shadow: none;
|
|
660
662
|
}
|
|
663
|
+
|
|
661
664
|
.modal-filters-dropdown .ui.checkbox input:checked ~ label:after,
|
|
662
665
|
.modal-filters-dropdown .ui.checkbox input:checked:focus ~ label:after {
|
|
663
666
|
color: @clmsGreen;
|
|
664
667
|
}
|
|
668
|
+
|
|
665
669
|
.modal-filters-dropdown .ui.checkbox input:checked ~ label:before,
|
|
666
670
|
.modal-filters-dropdown .ui.checkbox input:checked:focus ~ label:before {
|
|
667
671
|
border: 1px solid @clmsGreen;
|
|
@@ -750,3 +754,19 @@ main .search-form button {
|
|
|
750
754
|
background-color: #212529;
|
|
751
755
|
color: white;
|
|
752
756
|
}
|
|
757
|
+
|
|
758
|
+
//tab block z-index
|
|
759
|
+
.tabs-block > .styled > .tabs > .ui.grid > .column > .ui.menu.right,
|
|
760
|
+
.tabs-block > .styled > .tabs > .ui.menu.right,
|
|
761
|
+
.tabs-block > .tabs > .ui.grid > .column > .ui.menu.right,
|
|
762
|
+
.tabs-block > .tabs > .ui.menu.right {
|
|
763
|
+
margin-bottom: 1.5rem;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.tabs-block .block-toolbar {
|
|
767
|
+
margin-top: -4rem;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
// .text-slate-editor-inner {
|
|
771
|
+
// z-index: 2 !important;
|
|
772
|
+
// }
|
|
@@ -401,3 +401,9 @@ body:not(.is-authenticated):not(.document_wide_view).stretch {
|
|
|
401
401
|
left: auto !important;
|
|
402
402
|
margin-top: 50px;
|
|
403
403
|
}
|
|
404
|
+
|
|
405
|
+
// edit mode block chooser
|
|
406
|
+
.tabs-block .blocks-chooser {
|
|
407
|
+
margin-top: 2rem !important;
|
|
408
|
+
transform: none !important;
|
|
409
|
+
}
|