@civicactions/cmsds-open-data-components 3.6.0-rc.2 → 3.7.0-alpha.2
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/dist/main.css +143 -431
- package/dist/main.css.map +1 -1
- package/dist/main.js +580 -710
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +22 -121
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -1,51 +1,5 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
display: none;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.dkan-c-nav-submenu {
|
|
7
|
-
position: relative;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.dkan-c-nav-submenu.open .dkan-c-site-menu--sub-menu {
|
|
11
|
-
display: block;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.dkan-c-header--mobile .dkan-c-site-menu--sub-menu a svg {
|
|
15
|
-
display: none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.dkan-c-header--desktop .dkan-c-site-menu--sub-menu {
|
|
19
|
-
background: var(--header-submenu--bg-color);
|
|
20
|
-
width: var(--header-submenu--width);
|
|
21
|
-
z-index: 999;
|
|
22
|
-
margin: 0;
|
|
23
|
-
padding: 16px;
|
|
24
|
-
position: absolute;
|
|
25
|
-
top: 48px;
|
|
26
|
-
left: 0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.dkan-c-header--desktop .dkan-c-site-menu--sub-menu a {
|
|
30
|
-
text-align: left;
|
|
31
|
-
padding: 16px;
|
|
32
|
-
display: flex;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.dkan-c-header--desktop .dkan-c-site-menu--sub-menu a span {
|
|
36
|
-
border-bottom: 2px solid #0000;
|
|
37
|
-
margin-left: 8px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.dkan-c-header--desktop .dkan-c-site-menu--sub-menu a:hover span, .dkan-c-header--desktop .dkan-c-site-menu--sub-menu a:focus span {
|
|
41
|
-
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.dkan-c-cms-topnav-menu ul {
|
|
45
|
-
justify-content: end;
|
|
46
|
-
margin: 0;
|
|
47
|
-
padding: 0;
|
|
48
|
-
list-style: none;
|
|
1
|
+
nav.dc-c-site-menu .dc-c-header--links a.dc-c-active-link span {
|
|
2
|
+
border-bottom: 2px solid var(--color-primary-light);
|
|
49
3
|
}
|
|
50
4
|
|
|
51
5
|
:root {
|
|
@@ -530,29 +484,16 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .dkan-datatable-fu
|
|
|
530
484
|
max-height: calc(100vh - 473px);
|
|
531
485
|
}
|
|
532
486
|
|
|
533
|
-
:
|
|
534
|
-
|
|
535
|
-
--cms-top-nav-height: 87px;
|
|
536
|
-
--main-nav-height: 100px;
|
|
537
|
-
--header-bg-color: var(--color-primary);
|
|
538
|
-
--header-bg-image: linear-gradient(90deg, var(--color-primary-darkest) 10%, var(--color-primary) 90%);
|
|
539
|
-
--header-nav-link--color: var(--color-white);
|
|
540
|
-
--header-nav-link--mobile-color: var(--color-white);
|
|
541
|
-
--header-mobile-bg-color: var(--color-gray-dark);
|
|
542
|
-
--header-submenu--bg-color: var(--color-primary);
|
|
543
|
-
--header-submenu--width: 300px;
|
|
544
|
-
--header-nav-search--color: var(--color-white);
|
|
545
|
-
--tag-line--color: #6f757c;
|
|
546
|
-
--tag-line--border-color: #6f757c;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.dkan-c-main-navigation > div > div {
|
|
550
|
-
height: var(--main-nav-height);
|
|
487
|
+
.dc-c-mobile-header--menu :focus {
|
|
488
|
+
box-shadow: 0 0 0 3px #0000, 0 0 4px 6px #0000;
|
|
551
489
|
}
|
|
552
490
|
|
|
553
|
-
.
|
|
554
|
-
|
|
555
|
-
|
|
491
|
+
.dc-c-mobile-header--menu :focus-visible {
|
|
492
|
+
border-radius: var(--button__border-radius);
|
|
493
|
+
box-shadow: 0 0 0 3px var(--color-focus-light), 0 0 4px 6px var(--color-focus-dark);
|
|
494
|
+
outline-offset: 3px;
|
|
495
|
+
background-color: #0000;
|
|
496
|
+
outline: 3px solid #0000;
|
|
556
497
|
}
|
|
557
498
|
|
|
558
499
|
.ds-c-usa-banner__button-text:after {
|
|
@@ -619,6 +560,18 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .dkan-datatable-fu
|
|
|
619
560
|
left: -100%;
|
|
620
561
|
}
|
|
621
562
|
|
|
563
|
+
.dc-c-mobile-header .dc-c-site-menu--sub-menu {
|
|
564
|
+
background: none;
|
|
565
|
+
width: auto;
|
|
566
|
+
position: relative;
|
|
567
|
+
top: -24px;
|
|
568
|
+
left: auto;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.dc-c-mobile-header .dc-c-site-menu--sub-menu a {
|
|
572
|
+
padding: 8px;
|
|
573
|
+
}
|
|
574
|
+
|
|
622
575
|
.dc-c-cmsheader {
|
|
623
576
|
background: var(--color-white);
|
|
624
577
|
position: relative;
|
|
@@ -652,6 +605,26 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .dkan-datatable-fu
|
|
|
652
605
|
border-bottom: 2px solid var(--color-primary-light);
|
|
653
606
|
}
|
|
654
607
|
|
|
608
|
+
.has-submenu > button:after {
|
|
609
|
+
content: "";
|
|
610
|
+
color: var(--color-white);
|
|
611
|
+
text-align: center;
|
|
612
|
+
vertical-align: middle;
|
|
613
|
+
width: 18px;
|
|
614
|
+
height: 18px;
|
|
615
|
+
margin-left: 10px;
|
|
616
|
+
padding-right: 10px;
|
|
617
|
+
font-family: "Font Awesome 6 Pro";
|
|
618
|
+
font-size: 18px;
|
|
619
|
+
font-weight: lighter;
|
|
620
|
+
line-height: 18px;
|
|
621
|
+
display: inline-block;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.has-submenu.open > button:after {
|
|
625
|
+
content: "";
|
|
626
|
+
}
|
|
627
|
+
|
|
655
628
|
.dc-c-header--mobile-links button {
|
|
656
629
|
padding: 0;
|
|
657
630
|
font-weight: 700;
|
|
@@ -675,6 +648,42 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .dkan-datatable-fu
|
|
|
675
648
|
left: 0;
|
|
676
649
|
}
|
|
677
650
|
|
|
651
|
+
.cms-link-container {
|
|
652
|
+
border-right: none;
|
|
653
|
+
margin-right: 20px;
|
|
654
|
+
display: block;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.cms-link-container a {
|
|
658
|
+
border-bottom: none;
|
|
659
|
+
margin-right: 20px;
|
|
660
|
+
text-decoration: none;
|
|
661
|
+
display: inline-block;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.cms-link-container a:before {
|
|
665
|
+
content: "";
|
|
666
|
+
color: #323a45;
|
|
667
|
+
text-align: center;
|
|
668
|
+
vertical-align: middle;
|
|
669
|
+
width: 18px;
|
|
670
|
+
height: 18px;
|
|
671
|
+
margin-left: 10px;
|
|
672
|
+
padding-right: 10px;
|
|
673
|
+
font-family: "Font Awesome 6 Pro";
|
|
674
|
+
font-size: 18px;
|
|
675
|
+
font-weight: lighter;
|
|
676
|
+
line-height: 18px;
|
|
677
|
+
display: inline-block;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.cms-link-container img {
|
|
681
|
+
vertical-align: middle;
|
|
682
|
+
width: 90px;
|
|
683
|
+
height: auto;
|
|
684
|
+
display: inline-block;
|
|
685
|
+
}
|
|
686
|
+
|
|
678
687
|
.cms-text-container {
|
|
679
688
|
color: #6f757c;
|
|
680
689
|
padding-top: 28px;
|
|
@@ -708,6 +717,36 @@ dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .dkan-datatable-fu
|
|
|
708
717
|
}
|
|
709
718
|
}
|
|
710
719
|
|
|
720
|
+
@media (width >= 1024px) {
|
|
721
|
+
.cms-link-container {
|
|
722
|
+
float: left;
|
|
723
|
+
border-right: 1px solid #d6d7d9;
|
|
724
|
+
width: 240px;
|
|
725
|
+
height: 85px;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.cms-link-container a {
|
|
729
|
+
margin-top: 28px;
|
|
730
|
+
margin-bottom: 20px;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.cms-link-container img {
|
|
734
|
+
vertical-align: middle;
|
|
735
|
+
width: auto;
|
|
736
|
+
max-width: 80%;
|
|
737
|
+
height: auto;
|
|
738
|
+
display: inline-block;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.cms-link-container a:before {
|
|
742
|
+
width: 28px;
|
|
743
|
+
height: 28px;
|
|
744
|
+
margin-left: 0;
|
|
745
|
+
font-size: 28px;
|
|
746
|
+
line-height: 28px;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
711
750
|
nav.dc-c-site-menu .dc-c-header--links {
|
|
712
751
|
margin: 0;
|
|
713
752
|
padding: 0;
|
|
@@ -750,6 +789,41 @@ nav.dc-c-site-menu .dc-c-header--links a:focus, .dc-c-site-title a:focus {
|
|
|
750
789
|
text-decoration: none;
|
|
751
790
|
}
|
|
752
791
|
|
|
792
|
+
nav > ul li ul {
|
|
793
|
+
display: none;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
nav > ul li.open ul {
|
|
797
|
+
display: block;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
li.has-submenu {
|
|
801
|
+
position: relative;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.dc-c-site-menu--sub-menu {
|
|
805
|
+
background: var(--color-primary);
|
|
806
|
+
width: 300px;
|
|
807
|
+
margin: 0;
|
|
808
|
+
padding: 0;
|
|
809
|
+
position: absolute;
|
|
810
|
+
top: 48px;
|
|
811
|
+
left: 0;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.dc-c-site-menu--sub-menu a {
|
|
815
|
+
padding: 16px;
|
|
816
|
+
display: block;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.dc-c-site-menu--sub-menu a span {
|
|
820
|
+
border-bottom: 2px solid #0000;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.dc-c-site-menu--sub-menu a:hover span, .dc-c-site-menu--sub-menu a:focus span {
|
|
824
|
+
border-bottom: 2px solid var(--color-primary-light);
|
|
825
|
+
}
|
|
826
|
+
|
|
753
827
|
.dc-c-site-title a {
|
|
754
828
|
text-decoration: none;
|
|
755
829
|
}
|
|
@@ -775,10 +849,6 @@ nav.dc-c-site-menu .dc-c-header--links a:focus, .dc-c-site-title a:focus {
|
|
|
775
849
|
display: inline-block;
|
|
776
850
|
}
|
|
777
851
|
|
|
778
|
-
nav.dc-c-site-menu .dc-c-header--links a.dc-c-active-link span {
|
|
779
|
-
border-bottom: 2px solid var(--color-primary-light);
|
|
780
|
-
}
|
|
781
|
-
|
|
782
852
|
.ds-c-button.display-settings-font {
|
|
783
853
|
font: inherit;
|
|
784
854
|
}
|
|
@@ -840,362 +910,4 @@ nav.dc-c-site-menu .dc-c-header--links a.dc-c-active-link span {
|
|
|
840
910
|
.dc-c-resource-header--buttons {
|
|
841
911
|
display: flex;
|
|
842
912
|
}
|
|
843
|
-
|
|
844
|
-
.dkan-c-cms-topnav--tagline {
|
|
845
|
-
color: var(--tag-line--color);
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.dkan-c-header--mobile .dkan-c-cms-topnav--tagline {
|
|
849
|
-
display: none;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.dkan-c-header--desktop .dkan-c-cms-topnav--tagline {
|
|
853
|
-
border-left: 1px solid var(--tag-line--border-color);
|
|
854
|
-
align-items: center;
|
|
855
|
-
display: inline-flex;
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
:root {
|
|
859
|
-
--header-nav-icon-link--desktop-width: 240px;
|
|
860
|
-
--header-nav-icon-link--mobile-width: 90px;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
.dkan-c-header-nav-icon-link {
|
|
864
|
-
border-right: none;
|
|
865
|
-
align-items: center;
|
|
866
|
-
display: inline-flex;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.dkan-c-header-nav-icon-link a {
|
|
870
|
-
border-bottom: none;
|
|
871
|
-
text-decoration: none;
|
|
872
|
-
display: inline-block;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.dkan-c-header-nav-icon-link a:focus, .dkan-c-header-nav-icon-link a:hover {
|
|
876
|
-
background-color: #0000;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.dkan-c-header-nav-icon-link.show-back-arrow a:before {
|
|
880
|
-
content: "";
|
|
881
|
-
color: #323a45;
|
|
882
|
-
text-align: center;
|
|
883
|
-
vertical-align: middle;
|
|
884
|
-
width: 18px;
|
|
885
|
-
height: 18px;
|
|
886
|
-
margin-left: 10px;
|
|
887
|
-
padding-right: 10px;
|
|
888
|
-
font-family: "Font Awesome 6 Pro";
|
|
889
|
-
font-size: 18px;
|
|
890
|
-
font-weight: lighter;
|
|
891
|
-
line-height: 18px;
|
|
892
|
-
display: inline-block;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.dkan-c-header-nav-icon-link img {
|
|
896
|
-
vertical-align: middle;
|
|
897
|
-
height: auto;
|
|
898
|
-
display: inline-block;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.dkan-c-header--mobile .dkan-c-header-nav-icon-link img {
|
|
902
|
-
width: var(--header-nav-icon-link--mobile-width);
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.dkan-c-header--desktop .dkan-c-header-nav-icon-link img {
|
|
906
|
-
width: var(--header-nav-icon-link--desktop-width);
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.dkan-c-cms-topnav {
|
|
910
|
-
height: 51px;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.dkan-c-cms-topnav > div {
|
|
914
|
-
height: 100%;
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
.dkan-c-cms-topnav .dkan-c-cms-topnav-menu a {
|
|
918
|
-
margin: 3px 7px;
|
|
919
|
-
display: inline-block;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.dkan-c-cms-topnav--menu ul {
|
|
923
|
-
margin: 0;
|
|
924
|
-
padding: 0;
|
|
925
|
-
list-style: none;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
.dkan-c-cms-topnav .dkan-c-cms-topnav--tagline {
|
|
929
|
-
height: 100%;
|
|
930
|
-
margin-left: 16px;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
@media screen and (width <= 544px) {
|
|
934
|
-
.dkan-c-cms-topnav {
|
|
935
|
-
display: none;
|
|
936
|
-
}
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
@media screen and (width >= 1024px) {
|
|
940
|
-
.dkan-c-cms-topnav {
|
|
941
|
-
height: 85px;
|
|
942
|
-
}
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button span {
|
|
946
|
-
border-bottom: 2px solid #0000;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile {
|
|
950
|
-
display: none;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button {
|
|
954
|
-
color: var(--header-nav-link--mobile-color);
|
|
955
|
-
text-decoration: none;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:hover, .dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:focus {
|
|
959
|
-
color: var(--header-nav-link--mobile-color);
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:hover span, .dkan-c-header--mobile .dkan-c-nav-menu--mobile .dkan-c-header-search--modal-button:focus span {
|
|
963
|
-
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
.dkan-c-header-search--modal-button:before {
|
|
967
|
-
content: "";
|
|
968
|
-
text-align: center;
|
|
969
|
-
vertical-align: middle;
|
|
970
|
-
box-sizing: content-box;
|
|
971
|
-
width: 18px;
|
|
972
|
-
height: 18px;
|
|
973
|
-
margin-left: 10px;
|
|
974
|
-
padding-right: 10px;
|
|
975
|
-
font-family: "Font Awesome 6 Pro";
|
|
976
|
-
font-size: 18px;
|
|
977
|
-
font-weight: lighter;
|
|
978
|
-
line-height: 18px;
|
|
979
|
-
display: inline-block;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button {
|
|
983
|
-
color: var(--header-nav-search--color);
|
|
984
|
-
text-decoration: none;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button:focus, .dkan-c-main-navigation--search .dkan-c-header-search--modal-button:hover {
|
|
988
|
-
color: var(--header-nav-search--color);
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
.dkan-c-main-navigation--search .dkan-c-header-search--modal-button:focus span, .dkan-c-main-navigation--search .dkan-c-header-search--modal-button:hover span {
|
|
992
|
-
border-bottom-color: var(--header-nav-search--color);
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
.dkan-c-header--desktop .dkan-c-main-navigation--search {
|
|
996
|
-
border-left: 2px solid var(--header-nav-search--color);
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
.dkan-c-header--desktop .dkan-c-nav-menu--desktop .dkan-c-main-navigation--search {
|
|
1000
|
-
display: none;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
.dkan-c-header--link-list {
|
|
1004
|
-
list-style: none;
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
.dkan-c-header--wrapper {
|
|
1008
|
-
flex-wrap: nowrap !important;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.dkan-c-header--link-list .dkan-c-header--link span, .dkan-c-header--link-list .dkan-c-header--link + ul a span {
|
|
1012
|
-
border-bottom: 2px solid #0000;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
.dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a {
|
|
1016
|
-
color: var(--header-nav-link--mobile-color);
|
|
1017
|
-
text-decoration: none;
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
.dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:hover, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:focus, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:hover, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:focus {
|
|
1021
|
-
color: var(--header-nav-link--mobile-color);
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
.dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:hover span, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link:focus span, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:hover span, .dkan-c-header--mobile .dkan-c-header--link-list .dkan-c-header--link + ul a:focus span {
|
|
1025
|
-
border-bottom-color: var(--header-nav-link--mobile-color);
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
.dkan-c-header--mobile .dkan-c-nav-menu ul {
|
|
1029
|
-
padding-inline-start: 0;
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--close {
|
|
1033
|
-
display: none;
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
.dkan-c-header--mobile .dkan-c-nav-menu--open {
|
|
1037
|
-
background-color: var(--header-mobile-bg-color);
|
|
1038
|
-
z-index: 500;
|
|
1039
|
-
transition-property: left;
|
|
1040
|
-
transition-duration: var(--mobile-nav-animation-time);
|
|
1041
|
-
flex: none;
|
|
1042
|
-
width: 100%;
|
|
1043
|
-
max-width: 100%;
|
|
1044
|
-
height: 100%;
|
|
1045
|
-
padding: 50px 0;
|
|
1046
|
-
display: block;
|
|
1047
|
-
position: fixed;
|
|
1048
|
-
top: 0;
|
|
1049
|
-
bottom: 0;
|
|
1050
|
-
left: 0;
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
.dkan-c-header--mobile .dkan-c-nav-menu .dkan-c-top-nav {
|
|
1054
|
-
display: inherit;
|
|
1055
|
-
padding-top: 8px;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.dkan-c-header--mobile .dkan-c-nav-menu .dkan-c-top-nav:before {
|
|
1059
|
-
background: var(--color-primary-light);
|
|
1060
|
-
content: "";
|
|
1061
|
-
width: 48px;
|
|
1062
|
-
height: 2px;
|
|
1063
|
-
margin-left: 24px;
|
|
1064
|
-
display: block;
|
|
1065
|
-
position: absolute;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
.dkan-c-header--mobile .dkan-c-nav-menu .dkan-c-top-nav ul {
|
|
1069
|
-
padding-top: 16px;
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
.dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link, .dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link + ul a {
|
|
1073
|
-
color: var(--header-nav-link--color);
|
|
1074
|
-
padding: var(--space, 8px 8px);
|
|
1075
|
-
text-decoration: none;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
.dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link:hover span, .dkan-c-header--desktop ul.dkan-c-header--link-list .dkan-c-header--link + ul a:hover span {
|
|
1079
|
-
border-bottom-color: var(--header-nav-link--color);
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.dkan-c-header--desktop .dkan-c-header--link-list {
|
|
1083
|
-
margin-block: 0;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.dkan-c-header--desktop .dkan-c-main-nav {
|
|
1087
|
-
flex-direction: row;
|
|
1088
|
-
justify-content: end;
|
|
1089
|
-
display: flex;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
.dkan-c-header--desktop .dkan-c-nav-menu--mobile-close-button {
|
|
1093
|
-
display: none;
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
.dkan-c-header--desktop .dkan-c-header--link-list {
|
|
1097
|
-
flex-direction: row;
|
|
1098
|
-
display: flex;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
.dkan-c-header--desktop .dkan-c-nav-menu .dkan-c-top-nav {
|
|
1102
|
-
display: none;
|
|
1103
|
-
}
|
|
1104
|
-
|
|
1105
|
-
:root {
|
|
1106
|
-
--mobile-menu-button--color: var(--color-white);
|
|
1107
|
-
--mobile-menu-button--hover-color: var(--color-white);
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
.dkan-c-header--desktop .dkan-c-mobile-menu-button {
|
|
1111
|
-
display: none;
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
.dkan-c-header--mobile .dkan-c-mobile-menu-button {
|
|
1115
|
-
display: inherit;
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
button.dkan-c-mobile-menu-button {
|
|
1119
|
-
color: var(--mobile-menu-button--color);
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
button.dkan-c-mobile-menu-button:before {
|
|
1123
|
-
color: var(--mobile-menu-button--color);
|
|
1124
|
-
text-align: center;
|
|
1125
|
-
vertical-align: middle;
|
|
1126
|
-
box-sizing: content-box;
|
|
1127
|
-
width: 18px;
|
|
1128
|
-
height: 18px;
|
|
1129
|
-
margin-left: 10px;
|
|
1130
|
-
padding-right: 10px;
|
|
1131
|
-
font-family: "Font Awesome 6 Pro";
|
|
1132
|
-
font-size: 18px;
|
|
1133
|
-
font-weight: lighter;
|
|
1134
|
-
line-height: 18px;
|
|
1135
|
-
display: inline-block;
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
button.dkan-c-mobile-menu-button:hover, button.dkan-c-mobile-menu-button:hover:before {
|
|
1139
|
-
color: var(--mobile-menu-button--hover-color);
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
button.dkan-c-mobile-menu-button--open:before {
|
|
1143
|
-
content: "";
|
|
1144
|
-
}
|
|
1145
|
-
|
|
1146
|
-
div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
1147
|
-
border-radius: 4px;
|
|
1148
|
-
border-top: 8px solid var(--color-secondary) !important;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
.dkan-c-sidebar-nav ul {
|
|
1152
|
-
margin: 0;
|
|
1153
|
-
padding: 0;
|
|
1154
|
-
list-style: none;
|
|
1155
|
-
display: block;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
.dkan-c-sidebar-nav-link, .dkan-c-sidebar-nav-link:visited {
|
|
1159
|
-
color: var(--color-base);
|
|
1160
|
-
text-decoration: none;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
.dkan-c-sidebar-nav-link:hover, .dkan-c-sidebar-nav-link:visited:hover {
|
|
1164
|
-
text-decoration: underline;
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
.dkan-c-sidebar-nav-link-status {
|
|
1168
|
-
border: 2px solid var(--color-gray-lighter);
|
|
1169
|
-
border-radius: 2px;
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
.active .dkan-c-sidebar-nav-link-status {
|
|
1173
|
-
border: 2px solid var(--color-primary-darker);
|
|
1174
|
-
border-radius: 2px;
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1177
|
-
.dkan-c-sidebar-nav--mobile {
|
|
1178
|
-
margin-bottom: 32px;
|
|
1179
|
-
}
|
|
1180
|
-
|
|
1181
|
-
.dkan-c-sidebar-nav--mobile .dkan-c-sidebar-nav-menu--open {
|
|
1182
|
-
display: inherit;
|
|
1183
|
-
}
|
|
1184
|
-
|
|
1185
|
-
.dkan-c-sidebar-nav--mobile .dkan-c-sidebar-nav-menu--close {
|
|
1186
|
-
display: none;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
.dkan-c-sidebar-nav--mobile .dkan-c-sidebar-nav--mobile-header {
|
|
1190
|
-
margin-top: -32px;
|
|
1191
|
-
display: flex;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
.dkan-c-sidebar-nav--desktop .dkan-c-sidebar-nav--mobile-header {
|
|
1195
|
-
display: none;
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
.dkan-c-sidebar-nav--mobile {
|
|
1199
|
-
display: inherit;
|
|
1200
|
-
}
|
|
1201
913
|
/*# sourceMappingURL=main.css.map */
|