epfl-elements 4.2.0 → 4.3.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 (29) hide show
  1. package/assets/config/variables.scss +3 -2
  2. package/dist/components/atoms/nav-user/nav-user-login.twig +6 -0
  3. package/dist/components/atoms/nav-user/nav-user.twig +16 -0
  4. package/dist/components/atoms/nav-user/nav-user.yml +10 -0
  5. package/dist/components/atoms/tag/tag.twig +6 -6
  6. package/dist/components/content-types/event/event-listing-featured.twig +3 -3
  7. package/dist/components/content-types/event/event-listing.twig +3 -3
  8. package/dist/components/content-types/event/event.twig +46 -16
  9. package/dist/components/molecules/card/card-event.twig +7 -0
  10. package/dist/components/molecules/list-group/list-group-event.twig +74 -0
  11. package/dist/components/organisms/footer/footer-buttons.twig +3 -3
  12. package/dist/components/organisms/header/header-light.twig +12 -1
  13. package/dist/components/organisms/header/header.twig +4 -0
  14. package/dist/components/organisms/restauration/restauration.twig +4 -4
  15. package/dist/components/pages/association-homepage/association-homepage.twig +1 -1
  16. package/dist/components/pages/event-list/event-list.twig +13 -13
  17. package/dist/components/pages/lab-homepage/lab-homepage.twig +4 -0
  18. package/dist/css/elements.css +479 -77
  19. package/dist/css/elements.min.css +1 -1
  20. package/dist/css/elements.min.css.map +1 -1
  21. package/dist/css/reader.css +58 -59
  22. package/dist/css/reader.min.css +1 -1
  23. package/dist/css/reader.min.css.map +1 -1
  24. package/dist/docs/user documentation/reports.md +27 -22
  25. package/dist/js/reader.js +93 -66
  26. package/dist/js/reader.min.js +1 -1
  27. package/dist/js/reader.min.js.map +1 -1
  28. package/dist/package.json +14 -6
  29. package/package.json +8 -5
@@ -11656,6 +11656,44 @@ body > .site > .main-container + .bg-gray-100 {
11656
11656
  margin-top: 0.625em;
11657
11657
  }
11658
11658
 
11659
+ .btn:disabled, .btn.disabled,
11660
+ button:disabled,
11661
+ button.disabled,
11662
+ button.btn:disabled,
11663
+ button.btn.disabled,
11664
+ input[type=button]:disabled,
11665
+ input[type=button].disabled {
11666
+ opacity: 1;
11667
+ }
11668
+ .btn:focus, .btn.focus-visible, .btn.focus,
11669
+ button:focus,
11670
+ button.focus-visible,
11671
+ button.focus,
11672
+ button.btn:focus,
11673
+ button.btn.focus-visible,
11674
+ button.btn.focus,
11675
+ input[type=button]:focus,
11676
+ input[type=button].focus-visible,
11677
+ input[type=button].focus {
11678
+ outline-width: 2px !important;
11679
+ outline-style: solid !important;
11680
+ outline-offset: 2px;
11681
+ }
11682
+ .btn:focus, .btn:focus-visible, .btn.focus,
11683
+ button:focus,
11684
+ button:focus-visible,
11685
+ button.focus,
11686
+ button.btn:focus,
11687
+ button.btn:focus-visible,
11688
+ button.btn.focus,
11689
+ input[type=button]:focus,
11690
+ input[type=button]:focus-visible,
11691
+ input[type=button].focus {
11692
+ outline-width: 2px !important;
11693
+ outline-style: solid !important;
11694
+ outline-offset: 2px;
11695
+ }
11696
+
11659
11697
  .btn {
11660
11698
  text-decoration: none;
11661
11699
  white-space: normal;
@@ -11663,10 +11701,7 @@ body > .site > .main-container + .bg-gray-100 {
11663
11701
  transition: background 0.15s, color 0.15s, border-color 0.15s;
11664
11702
  }
11665
11703
  .btn:before {
11666
- border-width: 2px;
11667
- }
11668
- .btn:disabled, .btn.disabled {
11669
- opacity: 1;
11704
+ content: none;
11670
11705
  }
11671
11706
 
11672
11707
  .btn-primary {
@@ -11676,8 +11711,11 @@ body > .site > .main-container + .bg-gray-100 {
11676
11711
  background: #b51f1f;
11677
11712
  border-color: #b51f1f;
11678
11713
  }
11679
- .btn-primary:focus:before, .btn-primary.focus:before {
11680
- border-color: #b51f1f;
11714
+ .btn-primary:focus, .btn-primary.focus-visible, .btn-primary.focus {
11715
+ outline-color: #b51f1f !important;
11716
+ }
11717
+ .btn-primary:focus, .btn-primary:focus-visible, .btn-primary.focus {
11718
+ outline-color: #b51f1f !important;
11681
11719
  }
11682
11720
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
11683
11721
  background: #891818;
@@ -11713,8 +11751,11 @@ body > .site > .main-container + .bg-gray-100 {
11713
11751
  background: transparent;
11714
11752
  border-color: #e6e6e6;
11715
11753
  }
11716
- .btn-secondary:focus:before, .btn-secondary.focus:before {
11717
- border-color: #707070;
11754
+ .btn-secondary:focus, .btn-secondary.focus-visible, .btn-secondary.focus {
11755
+ outline-color: #707070 !important;
11756
+ }
11757
+ .btn-secondary:focus, .btn-secondary:focus-visible, .btn-secondary.focus {
11758
+ outline-color: #707070 !important;
11718
11759
  }
11719
11760
  .bg-dark .btn-secondary:focus, .bg-dark .btn-secondary.focus {
11720
11761
  border-color: #e6e6e6;
@@ -11781,21 +11822,27 @@ a.tag:hover {
11781
11822
  text-decoration: none;
11782
11823
  background: #fff;
11783
11824
  border: 1px solid #c1c1c1;
11825
+ font-size: inherit;
11784
11826
  line-height: 1;
11785
11827
  font-weight: 400;
11786
11828
  color: #343a40;
11787
11829
  border-radius: 2px;
11788
- -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
11789
- transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
11830
+ -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
11831
+ transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
11832
+ vertical-align: middle;
11790
11833
  }
11791
11834
  .tag .remove {
11792
11835
  text-decoration: none;
11793
11836
  float: right;
11837
+ padding: 0;
11838
+ border: 0;
11794
11839
  font-size: 1.25em;
11795
11840
  line-height: 0.5em;
11796
11841
  margin-top: 0.2em;
11797
11842
  margin-left: 0.3em;
11798
11843
  color: inherit;
11844
+ -webkit-transition: all 0.2s ease-in-out;
11845
+ transition: all 0.2s ease-in-out;
11799
11846
  }
11800
11847
  .tag .remove:hover {
11801
11848
  color: #ff0000;
@@ -11833,6 +11880,110 @@ a.tag:hover {
11833
11880
  border-bottom: 1px solid #212121;
11834
11881
  }
11835
11882
 
11883
+ a.tag > *,
11884
+ .btn.tag > *,
11885
+ button.tag > * {
11886
+ vertical-align: middle;
11887
+ }
11888
+ a.tag .remove,
11889
+ .btn.tag .remove,
11890
+ button.tag .remove {
11891
+ width: 1.25rem;
11892
+ height: 1.25rem;
11893
+ margin-top: -1px;
11894
+ margin-bottom: -1px;
11895
+ margin-right: -2px;
11896
+ background: #e6e6e6;
11897
+ border-radius: 2px;
11898
+ line-height: 1.3rem;
11899
+ text-align: center;
11900
+ }
11901
+ a.tag:hover, a.tag:focus,
11902
+ .btn.tag:hover,
11903
+ .btn.tag:focus,
11904
+ button.tag:hover,
11905
+ button.tag:focus {
11906
+ border-color: #212121;
11907
+ }
11908
+ a.tag:hover .remove, a.tag:focus .remove,
11909
+ .btn.tag:hover .remove,
11910
+ .btn.tag:focus .remove,
11911
+ button.tag:hover .remove,
11912
+ button.tag:focus .remove {
11913
+ background: #ff0000;
11914
+ color: #fff;
11915
+ }
11916
+ a.tag:focus, a.tag.focus-visible, a.tag.focus,
11917
+ .btn.tag:focus,
11918
+ .btn.tag.focus-visible,
11919
+ .btn.tag.focus,
11920
+ button.tag:focus,
11921
+ button.tag.focus-visible,
11922
+ button.tag.focus {
11923
+ outline: solid 2px #ff0000 !important;
11924
+ outline-offset: 2px;
11925
+ }
11926
+ a.tag:focus, a.tag:focus-visible, a.tag.focus,
11927
+ .btn.tag:focus,
11928
+ .btn.tag:focus-visible,
11929
+ .btn.tag.focus,
11930
+ button.tag:focus,
11931
+ button.tag:focus-visible,
11932
+ button.tag.focus {
11933
+ outline: solid 2px #ff0000 !important;
11934
+ outline-offset: 2px;
11935
+ }
11936
+ a.tag.tag-secondary:focus, a.tag.tag-secondary.focus-visible, a.tag.tag-secondary.focus, a.tag.tag-plain:focus, a.tag.tag-plain.focus-visible, a.tag.tag-plain.focus,
11937
+ .btn.tag.tag-secondary:focus,
11938
+ .btn.tag.tag-secondary.focus-visible,
11939
+ .btn.tag.tag-secondary.focus,
11940
+ .btn.tag.tag-plain:focus,
11941
+ .btn.tag.tag-plain.focus-visible,
11942
+ .btn.tag.tag-plain.focus,
11943
+ button.tag.tag-secondary:focus,
11944
+ button.tag.tag-secondary.focus-visible,
11945
+ button.tag.tag-secondary.focus,
11946
+ button.tag.tag-plain:focus,
11947
+ button.tag.tag-plain.focus-visible,
11948
+ button.tag.tag-plain.focus {
11949
+ outline-color: #707070 !important;
11950
+ }
11951
+ a.tag.tag-secondary:focus, a.tag.tag-secondary:focus-visible, a.tag.tag-secondary.focus, a.tag.tag-plain:focus, a.tag.tag-plain:focus-visible, a.tag.tag-plain.focus,
11952
+ .btn.tag.tag-secondary:focus,
11953
+ .btn.tag.tag-secondary:focus-visible,
11954
+ .btn.tag.tag-secondary.focus,
11955
+ .btn.tag.tag-plain:focus,
11956
+ .btn.tag.tag-plain:focus-visible,
11957
+ .btn.tag.tag-plain.focus,
11958
+ button.tag.tag-secondary:focus,
11959
+ button.tag.tag-secondary:focus-visible,
11960
+ button.tag.tag-secondary.focus,
11961
+ button.tag.tag-plain:focus,
11962
+ button.tag.tag-plain:focus-visible,
11963
+ button.tag.tag-plain.focus {
11964
+ outline-color: #707070 !important;
11965
+ }
11966
+ a.tag.tag-plain .remove,
11967
+ .btn.tag.tag-plain .remove,
11968
+ button.tag.tag-plain .remove {
11969
+ color: #212121;
11970
+ }
11971
+ a.tag.tag-plain:hover, a.tag.tag-plain:focus,
11972
+ .btn.tag.tag-plain:hover,
11973
+ .btn.tag.tag-plain:focus,
11974
+ button.tag.tag-plain:hover,
11975
+ button.tag.tag-plain:focus {
11976
+ border-color: #212121;
11977
+ }
11978
+ a.tag.tag-plain:hover .remove, a.tag.tag-plain:focus .remove,
11979
+ .btn.tag.tag-plain:hover .remove,
11980
+ .btn.tag.tag-plain:focus .remove,
11981
+ button.tag.tag-plain:hover .remove,
11982
+ button.tag.tag-plain:focus .remove {
11983
+ background: #fff;
11984
+ color: #ff0000;
11985
+ }
11986
+
11836
11987
  .tag-group {
11837
11988
  padding: 1em;
11838
11989
  background: #f2f2f2;
@@ -11857,6 +12008,13 @@ a.tag:hover {
11857
12008
  border: 1px solid #c1c1c1;
11858
12009
  }
11859
12010
 
12011
+ .btn.tag.tag-sm .remove,
12012
+ .tag-input-sm .tag.btn .remove {
12013
+ width: 1rem;
12014
+ height: 1rem;
12015
+ line-height: 1rem;
12016
+ }
12017
+
11860
12018
  .selectize-control {
11861
12019
  cursor: text;
11862
12020
  }
@@ -12073,11 +12231,11 @@ a.tag:hover {
12073
12231
  }
12074
12232
 
12075
12233
  .collapse-title {
12076
- color: #212121;
12077
12234
  position: relative;
12078
12235
  padding: 0;
12079
12236
  background: none;
12080
12237
  border: none;
12238
+ color: #212121;
12081
12239
  -webkit-transition: color 0.15s, -webkit-box-shadow 0.25s;
12082
12240
  transition: color 0.15s, -webkit-box-shadow 0.25s;
12083
12241
  transition: box-shadow 0.25s, color 0.15s;
@@ -12096,7 +12254,9 @@ a.tag:hover {
12096
12254
  transition: opacity 0.3s, -webkit-transform 0.2s;
12097
12255
  transition: opacity 0.3s, transform 0.2s;
12098
12256
  transition: opacity 0.3s, transform 0.2s, -webkit-transform 0.2s;
12099
- z-index: -1;
12257
+ /* z-index: $zindex-background;
12258
+ with z-index:-1 the pseudo element is hidden if the section has a background color - ak*/
12259
+ z-index: 0;
12100
12260
  }
12101
12261
  .collapse-title:focus {
12102
12262
  outline: none;
@@ -12171,7 +12331,15 @@ a.tag:hover {
12171
12331
  margin-bottom: 0;
12172
12332
  }
12173
12333
 
12174
- .collapse-item::after {
12334
+ button.collapse-title:focus, button.collapse-title.focus-visible {
12335
+ outline: 0 !important;
12336
+ }
12337
+
12338
+ button.collapse-title:focus, button.collapse-title:focus-visible {
12339
+ outline: 0 !important;
12340
+ }
12341
+
12342
+ .collapse-item:after {
12175
12343
  content: "";
12176
12344
  display: block;
12177
12345
  padding-top: 2rem;
@@ -12207,7 +12375,7 @@ header.collapse-title p {
12207
12375
  }
12208
12376
  }
12209
12377
 
12210
- header.collapse-title + .collapse-item::before {
12378
+ header.collapse-title + .collapse-item:before {
12211
12379
  content: "";
12212
12380
  display: block;
12213
12381
  padding-top: 0.5rem;
@@ -12427,7 +12595,19 @@ header.collapse-title + .collapse-item::before {
12427
12595
  padding: 0 2.1em 0 1.1em;
12428
12596
  -webkit-transform: translateY(-50%);
12429
12597
  transform: translateY(-50%);
12598
+ -webkit-transition: all 0.3s ease-in-out;
12599
+ transition: all 0.3s ease-in-out;
12430
12600
  text-decoration: underline;
12601
+ text-decoration-thickness: 0.08em;
12602
+ text-underline-offset: 2px;
12603
+ }
12604
+ .drawer .drawer-link.focus-visible .text {
12605
+ text-decoration-thickness: 0.2em;
12606
+ text-underline-offset: 4px;
12607
+ }
12608
+ .drawer .drawer-link:focus-visible .text {
12609
+ text-decoration-thickness: 0.2em;
12610
+ text-underline-offset: 4px;
12431
12611
  }
12432
12612
  .drawer .drawer-toggle {
12433
12613
  display: block;
@@ -12455,10 +12635,24 @@ header.collapse-title + .collapse-item::before {
12455
12635
  .drawer .drawer-toggle:hover {
12456
12636
  background: #b51f1f;
12457
12637
  }
12638
+ .drawer .drawer-toggle:focus, .drawer .drawer-toggle.focus-visible {
12639
+ outline: 0 !important;
12640
+ }
12641
+ .drawer .drawer-toggle:focus, .drawer .drawer-toggle:focus-visible {
12642
+ outline: 0 !important;
12643
+ }
12458
12644
  .drawer.open .drawer-toggle .icon {
12459
12645
  -webkit-transform: rotate(180deg) translateY(50%);
12460
12646
  transform: rotate(180deg) translateY(50%);
12461
12647
  }
12648
+ .drawer[focus-within] {
12649
+ outline: 2px solid #b51f1f;
12650
+ outline-offset: 2px;
12651
+ }
12652
+ .drawer:focus-within {
12653
+ outline: 2px solid #b51f1f;
12654
+ outline-offset: 2px;
12655
+ }
12462
12656
 
12463
12657
  .icon {
12464
12658
  display: -webkit-inline-box;
@@ -12727,12 +12921,11 @@ header.collapse-title + .collapse-item::before {
12727
12921
  .nav-lang .dropdown-toggle,
12728
12922
  .nav-lang .dropdown-item {
12729
12923
  width: auto;
12730
- height: 2.125rem;
12731
- padding: 0.4rem 1.5rem 0.4rem 0.5rem;
12924
+ height: 2.5rem;
12925
+ padding: 0.5rem 1.5rem 0.5rem 0.625rem;
12732
12926
  }
12733
12927
  .nav-lang .icon {
12734
- -webkit-transform: translateY(0.1rem);
12735
- transform: translateY(0.1rem);
12928
+ display: none;
12736
12929
  }
12737
12930
  }
12738
12931
  .nav-toggle-mobile {
@@ -12747,13 +12940,18 @@ header.collapse-title + .collapse-item::before {
12747
12940
  -ms-flex-align: baseline;
12748
12941
  align-items: baseline;
12749
12942
  margin: 0;
12750
- padding: 0.8rem 0.9rem;
12943
+ padding: 0.8125rem 0.875rem;
12751
12944
  font-size: 1rem;
12752
12945
  font-weight: bold !important;
12753
12946
  }
12754
12947
  @media (min-width: 576px) {
12755
12948
  .nav-toggle-mobile {
12756
- padding: 0.625rem 0.9rem;
12949
+ padding: 0.5rem 0.9375rem;
12950
+ }
12951
+ }
12952
+ @media (min-width: 768px) {
12953
+ .nav-toggle-mobile {
12954
+ padding: 0.625rem 0.9375rem;
12757
12955
  }
12758
12956
  }
12759
12957
  @media (max-width: 575.98px) {
@@ -13090,9 +13288,9 @@ ol ol ol > li:before {
13090
13288
  counter-increment: third-item;
13091
13289
  }
13092
13290
  ol ul > li:before {
13291
+ top: 0.7rem;
13093
13292
  background: transparent;
13094
13293
  border: 1px solid #ff0000;
13095
- top: 0.7rem;
13096
13294
  }
13097
13295
 
13098
13296
  .list-unstyled li,
@@ -13205,8 +13403,8 @@ picture .img-fluid {
13205
13403
  text-overflow: ellipsis;
13206
13404
  }
13207
13405
  .ms-choice > span.placeholder {
13208
- color: #707070;
13209
13406
  font-size: 1rem;
13407
+ color: #707070;
13210
13408
  }
13211
13409
  .ms-choice > div {
13212
13410
  position: absolute;
@@ -13468,6 +13666,26 @@ a.social-icon:hover, a.social-icon:focus {
13468
13666
  opacity: 0;
13469
13667
  z-index: -1;
13470
13668
  }
13669
+ .upload-input:focus + label.btn, .upload-input.focus-visible + label.btn {
13670
+ outline: 2px solid;
13671
+ outline-offset: 2px;
13672
+ }
13673
+ .upload-input:focus + label.btn, .upload-input:focus-visible + label.btn {
13674
+ outline: 2px solid;
13675
+ outline-offset: 2px;
13676
+ }
13677
+ .upload-input:focus + label.btn-primary, .upload-input.focus-visible + label.btn-primary {
13678
+ outline-color: #b51f1f;
13679
+ }
13680
+ .upload-input:focus + label.btn-primary, .upload-input:focus-visible + label.btn-primary {
13681
+ outline-color: #b51f1f;
13682
+ }
13683
+ .upload-input:focus + label.btn-secondary, .upload-input.focus-visible + label.btn-secondary {
13684
+ outline-color: #707070;
13685
+ }
13686
+ .upload-input:focus + label.btn-secondary, .upload-input:focus-visible + label.btn-secondary {
13687
+ outline-color: #707070;
13688
+ }
13471
13689
 
13472
13690
  .dropdown-item {
13473
13691
  text-decoration: none;
@@ -13476,6 +13694,26 @@ a.social-icon:hover, a.social-icon:focus {
13476
13694
  background: #ff0000;
13477
13695
  color: #fff !important;
13478
13696
  }
13697
+ .dropdown-item .icon {
13698
+ margin-right: 0.25rem;
13699
+ vertical-align: middle;
13700
+ }
13701
+ .dropdown-item .icon + * {
13702
+ vertical-align: middle;
13703
+ }
13704
+
13705
+ li.dropdown-item:before {
13706
+ content: none;
13707
+ }
13708
+
13709
+ .dropdown .dropdown-toggle:after {
13710
+ -webkit-transition: all 0.3s ease-in-out;
13711
+ transition: all 0.3s ease-in-out;
13712
+ }
13713
+ .dropdown.show .dropdown-toggle:after {
13714
+ -webkit-transform: rotate(180deg);
13715
+ transform: rotate(180deg);
13716
+ }
13479
13717
 
13480
13718
  .nav-toggle {
13481
13719
  display: none;
@@ -13841,6 +14079,140 @@ figcaption {
13841
14079
  animation: rotation 1s linear infinite;
13842
14080
  }
13843
14081
 
14082
+ .user-dropdown .btn {
14083
+ display: -webkit-box;
14084
+ display: -ms-flexbox;
14085
+ display: flex;
14086
+ -webkit-box-align: center;
14087
+ -ms-flex-align: center;
14088
+ align-items: center;
14089
+ padding: 0.35rem 0.7rem;
14090
+ border: 0;
14091
+ }
14092
+ .user-dropdown .btn .user-avatar {
14093
+ --avatar-size: 2.5rem;
14094
+ -ms-flex-preferred-size: var(--avatar-size);
14095
+ flex-basis: var(--avatar-size);
14096
+ width: var(--avatar-size);
14097
+ }
14098
+ @media (min-width: 576px) {
14099
+ .user-dropdown .btn .user-avatar {
14100
+ --avatar-size: 2.625rem;
14101
+ }
14102
+ }
14103
+ @media (min-width: 768px) {
14104
+ .user-dropdown .btn .user-avatar {
14105
+ --avatar-size: 2.875rem;
14106
+ }
14107
+ }
14108
+ .user-dropdown .btn p {
14109
+ margin: 0 0.5rem 0 1rem;
14110
+ }
14111
+
14112
+ .header .nav-user {
14113
+ margin-left: auto;
14114
+ }
14115
+ .header .nav-user + .nav-lang {
14116
+ margin-left: 0 !important;
14117
+ }
14118
+
14119
+ .nav-user.user-login {
14120
+ position: relative;
14121
+ padding-left: 1.5rem;
14122
+ }
14123
+ .nav-user.user-login .icon {
14124
+ position: absolute;
14125
+ top: 4px;
14126
+ left: 0;
14127
+ margin-right: 0.25rem;
14128
+ }
14129
+
14130
+ @media (max-width: 1199.98px) {
14131
+ .header .nav-user {
14132
+ margin-left: 1rem;
14133
+ margin-right: 1rem;
14134
+ }
14135
+ }
14136
+ @media (max-width: 767.98px) {
14137
+ .header .nav-user-login {
14138
+ padding: 0;
14139
+ }
14140
+ .header .nav-user-login .user-login-link {
14141
+ padding: 0.5em;
14142
+ }
14143
+ .header .nav-user-login .label {
14144
+ position: absolute;
14145
+ width: 1px;
14146
+ height: 1px;
14147
+ padding: 0;
14148
+ margin: -1px;
14149
+ overflow: hidden;
14150
+ clip: rect(0, 0, 0, 0);
14151
+ white-space: nowrap;
14152
+ border: 0;
14153
+ }
14154
+ .header .nav-user-login .icon {
14155
+ position: static;
14156
+ width: 1.25rem;
14157
+ height: 1.25rem;
14158
+ margin: 0;
14159
+ }
14160
+ .header .nav-user {
14161
+ margin-left: 0.5rem;
14162
+ margin-right: 0.5rem;
14163
+ }
14164
+ .header .nav-user + .nav-lang-short > ul {
14165
+ padding-left: 0 !important;
14166
+ }
14167
+ .header .nav-user .btn {
14168
+ padding: 0.35rem;
14169
+ }
14170
+ .header .nav-user:not(.show) .btn {
14171
+ border-radius: 50%;
14172
+ }
14173
+ .header .nav-user:not(.show) .btn:after {
14174
+ content: none;
14175
+ }
14176
+ .header .nav-user:not(.show) .user-name {
14177
+ position: absolute;
14178
+ width: 1px;
14179
+ height: 1px;
14180
+ padding: 0;
14181
+ margin: -1px;
14182
+ overflow: hidden;
14183
+ clip: rect(0, 0, 0, 0);
14184
+ white-space: nowrap;
14185
+ border: 0;
14186
+ }
14187
+ .header .nav-user.show {
14188
+ position: fixed;
14189
+ top: 0.625rem;
14190
+ right: 0.75rem;
14191
+ left: 0.75rem;
14192
+ margin: 0;
14193
+ background: white;
14194
+ z-index: 1199;
14195
+ }
14196
+ .header .nav-user.show .btn {
14197
+ width: 100%;
14198
+ padding-left: 0.68rem;
14199
+ padding-right: 0.68rem;
14200
+ border: 2px solid #707070;
14201
+ border-bottom: 0;
14202
+ border-radius: 2px 2px 0 0;
14203
+ }
14204
+ .header .nav-user.show .btn:after {
14205
+ margin-left: auto;
14206
+ }
14207
+ .header .nav-user.show .dropdown-menu {
14208
+ top: -2px !important;
14209
+ left: 0 !important;
14210
+ width: 100%;
14211
+ border: 2px solid #707070;
14212
+ border-top: 0;
14213
+ border-radius: 0 0 2px 2px;
14214
+ }
14215
+ }
13844
14216
  .search {
13845
14217
  -webkit-box-flex: 0;
13846
14218
  -ms-flex: 0 0 auto;
@@ -14201,9 +14573,27 @@ a.card-gray:hover .card-body {
14201
14573
  content: " –";
14202
14574
  }
14203
14575
  .card-info .event-info:after,
14204
- .card-info .event-info-date:after {
14576
+ .card-info .event-info-date:after,
14577
+ .card-info .card-info-date.event-date:after {
14205
14578
  content: none;
14206
14579
  }
14580
+ .card-info .event-info-date .event-date,
14581
+ .card-info .event-info-date .event-time,
14582
+ .card-info .event-info-date .icon {
14583
+ display: inline-block;
14584
+ vertical-align: middle;
14585
+ }
14586
+ .card-info .event-info-date .icon {
14587
+ width: 18px;
14588
+ height: 18px;
14589
+ color: #707070;
14590
+ }
14591
+ .card-info .event-info-date .icon:not(:first-child) {
14592
+ margin-left: 0.5em;
14593
+ }
14594
+ .card-info .event-info > span {
14595
+ display: block;
14596
+ }
14207
14597
  .card-info a {
14208
14598
  display: inline-block;
14209
14599
  color: #ff0000;
@@ -14332,28 +14722,6 @@ p + .card-info {
14332
14722
  padding: 0.25rem 0;
14333
14723
  }
14334
14724
 
14335
- .card-info .event-date:not(:last-child):after {
14336
- content: " –";
14337
- }
14338
- .card-info .event-time:not(:last-of-type):after {
14339
- content: " ›";
14340
- margin: 0 0.25em 0 0.15em;
14341
- }
14342
- .card-info .event-info-date .event-date,
14343
- .card-info .event-info-date .event-time,
14344
- .card-info .event-info-date .icon {
14345
- display: inline-block;
14346
- vertical-align: middle;
14347
- }
14348
- .card-info .event-info-date .icon {
14349
- color: #707070;
14350
- height: 18px;
14351
- width: 18px;
14352
- }
14353
- .card-info .event-info > span {
14354
- display: block;
14355
- }
14356
-
14357
14725
  a.card-img-top {
14358
14726
  position: relative;
14359
14727
  }
@@ -15232,10 +15600,10 @@ article aside {
15232
15600
  padding-right: 40px;
15233
15601
  }
15234
15602
  .search-container .icon {
15235
- color: #c1c1c1;
15236
15603
  position: absolute;
15237
15604
  top: 50%;
15238
15605
  right: 0.75rem;
15606
+ color: #c1c1c1;
15239
15607
  -webkit-transform: translateY(-50%);
15240
15608
  transform: translateY(-50%);
15241
15609
  -webkit-transition: color 0.3s;
@@ -16000,6 +16368,9 @@ ol.flickity-page-dots li:before {
16000
16368
  .breadcrumb-item a:hover {
16001
16369
  color: #212121;
16002
16370
  }
16371
+ .breadcrumb-item .tag {
16372
+ vertical-align: baseline;
16373
+ }
16003
16374
  .breadcrumb-item .icon {
16004
16375
  top: -0.08em;
16005
16376
  font-size: 0.86em;
@@ -17352,9 +17723,6 @@ ol.flickity-page-dots li:before {
17352
17723
  -webkit-transition: padding 0.15s;
17353
17724
  transition: padding 0.15s;
17354
17725
  }
17355
- .fullwidth-teaser-header .btn:before {
17356
- border: none;
17357
- }
17358
17726
  .fullwidth-teaser-header .btn:hover, .fullwidth-teaser-header .btn:focus {
17359
17727
  background: #b30000;
17360
17728
  color: #fff;
@@ -17368,6 +17736,20 @@ ol.flickity-page-dots li:before {
17368
17736
  background: none;
17369
17737
  border-top-color: #b30000;
17370
17738
  }
17739
+ .fullwidth-teaser-header .btn:active:after {
17740
+ border-top-color: #891818;
17741
+ }
17742
+ .fullwidth-teaser-header .btn:focus {
17743
+ outline: 0 !important;
17744
+ }
17745
+ .fullwidth-teaser-header .btn.focus-visible {
17746
+ outline: 2px solid #fff !important;
17747
+ outline-offset: -4px !important;
17748
+ }
17749
+ .fullwidth-teaser-header .btn:focus-visible {
17750
+ outline: 2px solid #fff !important;
17751
+ outline-offset: -4px !important;
17752
+ }
17371
17753
 
17372
17754
  .fullwidth-teaser-content {
17373
17755
  padding: 1rem 0 0;
@@ -18503,8 +18885,8 @@ a.nav-arrow:hover .icon-container {
18503
18885
  text-decoration: none;
18504
18886
  }
18505
18887
  .header-light p.site-title {
18506
- font-weight: 700;
18507
18888
  line-height: 1.1em;
18889
+ font-weight: 700;
18508
18890
  }
18509
18891
  .header-light .drawer {
18510
18892
  margin-left: -0.9rem;
@@ -18541,12 +18923,12 @@ a.nav-arrow:hover .icon-container {
18541
18923
  align-items: center;
18542
18924
  }
18543
18925
  @media (max-width: 767.98px) {
18544
- .header-light .header-light-content .nav-toggle-mobile {
18926
+ .header-light .header-light-content :not(.nav-lang.dropdown):not(.nav-user) + .nav-toggle-mobile {
18545
18927
  padding: 0.5rem 0.9rem;
18546
18928
  }
18547
18929
  }
18548
18930
  @media (max-width: 575.98px) {
18549
- .header-light .header-light-content .nav-toggle-mobile {
18931
+ .header-light .header-light-content :not(.nav-lang.dropdown):not(.nav-user) + .nav-toggle-mobile {
18550
18932
  padding: 0.625rem 0.9rem;
18551
18933
  }
18552
18934
  }
@@ -19237,6 +19619,10 @@ a.cc-link {
19237
19619
  color: #ff0000;
19238
19620
  }
19239
19621
 
19622
+ .event-info p {
19623
+ margin-bottom: 0;
19624
+ }
19625
+
19240
19626
  .list-events .list-group-teaser-content .card-title {
19241
19627
  max-width: 660px;
19242
19628
  }
@@ -19285,12 +19671,12 @@ a.cc-link {
19285
19671
  margin-bottom: 0;
19286
19672
  }
19287
19673
  .list-group.list-events-featured .list-group-teaser-container {
19674
+ height: 100%;
19288
19675
  background: #fff;
19289
19676
  -webkit-box-orient: vertical;
19290
19677
  -webkit-box-direction: normal;
19291
19678
  -ms-flex-direction: column;
19292
19679
  flex-direction: column;
19293
- height: 100%;
19294
19680
  }
19295
19681
  .list-group.list-events-featured .list-group-teaser-container .btn-secondary:hover, .list-group.list-events-featured .list-group-teaser-container .btn-secondary:active, .list-group.list-events-featured .list-group-teaser-container .btn-secondary:focus {
19296
19682
  background: #fff;
@@ -20089,8 +20475,8 @@ article.blog-post footer {
20089
20475
  }
20090
20476
 
20091
20477
  .error-title {
20092
- color: #ff0000;
20093
20478
  font-size: 12vw;
20479
+ color: #ff0000;
20094
20480
  margin-bottom: 0.75rem;
20095
20481
  text-align: center;
20096
20482
  }
@@ -20112,55 +20498,71 @@ article.blog-post footer {
20112
20498
  margin-left: -10px;
20113
20499
  margin-right: -10px;
20114
20500
  }
20115
- .events-filters form .form-group-search {
20116
- -ms-flex-preferred-size: 100%;
20117
- flex-basis: 100%;
20118
- }
20119
- .events-filters form .form-group-search .search-container {
20120
- margin: 0;
20121
- }
20122
20501
  .events-filters form > * {
20123
20502
  -webkit-box-flex: 1;
20124
20503
  -ms-flex-positive: 1;
20125
20504
  flex-grow: 1;
20505
+ max-width: 100%;
20126
20506
  padding-left: 10px;
20127
20507
  padding-right: 10px;
20128
20508
  }
20129
- .events-filters .select-multiple .ms-drop,
20130
- .events-filters .select-multiple .ms-drop ul,
20131
- .events-filters .dropdown .picker__table {
20132
- width: auto;
20509
+ .events-filters form .form-group {
20510
+ width: 100%;
20133
20511
  }
20134
- .events-filters .dropdown {
20512
+ .events-filters form .dropdown {
20513
+ width: 100%;
20135
20514
  margin-bottom: 1rem;
20136
20515
  }
20137
- .events-filters .dropdown button {
20516
+ .events-filters form .dropdown button {
20138
20517
  display: -webkit-box;
20139
20518
  display: -ms-flexbox;
20140
20519
  display: flex;
20520
+ width: 100%;
20521
+ padding: 0.375rem 0.75rem;
20141
20522
  -webkit-box-pack: justify;
20142
20523
  -ms-flex-pack: justify;
20143
20524
  justify-content: space-between;
20144
20525
  -webkit-box-align: center;
20145
20526
  -ms-flex-align: center;
20146
20527
  align-items: center;
20147
- padding: 0.375rem 0.75rem;
20148
20528
  text-align: left;
20149
- width: 100%;
20150
20529
  }
20151
- .events-filters .dropdown .dropdown-menu.show {
20152
- left: auto !important;
20530
+ .events-filters form .dropdown .dropdown-menu.show {
20531
+ top: 38px !important;
20153
20532
  right: 0;
20533
+ left: auto !important;
20154
20534
  -webkit-transform: none !important;
20155
20535
  transform: none !important;
20156
- top: 38px !important;
20157
20536
  }
20158
- .events-filters .dropdown .picker__holder {
20537
+ .events-filters form .dropdown .picker__holder {
20159
20538
  border: 0;
20160
20539
  }
20161
- @media (max-width: 991.98px) {
20162
- .events-filters .dropdown {
20163
- -ms-flex-preferred-size: 100%;
20164
- flex-basis: 100%;
20540
+ @media (min-width: 768px) {
20541
+ .events-filters form .form-group,
20542
+ .events-filters form .dropdown {
20543
+ width: 25%;
20165
20544
  }
20545
+ .events-filters form .form-group-categories {
20546
+ width: 100%;
20547
+ }
20548
+ }
20549
+ @media (min-width: 992px) {
20550
+ .events-filters form .form-group,
20551
+ .events-filters form .dropdown {
20552
+ width: 15%;
20553
+ }
20554
+ .events-filters form .form-group-categories {
20555
+ width: 30%;
20556
+ }
20557
+ }
20558
+ .events-filters form .form-group-search {
20559
+ width: 100%;
20560
+ }
20561
+ .events-filters form .form-group-search .search-container {
20562
+ margin: 0;
20563
+ }
20564
+ .events-filters .select-multiple .ms-drop,
20565
+ .events-filters .select-multiple .ms-drop ul,
20566
+ .events-filters .dropdown .picker__table {
20567
+ width: auto;
20166
20568
  }