design-comuni-plone-theme 11.25.4 → 11.26.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.
Files changed (45) hide show
  1. package/.github/workflows/npm.yml +1 -1
  2. package/.yarn/cache/cross-spawn-npm-7.0.6-264bddf921-8d306efaca.zip +0 -0
  3. package/.yarn/cache/nanoid-npm-3.3.8-d22226208b-dfe0adbc0c.zip +0 -0
  4. package/.yarn/cache/{volto-blocks-widget-npm-3.4.1-c4d451e2c2-4f5c183698.zip → volto-blocks-widget-npm-3.4.3-d7e305af36-68490569a4.zip} +0 -0
  5. package/.yarn/cache/{volto-feedback-npm-0.3.2-ff5b075c7c-bfc7951ca5.zip → volto-feedback-npm-0.5.2-c3471099a1-48c0763678.zip} +0 -0
  6. package/.yarn/cache/volto-gdpr-privacy-npm-2.2.12-fbc24c3b6f-ba1b9c0127.zip +0 -0
  7. package/.yarn/install-state.gz +0 -0
  8. package/CHANGELOG.md +38 -0
  9. package/RELEASE.md +19 -0
  10. package/locales/de/LC_MESSAGES/volto.po +5 -0
  11. package/locales/en/LC_MESSAGES/volto.po +5 -0
  12. package/locales/es/LC_MESSAGES/volto.po +5 -0
  13. package/locales/fr/LC_MESSAGES/volto.po +5 -0
  14. package/locales/it/LC_MESSAGES/volto.po +5 -0
  15. package/locales/volto.pot +6 -1
  16. package/package.json +4 -4
  17. package/publiccode.yml +2 -2
  18. package/src/components/ItaliaTheme/Blocks/Calendar/Body.jsx +1 -0
  19. package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/SelectFilter.jsx +9 -3
  20. package/src/components/ItaliaTheme/Blocks/EventSearch/DefaultFilters.js +1 -0
  21. package/src/components/ItaliaTheme/Cards/CardCategory.jsx +2 -3
  22. package/src/components/ItaliaTheme/View/Commons/Dates.jsx +16 -16
  23. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderEventDates.jsx +30 -8
  24. package/src/customizations/volto/actions/vocabularies/vocabularies.js +6 -2
  25. package/src/customizations/volto/components/manage/Blocks/Search/SearchBlockView.jsx +9 -15
  26. package/src/customizations/volto/components/manage/Blocks/Search/schema.js +16 -0
  27. package/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +4 -7
  28. package/src/customizations/volto-form-block/components/View.jsx +11 -10
  29. package/src/helpers/dates.js +21 -1
  30. package/src/helpers/index.js +1 -0
  31. package/src/theme/ItaliaTheme/Blocks/_contacts.scss +5 -12
  32. package/src/theme/ItaliaTheme/Print/_all_pages.scss +98 -15
  33. package/src/theme/ItaliaTheme/Print/_blocks.scss +903 -8
  34. package/src/theme/ItaliaTheme/Print/_page.scss +0 -6
  35. package/src/theme/ItaliaTheme/_main.scss +3 -0
  36. package/src/theme/_cms-ui.scss +58 -0
  37. package/src/theme/bootstrap-override/bootstrap/_print.scss +1 -0
  38. package/src/theme/bootstrap-override/bootstrap-italia/_card.scss +12 -2
  39. package/src/theme/extras/_tables.scss +12 -13
  40. package/src/theme/site.scss +0 -2
  41. package/.yarn/cache/cross-spawn-npm-7.0.3-e4ff3e65b3-671cc7c728.zip +0 -0
  42. package/.yarn/cache/nanoid-npm-3.3.6-e6d6ae7e71-7d0eda6570.zip +0 -0
  43. package/.yarn/cache/volto-gdpr-privacy-npm-2.2.9-a1e4258e06-fe530fe8ee.zip +0 -0
  44. package/src/theme/ItaliaTheme/Print/_bandi.scss +0 -9
  45. package/src/theme/ItaliaTheme/Print/_news_items.scss +0 -19
@@ -1,5 +1,30 @@
1
1
  @media print {
2
2
  .block {
3
+ color: $body-color;
4
+
5
+ .bg-primary,
6
+ .bg-secondary,
7
+ .bg-tertiary {
8
+ border: 1px solid $gray-border;
9
+ background-color: white !important;
10
+
11
+ .card .card-body {
12
+ .category-top,
13
+ .category-top .text,
14
+ .card-text,
15
+ .card-text a,
16
+ .card-title a,
17
+ .card-title {
18
+ color: $body-color !important;
19
+ }
20
+
21
+ .category-top .icon {
22
+ color: $body-color !important;
23
+ fill: $body-color !important;
24
+ }
25
+ }
26
+ }
27
+
3
28
  &.full-width,
4
29
  .full-width {
5
30
  right: unset !important;
@@ -19,16 +44,117 @@
19
44
 
20
45
  .col-item {
21
46
  max-width: 33%;
47
+ padding-right: 0;
48
+ padding-left: 0;
49
+ }
50
+ }
51
+ }
52
+
53
+ .bg-gradient {
54
+ border: 1px solid $gray-border;
55
+ background-color: white !important;
56
+ background-image: none !important;
57
+ opacity: 1 !important;
58
+ }
59
+
60
+ div:has(.bg-gradient) {
61
+ .title {
62
+ color: $body-color;
63
+ font-size: 1.1rem;
64
+ }
65
+ }
66
+ }
67
+
68
+ .section.section-inset-shadow {
69
+ box-shadow: none;
70
+ }
71
+
72
+ .public-ui {
73
+ .block.alertblock {
74
+ .bg-alert-danger,
75
+ .bg-alert-info,
76
+ .bg-alert-warning {
77
+ border: 1px solid $gray-border;
78
+ background-color: white !important;
79
+
80
+ a:not(.btn) {
81
+ color: #000;
82
+ }
83
+
84
+ .container {
85
+ padding: 1rem !important;
22
86
  }
23
87
  }
24
88
  }
25
89
  }
26
90
 
91
+ .block.form {
92
+ h2,
93
+ .block-description {
94
+ page-break-after: avoid;
95
+ }
96
+
97
+ .card-wrapper {
98
+ page-break-before: avoid;
99
+ }
100
+ }
101
+
27
102
  .block.image {
28
103
  max-width: 50%;
29
104
  margin: 0 auto;
30
105
  }
31
106
 
107
+ .block.numbersBlock {
108
+ .block-number .subblock-title p {
109
+ font-size: 3.5rem;
110
+ }
111
+ }
112
+
113
+ // rimozione delle immagini/colori di sfondo come default, applicato colore del testo
114
+ .block.iconBlocks,
115
+ .block.numbersBlock,
116
+ .block.contacts .bg-primary,
117
+ .block.contacts .bg-secondary {
118
+ color: $body-color;
119
+
120
+ .block-header {
121
+ .title,
122
+ .description,
123
+ a {
124
+ color: $body-color !important;
125
+ }
126
+ }
127
+
128
+ .background-image::after,
129
+ .background-image.no-image::after {
130
+ border: 1px solid $gray-border;
131
+ background-color: white;
132
+ background-image: none;
133
+ }
134
+ }
135
+
136
+ .block.iconBlocks,
137
+ .block.numbersBlock {
138
+ div:not(.title) p {
139
+ font-size: 1.5rem;
140
+ }
141
+ }
142
+
143
+ .block.contacts {
144
+ div:not(.title) p {
145
+ font-size: 1.5rem;
146
+ }
147
+
148
+ .card-wrapper .contact-title,
149
+ .card-wrapper .contact-text,
150
+ .card-wrapper .contact-info {
151
+ p {
152
+ margin-bottom: 0.3rem;
153
+ font-size: 1rem !important;
154
+ }
155
+ }
156
+ }
157
+
32
158
  .block.highlitedContent {
33
159
  .col-lg-6 {
34
160
  flex: 1 1 30%;
@@ -62,16 +188,113 @@
62
188
  }
63
189
 
64
190
  .block.accordion {
65
- .accordion-header {
66
- button {
67
- svg {
68
- display: none;
191
+ .public-ui {
192
+ width: 100%;
193
+ }
194
+
195
+ .section.full-width {
196
+ padding: 0px !important;
197
+
198
+ .card {
199
+ .card-body .accordion-item {
200
+ .accordion-header {
201
+ button {
202
+ svg {
203
+ display: none;
204
+ }
205
+ }
206
+ }
207
+
208
+ .accordion-content {
209
+ max-height: unset;
210
+
211
+ .accordion-inner {
212
+ padding: 0px;
213
+ }
214
+ }
215
+ }
216
+
217
+ &:after {
218
+ margin-top: 0px;
69
219
  }
70
220
  }
71
221
  }
72
222
 
73
- .section.full-width .card .card-body .accordion-item .accordion-content {
74
- max-height: unset;
223
+ .block.numbersBlock {
224
+ color: #000;
225
+ page-break-inside: avoid;
226
+
227
+ .section.py-5 {
228
+ padding: 12px !important;
229
+ page-break-inside: avoid;
230
+
231
+ .container {
232
+ page-break-inside: avoid;
233
+
234
+ .title,
235
+ .subblock-title {
236
+ font-size: 1.5rem;
237
+ page-break-after: avoid;
238
+ }
239
+
240
+ .block-number {
241
+ page-break-inside: avoid;
242
+ }
243
+
244
+ .subblock-text {
245
+ page-break-before: avoid;
246
+ }
247
+
248
+ .block-header {
249
+ page-break-after: avoid;
250
+ }
251
+ }
252
+ }
253
+ }
254
+
255
+ .block.iconBlocks {
256
+ .section.full-width {
257
+ padding: 12px !important;
258
+
259
+ .block-header {
260
+ .title {
261
+ margin: 0px;
262
+ font-size: 1.5rem;
263
+ line-height: 1.5rem;
264
+ }
265
+
266
+ .description {
267
+ margin-bottom: 10px;
268
+
269
+ p {
270
+ margin-top: 10px;
271
+ }
272
+ }
273
+ }
274
+
275
+ .card {
276
+ padding-top: 0px;
277
+
278
+ .card-body {
279
+ padding: 12px;
280
+
281
+ .iconblock-icon {
282
+ margin-bottom: 1rem;
283
+
284
+ .icon {
285
+ height: 2rem;
286
+ }
287
+ }
288
+
289
+ .iconblock-title {
290
+ font-size: 1rem;
291
+ }
292
+ }
293
+ }
294
+
295
+ .link-button {
296
+ display: none;
297
+ }
75
298
  }
76
299
  }
77
300
 
@@ -94,11 +317,22 @@
94
317
  }
95
318
  }
96
319
  }
320
+
321
+ .calendar .calendar-header {
322
+ border-bottom: 1px solid $gray-border;
323
+ background-color: white;
324
+
325
+ h3 {
326
+ color: black !important;
327
+ }
328
+ }
97
329
  }
98
330
 
99
331
  .container {
100
332
  .block {
101
333
  .searchSections {
334
+ border: 1px solid $gray-border;
335
+
102
336
  .searchSections-background {
103
337
  display: none;
104
338
  }
@@ -106,19 +340,22 @@
106
340
  h2.text-secondary {
107
341
  color: $link-color !important;
108
342
  }
109
-
110
- border: 1px solid $gray-border;
111
343
  }
112
344
  }
113
345
  }
114
346
 
115
347
  div.block.listing {
348
+ page-break-inside: avoid;
349
+
116
350
  .full-width {
117
351
  right: unset !important;
118
352
  left: unset !important;
119
353
  width: 100% !important;
354
+ padding-top: 10px !important;
355
+ padding-bottom: 10px !important;
120
356
  margin-right: 0 !important;
121
357
  margin-left: 0 !important;
358
+ page-break-inside: avoid;
122
359
 
123
360
  .container {
124
361
  max-width: 100% !important;
@@ -145,13 +382,671 @@
145
382
  &.inEvidenceTemplate {
146
383
  .in-evidence-cards-wrapper {
147
384
  display: flex;
385
+ flex-direction: column;
148
386
  flex-wrap: wrap;
149
387
  justify-content: space-between;
388
+ gap: 10px;
150
389
 
151
390
  .card-wrapper {
152
391
  flex: 0 0 30%;
392
+ page-break-inside: avoid;
393
+
394
+ .card {
395
+ page-break-inside: avoid;
396
+
397
+ .img-responsive-wrapper {
398
+ height: 150px;
399
+
400
+ .img-responsive {
401
+ height: 100%;
402
+ }
403
+ }
404
+
405
+ h3 {
406
+ font-size: 1.2rem;
407
+ }
408
+ }
409
+ }
410
+ }
411
+ }
412
+
413
+ .link-button,
414
+ .link-more-button-align-right {
415
+ display: none;
416
+ }
417
+
418
+ div.pagination-wrapper {
419
+ position: relative;
420
+
421
+ nav.pagination-wrapper {
422
+ display: none;
423
+ }
424
+ }
425
+
426
+ // listing cards
427
+ .card.card-teaser {
428
+ padding: 10px;
429
+ margin: 10px;
430
+ }
431
+
432
+ .card-big-io-comune .card-body .card-title a {
433
+ font-size: 1.2rem;
434
+ }
435
+
436
+ .card {
437
+ .rassegna-info {
438
+ margin-bottom: 0px !important;
439
+ }
440
+
441
+ &:after {
442
+ display: none;
443
+ }
444
+ }
445
+
446
+ .card .card-body {
447
+ .category-top {
448
+ margin-bottom: 10px;
449
+
450
+ .icon {
451
+ height: 1rem;
452
+ }
453
+ }
454
+ }
455
+
456
+ // simple card template - compatto
457
+ &.simpleCard {
458
+ .simple-card-compact-template {
459
+ page-break-inside: avoid;
460
+
461
+ .card-teaser-wrapper {
462
+ flex-direction: column;
463
+ margin-bottom: none;
464
+
465
+ &:after {
466
+ display: none;
467
+ }
468
+
469
+ .card-title a {
470
+ font-size: 1.3rem;
471
+ }
472
+ }
473
+ }
474
+
475
+ // simple card template - default
476
+ .simple-card-default {
477
+ page-break-inside: avoid;
478
+
479
+ .template-header.with-filters .path-filter-buttons {
480
+ display: none;
481
+ }
482
+
483
+ .card-teaser-wrapper {
484
+ flex-direction: column;
485
+
486
+ .card-body {
487
+ padding-bottom: 0px !important;
488
+
489
+ .category-top {
490
+ // margin-bottom: 0px;
491
+ .icon {
492
+ height: 1rem;
493
+ }
494
+ }
495
+
496
+ .card-title {
497
+ margin-bottom: 0px;
498
+ }
499
+
500
+ .card-text {
501
+ margin-bottom: 0px !important;
502
+ }
503
+ }
504
+ }
505
+ }
506
+ }
507
+
508
+ // card with image
509
+ &.cardWithImageTemplate {
510
+ .card-with-image-template {
511
+ flex-direction: column;
512
+
513
+ .col-item.col-xl-4 {
514
+ width: 100%;
515
+ max-width: 100%;
516
+ margin-bottom: 5px !important;
517
+
518
+ .card-wrapper {
519
+ .card {
520
+ page-break-inside: avoid;
521
+
522
+ .img-responsive-wrapper {
523
+ height: 100px;
524
+
525
+ .img-responsive {
526
+ height: 100%;
527
+ }
528
+ }
529
+ }
530
+ }
531
+ }
532
+ }
533
+
534
+ // card with image - card persona
535
+ .card-persona.card-flex {
536
+ .card-body {
537
+ padding: 10px;
538
+
539
+ .card-title {
540
+ margin-bottom: 0px;
541
+ }
542
+
543
+ .card-text {
544
+ margin-top: 5px;
545
+ }
546
+ }
547
+
548
+ .card-image img {
549
+ height: 120px !important;
550
+ }
551
+ }
552
+ }
553
+
554
+ // content in evidence - contenuto in evidenza
555
+ &.contentInEvidenceTemplate {
556
+ .content-in-evidence {
557
+ page-break-inside: avoid;
558
+
559
+ .item-image {
560
+ height: 100px;
561
+ }
562
+
563
+ .card-title a {
564
+ font-size: 1.2rem;
565
+ }
566
+
567
+ .read-more {
568
+ display: none;
569
+ }
570
+
571
+ .event-recurrences-more {
572
+ margin-top: 10px;
573
+ }
574
+ }
575
+ }
576
+
577
+ // ribbon card - card con nastro
578
+ &.ribbonCardTemplate {
579
+ .mb-4.row {
580
+ flex-direction: column;
581
+
582
+ .col-lg-4 {
583
+ width: 100%;
584
+ max-width: 100%;
585
+ flex: 0 0 100%;
586
+
587
+ .card {
588
+ .flag-icon {
589
+ display: none;
590
+ }
591
+
592
+ .etichetta {
593
+ top: 10px;
594
+ right: 10px;
595
+ }
596
+
597
+ .read-more {
598
+ display: none;
599
+ }
600
+ }
601
+ }
602
+ }
603
+ }
604
+
605
+ // card with slide up text - card con testo animato
606
+ &.cardSlideUpTextTemplate {
607
+ .card-slide-text-template {
608
+ .grid {
609
+ display: flex;
610
+ flex-direction: column;
611
+ margin-top: 0px !important;
612
+ gap: 10px 0px;
613
+
614
+ .listing-item.box {
615
+ height: auto;
616
+ padding: 10px;
617
+ border: 1px solid #c5c7c9;
618
+ margin-bottom: 10px;
619
+
620
+ .category {
621
+ padding: 0px;
622
+ background-color: transparent;
623
+
624
+ &:after {
625
+ border-top: 0px;
626
+ }
627
+ }
628
+
629
+ .title {
630
+ margin-bottom: 0px;
631
+ font-size: 1.2rem;
632
+ }
633
+ }
634
+ }
635
+ }
636
+ }
637
+
638
+ // squares image - quadratoni con immagine
639
+ &.quaresImageTemplate {
640
+ .squares-image-template {
641
+ .grid {
642
+ display: flex;
643
+ flex-direction: column;
644
+ margin-top: 0px !important;
645
+ gap: 10px;
646
+
647
+ .box {
648
+ height: auto;
649
+ padding: 10px;
650
+ }
651
+ }
652
+ }
653
+ }
654
+
655
+ // complete block links - link completi
656
+ &.completeBlockLinksTemplate {
657
+ .complete-block-links-template {
658
+ .items.row {
659
+ flex-direction: column;
660
+
661
+ .col-item {
662
+ margin-bottom: 10px;
663
+
664
+ &.col-lg-3 {
665
+ width: 100%;
666
+ max-width: 100%;
667
+ }
668
+
669
+ .card {
670
+ .image-container {
671
+ margin: 10px 0px 0px 10px;
672
+ }
673
+
674
+ .card-body {
675
+ padding: 10px;
676
+
677
+ .card-title {
678
+ margin-bottom: 0px !important;
679
+ }
680
+ }
681
+ }
682
+ }
683
+ }
684
+ }
685
+ }
686
+
687
+ // slider
688
+ &.slider {
689
+ .sliderTemplate {
690
+ .slick-track {
691
+ min-height: auto;
692
+ }
693
+
694
+ .play-pause-wrapper {
695
+ display: none;
696
+ }
697
+
698
+ .slide-wrapper {
699
+ border: 1px solid $gray-border;
700
+
701
+ .slide-title {
702
+ border-top: 1px solid $gray-border;
703
+ background-color: white;
704
+
705
+ a {
706
+ color: $link-color;
707
+ }
708
+ }
709
+ }
710
+ }
711
+ }
712
+
713
+ // bandi in evidence - bandi in evidenza
714
+ &.bandiInEvidenceTemplate {
715
+ .card {
716
+ .read-more {
717
+ display: none;
718
+ }
719
+
720
+ .card-wrapper {
721
+ flex: 0 0 33%;
722
+ }
723
+ }
724
+ }
725
+
726
+ &.contentInEvidenceTemplate {
727
+ .img-wrapper img {
728
+ max-height: 200px;
729
+ }
730
+
731
+ .card-body {
732
+ padding-bottom: 24px !important;
733
+ }
734
+ }
735
+
736
+ &.ribbonCardTemplate {
737
+ .card-wrapper .card.card-big {
738
+ position: relative;
739
+ margin: 0;
740
+
741
+ .etichetta {
742
+ position: relative;
743
+ top: 10px;
744
+ right: 0px;
745
+ left: 0;
746
+ width: 100%;
747
+ max-width: 100%;
748
+ justify-content: flex-start;
749
+
750
+ .icon {
751
+ margin-left: 5px;
752
+ }
753
+ }
754
+
755
+ .card-body {
756
+ padding: 20px;
757
+
758
+ .dates {
759
+ margin: 7px 0 10px;
760
+ }
761
+ }
762
+ }
763
+ }
764
+
765
+ &.cardSlideUpTextTemplate .box {
766
+ height: auto;
767
+
768
+ .category {
769
+ border: 1px solid black;
770
+ background-color: white;
771
+ color: $body-color;
772
+
773
+ &::after {
774
+ top: -1px;
775
+ border-top-color: black;
776
+ }
777
+ }
778
+ }
779
+
780
+ &.quaresImageTemplate {
781
+ .squares-image-template .grid {
782
+ gap: 1rem 1.4rem;
783
+ }
784
+
785
+ .box .title {
786
+ color: $body-color;
787
+ font-size: 1.1rem;
788
+ }
789
+
790
+ .box.bg-img::before {
791
+ border: 1px solid $gray-border;
792
+ background-color: white !important;
793
+ }
794
+ }
795
+
796
+ &.completeBlockLinksTemplate {
797
+ .col-item.col-lg-3 {
798
+ width: 33%;
799
+ }
800
+
801
+ .card-wrapper {
802
+ padding: 0.5rem;
803
+ }
804
+ }
805
+ }
806
+
807
+ // media
808
+ .block.video,
809
+ .block.video_gallery {
810
+ max-width: 50%;
811
+
812
+ &,
813
+ & .video-wrapper {
814
+ .ui.embed .icon-play {
815
+ display: flex;
816
+ width: 2rem;
817
+ height: 2rem;
818
+ align-items: center;
819
+ justify-content: center;
820
+
821
+ svg {
822
+ height: 1rem;
823
+ fill: #000;
824
+ }
825
+ }
826
+ }
827
+ }
828
+
829
+ //hero
830
+ .block.hero {
831
+ .hero-body {
832
+ .read-more {
833
+ display: none;
834
+ }
835
+ }
836
+ }
837
+
838
+ //search
839
+ .block.search {
840
+ .search-results {
841
+ .template-wrapper {
842
+ padding: 10px !important;
843
+
844
+ .card-wrapper {
845
+ flex-direction: column;
846
+ }
847
+ }
848
+ }
849
+ }
850
+
851
+ // html
852
+ .block.html {
853
+ &.py-5 {
854
+ padding: 10px 0px !important;
855
+ }
856
+ }
857
+
858
+ .table,
859
+ .slate-table-block {
860
+ display: table !important;
861
+
862
+ &.ui.table.inverted {
863
+ color: $body-color;
864
+
865
+ & > :not(caption) > * > * {
866
+ background-color: white;
867
+ }
868
+ }
869
+ }
870
+
871
+ .block.rssBlock {
872
+ .link-button {
873
+ display: none;
874
+ }
875
+ }
876
+
877
+ .block.cta-block .cta-block-wrapper.full-width {
878
+ padding: 10px 0px;
879
+ border: 1px solid $gray-border;
880
+ background-color: white !important;
881
+
882
+ .title {
883
+ margin-bottom: 10px;
884
+ font-size: 1.2rem;
885
+ }
886
+
887
+ p {
888
+ margin-top: 10px;
889
+ }
890
+
891
+ .title,
892
+ p,
893
+ p a {
894
+ color: $body-color !important;
895
+ }
896
+
897
+ // cta button div
898
+ .mt-5 {
899
+ margin-top: 10px !important;
900
+ }
901
+ }
902
+
903
+ .block.count_down {
904
+ .public-ui .block-content {
905
+ padding: 1rem;
906
+
907
+ .background-image {
908
+ border: 1px solid $gray-border;
909
+ background-color: white !important;
910
+
911
+ &::after {
912
+ display: none;
913
+ }
914
+ }
915
+
916
+ p,
917
+ p a:not(.btn),
918
+ .countdown {
919
+ color: $body-color;
920
+ }
921
+
922
+ .count-down-timer {
923
+ padding-bottom: 1rem;
924
+ border: 1px solid $gray-border;
925
+ page-break-after: avoid;
926
+ page-break-before: avoid;
927
+
928
+ .expired {
929
+ padding: 10px;
930
+ font-size: 1.5rem;
931
+ }
932
+
933
+ .interval .number {
934
+ font-size: 1.5rem;
153
935
  }
154
936
  }
155
937
  }
156
938
  }
939
+
940
+ .block.highlitedContent {
941
+ .card {
942
+ &:after {
943
+ display: none;
944
+ }
945
+
946
+ .category-top {
947
+ margin-bottom: 10px;
948
+
949
+ .icon {
950
+ height: 1rem;
951
+ }
952
+ }
953
+
954
+ .card-title {
955
+ margin-bottom: 10px !important;
956
+
957
+ a {
958
+ font-size: 1.2rem;
959
+ }
960
+ }
961
+
962
+ .card-text {
963
+ margin-top: 0px !important;
964
+ }
965
+
966
+ .read-more {
967
+ display: none;
968
+ }
969
+ }
970
+ }
971
+
972
+ .calendar {
973
+ .template-header {
974
+ h2 {
975
+ margin-top: 10px !important;
976
+ font-size: 1.5rem;
977
+ }
978
+ }
979
+
980
+ .calendar-body {
981
+ padding: 0rem;
982
+ }
983
+
984
+ .link-more-container {
985
+ display: none;
986
+ }
987
+ }
988
+
989
+ .argumentInEvidence {
990
+ .argumentInEvidence-background {
991
+ + .argumentsCardsWrapper {
992
+ padding-top: 10px !important;
993
+
994
+ h2 {
995
+ color: #000 !important;
996
+ }
997
+
998
+ .grid.mt-5 {
999
+ display: flex;
1000
+ flex-direction: column;
1001
+ margin-top: 10px !important;
1002
+
1003
+ .card {
1004
+ &:after {
1005
+ display: none;
1006
+ }
1007
+
1008
+ .card-body {
1009
+ padding: 10px;
1010
+
1011
+ .icon-argument-container {
1012
+ width: 1rem;
1013
+ min-width: 1rem;
1014
+ height: 1rem;
1015
+ min-height: 1rem;
1016
+ }
1017
+
1018
+ .card-title {
1019
+ margin-bottom: 10px !important;
1020
+ font-size: 1.2rem;
1021
+ }
1022
+
1023
+ .card-text {
1024
+ margin-top: 0px !important;
1025
+ }
1026
+
1027
+ .read-more {
1028
+ display: none;
1029
+ }
1030
+ }
1031
+ }
1032
+ }
1033
+ }
1034
+ }
1035
+ }
1036
+
1037
+ // hide slick arrows and dots
1038
+ .slick-slider {
1039
+ .slick-arrow {
1040
+ display: none !important;
1041
+ }
1042
+
1043
+ .slick-dots {
1044
+ display: none !important;
1045
+ }
1046
+ }
1047
+
1048
+ // override mb-3 inside argumentsInEvidence
1049
+ .public-ui .argumentInEvidence .mb-3 {
1050
+ margin-bottom: 0px !important;
1051
+ }
157
1052
  }