@digigov/css 1.0.0-6b93ebf2 → 1.0.0-75e5086d
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/defaultTheme/footer.json +1 -1
- package/defaultTheme/typography.json +22 -2
- package/dist/base/index.css +1 -1
- package/dist/base.js +1 -1
- package/dist/components.js +1 -1
- package/dist/digigov.css +3 -3
- package/dist/utilities/index.css +1 -1
- package/dist/utilities.js +1 -1
- package/package.json +4 -4
- package/src/components/accessibility-menu.css +8 -3
- package/src/components/accordion.css +67 -13
- package/src/components/admin-header.css +27 -1
- package/src/components/admin-layout.css +6 -0
- package/src/components/autocomplete.css +12 -9
- package/src/components/bottom-info.css +2 -1
- package/src/components/button.css +75 -31
- package/src/components/card.css +17 -14
- package/src/components/checkboxes.css +8 -3
- package/src/components/chip.css +35 -15
- package/src/components/copy-to-clipboard.css +16 -9
- package/src/components/drawer.css +17 -26
- package/src/components/dropdown.css +52 -52
- package/src/components/filter.css +71 -63
- package/src/components/footer.css +27 -22
- package/src/components/form.css +50 -42
- package/src/components/header.css +87 -31
- package/src/components/hidden.css +3 -0
- package/src/components/index.css +3 -0
- package/src/components/kitchensink.css +2 -2
- package/src/components/layout.css +17 -17
- package/src/components/loader.css +5 -16
- package/src/components/masthead.css +78 -0
- package/src/components/misc.css +17 -41
- package/src/components/modal.css +5 -3
- package/src/components/nav.css +67 -126
- package/src/components/pagination.css +38 -24
- package/src/components/phase-banner.css +1 -7
- package/src/components/radios.css +12 -18
- package/src/components/stack.css +66 -0
- package/src/components/stepnav.css +23 -10
- package/src/components/summary-list.css +22 -15
- package/src/components/svg-icons.css +0 -59
- package/src/components/table.css +34 -40
- package/src/components/task-list.css +20 -15
- package/src/components/timeline.css +8 -1
- package/src/components/typography.css +77 -66
- package/src/components/warning-text.css +19 -0
- package/src/pages/admin-filtering-data.js +1 -1
- package/src/utilities/index.css +141 -21
- package/src/utilities/utilities.css +148 -24
- package/tailwind.config.js +2 -0
- package/themes.plugin.js +16 -16
package/src/components/chip.css
CHANGED
|
@@ -1,26 +1,20 @@
|
|
|
1
|
-
.govgr-
|
|
2
|
-
@apply
|
|
1
|
+
.govgr-chips {
|
|
2
|
+
@apply flex flex-wrap list-none gap-2;
|
|
3
|
+
.govgr-chip:last-child .govgr-chip__content {
|
|
4
|
+
@apply mr-0;
|
|
5
|
+
}
|
|
3
6
|
}
|
|
4
7
|
.govgr-chips--horizontal {
|
|
5
8
|
@apply md:flex md:flex-row md:flex-wrap;
|
|
6
9
|
}
|
|
7
|
-
.govgr-chips {
|
|
8
|
-
@apply flex flex-wrap list-none;
|
|
9
|
-
}
|
|
10
10
|
.govgr-chip {
|
|
11
11
|
@apply list-none;
|
|
12
12
|
.govgr-chip__content {
|
|
13
13
|
@apply bg-base-100 text-base-content lg:text-base text-sm border-2 border-base-content
|
|
14
|
-
inline-flex items-center px-2 py-1
|
|
15
|
-
.govgr-svg-icon--close {
|
|
16
|
-
@apply w-4 h-4 ml-3;
|
|
17
|
-
}
|
|
14
|
+
inline-flex items-center px-2 py-1 rounded shadow;
|
|
18
15
|
&[role="button"] {
|
|
19
16
|
&:hover {
|
|
20
17
|
@apply shadow-lg text-base-content-invert bg-base-900 border-base-900 transition;
|
|
21
|
-
.govgr-svg-icon--close {
|
|
22
|
-
fill: var(--color-base-content-invert);
|
|
23
|
-
}
|
|
24
18
|
}
|
|
25
19
|
&:focus {
|
|
26
20
|
outline: 3px solid var(--color-focus);
|
|
@@ -30,12 +24,41 @@
|
|
|
30
24
|
}
|
|
31
25
|
}
|
|
32
26
|
}
|
|
27
|
+
&:last-child {
|
|
28
|
+
.govgr-chip__content {
|
|
29
|
+
@apply mr-0;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
33
32
|
}
|
|
34
33
|
.govgr-chip--deletable {
|
|
35
34
|
.govgr-chip__content {
|
|
36
35
|
&:hover {
|
|
37
36
|
@apply shadow-lg transition;
|
|
38
37
|
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.govgr-chip__key-value {
|
|
41
|
+
@apply font-bold mr-2;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* overrides */
|
|
45
|
+
|
|
46
|
+
.govgr-chip {
|
|
47
|
+
.govgr-chip__content {
|
|
48
|
+
.govgr-svg-icon--close {
|
|
49
|
+
@apply w-4 h-4 ml-3;
|
|
50
|
+
}
|
|
51
|
+
&[role="button"] {
|
|
52
|
+
&:hover {
|
|
53
|
+
.govgr-svg-icon--close {
|
|
54
|
+
fill: var(--color-base-content-invert);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
.govgr-chip--deletable {
|
|
61
|
+
.govgr-chip__content {
|
|
39
62
|
.govgr-svg-icon--close {
|
|
40
63
|
&:hover {
|
|
41
64
|
@apply cursor-pointer;
|
|
@@ -43,6 +66,3 @@
|
|
|
43
66
|
}
|
|
44
67
|
}
|
|
45
68
|
}
|
|
46
|
-
.govgr-chip__key-value {
|
|
47
|
-
@apply font-bold mr-2;
|
|
48
|
-
}
|
|
@@ -3,14 +3,8 @@
|
|
|
3
3
|
}
|
|
4
4
|
.govgr-copy-to-clipboard__tooltip {
|
|
5
5
|
@apply relative;
|
|
6
|
-
& > .govgr-btn {
|
|
7
|
-
@apply m-0;
|
|
8
|
-
}
|
|
9
6
|
.govgr-copy-to-clipboard__message {
|
|
10
7
|
@apply bg-success p-4 absolute mt-4 text-center z-50 w-fit md:w-max;
|
|
11
|
-
& > .govgr-body {
|
|
12
|
-
@apply text-white;
|
|
13
|
-
}
|
|
14
8
|
&::before {
|
|
15
9
|
content: "";
|
|
16
10
|
@apply w-4 h-4 border-t-8 border-l-8 border-success transform rotate-45
|
|
@@ -22,9 +16,6 @@
|
|
|
22
16
|
.govgr-copy-to-clipboard__banner {
|
|
23
17
|
.govgr-copy-to-clipboard__message {
|
|
24
18
|
@apply bg-success bg-opacity-95 p-2 w-full fixed top-0 right-0 text-center;
|
|
25
|
-
& > .govgr-body {
|
|
26
|
-
@apply text-white;
|
|
27
|
-
}
|
|
28
19
|
}
|
|
29
20
|
}
|
|
30
21
|
.govgr-copy-to-clipboard__tooltip--right {
|
|
@@ -49,3 +40,19 @@
|
|
|
49
40
|
.govgr-copy-to-clipboard--hidden {
|
|
50
41
|
@apply invisible w-0 h-0;
|
|
51
42
|
}
|
|
43
|
+
|
|
44
|
+
/* overrides */
|
|
45
|
+
|
|
46
|
+
.govgr-copy-to-clipboard__tooltip {
|
|
47
|
+
& > .govgr-btn {
|
|
48
|
+
@apply m-0;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
.govgr-copy-to-clipboard__tooltip,
|
|
52
|
+
.govgr-copy-to-clipboard__banner {
|
|
53
|
+
.govgr-copy-to-clipboard__message {
|
|
54
|
+
& > .govgr-body {
|
|
55
|
+
@apply text-white;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -1,51 +1,42 @@
|
|
|
1
|
-
.govgr-drawer{
|
|
1
|
+
.govgr-drawer {
|
|
2
2
|
@apply border border-base-300 bg-base-100 p-4
|
|
3
3
|
h-full max-h-screen min-h-screen overflow-y-scroll w-4/5 max-w-md
|
|
4
4
|
fixed top-0 bottom-0 z-40;
|
|
5
5
|
@apply shadow-thick !important;
|
|
6
6
|
}
|
|
7
|
-
.govgr-drawer--relative-sm{
|
|
7
|
+
.govgr-drawer--relative-sm {
|
|
8
8
|
@apply sm:block sm:relative sm:w-full max-h-full shadow-thick sm:shadow-none !important;
|
|
9
9
|
}
|
|
10
|
-
.govgr-drawer--relative-md{
|
|
10
|
+
.govgr-drawer--relative-md {
|
|
11
11
|
@apply md:block md:relative md:w-full max-h-full shadow-thick md:shadow-none !important;
|
|
12
12
|
}
|
|
13
|
-
.govgr-drawer--relative-lg{
|
|
13
|
+
.govgr-drawer--relative-lg {
|
|
14
14
|
@apply lg:block lg:relative lg:w-full max-h-full shadow-thick lg:shadow-none !important;
|
|
15
15
|
}
|
|
16
16
|
.govgr-drawer--right {
|
|
17
17
|
@apply right-0;
|
|
18
18
|
}
|
|
19
19
|
.govgr-drawer--left {
|
|
20
|
-
@apply left-0
|
|
20
|
+
@apply left-0;
|
|
21
21
|
}
|
|
22
22
|
.govgr-drawer--closed {
|
|
23
23
|
@apply hidden;
|
|
24
24
|
}
|
|
25
|
-
.govgr-
|
|
26
|
-
@apply flex-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
@apply flex flex-nowrap text-right w-max float-right items-center;
|
|
30
|
-
.govgr-svg-icon--close {
|
|
31
|
-
@apply w-5 h-5 z-30 float-right;
|
|
32
|
-
@apply ml-1 !important;
|
|
33
|
-
fill: var(--color-link);
|
|
34
|
-
}
|
|
35
|
-
&:focus {
|
|
36
|
-
.govgr-svg-icon--close {
|
|
37
|
-
fill: var(--color-link-active);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
&:hover {
|
|
41
|
-
.govgr-svg-icon--close {
|
|
42
|
-
fill: var(--color-link-hover);
|
|
43
|
-
}
|
|
25
|
+
.govgr-drawer__heading {
|
|
26
|
+
@apply p-0 mb-4 flex justify-between align-baseline;
|
|
27
|
+
.govgr--drawer__close-icon {
|
|
28
|
+
@apply m-0;
|
|
44
29
|
}
|
|
45
30
|
}
|
|
31
|
+
|
|
32
|
+
/* overrides */
|
|
33
|
+
|
|
46
34
|
.govgr-drawer__heading {
|
|
47
|
-
|
|
48
|
-
.govgr
|
|
35
|
+
.govgr-heading-xs,
|
|
36
|
+
.govgr-heading-sm,
|
|
37
|
+
.govgr-heading-md,
|
|
38
|
+
.govgr-heading-lg,
|
|
39
|
+
.govgr-heading-xl {
|
|
49
40
|
@apply m-0;
|
|
50
41
|
}
|
|
51
42
|
}
|
|
@@ -1,31 +1,5 @@
|
|
|
1
1
|
.govgr-dropdown {
|
|
2
2
|
@apply w-fit relative;
|
|
3
|
-
&[open] {
|
|
4
|
-
.govgr-dropdown__button--arrow {
|
|
5
|
-
.govgr-svg-icon--arrow {
|
|
6
|
-
@apply transform -rotate-180;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
.govgr-dropdown__button {
|
|
10
|
-
&.govgr-btn-primary {
|
|
11
|
-
background-color: var(--btn-primary-background-color-hover);
|
|
12
|
-
color: var(--btn-primary-color-hover);
|
|
13
|
-
}
|
|
14
|
-
&.govgr-btn-secondary {
|
|
15
|
-
background-color: var(--btn-secondary-background-color-hover);
|
|
16
|
-
color: var(--btn-secondary-color-hover);
|
|
17
|
-
}
|
|
18
|
-
&.govgr-btn-warning {
|
|
19
|
-
background-color: var(--btn-warning-background-color-hover);
|
|
20
|
-
color: var(--btn-warning-color-hover);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
.govgr-dropdown__button--arrow {
|
|
25
|
-
.govgr-svg-icon--arrow {
|
|
26
|
-
@apply transition duration-300;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
3
|
}
|
|
30
4
|
.govgr-dropdown--up {
|
|
31
5
|
.govgr-dropdown__content {
|
|
@@ -36,10 +10,7 @@
|
|
|
36
10
|
}
|
|
37
11
|
.govgr-dropdown--right {
|
|
38
12
|
.govgr-dropdown__content {
|
|
39
|
-
@apply right-0 mr-0 ml-4
|
|
40
|
-
.govgr-field {
|
|
41
|
-
@apply text-left;
|
|
42
|
-
}
|
|
13
|
+
@apply right-0 mr-0 ml-4;
|
|
43
14
|
}
|
|
44
15
|
}
|
|
45
16
|
.govgr-dropdown--disabled {
|
|
@@ -55,13 +26,6 @@
|
|
|
55
26
|
&::marker {
|
|
56
27
|
font-size: 0px;
|
|
57
28
|
}
|
|
58
|
-
.govgr-svg-icon {
|
|
59
|
-
@apply w-5 h-6 md:h-8;
|
|
60
|
-
@apply print:hidden;
|
|
61
|
-
}
|
|
62
|
-
&.govgr-link {
|
|
63
|
-
@apply inline-flex gap-1 items-center;
|
|
64
|
-
}
|
|
65
29
|
}
|
|
66
30
|
.govgr-dropdown__button.govgr-link + .govgr-dropdown__content {
|
|
67
31
|
@apply mt-4 print:text-base-content;
|
|
@@ -71,37 +35,73 @@
|
|
|
71
35
|
}
|
|
72
36
|
.govgr-dropdown__content {
|
|
73
37
|
@apply border border-base-400 p-4 bg-base-100 border-t-0
|
|
74
|
-
max-w-xs w-max min-w-full absolute transition z-
|
|
38
|
+
max-w-xs w-max min-w-full absolute transition z-3 mr-4 -mt-4;
|
|
75
39
|
-webkit-box-box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3), 0 -2px 0 var(--color-base-500);
|
|
76
40
|
box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3), 0 -2px 0 var(--color-base-500);
|
|
77
41
|
*:last-child {
|
|
78
42
|
@apply mb-0;
|
|
79
43
|
}
|
|
44
|
+
}
|
|
45
|
+
.govgr-dropdown__content--full-width {
|
|
46
|
+
@apply min-w-full;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* overrides */
|
|
50
|
+
|
|
51
|
+
.govgr-dropdown {
|
|
52
|
+
&[open] {
|
|
53
|
+
.govgr-dropdown__button--arrow {
|
|
54
|
+
.govgr-svg-icon--arrow {
|
|
55
|
+
@apply transform -rotate-180;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
.govgr-dropdown__button {
|
|
59
|
+
&.govgr-btn-primary {
|
|
60
|
+
background-color: var(--btn-primary-background-color-hover);
|
|
61
|
+
color: var(--btn-primary-color-hover);
|
|
62
|
+
}
|
|
63
|
+
&.govgr-btn-secondary {
|
|
64
|
+
background-color: var(--btn-secondary-background-color-hover);
|
|
65
|
+
color: var(--btn-secondary-color-hover);
|
|
66
|
+
}
|
|
67
|
+
&.govgr-btn-warning {
|
|
68
|
+
background-color: var(--btn-warning-background-color-hover);
|
|
69
|
+
color: var(--btn-warning-color-hover);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
.govgr-dropdown__button--arrow {
|
|
74
|
+
.govgr-svg-icon--arrow {
|
|
75
|
+
@apply transition duration-300;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
.govgr-dropdown__button {
|
|
80
|
+
.govgr-svg-icon {
|
|
81
|
+
@apply w-5 h-6 md:h-8;
|
|
82
|
+
@apply print:hidden;
|
|
83
|
+
}
|
|
84
|
+
&.govgr-link {
|
|
85
|
+
@apply inline-flex gap-1 items-center;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
.govgr-dropdown__content {
|
|
80
89
|
.govgr-field {
|
|
81
90
|
@apply mb-4;
|
|
82
91
|
}
|
|
83
92
|
.govgr-section-break {
|
|
84
93
|
@apply -mx-4 w-auto;
|
|
85
94
|
}
|
|
86
|
-
|
|
87
|
-
@apply -mx-4 flex-col;
|
|
88
|
-
.govgr-
|
|
95
|
+
>.govgr-nav__list {
|
|
96
|
+
@apply w-auto -mx-4 flex-col;
|
|
97
|
+
.govgr-nav__list-item {
|
|
89
98
|
@apply border-b border-base-300 py-2 px-4;
|
|
90
99
|
&:last-child {
|
|
91
100
|
@apply border-0;
|
|
92
101
|
}
|
|
93
|
-
|
|
94
|
-
@apply
|
|
95
|
-
hover:underline;
|
|
102
|
+
&:focus {
|
|
103
|
+
@apply border-focus;
|
|
96
104
|
}
|
|
97
105
|
}
|
|
98
106
|
}
|
|
99
107
|
}
|
|
100
|
-
.govgr-header, .govgr-admin-header {
|
|
101
|
-
.govgr-dropdown__button.govgr-link {
|
|
102
|
-
@apply text-lg text-white focus:text-base-content print:text-base-800;
|
|
103
|
-
}
|
|
104
|
-
.govgr-dropdown {
|
|
105
|
-
@apply print:hidden;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
@@ -1,32 +1,29 @@
|
|
|
1
1
|
.govgr-filter {
|
|
2
2
|
@apply bg-base-100 fixed top-0 right-0 bottom-0 overflow-y-scroll z-40 w-4/5;
|
|
3
3
|
box-shadow: 0 0 30px rgba(var(--color-base-900-rgb), 0.9);
|
|
4
|
-
.govgr-select {
|
|
5
|
-
@apply w-full;
|
|
6
|
-
}
|
|
7
4
|
}
|
|
8
5
|
.govgr-filter {
|
|
9
6
|
&.govgr-filter--position-relative-always {
|
|
10
|
-
@apply block relative overflow-visible w-full shadow-none z-
|
|
11
|
-
&.govgr-filter--closed
|
|
7
|
+
@apply block relative overflow-visible w-full shadow-none z-2 !important;
|
|
8
|
+
&.govgr-filter--closed {
|
|
12
9
|
@apply block !important;
|
|
13
10
|
}
|
|
14
11
|
}
|
|
15
12
|
&.govgr-filter--position-relative-sm {
|
|
16
|
-
@apply sm:block sm:relative sm:overflow-visible sm:w-full sm:shadow-none sm:z-
|
|
17
|
-
&.govgr-filter--closed
|
|
13
|
+
@apply sm:block sm:relative sm:overflow-visible sm:w-full sm:shadow-none sm:z-2;
|
|
14
|
+
&.govgr-filter--closed {
|
|
18
15
|
@apply sm:block;
|
|
19
16
|
}
|
|
20
17
|
}
|
|
21
18
|
&.govgr-filter--position-relative-md {
|
|
22
|
-
@apply md:block md:relative md:overflow-visible md:w-full md:shadow-none md:z-
|
|
23
|
-
&.govgr-filter--closed
|
|
19
|
+
@apply md:block md:relative md:overflow-visible md:w-full md:shadow-none md:z-2;
|
|
20
|
+
&.govgr-filter--closed {
|
|
24
21
|
@apply md:block;
|
|
25
22
|
}
|
|
26
23
|
}
|
|
27
24
|
&.govgr-filter--position-relative-lg {
|
|
28
|
-
@apply lg:block lg:relative lg:overflow-visible lg:w-full lg:shadow-none lg:z-
|
|
29
|
-
&.govgr-filter--closed
|
|
25
|
+
@apply lg:block lg:relative lg:overflow-visible lg:w-full lg:shadow-none lg:z-2;
|
|
26
|
+
&.govgr-filter--closed {
|
|
30
27
|
@apply lg:block;
|
|
31
28
|
}
|
|
32
29
|
}
|
|
@@ -44,87 +41,98 @@
|
|
|
44
41
|
@apply flex gap-4 flex-col;
|
|
45
42
|
align-items: stretch;
|
|
46
43
|
@apply md:flex-row md:flex-wrap;
|
|
47
|
-
.govgr-field {
|
|
48
|
-
@apply mb-0;
|
|
49
|
-
}
|
|
50
|
-
.govgr-label, .govgr-btn {
|
|
51
|
-
@apply mb-0;
|
|
52
|
-
}
|
|
53
44
|
}
|
|
54
45
|
@media (min-width: 768px) {
|
|
55
46
|
.govgr-filter__options--horizontal {
|
|
56
47
|
align-items: flex-end;
|
|
57
48
|
}
|
|
58
49
|
}
|
|
59
|
-
.govgr-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
@apply ml-1 !important;
|
|
64
|
-
fill: var(--color-link);
|
|
65
|
-
}
|
|
66
|
-
&:focus {
|
|
67
|
-
.govgr-svg-icon--close {
|
|
68
|
-
fill: var(--color-link-active);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
&:hover {
|
|
72
|
-
.govgr-svg-icon--close {
|
|
73
|
-
fill: var(--color-link-hover);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
50
|
+
.govgr-filter__heading,
|
|
51
|
+
.govgr-filter__selected,
|
|
52
|
+
.govgr-filter__options {
|
|
53
|
+
@apply p-0;
|
|
76
54
|
}
|
|
77
|
-
.govgr-filter__heading, .govgr-filter__selected, .govgr-filter__options {
|
|
78
|
-
@apply p-0;
|
|
79
|
-
}
|
|
80
55
|
.govgr-filter__heading {
|
|
81
56
|
@apply mb-4;
|
|
82
|
-
.govgr-filter__close-btn, .govgr-heading-sm, .govgr-heading-md, .govgr-heading-lg, .govgr-heading-xl {
|
|
83
|
-
@apply m-0;
|
|
84
|
-
}
|
|
85
57
|
}
|
|
86
58
|
.govgr-filter__selected {
|
|
87
59
|
@apply bg-base-200 p-4 m-0 rounded;
|
|
88
60
|
}
|
|
89
|
-
.govgr-filter__selected--indicator {
|
|
90
|
-
@apply md:hidden;
|
|
91
|
-
}
|
|
92
61
|
.govgr-filter__selected-heading {
|
|
93
62
|
@apply flex flex-wrap sm:flex-nowrap mb-4 md:mb-6 justify-between gap-x-2;
|
|
94
|
-
.govgr-link, .govgr-heading-sm, .govgr-heading-md, .govgr-heading-lg, .govgr-heading-xl {
|
|
95
|
-
@apply m-0 h-full;
|
|
96
|
-
}
|
|
97
63
|
}
|
|
98
64
|
.govgr-input__search-btn {
|
|
99
65
|
@apply shadow-none !important;
|
|
100
|
-
@apply
|
|
101
|
-
border-b-2 border-base-content rounded-none
|
|
66
|
+
@apply border-b-2 border-base-content rounded-none
|
|
102
67
|
px-4 py-2 w-min m-0 ml-3
|
|
103
68
|
flex gap-2
|
|
104
69
|
hover:bg-success-hover active:bg-success-hover hover:no-underline;
|
|
105
|
-
.govgr-svg-icon--search {
|
|
106
|
-
fill: var(--color-white);
|
|
107
|
-
@apply w-7 h-7;
|
|
108
|
-
}
|
|
109
70
|
}
|
|
110
71
|
.govgr-search {
|
|
111
72
|
@apply flex w-full max-w-3xl;
|
|
112
73
|
}
|
|
113
|
-
.govgr-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
.govgr-field {
|
|
119
|
-
@apply flex items-baseline gap-2;
|
|
120
|
-
}
|
|
74
|
+
.govgr-results__action-bar {
|
|
75
|
+
@apply py-2 mb-8 flex flex-wrap justify-start gap-4 items-baseline;
|
|
76
|
+
> * {
|
|
77
|
+
@apply mb-0;
|
|
78
|
+
}
|
|
121
79
|
}
|
|
122
|
-
.govgr-
|
|
80
|
+
.govgr-results__heading {
|
|
123
81
|
@apply flex flex-wrap justify-between items-baseline gap-x-2;
|
|
124
82
|
}
|
|
125
|
-
.govgr-
|
|
83
|
+
.govgr-results__actions {
|
|
126
84
|
@apply flex flex-wrap gap-4 justify-start min-w-min mb-4;
|
|
127
85
|
}
|
|
128
86
|
.govgr-link-filters {
|
|
129
87
|
@apply block md:hidden;
|
|
130
|
-
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* overrides */
|
|
91
|
+
|
|
92
|
+
.govgr-filter {
|
|
93
|
+
@apply bg-base-100 fixed top-0 right-0 bottom-0 overflow-y-scroll z-40 w-4/5;
|
|
94
|
+
box-shadow: 0 0 30px rgba(var(--color-base-900-rgb), 0.9);
|
|
95
|
+
.govgr-select {
|
|
96
|
+
@apply w-full;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
.govgr-filter__options--horizontal {
|
|
100
|
+
.govgr-field {
|
|
101
|
+
@apply mb-0;
|
|
102
|
+
}
|
|
103
|
+
.govgr-label,
|
|
104
|
+
.govgr-btn {
|
|
105
|
+
@apply mb-0;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
.govgr-filter__heading {
|
|
109
|
+
.govgr-close-btn,
|
|
110
|
+
.govgr-heading-xs,
|
|
111
|
+
.govgr-heading-sm,
|
|
112
|
+
.govgr-heading-md,
|
|
113
|
+
.govgr-heading-lg,
|
|
114
|
+
.govgr-heading-xl {
|
|
115
|
+
@apply m-0;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
.govgr-filter__selected-heading {
|
|
119
|
+
.govgr-link,
|
|
120
|
+
.govgr-heading-xs,
|
|
121
|
+
.govgr-heading-sm,
|
|
122
|
+
.govgr-heading-md,
|
|
123
|
+
.govgr-heading-lg,
|
|
124
|
+
.govgr-heading-xl {
|
|
125
|
+
@apply m-0 h-full;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
.govgr-input__search-btn {
|
|
129
|
+
.govgr-svg-icon--search {
|
|
130
|
+
fill: var(--color-white);
|
|
131
|
+
@apply w-7 h-7;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
.govgr-results__action-bar {
|
|
135
|
+
.govgr-field {
|
|
136
|
+
@apply flex items-baseline gap-2;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
@@ -2,20 +2,14 @@
|
|
|
2
2
|
@apply border-0 border-solid font-normal text-base py-4 md:py-8
|
|
3
3
|
border-t-4 border-tertiary text-base-800 bg-base-200 w-full
|
|
4
4
|
print:py-2 print:bg-white print:border-t-2;
|
|
5
|
-
.govgr-section-break {
|
|
6
|
-
@apply print:hidden;
|
|
7
|
-
}
|
|
8
|
-
.govgr-link {
|
|
9
|
-
@apply print:text-base-content;
|
|
10
|
-
}
|
|
11
5
|
}
|
|
12
|
-
.govgr-
|
|
6
|
+
.govgr-footer__info {
|
|
13
7
|
@apply w-full flex flex-1 flex-wrap md:flex-nowrap items-end justify-between box-border;
|
|
14
8
|
}
|
|
15
|
-
.govgr-
|
|
9
|
+
.govgr-footer__info-section {
|
|
16
10
|
@apply mx-2 md:mx-4 mb-6 print:mb-4;
|
|
17
11
|
}
|
|
18
|
-
.govgr-
|
|
12
|
+
.govgr-footer__info-section--grow {
|
|
19
13
|
@apply flex flex-grow;
|
|
20
14
|
}
|
|
21
15
|
.govgr-footer__content {
|
|
@@ -40,17 +34,11 @@
|
|
|
40
34
|
}
|
|
41
35
|
.govgr-footer__copyright {
|
|
42
36
|
@apply mt-6 print:mt-4;
|
|
43
|
-
font-size: var(--
|
|
37
|
+
font-size: var(--footer__copyright-font-size);
|
|
44
38
|
.govgr-link {
|
|
45
39
|
font-size: inherit;
|
|
46
40
|
}
|
|
47
41
|
}
|
|
48
|
-
.govgr-footer__inline-list {
|
|
49
|
-
@apply mt-0 mb-4 p-0 print:hidden;
|
|
50
|
-
}
|
|
51
|
-
.govgr-footer__inline-list-item {
|
|
52
|
-
@apply inline-block mr-4 mb-2;
|
|
53
|
-
}
|
|
54
42
|
.govgr-footer__link {
|
|
55
43
|
@apply underline ;
|
|
56
44
|
&:hover {
|
|
@@ -66,20 +54,26 @@
|
|
|
66
54
|
.govgr-footer__navigation {
|
|
67
55
|
@apply flex flex-wrap print:hidden;
|
|
68
56
|
}
|
|
69
|
-
.govgr-
|
|
57
|
+
.govgr-footer__navigation-section {
|
|
70
58
|
@apply inline-block mx-4 mb-8 align-top flex-grow flex-shrink
|
|
71
59
|
print:hidden;
|
|
72
60
|
}
|
|
73
|
-
@media (min-width:
|
|
74
|
-
.govgr-
|
|
61
|
+
@media (min-width: 768px) {
|
|
62
|
+
.govgr-footer__navigation-section:first-child:nth-last-child(2) {
|
|
75
63
|
@apply flex-grow-2;
|
|
76
64
|
}
|
|
77
65
|
}
|
|
78
66
|
.govgr-footer__list {
|
|
79
|
-
@apply m-0 p-0 list-none gap-x-6
|
|
67
|
+
@apply m-0 p-0 list-none gap-x-6 text-sm md:text-base
|
|
80
68
|
print:hidden;
|
|
81
69
|
}
|
|
82
|
-
|
|
70
|
+
.govgr-footer__list--horizontal {
|
|
71
|
+
@apply mb-4;
|
|
72
|
+
.govgr-footer__list-item {
|
|
73
|
+
@apply inline-block mr-4 mb-2;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
@media (min-width: 768px) {
|
|
83
77
|
.govgr-footer__list--columns-2 {
|
|
84
78
|
column-count: 2;
|
|
85
79
|
}
|
|
@@ -87,4 +81,15 @@
|
|
|
87
81
|
.govgr-footer__list-item {}
|
|
88
82
|
.govgr-footer__heading {
|
|
89
83
|
@apply mb-4 pb-4 border-b border-base-300;
|
|
90
|
-
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* overrides */
|
|
87
|
+
|
|
88
|
+
.govgr-footer {
|
|
89
|
+
.govgr-section-break {
|
|
90
|
+
@apply print:hidden;
|
|
91
|
+
}
|
|
92
|
+
.govgr-link {
|
|
93
|
+
@apply print:text-base-content;
|
|
94
|
+
}
|
|
95
|
+
}
|