@cagovweb/state-template 6.6.0-beta4 → 6.6.0-beta6
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/css/cagov.core.css +124 -165
- package/dist/css/cagov.core.flat.css +88 -120
- package/dist/css/cagov.core.min.css +1 -1
- package/dist/css/colortheme-ukiah-night.css +1 -0
- package/dist/css/colortheme-ukiah-night.min.css +1 -1
- package/dist/css/colortheme-ventura-night.css +1 -0
- package/dist/css/colortheme-ventura-night.min.css +1 -1
- package/dist/js/cagov.core.js +2 -121
- package/dist/js/cagov.core.min.js +2 -2
- package/dist/readme.md +2 -2
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
/*! State Web Template Version 6.6.0-
|
|
2
|
+
/*! State Web Template Version 6.6.0-beta6 */
|
|
3
3
|
@charset "UTF-8";
|
|
4
4
|
/*!
|
|
5
5
|
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
@@ -14904,6 +14904,10 @@ a.list-group-item {
|
|
|
14904
14904
|
|
|
14905
14905
|
/* this is how wide website will go on desktop */
|
|
14906
14906
|
@media (min-width: 1200px) {
|
|
14907
|
+
.container-xl,
|
|
14908
|
+
.container-lg,
|
|
14909
|
+
.container-md,
|
|
14910
|
+
.container-sm,
|
|
14907
14911
|
.container {
|
|
14908
14912
|
max-width: var(--breakpoint-lg);
|
|
14909
14913
|
}
|
|
@@ -16223,7 +16227,7 @@ div.search-results-header form .gsc-search-button {
|
|
|
16223
16227
|
.gs-result a.gs-title:focus,
|
|
16224
16228
|
.gs-result a.gs-title b:hover,
|
|
16225
16229
|
.gs-result a.gs-title b:focus {
|
|
16226
|
-
color: var(--link-hover
|
|
16230
|
+
color: var(--link-color-hover, #005a7f) !important;
|
|
16227
16231
|
}
|
|
16228
16232
|
|
|
16229
16233
|
.gs-result .gsc-url-top .gs-visibleUrl-breadcrumb span {
|
|
@@ -22762,7 +22766,7 @@ ul.list-overstated a {
|
|
|
22762
22766
|
outline-offset: -2px;
|
|
22763
22767
|
}
|
|
22764
22768
|
|
|
22765
|
-
.testimonial-
|
|
22769
|
+
.testimonial-dangerfooter {
|
|
22766
22770
|
color: #fff;
|
|
22767
22771
|
}
|
|
22768
22772
|
/* -----------------------------------------
|
|
@@ -24635,6 +24639,86 @@ a.cagov-external-link::after {
|
|
|
24635
24639
|
SIDE NAVIGATION - /src/css/cagov/side-navigation.css
|
|
24636
24640
|
----------------------------------------- */
|
|
24637
24641
|
|
|
24642
|
+
details.side-navigation-toggle {
|
|
24643
|
+
border: 1px solid var(--border-color-default, #d4d4d7);
|
|
24644
|
+
background: var(--color-s1, #eef8fb);
|
|
24645
|
+
margin-bottom: 1rem;
|
|
24646
|
+
}
|
|
24647
|
+
|
|
24648
|
+
/* Hide div by default on mobile */
|
|
24649
|
+
|
|
24650
|
+
details.side-navigation-toggle + div {
|
|
24651
|
+
display: none;
|
|
24652
|
+
}
|
|
24653
|
+
|
|
24654
|
+
/* CA.gov Menu Button */
|
|
24655
|
+
|
|
24656
|
+
details.side-navigation-toggle > summary {
|
|
24657
|
+
margin-left: auto;
|
|
24658
|
+
width: 100%;
|
|
24659
|
+
color: var(--link-color, var(--color-p2, #046b99));
|
|
24660
|
+
font-size: 1.25rem;
|
|
24661
|
+
cursor: pointer;
|
|
24662
|
+
padding: 0.65rem 0;
|
|
24663
|
+
list-style: none;
|
|
24664
|
+
text-decoration: none;
|
|
24665
|
+
display: inline-flex;
|
|
24666
|
+
align-items: center;
|
|
24667
|
+
position: relative;
|
|
24668
|
+
min-height: 1.875rem;
|
|
24669
|
+
}
|
|
24670
|
+
|
|
24671
|
+
details.side-navigation-toggle > summary:hover,
|
|
24672
|
+
details.side-navigation-toggle > summary:focus {
|
|
24673
|
+
color: var(--link-color-hover, var(--color-p2-darker, #034a6f));
|
|
24674
|
+
outline: 2px solid var(--outline-default-color, #0b8ee5);
|
|
24675
|
+
outline-offset: -4px;
|
|
24676
|
+
}
|
|
24677
|
+
|
|
24678
|
+
details.side-navigation-toggle > summary::-webkit-details-marker {
|
|
24679
|
+
display: none;
|
|
24680
|
+
}
|
|
24681
|
+
|
|
24682
|
+
details.side-navigation-toggle > summary > span::after {
|
|
24683
|
+
margin-left: 0.5rem;
|
|
24684
|
+
content: "";
|
|
24685
|
+
display: inline-block;
|
|
24686
|
+
text-decoration: none;
|
|
24687
|
+
position: relative;
|
|
24688
|
+
width: 0.65rem;
|
|
24689
|
+
height: 0.65rem;
|
|
24690
|
+
border-top: 2px solid var(--link-color, var(--color-p2, #046b99));
|
|
24691
|
+
border-left: 2px solid var(--link-color, var(--color-p2, #046b99));
|
|
24692
|
+
transform: rotate(225deg);
|
|
24693
|
+
transition: 200ms;
|
|
24694
|
+
vertical-align: middle;
|
|
24695
|
+
top: -0.125rem;
|
|
24696
|
+
}
|
|
24697
|
+
|
|
24698
|
+
/* Show div when details is open (mobile) */
|
|
24699
|
+
|
|
24700
|
+
details.side-navigation-toggle[open] + div {
|
|
24701
|
+
display: block;
|
|
24702
|
+
}
|
|
24703
|
+
|
|
24704
|
+
details.side-navigation-toggle[open] > summary span::after {
|
|
24705
|
+
transform: rotate(45deg);
|
|
24706
|
+
top: 0.125rem;
|
|
24707
|
+
}
|
|
24708
|
+
|
|
24709
|
+
/* On desktop: hide details toggle, always show div */
|
|
24710
|
+
|
|
24711
|
+
@media (min-width: 992px) {
|
|
24712
|
+
|
|
24713
|
+
details.side-navigation-toggle {
|
|
24714
|
+
display: none
|
|
24715
|
+
}
|
|
24716
|
+
|
|
24717
|
+
details.side-navigation-toggle + div {
|
|
24718
|
+
display: block;
|
|
24719
|
+
}
|
|
24720
|
+
}
|
|
24721
|
+
|
|
24638
24722
|
ul.list-navigation,
|
|
24639
24723
|
nav.side-navigation > ul {
|
|
24640
24724
|
margin-left: 0;
|
|
@@ -24671,7 +24755,7 @@ ul.list-navigation > li > a.active, ul.list-navigation > li > ul > li > a.active
|
|
|
24671
24755
|
ul.list-navigation > li > a.active::before, ul.list-navigation > li > ul > li > a.active::before, nav.side-navigation > ul > li > a.active::before, nav.side-navigation > ul > li > ul > li > a.active::before {
|
|
24672
24756
|
content: "";
|
|
24673
24757
|
border-left: 3px solid;
|
|
24674
|
-
border-left-color: var(--color
|
|
24758
|
+
border-left-color: var(--link-color, #046b99);
|
|
24675
24759
|
position: absolute;
|
|
24676
24760
|
top: 0;
|
|
24677
24761
|
left: 0;
|
|
@@ -24737,122 +24821,6 @@ ul.list-navigation > li > ul > li > a, ul.list-navigation > li > ul > li > ul >
|
|
|
24737
24821
|
padding-left: 2.5rem;
|
|
24738
24822
|
}
|
|
24739
24823
|
|
|
24740
|
-
.sidenav-mobile-btn {
|
|
24741
|
-
display: block;
|
|
24742
|
-
padding: 0.5rem 0;
|
|
24743
|
-
border-bottom: 1px solid var(--gray-200, #d4d4d7);
|
|
24744
|
-
background-color: var(--color-s1, #eef8fb);
|
|
24745
|
-
}
|
|
24746
|
-
|
|
24747
|
-
.sidenav-mobile-btn .container {
|
|
24748
|
-
display: flex;
|
|
24749
|
-
justify-content: flex-end;
|
|
24750
|
-
}
|
|
24751
|
-
|
|
24752
|
-
.sidenav-toggle {
|
|
24753
|
-
border: none;
|
|
24754
|
-
background: none;
|
|
24755
|
-
font-weight: 500;
|
|
24756
|
-
position: relative;
|
|
24757
|
-
right: 0;
|
|
24758
|
-
padding-right: 2.3rem;
|
|
24759
|
-
color: var(--link-color, var(--color-p2, #046b99));
|
|
24760
|
-
}
|
|
24761
|
-
|
|
24762
|
-
.sidenav-toggle:hover,
|
|
24763
|
-
.sidenav-toggle:focus {
|
|
24764
|
-
color: var(--link-color-hover, var(--color-p2-darker, #214a68));
|
|
24765
|
-
}
|
|
24766
|
-
|
|
24767
|
-
.sidenav-toggle .ca-gov-icon-caret-down {
|
|
24768
|
-
font-size: 2rem;
|
|
24769
|
-
position: absolute;
|
|
24770
|
-
top: 0.3rem;
|
|
24771
|
-
right: 0.2rem;
|
|
24772
|
-
line-height: 1rem;
|
|
24773
|
-
transition: all 0.3s ease;
|
|
24774
|
-
}
|
|
24775
|
-
|
|
24776
|
-
.sidenav-toggle[aria-expanded="true"] .ca-gov-icon-caret-down {
|
|
24777
|
-
transform: rotate(180deg);
|
|
24778
|
-
top: 0.6rem;
|
|
24779
|
-
}
|
|
24780
|
-
|
|
24781
|
-
@media (min-width: 992px) {
|
|
24782
|
-
.sidenav-mobile-btn {
|
|
24783
|
-
display: none;
|
|
24784
|
-
}
|
|
24785
|
-
}
|
|
24786
|
-
|
|
24787
|
-
@media (max-width: 991px) {
|
|
24788
|
-
.mobile-sidenav {
|
|
24789
|
-
max-height: 0;
|
|
24790
|
-
overflow: hidden;
|
|
24791
|
-
transition: max-height 0.15s ease-out;
|
|
24792
|
-
background-color: var(--mobile-drawer, #214a68);
|
|
24793
|
-
}
|
|
24794
|
-
|
|
24795
|
-
.mobile-sidenav.visible {
|
|
24796
|
-
max-height: 1600px;
|
|
24797
|
-
transition: max-height 0.25s ease-in;
|
|
24798
|
-
overflow-y: auto;
|
|
24799
|
-
}
|
|
24800
|
-
|
|
24801
|
-
.mobile-sidenav .side-navigation {
|
|
24802
|
-
display: flex;
|
|
24803
|
-
flex-direction: column;
|
|
24804
|
-
padding: 1rem 0;
|
|
24805
|
-
}
|
|
24806
|
-
|
|
24807
|
-
.mobile-sidenav .side-navigation.sticky-6 {
|
|
24808
|
-
top: 0;
|
|
24809
|
-
position: relative;
|
|
24810
|
-
}
|
|
24811
|
-
|
|
24812
|
-
.mobile-sidenav .side-navigation ul {
|
|
24813
|
-
margin-top: 0;
|
|
24814
|
-
margin-bottom: 0;
|
|
24815
|
-
}
|
|
24816
|
-
.mobile-sidenav .list-navigation li a, .mobile-sidenav .side-navigation ul li a {
|
|
24817
|
-
color: var(--white, #fff);
|
|
24818
|
-
border-bottom-color: var(--mobile-drawer, #214a68);
|
|
24819
|
-
}
|
|
24820
|
-
|
|
24821
|
-
.mobile-sidenav .list-navigation li a:focus, .mobile-sidenav .side-navigation ul li a:focus {
|
|
24822
|
-
outline: 2px solid var(--outline-dark-mode-color);
|
|
24823
|
-
outline-offset: -2px;
|
|
24824
|
-
}
|
|
24825
|
-
|
|
24826
|
-
.mobile-sidenav .list-navigation li a:hover,
|
|
24827
|
-
.mobile-sidenav .list-navigation li a:focus,
|
|
24828
|
-
.mobile-sidenav .side-navigation ul li a:hover,
|
|
24829
|
-
.mobile-sidenav .side-navigation ul li a:focus {
|
|
24830
|
-
color: var(--white, #fff);
|
|
24831
|
-
background-color: var(--mobile-drawer-active, #046b99);
|
|
24832
|
-
}
|
|
24833
|
-
|
|
24834
|
-
.mobile-sidenav .list-navigation li a.active, .mobile-sidenav .side-navigation ul li a.active {
|
|
24835
|
-
background-color: var(--mobile-drawer-active, #046b99);
|
|
24836
|
-
}
|
|
24837
|
-
|
|
24838
|
-
.mobile-sidenav .list-navigation li a.active::before, .mobile-sidenav .side-navigation ul li a.active::before {
|
|
24839
|
-
color: var(--white, #fff);
|
|
24840
|
-
border-left-color: var(--color-p1, #fdb81e);
|
|
24841
|
-
}
|
|
24842
|
-
|
|
24843
|
-
.mobile-sidenav .list-navigation li a.active:hover,
|
|
24844
|
-
.mobile-sidenav .list-navigation li a.active:focus,
|
|
24845
|
-
.mobile-sidenav .side-navigation ul li a.active:hover,
|
|
24846
|
-
.mobile-sidenav .side-navigation ul li a.active:focus {
|
|
24847
|
-
color: var(--white, #fff);
|
|
24848
|
-
background-color: var(--mobile-drawer, #214a68);
|
|
24849
|
-
}
|
|
24850
|
-
|
|
24851
|
-
.mobile-sidenav .list-navigation li a ul li a.active::before, .mobile-sidenav .side-navigation ul li a ul li a.active::before {
|
|
24852
|
-
border-left-color: var(--color-p1, #fdb81e);
|
|
24853
|
-
}
|
|
24854
|
-
}
|
|
24855
|
-
|
|
24856
24824
|
a.sidenav {
|
|
24857
24825
|
font-size: calc(1rem + var(--ratio));
|
|
24858
24826
|
margin: 0;
|