@digigov/css 2.0.0-a594a958 → 2.0.0-a64dc016

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/css",
3
- "version": "2.0.0-a594a958",
3
+ "version": "2.0.0-a64dc016",
4
4
  "description": "Digigov CSS - Tailwind CSS Components",
5
5
  "author": "GRNET Devs <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
@@ -39,7 +39,7 @@
39
39
  ]
40
40
  },
41
41
  "devDependencies": {
42
- "@digigov/cli": "2.0.0-a594a958",
42
+ "@digigov/cli": "2.0.0-a64dc016",
43
43
  "autoprefixer": "10.4.16",
44
44
  "postcss-cli": "8.3.0",
45
45
  "postcss-import": "13.0.0",
@@ -48,16 +48,16 @@
48
48
  "tailwindcss": "3.4.13",
49
49
  "nodemon": "2.0.7",
50
50
  "next": "13.1.1",
51
- "@digigov/postcss-banner": "1.0.5-a594a958",
52
- "@digigov/cli-build-tailwind": "2.0.0-a594a958",
51
+ "@digigov/postcss-banner": "1.0.5-a64dc016",
52
+ "@digigov/cli-build-tailwind": "2.0.0-a64dc016",
53
53
  "rimraf": "3.0.2",
54
54
  "publint": "0.1.8",
55
55
  "stylelint": "15.11.0",
56
- "stylelint-plugin-digigov": "1.1.0-a594a958",
56
+ "stylelint-plugin-digigov": "1.1.0-a64dc016",
57
57
  "prettier": "3.4.2"
58
58
  },
59
59
  "dependencies": {
60
- "@digigov/theme-default": "1.0.0-a594a958",
60
+ "@digigov/theme-default": "1.0.0-a64dc016",
61
61
  "@fontsource/roboto": "4.4.0",
62
62
  "cssnano": "4.1.10",
63
63
  "publint": "0.1.8",
@@ -93,6 +93,20 @@
93
93
 
94
94
  /* overrides */
95
95
 
96
+ .ds-card {
97
+ .ds-summary-list {
98
+ &:last-child {
99
+ > .ds-summary-list__row:last-child {
100
+ @apply mb-0 border-transparent;
101
+ > .ds-summary-list__key,
102
+ .ds-summary-list__value {
103
+ @apply mb-0 border-transparent;
104
+ }
105
+ }
106
+ }
107
+ }
108
+ }
109
+
96
110
  .ds-card--cta {
97
111
  .ds-card__heading {
98
112
  .ds-link {
@@ -110,3 +124,5 @@
110
124
  @apply mb-0;
111
125
  }
112
126
  }
127
+
128
+
@@ -25,29 +25,23 @@
25
25
  @apply bg-base-100 fixed top-0 right-0 bottom-0 overflow-y-scroll w-4/5 max-w-md p-4;
26
26
  box-shadow: 0 0 30px rgba(var(--color-base-900-rgb), 0.9);
27
27
  &.ds-filter--position-relative-always {
28
- @apply relative w-full max-w-full shadow-none overflow-visible mb-4 md:mb-8;
28
+ @apply relative w-full max-w-full shadow-none overflow-visible
29
+ p-0 mb-4 md:mb-8;
29
30
  }
30
31
  &.ds-filter--position-relative-sm {
31
- @apply sm:relative sm:w-full sm:shadow-none sm:overflow-visible sm:mb-4 md:mb-8 sm:max-w-full;
32
- &:not(.ds-filter--border) {
33
- @apply sm:p-0;
34
- }
32
+ @apply sm:relative sm:w-full sm:shadow-none sm:overflow-visible
33
+ sm:p-0 sm:mb-4 md:mb-8 sm:max-w-full;
35
34
  }
36
35
  &.ds-filter--position-relative-md {
37
- @apply md:relative md:w-full md:shadow-none md:overflow-visible md:mb-8 md:max-w-full;
38
- &:not(.ds-filter--border) {
39
- @apply md:p-0;
40
- }
36
+ @apply md:relative md:w-full md:shadow-none md:overflow-visible
37
+ md:p-0 md:mb-8 md:max-w-full;
41
38
  }
42
39
  &.ds-filter--position-relative-lg {
43
40
  @apply lg:relative lg:overflow-visible lg:w-full lg:shadow-none
44
- lg:z-2 lg:mb-8 lg:max-w-full;
45
- &:not(.ds-filter--border) {
46
- @apply lg:p-0;
47
- }
41
+ lg:p-0 lg:z-2 lg:mb-8 lg:max-w-full;
48
42
  }
49
43
  &.ds-filter--border {
50
- @apply border border-base-300;
44
+ @apply border border-base-300 !p-4;
51
45
  }
52
46
  }
53
47
  .ds-filter__content {
@@ -115,7 +115,7 @@
115
115
  @apply flex flex-wrap gap-x-4 mb-0;
116
116
  }
117
117
  .ds-uploaded-file-border {
118
- @apply p-4 border border-base-300;
118
+ @apply p-4 border border-base-300 block;
119
119
  }
120
120
  .ds-date-input {
121
121
  @apply flex flex-wrap gap-y-2;
@@ -223,7 +223,7 @@
223
223
  &.ds-grid {
224
224
  @apply grid gap-4;
225
225
  .ds-fieldset {
226
- @apply grid gap-4 grid-cols-12;
226
+ @apply grid gap-2 grid-cols-12;
227
227
  :not(.ds-field, .ds-grid-item) {
228
228
  @apply col-span-12;
229
229
  }
@@ -163,6 +163,6 @@
163
163
  }
164
164
  .ds-summary-list__value {
165
165
  .ds-btn {
166
- @apply ml-4;
166
+ @apply ml-0;
167
167
  }
168
168
  }
@@ -179,11 +179,14 @@
179
179
  &.ds-link--no-underline {
180
180
  @apply no-underline hover:underline;
181
181
  }
182
- &.ds-link--disabled {
183
- @apply cursor-not-allowed !important;
184
- color: var(--color-base-content);
182
+ &.ds-link--disabled,
183
+ &[disabled] {
184
+ @apply !cursor-not-allowed text-base-600 hover:text-base-600;
185
185
  &:hover {
186
- color: var(--color-base-content);
186
+ text-decoration-thickness: inherit;
187
+ }
188
+ &.ds-link--no-underline {
189
+ @apply hover:no-underline;
187
190
  }
188
191
  }
189
192
  &.ds-link-warning {