@solid-design-system/styles 1.5.5 → 2.0.0-next.1

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.
Files changed (86) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/cdn/modules/chip.css +2 -1
  3. package/cdn/modules/container.css +2 -1
  4. package/cdn/modules/copyright.css +2 -1
  5. package/cdn/modules/display.css +2 -1
  6. package/cdn/modules/flag.css +2 -1
  7. package/cdn/modules/footnotes.css +2 -1
  8. package/cdn/modules/headline.css +2 -1
  9. package/cdn/modules/hidden-links.css +2 -1
  10. package/cdn/modules/interactive.css +2 -1
  11. package/cdn/modules/leadtext.css +2 -1
  12. package/cdn/modules/list.css +2 -1
  13. package/cdn/modules/mark.css +2 -1
  14. package/cdn/modules/media.css +2 -1
  15. package/cdn/modules/meta.css +2 -1
  16. package/cdn/modules/pagination.css +2 -1
  17. package/cdn/modules/paragraph.css +2 -1
  18. package/cdn/modules/prose.css +2 -1
  19. package/cdn/modules/status-badge.css +2 -1
  20. package/cdn/modules/table-cell.css +2 -1
  21. package/cdn/modules/table.css +2 -1
  22. package/cdn/solid-styles.css +2 -1
  23. package/cdn-versioned/modules/chip.css +2 -1
  24. package/cdn-versioned/modules/container.css +2 -1
  25. package/cdn-versioned/modules/copyright.css +2 -1
  26. package/cdn-versioned/modules/display.css +2 -1
  27. package/cdn-versioned/modules/flag.css +2 -1
  28. package/cdn-versioned/modules/footnotes.css +2 -1
  29. package/cdn-versioned/modules/headline.css +2 -1
  30. package/cdn-versioned/modules/hidden-links.css +2 -1
  31. package/cdn-versioned/modules/interactive.css +2 -1
  32. package/cdn-versioned/modules/leadtext.css +2 -1
  33. package/cdn-versioned/modules/list.css +2 -1
  34. package/cdn-versioned/modules/mark.css +2 -1
  35. package/cdn-versioned/modules/media.css +2 -1
  36. package/cdn-versioned/modules/meta.css +2 -1
  37. package/cdn-versioned/modules/pagination.css +2 -1
  38. package/cdn-versioned/modules/paragraph.css +2 -1
  39. package/cdn-versioned/modules/prose.css +2 -1
  40. package/cdn-versioned/modules/status-badge.css +2 -1
  41. package/cdn-versioned/modules/table-cell.css +2 -1
  42. package/cdn-versioned/modules/table.css +2 -1
  43. package/cdn-versioned/solid-styles.css +2 -1
  44. package/dist/modules/chip.css +20 -56
  45. package/dist/modules/container.css +56 -122
  46. package/dist/modules/copyright.css +107 -49
  47. package/dist/modules/display.css +53 -62
  48. package/dist/modules/flag.css +19 -54
  49. package/dist/modules/footnotes.css +107 -119
  50. package/dist/modules/headline.css +114 -212
  51. package/dist/modules/hidden-links.css +118 -44
  52. package/dist/modules/interactive.css +67 -107
  53. package/dist/modules/leadtext.css +36 -39
  54. package/dist/modules/list.css +71 -143
  55. package/dist/modules/mark.css +4 -13
  56. package/dist/modules/media.css +10 -29
  57. package/dist/modules/meta.css +37 -38
  58. package/dist/modules/pagination.css +247 -384
  59. package/dist/modules/paragraph.css +36 -24
  60. package/dist/modules/prose.css +510 -773
  61. package/dist/modules/status-badge.css +19 -53
  62. package/dist/modules/table-cell.css +154 -169
  63. package/dist/modules/table.css +25 -17
  64. package/dist/solid-styles.css +1159 -1668
  65. package/dist-versioned/modules/chip.css +24 -60
  66. package/dist-versioned/modules/container.css +77 -143
  67. package/dist-versioned/modules/copyright.css +113 -55
  68. package/dist-versioned/modules/display.css +55 -64
  69. package/dist-versioned/modules/flag.css +23 -58
  70. package/dist-versioned/modules/footnotes.css +135 -147
  71. package/dist-versioned/modules/headline.css +129 -227
  72. package/dist-versioned/modules/hidden-links.css +122 -48
  73. package/dist-versioned/modules/interactive.css +73 -113
  74. package/dist-versioned/modules/leadtext.css +37 -40
  75. package/dist-versioned/modules/list.css +93 -165
  76. package/dist-versioned/modules/mark.css +5 -14
  77. package/dist-versioned/modules/media.css +14 -33
  78. package/dist-versioned/modules/meta.css +43 -44
  79. package/dist-versioned/modules/pagination.css +274 -411
  80. package/dist-versioned/modules/paragraph.css +37 -25
  81. package/dist-versioned/modules/prose.css +596 -859
  82. package/dist-versioned/modules/status-badge.css +25 -59
  83. package/dist-versioned/modules/table-cell.css +170 -185
  84. package/dist-versioned/modules/table.css +26 -18
  85. package/dist-versioned/solid-styles.css +1350 -1859
  86. package/package.json +4 -5
@@ -1,237 +1,139 @@
1
- /**
2
- * Headlines are vital for displaying content hierarchy and to improve accessibility. A headline can be additionally accompanied by an icon. The icon can be displayed on the left side or inline.
3
- * @name sd-headline
4
- * @status stable
5
- * @since 1.16
6
- * @variant { 3xl | xl | lg | base } sd-headline--size-... The headline's size.
7
- * @boolean sd-headline--inverted Inverts the headline text.
8
- * @boolean sd-headline--inline Sets inline behavior. Used exclusively when an sd-icon or other component is present. See usage <a href="#inline">here.</a>
9
- */
10
-
11
- .sd-headline,
12
- .sd-prose :is(h1, h2, h3, h4, h5) {
13
-
14
- display: flex;
15
-
16
- font-weight: 700;
17
-
18
-
19
-
20
- color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ .sd-headline, .sd-prose :is(h1, h2, h3, h4, h5) {
5
+ display: flex;
6
+ --tw-font-weight: var(--sd-font-weight-bold);
7
+ font-weight: var(--sd-font-weight-bold);
8
+ color: var(--sd-color-text-primary);
21
9
  }
22
-
23
10
  .sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
24
-
25
11
  flex-shrink: 0;
26
-
27
12
  font-size: 3rem;
28
-
29
-
30
-
31
- color: rgb(var(--sd-color-primary, 0 53 142) / var(--tw-text-opacity, 1)) /* Primary brand color for text */
32
- }
33
-
34
- @media (min-width: 640px) {
35
-
36
- .sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
37
-
38
- margin-top: var(--sd-spacing-2, 0.5rem) /* 8px */
13
+ color: var(--sd-color-text-primary);
14
+ }
15
+ @media (width >= 40rem) {
16
+ .sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5) sd-icon {
17
+ margin-top: var(--sd-spacing-2)
18
+ }
39
19
  }
40
- }
41
-
42
- .sd-headline.sd-headline,
43
- .sd-headline:is(h1):not(.sd-headline),
44
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline,
45
- .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) {
46
-
47
- gap: var(--sd-spacing-4, 1rem) /* 16px */;
48
-
49
- font-size: var(--sd-font-size-3xl, 2rem) /* 32px */;
50
-
51
- line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */
52
- }
53
-
54
- @media (min-width: 640px) {
55
-
56
- .sd-headline.sd-headline,
57
- .sd-headline:is(h1):not(.sd-headline),
58
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline,
59
- .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) {
60
-
61
- font-size: var(--sd-font-size-4xl, 2.5rem) /* 40px */
20
+ .sd-headline.sd-headline, .sd-headline:is(h1):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) {
21
+ gap: var(--sd-spacing-4);
22
+ font-size: var(--sd-text-3xl);
23
+ line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)));
24
+ --tw-leading: var(--leading-tight, 1.25);
25
+ line-height: var(--leading-tight, 1.25);
26
+ }
27
+ @media (width >= 40rem) {
28
+ .sd-headline.sd-headline, .sd-headline:is(h1):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) {
29
+ font-size: var(--sd-text-4xl);
30
+ line-height: var(--tw-leading, var(--text-4xl--line-height, calc(2.5 / 2.25)))
31
+ }
62
32
  }
63
- }
64
-
65
33
  .sd-headline.sd-headline sd-icon, .sd-headline:is(h1):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) sd-icon {
66
-
67
- margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1)
68
- }
69
-
70
- @media (min-width: 640px) {
71
-
72
- .sd-headline.sd-headline sd-icon, .sd-headline:is(h1):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) sd-icon {
73
-
74
- margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */
34
+ margin-top: calc(var(--sd-spacing-1) * -1);
75
35
  }
76
- }
77
-
78
- .sd-headline.sd-headline--size-3xl,
79
- .sd-headline:is(h2):not(.sd-headline),
80
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl,
81
- .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) {
82
-
83
- gap: var(--sd-spacing-4, 1rem) /* 16px */;
84
-
85
- font-size: var(--sd-font-size-2xl, 1.75rem) /* 28px */;
86
-
87
- line-height: var(--sd-line-height-tight, 120%) /* Used for display and large titles */
88
- }
89
-
90
- @media (min-width: 640px) {
91
-
92
- .sd-headline.sd-headline--size-3xl,
93
- .sd-headline:is(h2):not(.sd-headline),
94
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl,
95
- .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) {
96
-
97
- font-size: var(--sd-font-size-3xl, 2rem) /* 32px */
36
+ @media (width >= 40rem) {
37
+ .sd-headline.sd-headline sd-icon, .sd-headline:is(h1):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h1):not(.sd-headline) sd-icon {
38
+ margin-top: calc(var(--sd-spacing-1) * 0)
39
+ }
40
+ }
41
+ .sd-headline.sd-headline--size-3xl, .sd-headline:is(h2):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) {
42
+ gap: var(--sd-spacing-4);
43
+ font-size: var(--sd-text-2xl);
44
+ line-height: var(--tw-leading, var(--text-2xl--line-height, calc(2 / 1.5)));
45
+ --tw-leading: var(--leading-tight, 1.25);
46
+ line-height: var(--leading-tight, 1.25);
47
+ }
48
+ @media (width >= 40rem) {
49
+ .sd-headline.sd-headline--size-3xl, .sd-headline:is(h2):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) {
50
+ font-size: var(--sd-text-3xl);
51
+ line-height: var(--tw-leading, var(--text-3xl--line-height, calc(2.25 / 1.875)))
52
+ }
98
53
  }
99
- }
100
-
101
54
  .sd-headline.sd-headline--size-3xl sd-icon, .sd-headline:is(h2):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) sd-icon {
102
-
103
- margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1)
104
- }
105
-
106
- @media (min-width: 640px) {
107
-
108
- .sd-headline.sd-headline--size-3xl sd-icon, .sd-headline:is(h2):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) sd-icon {
109
-
110
- margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */
55
+ margin-top: calc(var(--sd-spacing-1) * -1);
111
56
  }
112
- }
113
-
114
- .sd-headline.sd-headline--size-xl,
115
- .sd-headline.sd-headline--size-lg,
116
- .sd-headline.sd-headline--size-base,
117
- .sd-headline:is(h3, h4, h5):not(.sd-headline),
118
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl,
119
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg,
120
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base,
121
- .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) {
122
-
123
- gap: var(--sd-spacing-2, 0.5rem) /* 8px */;
124
-
125
-
126
-
127
- color: rgb(var(--sd-color-black, 24 24 24) / var(--tw-text-opacity, 1)) /* Default text color */
128
- }
129
-
57
+ @media (width >= 40rem) {
58
+ .sd-headline.sd-headline--size-3xl sd-icon, .sd-headline:is(h2):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-3xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h2):not(.sd-headline) sd-icon {
59
+ margin-top: calc(var(--sd-spacing-1) * 0)
60
+ }
61
+ }
62
+ .sd-headline.sd-headline--size-xl, .sd-headline.sd-headline--size-lg, .sd-headline.sd-headline--size-base, .sd-headline:is(h3, h4, h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) {
63
+ gap: var(--sd-spacing-2);
64
+ color: var(--sd-color-text-black);
65
+ }
130
66
  .sd-headline.sd-headline--size-xl sd-icon, .sd-headline.sd-headline--size-lg sd-icon, .sd-headline.sd-headline--size-base sd-icon, .sd-headline:is(h3, h4, h5):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3, h4, h5):not(.sd-headline) sd-icon {
131
-
132
- font-size: 2rem
133
- }
134
-
135
- .sd-headline.sd-headline--size-xl,
136
- .sd-headline:is(h3):not(.sd-headline),
137
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl,
138
- .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) {
139
-
140
- font-size: var(--sd-font-size-xl, 1.5rem) /* 24px */
141
- }
142
-
67
+ font-size: 2rem;
68
+ }
69
+ .sd-headline.sd-headline--size-xl, .sd-headline:is(h3):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) {
70
+ font-size: var(--sd-text-xl);
71
+ line-height: var(--tw-leading, var(--text-xl--line-height, calc(1.75 / 1.25)));
72
+ }
143
73
  .sd-headline.sd-headline--size-xl sd-icon, .sd-headline:is(h3):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) sd-icon {
144
-
145
- margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */
146
- }
147
-
148
- @media (min-width: 640px) {
149
-
150
- .sd-headline.sd-headline--size-xl sd-icon, .sd-headline:is(h3):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) sd-icon {
151
-
152
- margin-top: var(--sd-spacing-0-5, 0.125rem) /* 2px */
74
+ margin-top: var(--sd-spacing-0\.5);
153
75
  }
154
- }
155
-
156
- .sd-headline.sd-headline--size-lg,
157
- .sd-headline.sd-headline--size-base,
158
- .sd-headline:is(h4, h5):not(.sd-headline),
159
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg,
160
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base,
161
- .sd-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-headline) {
162
-
163
- line-height: var(--sd-line-height-normal, 150%) /* Used for body copy and smaller titles */
164
- }
165
-
166
- .sd-headline.sd-headline--size-lg,
167
- .sd-headline:is(h4),
168
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg,
169
- .sd-prose :is(h1, h2, h3, h4, h5):is(h4) {
170
-
171
- font-size: var(--sd-font-size-lg, 1.25rem) /* 20px */
172
- }
173
-
76
+ @media (width >= 40rem) {
77
+ .sd-headline.sd-headline--size-xl sd-icon, .sd-headline:is(h3):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-xl sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h3):not(.sd-headline) sd-icon {
78
+ margin-top: var(--sd-spacing-0\.5)
79
+ }
80
+ }
81
+ .sd-headline.sd-headline--size-lg, .sd-headline.sd-headline--size-base, .sd-headline:is(h4, h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h4, h5):not(.sd-headline) {
82
+ --tw-leading: var(--leading-normal, 1.5);
83
+ line-height: var(--leading-normal, 1.5);
84
+ }
85
+ .sd-headline.sd-headline--size-lg, .sd-headline:is(h4), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) {
86
+ font-size: var(--sd-text-lg);
87
+ line-height: var(--tw-leading, var(--text-lg--line-height, calc(1.75 / 1.125)));
88
+ }
174
89
  .sd-headline.sd-headline--size-lg sd-icon, .sd-headline:is(h4) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
175
-
176
- margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */
177
- }
178
-
179
- @media (min-width: 640px) {
180
-
181
- .sd-headline.sd-headline--size-lg sd-icon, .sd-headline:is(h4) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
182
-
183
- margin-top: var(--sd-spacing-0, 0px) /* No spacing (manually added) */
90
+ margin-top: calc(var(--sd-spacing-1) * 0);
184
91
  }
185
- }
186
-
187
- .sd-headline.sd-headline--size-base,
188
- .sd-headline:is(h5):not(.sd-headline),
189
- .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base,
190
- .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) {
191
-
192
- font-size: var(--sd-font-size-base, 1rem) /* 16px */
193
- }
194
-
92
+ @media (width >= 40rem) {
93
+ .sd-headline.sd-headline--size-lg sd-icon, .sd-headline:is(h4) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-lg sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h4) sd-icon {
94
+ margin-top: calc(var(--sd-spacing-1) * 0)
95
+ }
96
+ }
97
+ .sd-headline.sd-headline--size-base, .sd-headline:is(h5):not(.sd-headline), .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base, .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) {
98
+ font-size: var(--sd-text-base);
99
+ line-height: var(--tw-leading, var(--text-base--line-height, calc(1.5 / 1)));
100
+ }
195
101
  .sd-headline.sd-headline--size-base sd-icon, .sd-headline:is(h5):not(.sd-headline) sd-icon, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base sd-icon, .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) sd-icon {
196
-
197
- margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1)
198
- }
199
-
102
+ margin-top: calc(var(--sd-spacing-1) * -1);
103
+ }
200
104
  .sd-headline.sd-headline--size-base mark, .sd-headline:is(h5):not(.sd-headline) mark, .sd-prose :is(h1, h2, h3, h4, h5).sd-headline--size-base mark, .sd-prose :is(h1, h2, h3, h4, h5):is(h5):not(.sd-headline) mark {
201
-
202
- color: inherit
203
- }
204
-
105
+ color: inherit;
106
+ }
205
107
  .sd-headline--inline {
206
-
207
- display: inline-block
108
+ display: inline-block;
208
109
  }
209
-
210
110
  .sd-headline--inline sd-icon {
211
-
212
- margin-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
213
-
214
- margin-top: calc(var(--sd-spacing-1, 0.25rem) /* 4px */ * -1);
215
-
216
- vertical-align: middle
217
- }
218
-
111
+ margin-top: calc(var(--sd-spacing-1) * -1);
112
+ margin-right: var(--sd-spacing-2);
113
+ vertical-align: middle;
114
+ }
219
115
  .sd-headline--inline:is(.sd-headline--size-xl, .sd-headline--size-lg, .sd-headline--size-base) sd-icon {
220
-
221
- margin-right: var(--sd-spacing-0-5, 0.125rem) /* 2px */
222
- }
223
-
224
- .sd-headline--inverted:not(#_),
225
- .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) {
226
-
227
-
228
-
229
- color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */
116
+ margin-right: var(--sd-spacing-0\.5);
117
+ }
118
+ .sd-headline--inverted:not(#_), .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) {
119
+ color: var(--sd-color-text-white);
230
120
  }
231
-
232
121
  .sd-headline--inverted:not(#_) sd-icon, .sd-prose--inverted :is(h1, h2, h3, h4, h5):not(.sd-headline):not(#_) sd-icon {
233
-
234
-
235
-
236
- color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-text-opacity, 1)) /* Inverted text color */
122
+ color: var(--sd-color-text-white);
123
+ }
124
+ @property --tw-font-weight {
125
+ syntax: "*";
126
+ inherits: false;
127
+ }
128
+ @property --tw-leading {
129
+ syntax: "*";
130
+ inherits: false;
131
+ }
132
+ @layer properties {
133
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
134
+ *, ::before, ::after, ::backdrop {
135
+ --tw-font-weight: initial;
136
+ --tw-leading: initial;
137
+ }
138
+ }
237
139
  }
@@ -1,57 +1,131 @@
1
- /**
2
- * Hidden links can be used to show links only for keyboard users.
3
- * @name sd-hidden-links
4
- * @status stable
5
- * @since 3.15.0
6
- * @boolean sd-hidden-links--multiple Adapts styling for multiple skip links.
7
- * @boolean sd-hidden-links--debug Always show the links for debugging purposes.
8
- */
9
-
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
10
4
  :lang(en) {
11
5
  --sd-hidden-links-title: 'Jump to';
12
6
  }
13
-
14
7
  :lang(de) {
15
8
  --sd-hidden-links-title: 'Springe zu';
16
9
  }
17
-
18
10
  .sd-hidden-links:not(:focus-within):not(.sd-hidden-links--debug) {
11
+ position: absolute;
12
+ width: 1px;
13
+ height: 1px;
14
+ padding: 0;
15
+ margin: -1px;
16
+ overflow: hidden;
17
+ clip-path: inset(50%);
18
+ white-space: nowrap;
19
+ border-width: 0;
20
+ }
21
+ .sd-hidden-links{
19
22
  position: absolute;
20
- width: 1px;
21
- height: 1px;
22
- padding: 0;
23
- margin: -1px;
24
- overflow: hidden;
25
- clip: rect(0, 0, 0, 0);
26
- white-space: nowrap;
27
- border-width: 0;
28
- }
29
-
30
- .sd-hidden-links {
31
- position: absolute;
32
- top: var(--sd-spacing-6, 1.5rem) /* 24px */;
33
- left: var(--sd-spacing-6, 1.5rem) /* 24px */;
23
+ top: var(--sd-spacing-6);
24
+ left: var(--sd-spacing-6);
34
25
  }
35
-
36
26
  .sd-hidden-links--multiple {
37
- display: flex;
38
- flex-direction: column;
39
-
40
- background-color: rgb(var(--sd-color-white, 255 255 255) / var(--tw-bg-opacity, 1)) /* Default background color (light mode) 
Used for inverted button */;
41
- padding-left: var(--sd-spacing-2, 0.5rem) /* 8px */;
42
- padding-right: var(--sd-spacing-2, 0.5rem) /* 8px */;
43
- padding-top: var(--sd-spacing-4, 1rem) /* 16px */;
44
- padding-bottom: var(--sd-spacing-4, 1rem) /* 16px */;
45
- --tw-shadow: var(--sd-shadow, 0px 1px 3px 0px rgb(81 81 81 / 75%));
46
- --tw-shadow-colored: 0px 1px 3px 0px var(--tw-shadow-color);
47
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
48
- }
49
-
27
+ display: flex;
28
+ flex-direction: column;
29
+ background-color: var(--sd-color-background-white);
30
+ padding-inline: var(--sd-spacing-2) / var(--tw-bg-opacity, 1)) /* Default background color (light mode) 
Used for inverted button */;;
31
+ padding-block: var(--sd-spacing-4);
32
+ --tw-shadow: var(--sd-shadow);
33
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
34
+ }
50
35
  .sd-hidden-links--multiple:before {
51
- padding-left: var(--sd-spacing-4, 1rem) /* 16px */;
52
- padding-right: var(--sd-spacing-4, 1rem) /* 16px */;
53
- padding-top: var(--sd-spacing-2, 0.5rem) /* 8px */;
54
- padding-bottom: var(--sd-spacing-2, 0.5rem) /* 8px */;
55
- font-weight: 700;
36
+ padding-inline: var(--sd-spacing-4);
37
+ padding-block: var(--sd-spacing-2);
38
+ --tw-font-weight: var(--sd-font-weight-bold);
39
+ font-weight: var(--sd-font-weight-bold);
56
40
  content: var(--sd-hidden-links-title);
41
+ }
42
+ @property --tw-shadow {
43
+ syntax: "*";
44
+ inherits: false;
45
+ initial-value: 0 0 #0000;
46
+ }
47
+ @property --tw-shadow-color {
48
+ syntax: "*";
49
+ inherits: false;
50
+ }
51
+ @property --tw-shadow-alpha {
52
+ syntax: "<percentage>";
53
+ inherits: false;
54
+ initial-value: 100%;
55
+ }
56
+ @property --tw-inset-shadow {
57
+ syntax: "*";
58
+ inherits: false;
59
+ initial-value: 0 0 #0000;
60
+ }
61
+ @property --tw-inset-shadow-color {
62
+ syntax: "*";
63
+ inherits: false;
64
+ }
65
+ @property --tw-inset-shadow-alpha {
66
+ syntax: "<percentage>";
67
+ inherits: false;
68
+ initial-value: 100%;
69
+ }
70
+ @property --tw-ring-color {
71
+ syntax: "*";
72
+ inherits: false;
73
+ }
74
+ @property --tw-ring-shadow {
75
+ syntax: "*";
76
+ inherits: false;
77
+ initial-value: 0 0 #0000;
78
+ }
79
+ @property --tw-inset-ring-color {
80
+ syntax: "*";
81
+ inherits: false;
82
+ }
83
+ @property --tw-inset-ring-shadow {
84
+ syntax: "*";
85
+ inherits: false;
86
+ initial-value: 0 0 #0000;
87
+ }
88
+ @property --tw-ring-inset {
89
+ syntax: "*";
90
+ inherits: false;
91
+ }
92
+ @property --tw-ring-offset-width {
93
+ syntax: "<length>";
94
+ inherits: false;
95
+ initial-value: 0px;
96
+ }
97
+ @property --tw-ring-offset-color {
98
+ syntax: "*";
99
+ inherits: false;
100
+ initial-value: #fff;
101
+ }
102
+ @property --tw-ring-offset-shadow {
103
+ syntax: "*";
104
+ inherits: false;
105
+ initial-value: 0 0 #0000;
106
+ }
107
+ @property --tw-font-weight {
108
+ syntax: "*";
109
+ inherits: false;
110
+ }
111
+ @layer properties {
112
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
113
+ *, ::before, ::after, ::backdrop {
114
+ --tw-shadow: 0 0 #0000;
115
+ --tw-shadow-color: initial;
116
+ --tw-shadow-alpha: 100%;
117
+ --tw-inset-shadow: 0 0 #0000;
118
+ --tw-inset-shadow-color: initial;
119
+ --tw-inset-shadow-alpha: 100%;
120
+ --tw-ring-color: initial;
121
+ --tw-ring-shadow: 0 0 #0000;
122
+ --tw-inset-ring-color: initial;
123
+ --tw-inset-ring-shadow: 0 0 #0000;
124
+ --tw-ring-inset: initial;
125
+ --tw-ring-offset-width: 0px;
126
+ --tw-ring-offset-color: #fff;
127
+ --tw-ring-offset-shadow: 0 0 #0000;
128
+ --tw-font-weight: initial;
129
+ }
130
+ }
57
131
  }