@digigov/css 1.0.0-6b93ebf2 → 1.0.0-871b6be5
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/base/index.css +3 -0
- package/src/components/accordion.css +50 -3
- package/src/components/admin-header.css +1 -1
- package/src/components/admin-layout.css +6 -0
- package/src/components/button.css +19 -1
- package/src/components/chip.css +11 -6
- package/src/components/drawer.css +0 -21
- package/src/components/dropdown.css +10 -11
- package/src/components/filter.css +10 -31
- package/src/components/footer.css +15 -15
- package/src/components/form.css +12 -13
- package/src/components/header.css +43 -7
- package/src/components/hidden.css +3 -0
- package/src/components/index.css +1 -0
- package/src/components/kitchensink.css +2 -2
- package/src/components/layout.css +3 -3
- package/src/components/modal.css +0 -3
- package/src/components/nav.css +63 -124
- package/src/components/pagination.css +1 -1
- package/src/components/phase-banner.css +6 -1
- package/src/components/stack.css +66 -0
- package/src/components/stepnav.css +10 -4
- package/src/components/table.css +4 -7
- package/src/components/task-list.css +3 -4
- package/src/components/typography.css +18 -2
- package/src/pages/admin-filtering-data.js +1 -1
- package/src/utilities/index.css +21 -21
- package/src/utilities/utilities.css +23 -22
- package/tailwind.config.js +2 -0
- package/themes.plugin.js +17 -17
|
@@ -2,16 +2,12 @@
|
|
|
2
2
|
@apply bg-primary border-b-8 print:border-b-2 border-tertiary;
|
|
3
3
|
@apply print:bg-white;
|
|
4
4
|
border-bottom-style: solid;
|
|
5
|
-
.govgr-svg-icon--burger {
|
|
6
|
-
fill: var(--color-base-content);
|
|
7
|
-
@apply float-right cursor-pointer;
|
|
8
|
-
}
|
|
9
5
|
}
|
|
10
|
-
.govgr-
|
|
6
|
+
.govgr-header__content {
|
|
11
7
|
@apply px-4 py-2 mx-auto max-w-5xl w-full flex justify-between items-center
|
|
12
8
|
print:px-0 gap-3;
|
|
13
9
|
}
|
|
14
|
-
.govgr-
|
|
10
|
+
.govgr-header__section {
|
|
15
11
|
@apply flex justify-start flex-wrap items-center gap-x-4 gap-y-2
|
|
16
12
|
print:gap-1;
|
|
17
13
|
}
|
|
@@ -53,7 +49,7 @@
|
|
|
53
49
|
.govgr-grid-column-two-thirds > *:last-child {
|
|
54
50
|
@apply mb-0;
|
|
55
51
|
}
|
|
56
|
-
.govgr-
|
|
52
|
+
.govgr-header__content {
|
|
57
53
|
@apply flex-wrap;
|
|
58
54
|
}
|
|
59
55
|
}
|
|
@@ -79,3 +75,43 @@
|
|
|
79
75
|
.govgr-masthead__logo {
|
|
80
76
|
@apply md:mb-6 mb-4 h-10;
|
|
81
77
|
}
|
|
78
|
+
|
|
79
|
+
/* overrides */
|
|
80
|
+
|
|
81
|
+
.govgr-header {
|
|
82
|
+
@apply relative;
|
|
83
|
+
.govgr-dropdown__button {
|
|
84
|
+
@apply sm:w-max;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
.govgr-header-nav-menu__content, .govgr-header__content, .govgr-header__section {
|
|
88
|
+
>.govgr-svg-icon--burger {
|
|
89
|
+
fill: var(--color-white);
|
|
90
|
+
@apply float-right focus:bg-focus;
|
|
91
|
+
}
|
|
92
|
+
>.govgr-close-btn {
|
|
93
|
+
@apply sm:hidden;
|
|
94
|
+
.govgr-svg-icon--close {
|
|
95
|
+
fill: var(--color-link) !important;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
> .govgr-nav__list {
|
|
99
|
+
> .govgr-nav__list-item {
|
|
100
|
+
> .govgr-nav__list-item-link,
|
|
101
|
+
> .govgr-nav__list-item-btn {
|
|
102
|
+
&:not(:focus) {
|
|
103
|
+
@apply text-white;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
> .govgr-nav__list-item-link--active,
|
|
107
|
+
> .govgr-nav__list-item-btn--active {
|
|
108
|
+
&:not(:focus) {
|
|
109
|
+
@apply text-white !important;
|
|
110
|
+
}
|
|
111
|
+
.govgr-svg-icon {
|
|
112
|
+
fill: var(--color-white);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
package/src/components/index.css
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
.govgr-kitchensink-card .govgr-table__cell .govgr-dropdown {
|
|
47
47
|
margin: 0 !important;
|
|
48
48
|
}
|
|
49
|
-
.govgr-kitchensink-card .govgr-layout-
|
|
49
|
+
.govgr-kitchensink-card .govgr-layout--full-height {
|
|
50
50
|
min-height: inherit;
|
|
51
51
|
}
|
|
52
52
|
@container (min-width: 400px) {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
.govgr-kitchensink-card .govgr-drawer--closed {
|
|
59
59
|
@apply hidden;
|
|
60
60
|
}
|
|
61
|
-
.govgr-kitchensink-card .govgr-
|
|
61
|
+
.govgr-kitchensink-card .govgr-close-btn {
|
|
62
62
|
@apply block;
|
|
63
63
|
}
|
|
64
64
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.govgr-layout
|
|
1
|
+
.govgr-layout {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
flex-wrap: wrap;
|
|
5
5
|
}
|
|
6
|
-
.govgr-layout-
|
|
6
|
+
.govgr-layout--full-height {
|
|
7
7
|
min-height: 100vh;
|
|
8
8
|
}
|
|
9
9
|
.govgr-container {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
@apply m-auto px-4 py-2 border-0 w-full bg-transparent;
|
|
49
49
|
}
|
|
50
50
|
.govgr-section-break--visible {
|
|
51
|
-
@apply border-t border-base-300 border-solid
|
|
51
|
+
@apply border-t border-base-300 border-solid;
|
|
52
52
|
}
|
|
53
53
|
.govgr-section-break--md {
|
|
54
54
|
@apply mb-5;
|
package/src/components/modal.css
CHANGED
package/src/components/nav.css
CHANGED
|
@@ -1,124 +1,44 @@
|
|
|
1
|
-
.govgr-
|
|
2
|
-
@apply relative;
|
|
3
|
-
.govgr-svg-icon--burger {
|
|
4
|
-
fill: var(--color-white);
|
|
5
|
-
@apply float-right focus:bg-focus;
|
|
6
|
-
}
|
|
7
|
-
.govgr-drawer__close-icon {
|
|
8
|
-
@apply sm:hidden;
|
|
9
|
-
.govgr-svg-icon--close {
|
|
10
|
-
fill: var(--color-link) !important;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
.govgr-nav {
|
|
14
|
-
@apply fixed;
|
|
15
|
-
}
|
|
1
|
+
.govgr-nav {
|
|
2
|
+
@apply relative block w-full h-auto bg-base-100 text-base-content;
|
|
16
3
|
.govgr-nav__list {
|
|
17
|
-
@apply
|
|
18
|
-
@apply sm:w-min xs:hidden m-0 max-w-5xl sm:mx-auto sm:gap-x-6 static sm:py-1 xs:px-3 sm:px-0
|
|
19
|
-
flex flex-wrap flex-col sm:flex-row;
|
|
20
|
-
}
|
|
21
|
-
.govgr-nav__list-item {
|
|
22
|
-
@apply text-base-content sm:mr-auto sm:ml-auto sm:text-center sm:underline mr-0 xs:px-2 xs:py-1 sm:gap-x-6;
|
|
23
|
-
.govgr-svg-icon {
|
|
24
|
-
fill: var(--color-white) !important;
|
|
25
|
-
}
|
|
4
|
+
@apply px-3;
|
|
26
5
|
}
|
|
27
6
|
.govgr-nav__list-item-link,
|
|
28
7
|
.govgr-nav__list-item-btn {
|
|
29
|
-
@apply
|
|
30
|
-
@apply xs:hidden items-center xs:gap-1;
|
|
31
|
-
&:focus {
|
|
32
|
-
@apply sm:bg-focus sm:text-link-active !important;
|
|
33
|
-
.govgr-svg-icon {
|
|
34
|
-
fill: var(--color-link-active) !important;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
.govgr-nav__list--active {
|
|
39
|
-
@apply sm:bg-tertiary !important;
|
|
8
|
+
@apply md:no-underline !important;
|
|
40
9
|
}
|
|
41
10
|
}
|
|
42
|
-
|
|
43
|
-
/* --- NAV --- */
|
|
44
|
-
.govgr-nav {
|
|
45
|
-
@apply sm:block !important;
|
|
46
|
-
@apply xs:hidden w-3/4 sm:w-full h-full bg-base-100
|
|
47
|
-
sm:h-auto sm:bg-base-100 xs:text-base-content
|
|
48
|
-
z-30 sm:z-auto
|
|
49
|
-
opacity-100 right-0 top-0 sm:top-auto overflow-x-scroll sm:overflow-visible;
|
|
50
|
-
}
|
|
51
11
|
.govgr-nav--fixed {
|
|
52
|
-
@apply fixed
|
|
12
|
+
@apply fixed w-4/5 h-full z-30 right-0 top-0 overflow-x-auto
|
|
13
|
+
sm:relative sm:block sm:w-full sm:h-auto sm:z-auto sm:top-auto sm:overflow-visible;
|
|
14
|
+
@apply shadow-thick sm:shadow-none !important;
|
|
15
|
+
.govgr-nav__list {
|
|
16
|
+
@apply p-4;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.govgr-nav--open {
|
|
20
|
+
@apply block;
|
|
53
21
|
}
|
|
54
22
|
.govgr-nav--border {
|
|
55
23
|
@apply sm:border-b sm:border-base-400;
|
|
56
24
|
}
|
|
57
|
-
.govgr-
|
|
58
|
-
@apply
|
|
59
|
-
}
|
|
60
|
-
.govgr-nav--hidden {
|
|
61
|
-
@apply hidden !important;
|
|
25
|
+
.govgr-nav__list {
|
|
26
|
+
@apply w-full m-0 max-w-5xl static flex flex-wrap flex-col;
|
|
62
27
|
}
|
|
63
|
-
.govgr-nav__list
|
|
64
|
-
@apply
|
|
65
|
-
xs:py-1;
|
|
66
|
-
}
|
|
67
|
-
.govgr-nav--horizontal {
|
|
68
|
-
.govgr-nav--horizontal {
|
|
69
|
-
@apply sm:mt-2 sm:border-b-0 static w-full z-1 sm:order-1;
|
|
70
|
-
@apply block overflow-x-visible;
|
|
71
|
-
.govgr-nav__list {
|
|
72
|
-
@apply sm:px-0 sm:pb-0 sm:ml-6 !important;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
.govgr-nav__list {
|
|
76
|
-
@apply w-full m-0 max-w-5xl sm:mx-auto sm:gap-x-6 static sm:py-1 xs:px-3 sm:px-0
|
|
77
|
-
flex flex-wrap flex-col sm:flex-row;
|
|
78
|
-
.govgr-section-break {
|
|
79
|
-
margin-top: 41px !important;
|
|
80
|
-
@apply sm:flex !important;
|
|
81
|
-
@apply xs:hidden sm:p-0 absolute left-0 right-0;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
28
|
+
.govgr-nav__list--horizontal {
|
|
29
|
+
@apply sm:mx-auto sm:gap-x-6 sm:py-1 px-3 sm:px-0 sm:flex-row;
|
|
84
30
|
.govgr-nav__list-item {
|
|
85
31
|
@apply sm:gap-x-6;
|
|
86
32
|
}
|
|
87
|
-
.govgr-drawer__close-icon {
|
|
88
|
-
@apply sm:hidden mt-3;
|
|
89
|
-
}
|
|
90
|
-
.govgr-heading-md {
|
|
91
|
-
@apply mb-0;
|
|
92
|
-
}
|
|
93
33
|
}
|
|
94
|
-
.govgr-
|
|
95
|
-
|
|
96
|
-
@apply sm:mt-2 sm:border-b-0 static w-full z-1;
|
|
97
|
-
@apply block overflow-x-visible;
|
|
98
|
-
}
|
|
99
|
-
.govgr-nav__list {
|
|
100
|
-
@apply w-full m-0 max-w-5xl static xs:px-3
|
|
101
|
-
flex flex-wrap flex-col;
|
|
102
|
-
}
|
|
103
|
-
.govgr-drawer__close-icon {
|
|
104
|
-
@apply sm:hidden mt-3;
|
|
105
|
-
}
|
|
106
|
-
.govgr-heading-md {
|
|
107
|
-
@apply mb-0;
|
|
108
|
-
}
|
|
34
|
+
.govgr-nav__list--full-width {
|
|
35
|
+
@apply max-w-none;
|
|
109
36
|
}
|
|
110
|
-
.govgr-nav__list
|
|
111
|
-
|
|
112
|
-
.govgr-drawer__heading {
|
|
113
|
-
@apply flex-row-reverse;
|
|
114
|
-
}
|
|
37
|
+
.govgr-nav__list-item {
|
|
38
|
+
@apply text-base-content py-1;
|
|
115
39
|
}
|
|
116
40
|
.govgr-nav__list-item-link,
|
|
117
41
|
.govgr-nav__list-item-btn {
|
|
118
|
-
@apply md:no-underline !important;
|
|
119
|
-
.govgr-svg-icon {
|
|
120
|
-
@apply ml-0.5;
|
|
121
|
-
}
|
|
122
42
|
&:focus {
|
|
123
43
|
@apply bg-focus text-base-content outline-none;
|
|
124
44
|
box-shadow: 0 -2px var(--color-focus), 0 4px var(--color-base-content);
|
|
@@ -131,14 +51,10 @@
|
|
|
131
51
|
.govgr-nav__list-item-btn--active {
|
|
132
52
|
@apply text-base-content !important;
|
|
133
53
|
@apply font-semibold;
|
|
134
|
-
> .govgr-svg-icon {
|
|
135
|
-
fill: var(--color-base-content) !important;
|
|
136
|
-
}
|
|
137
54
|
}
|
|
138
55
|
|
|
139
|
-
/* --- NAV-MENU --- */
|
|
140
56
|
.govgr-nav-menu {
|
|
141
|
-
@apply flex
|
|
57
|
+
@apply flex w-full;
|
|
142
58
|
}
|
|
143
59
|
.govgr-nav-menu--hidden {
|
|
144
60
|
@apply hidden;
|
|
@@ -146,35 +62,58 @@
|
|
|
146
62
|
.govgr-nav-menu--horizontal {
|
|
147
63
|
@apply sm:order-2 sm:left-0 sm:right-0 sm:relative sm:mt-3 sm:bg-base-100;
|
|
148
64
|
.govgr-main-wrapper {
|
|
149
|
-
@apply
|
|
65
|
+
@apply gap-y-2;
|
|
150
66
|
}
|
|
151
67
|
.govgr-nav-menu__content-list {
|
|
152
|
-
@apply sm:grid-
|
|
153
|
-
|
|
68
|
+
@apply sm:grid-rows-1 sm:grid-cols-3;
|
|
69
|
+
}
|
|
70
|
+
.govgr-nav-menu__title {
|
|
71
|
+
@apply hidden sm:block;
|
|
72
|
+
+ .govgr-nav-menu__content > .govgr-nav-menu__content-list {
|
|
73
|
+
@apply sm:grid-cols-2;
|
|
74
|
+
}
|
|
154
75
|
}
|
|
155
76
|
}
|
|
156
77
|
.govgr-nav-menu--vertical {
|
|
157
|
-
.govgr-nav-
|
|
158
|
-
@apply p-0 grid-flow-row xs:grid-cols-1 xs:grid-rows-6;
|
|
159
|
-
}
|
|
160
|
-
.govgr-nav-menu__container-title {
|
|
161
|
-
@apply mt-3;
|
|
162
|
-
}
|
|
163
|
-
.govgr-nav-menu__container-title-heading {
|
|
78
|
+
.govgr-nav-menu__title {
|
|
164
79
|
@apply hidden;
|
|
165
80
|
}
|
|
81
|
+
.govgr-nav-menu__content-list {
|
|
82
|
+
@apply py-2 sm:py-4;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
.govgr-nav-menu__content-list {
|
|
86
|
+
@apply p-0 grid grid-flow-row grid-cols-1;
|
|
166
87
|
}
|
|
167
88
|
.govgr-nav-menu__content-list-item {
|
|
168
|
-
@apply relative pt-0 pb-5 pr-3 pl-0
|
|
89
|
+
@apply relative pt-0 pb-5 pr-3 pl-0 box-border;
|
|
169
90
|
}
|
|
170
91
|
|
|
171
|
-
/*
|
|
172
|
-
|
|
173
|
-
|
|
92
|
+
/* overrides */
|
|
93
|
+
|
|
94
|
+
.govgr-nav {
|
|
95
|
+
.govgr-close-btn {
|
|
96
|
+
@apply sm:hidden mt-3;
|
|
97
|
+
}
|
|
98
|
+
.govgr-heading-md {
|
|
99
|
+
@apply mb-2 md:mb-0;
|
|
100
|
+
}
|
|
174
101
|
}
|
|
175
|
-
.govgr-
|
|
176
|
-
|
|
102
|
+
.govgr-nav__list,
|
|
103
|
+
.govgr-main-wrapper {
|
|
104
|
+
.govgr-drawer__heading {
|
|
105
|
+
@apply flex-row-reverse;
|
|
106
|
+
}
|
|
177
107
|
}
|
|
178
|
-
.govgr-
|
|
179
|
-
|
|
108
|
+
.govgr-nav__list-item-link,
|
|
109
|
+
.govgr-nav__list-item-btn {
|
|
110
|
+
> .govgr-svg-icon {
|
|
111
|
+
@apply ml-0.5;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
.govgr-nav__list-item-link--active,
|
|
115
|
+
.govgr-nav__list-item-btn--active {
|
|
116
|
+
> .govgr-svg-icon {
|
|
117
|
+
fill: var(--color-base-content) !important;
|
|
118
|
+
}
|
|
180
119
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.govgr-phase-
|
|
1
|
+
.govgr-phase-banner__header {
|
|
2
2
|
@apply bg-focus top-0 z-30
|
|
3
3
|
print:bg-white print:border-focus print:border-2 print:px-4;
|
|
4
4
|
.govgr-phase-banner {
|
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
.govgr-phase-banner {
|
|
9
9
|
@apply py-2 mb-4;
|
|
10
10
|
}
|
|
11
|
+
.govgr-header__section {
|
|
12
|
+
.govgr-phase-banner {
|
|
13
|
+
@apply mb-0;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
11
16
|
.govgr-phase-banner--underline {
|
|
12
17
|
@apply border-base-500 border-b;
|
|
13
18
|
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
.govgr-stack {
|
|
2
|
+
@apply flex flex-col flex-wrap;
|
|
3
|
+
}
|
|
4
|
+
.govgr-stack--row {
|
|
5
|
+
@apply flex-row;
|
|
6
|
+
}
|
|
7
|
+
.govgr-stack--reverse-row {
|
|
8
|
+
@apply flex-row-reverse;
|
|
9
|
+
}
|
|
10
|
+
.govgr-stack--col-reverse {
|
|
11
|
+
@apply flex-col-reverse;
|
|
12
|
+
}
|
|
13
|
+
.govgr-stack--nowrap {
|
|
14
|
+
@apply flex-nowrap;
|
|
15
|
+
}
|
|
16
|
+
.govgr-stack--justify-flex-start {
|
|
17
|
+
@apply justify-start;
|
|
18
|
+
}
|
|
19
|
+
.govgr-stack--justify-flex-end {
|
|
20
|
+
@apply justify-end;
|
|
21
|
+
}
|
|
22
|
+
.govgr-stack--justify-center {
|
|
23
|
+
@apply justify-center;
|
|
24
|
+
}
|
|
25
|
+
.govgr-stack--justify-space-between {
|
|
26
|
+
@apply justify-between;
|
|
27
|
+
}
|
|
28
|
+
.govgr-stack--justify-space-around {
|
|
29
|
+
@apply justify-around;
|
|
30
|
+
}
|
|
31
|
+
.govgr-stack--justify-space-evenly {
|
|
32
|
+
@apply justify-evenly;
|
|
33
|
+
}
|
|
34
|
+
.govgr-stack--align-stretch {
|
|
35
|
+
@apply items-stretch;
|
|
36
|
+
}
|
|
37
|
+
.govgr-stack--align-flex-start {
|
|
38
|
+
@apply items-start;
|
|
39
|
+
}
|
|
40
|
+
.govgr-stack--align-flex-end {
|
|
41
|
+
@apply items-end;
|
|
42
|
+
}
|
|
43
|
+
.govgr-stack--align-center {
|
|
44
|
+
@apply items-center;
|
|
45
|
+
}
|
|
46
|
+
.govgr-stack--align-baseline {
|
|
47
|
+
@apply items-baseline;
|
|
48
|
+
}
|
|
49
|
+
.govgr-stack--content-flex-start {
|
|
50
|
+
@apply content-start;
|
|
51
|
+
}
|
|
52
|
+
.govgr-stack--content-flex-end {
|
|
53
|
+
@apply content-end;
|
|
54
|
+
}
|
|
55
|
+
.govgr-stack--content-center {
|
|
56
|
+
@apply content-center;
|
|
57
|
+
}
|
|
58
|
+
.govgr-stack--content-space-between {
|
|
59
|
+
@apply content-between;
|
|
60
|
+
}
|
|
61
|
+
.govgr-stack--content-space-around {
|
|
62
|
+
@apply content-around;
|
|
63
|
+
}
|
|
64
|
+
.govgr-stack--content-space-evenly {
|
|
65
|
+
@apply content-evenly;
|
|
66
|
+
}
|
|
@@ -39,6 +39,14 @@
|
|
|
39
39
|
&:first-child {
|
|
40
40
|
@apply border-t-2;
|
|
41
41
|
}
|
|
42
|
+
.govgr-step-nav__accordion__opened {
|
|
43
|
+
visibility: hidden;
|
|
44
|
+
display: none;
|
|
45
|
+
}
|
|
46
|
+
.govgr-step-nav__accordion__closed {
|
|
47
|
+
visibility: visible;
|
|
48
|
+
display: block;
|
|
49
|
+
}
|
|
42
50
|
}
|
|
43
51
|
.govgr-step-nav__accordion[open] {
|
|
44
52
|
|
|
@@ -50,10 +58,8 @@
|
|
|
50
58
|
visibility: hidden;
|
|
51
59
|
display: none;
|
|
52
60
|
}
|
|
53
|
-
.govgr-nav-step__accordion__content {
|
|
54
|
-
@apply block;
|
|
55
|
-
}
|
|
56
61
|
}
|
|
62
|
+
|
|
57
63
|
.govgr-step-nav__accordion__summary {
|
|
58
64
|
@apply list-none w-fit mb-0 py-4 pr-8 cursor-pointer;
|
|
59
65
|
.govgr-hint {
|
|
@@ -136,7 +142,7 @@
|
|
|
136
142
|
0 0.1em 0 var(--color-white), -0.1em 0 0 var(--color-white);
|
|
137
143
|
}
|
|
138
144
|
.govgr-nav-step__accordion__content {
|
|
139
|
-
@apply
|
|
145
|
+
@apply md:pt-2 mb-6 pt-1 mx-0;
|
|
140
146
|
> *:last-child {
|
|
141
147
|
@apply mb-0;
|
|
142
148
|
}
|
package/src/components/table.css
CHANGED
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
@apply bg-base-100;
|
|
237
237
|
}
|
|
238
238
|
.govgr-table__header {
|
|
239
|
-
.govgr-dropdown__button {
|
|
239
|
+
.govgr-dropdown__button:not(:focus) {
|
|
240
240
|
@apply no-underline font-bold text-base-content !important;
|
|
241
241
|
}
|
|
242
242
|
.govgr-dropdown__button--underline:not(:focus) {
|
|
@@ -246,18 +246,15 @@
|
|
|
246
246
|
.govgr-dropdown__content {
|
|
247
247
|
@apply py-0;
|
|
248
248
|
}
|
|
249
|
-
.govgr-
|
|
250
|
-
@apply flex
|
|
251
|
-
}
|
|
252
|
-
.govgr-vertical-nav__item--active:not(:focus) {
|
|
253
|
-
@apply bg-base-200 font-normal !important;
|
|
249
|
+
.govgr-nav__list-item-link, .govgr-nav__list-item-btn {
|
|
250
|
+
@apply flex no-underline;
|
|
254
251
|
}
|
|
255
252
|
}
|
|
256
253
|
.govgr-table__cell {
|
|
257
254
|
.govgr-btn {
|
|
258
255
|
@apply mb-0;
|
|
259
256
|
}
|
|
260
|
-
.govgr-
|
|
257
|
+
.govgr-btn-group {
|
|
261
258
|
@apply mb-0;
|
|
262
259
|
}
|
|
263
260
|
}
|
|
@@ -33,13 +33,12 @@
|
|
|
33
33
|
.govgr-task-list__content__tag {
|
|
34
34
|
@apply px-2 py-1 mr-2 inline-block font-sans text-sm uppercase tracking-widest;
|
|
35
35
|
}
|
|
36
|
-
.govgr-task-list__content__tag--
|
|
36
|
+
.govgr-task-list__content__tag--info {
|
|
37
37
|
@apply bg-info text-white print:border-2 print:bg-white print:border-info-hover print:text-info-hover print:mr-4;
|
|
38
38
|
}
|
|
39
|
-
.govgr-task-list__content__tag--
|
|
39
|
+
.govgr-task-list__content__tag--primary {
|
|
40
40
|
@apply bg-secondary text-base-content print:border-2 print:bg-white print:border-info print:text-info print:mr-4;
|
|
41
41
|
}
|
|
42
|
-
.govgr-task-list__content__tag--
|
|
42
|
+
.govgr-task-list__content__tag--secondary {
|
|
43
43
|
@apply bg-base-300 print:border-2 print:bg-white print:border-base-800 print:text-base-800 print:mr-4;
|
|
44
44
|
}
|
|
45
|
-
.govgr-tag {}
|
|
@@ -30,6 +30,14 @@
|
|
|
30
30
|
font-weight: var(--heading-sm-font-weight);
|
|
31
31
|
letter-spacing: var(--heading-sm-letter-spacing);
|
|
32
32
|
}
|
|
33
|
+
.govgr-heading-xs {
|
|
34
|
+
@apply mx-0 ;
|
|
35
|
+
font-size: var(--heading-xs-font-size);
|
|
36
|
+
line-height:var(--heading-xs-line-height);
|
|
37
|
+
margin-bottom:var(--heading-xs-margin-bottom);
|
|
38
|
+
font-weight: var(--heading-xs-font-weight);
|
|
39
|
+
letter-spacing: var(--heading-xs-letter-spacing);
|
|
40
|
+
}
|
|
33
41
|
.govgr-caption-xl {
|
|
34
42
|
@apply block mx-0 font-normal;
|
|
35
43
|
color: var(--caption-xl-color);
|
|
@@ -130,6 +138,14 @@
|
|
|
130
138
|
@apply gap-x-10 gap-y-5;
|
|
131
139
|
}
|
|
132
140
|
}
|
|
141
|
+
@media (min-width: 768px) {
|
|
142
|
+
.govgr-list--col-2 {
|
|
143
|
+
column-count: 2;
|
|
144
|
+
}
|
|
145
|
+
.govgr-list--col-3 {
|
|
146
|
+
column-count: 2;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
133
149
|
.govgr-list, .govgr-blockquote {
|
|
134
150
|
@apply md:mb-8 mb-4 text-base-content;
|
|
135
151
|
}
|
|
@@ -191,10 +207,10 @@
|
|
|
191
207
|
}
|
|
192
208
|
}
|
|
193
209
|
.govgr-header {
|
|
194
|
-
.govgr-
|
|
210
|
+
.govgr-header__content > .govgr-link {
|
|
195
211
|
@apply text-white focus:text-link-active print:text-base-content;
|
|
196
212
|
}
|
|
197
|
-
.govgr-
|
|
213
|
+
.govgr-header__section > .govgr-link {
|
|
198
214
|
@apply text-white focus:text-link-active print:text-base-content;
|
|
199
215
|
}
|
|
200
216
|
}
|
|
@@ -29,7 +29,7 @@ export default function Home() {
|
|
|
29
29
|
<aside className="govgr-admin-side-content">
|
|
30
30
|
<div className="govgr-filter">
|
|
31
31
|
<div className="govgr-filter__heading">
|
|
32
|
-
<a className="govgr-link govgr-
|
|
32
|
+
<a className="govgr-link govgr-close-btn" href="#">
|
|
33
33
|
Κλείσιμο
|
|
34
34
|
<svg class="govgr-svg-icon--close" focusable="true" viewBox="0 0 24 24" aria-hidden="true" > <polygon points="14.4,11.8 22,4.2 19.7,1.8 12,9.4 4.4,1.8 2,4.2 9.7,11.9 2.1,19.5 4.4,21.9 12.1,14.3 19.7,21.9 22.1,19.5 " /></svg>
|
|
35
35
|
</a>
|
package/src/utilities/index.css
CHANGED
|
@@ -394,27 +394,6 @@
|
|
|
394
394
|
.govgr-grid-inline {
|
|
395
395
|
@apply inline-grid;
|
|
396
396
|
}
|
|
397
|
-
.govgr-grid__gap-1 {
|
|
398
|
-
@apply gap-1;
|
|
399
|
-
}
|
|
400
|
-
.govgr-grid__gap-2 {
|
|
401
|
-
@apply gap-2;
|
|
402
|
-
}
|
|
403
|
-
.govgr-grid__gap-4 {
|
|
404
|
-
@apply gap-4;
|
|
405
|
-
}
|
|
406
|
-
.govgr-grid__gap-6 {
|
|
407
|
-
@apply gap-6;
|
|
408
|
-
}
|
|
409
|
-
.govgr-grid__gap-8 {
|
|
410
|
-
@apply gap-8;
|
|
411
|
-
}
|
|
412
|
-
.govgr-grid__gap-10 {
|
|
413
|
-
@apply gap-10;
|
|
414
|
-
}
|
|
415
|
-
.govgr-grid__gap-12 {
|
|
416
|
-
@apply gap-12;
|
|
417
|
-
}
|
|
418
397
|
.govgr-grid__col-auto {
|
|
419
398
|
@apply col-auto;
|
|
420
399
|
}
|
|
@@ -462,4 +441,25 @@
|
|
|
462
441
|
}
|
|
463
442
|
.govgr-print-visible-inline {
|
|
464
443
|
@apply print:inline !important;
|
|
444
|
+
}
|
|
445
|
+
.govgr-gap-1 {
|
|
446
|
+
@apply gap-1;
|
|
447
|
+
}
|
|
448
|
+
.govgr-gap-2 {
|
|
449
|
+
@apply gap-2;
|
|
450
|
+
}
|
|
451
|
+
.govgr-gap-4 {
|
|
452
|
+
@apply gap-4;
|
|
453
|
+
}
|
|
454
|
+
.govgr-gap-6 {
|
|
455
|
+
@apply gap-6;
|
|
456
|
+
}
|
|
457
|
+
.govgr-gap-8 {
|
|
458
|
+
@apply gap-8;
|
|
459
|
+
}
|
|
460
|
+
.govgr-gap-10 {
|
|
461
|
+
@apply gap-10;
|
|
462
|
+
}
|
|
463
|
+
.govgr-gap-12 {
|
|
464
|
+
@apply gap-12;
|
|
465
465
|
}
|