keystone_ui-styles 0.1.2 → 0.2.0
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.
- checksums.yaml +4 -4
- data/app/assets/tailwind/keystone_ui_styles/engine.css +176 -0
- data/lib/keystone_ui/styles/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7bd8f8d917ad77807896098de154f850c7de841692f030af0a9be256d8e5068e
|
|
4
|
+
data.tar.gz: ba73f5983805ff880a7d5a3061d8fad37503cfc34f1eada19c7052b66d3ec795
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 270fb50167f99d93c755af323803e335733d7904f55c6129c53e6ca0958616c314d063744125223e25783f4283cca94b084e002e5790c7590741976a0f3dd56b
|
|
7
|
+
data.tar.gz: 0f345d43c566181b505b766666bfbdc99b7c634d22e4ade64ac21d9498a3aa9bba45e67413cb68343c7f9ad2b02c5ae10fce3521153cbf0c16f6350a10d6777a
|
|
@@ -96,4 +96,180 @@
|
|
|
96
96
|
.ks-checkbox {
|
|
97
97
|
@apply rounded border-gray-300 text-accent-600 focus:ring-accent-500 dark:border-zinc-600 dark:bg-zinc-900;
|
|
98
98
|
}
|
|
99
|
+
|
|
100
|
+
.ks-page {
|
|
101
|
+
@apply px-4 py-4 sm:px-6 lg:px-8;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.ks-page-sm {
|
|
105
|
+
@apply max-w-2xl mx-auto;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.ks-page-md {
|
|
109
|
+
@apply max-w-4xl mx-auto;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.ks-page-lg {
|
|
113
|
+
@apply max-w-6xl mx-auto;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.ks-page-xl {
|
|
117
|
+
@apply max-w-7xl mx-auto;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.ks-page-offset-sm {
|
|
121
|
+
@apply pt-12;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.ks-page-offset-md {
|
|
125
|
+
@apply pt-16;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.ks-page-offset-lg {
|
|
129
|
+
@apply pt-20;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.ks-page-offset-xl {
|
|
133
|
+
@apply pt-24;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.ks-page-header {
|
|
137
|
+
@apply hidden sm:block mb-6 sm:flex sm:items-center sm:justify-between;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.ks-page-header-title {
|
|
141
|
+
@apply text-2xl font-bold text-gray-900 dark:text-white;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.ks-page-header-subtitle {
|
|
145
|
+
@apply mt-1 text-sm text-gray-500 dark:text-gray-400;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.ks-page-header-actions {
|
|
149
|
+
@apply hidden sm:block mt-4 sm:mt-0 sm:ml-4 flex-shrink-0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.ks-section-sm {
|
|
153
|
+
@apply mt-4;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.ks-section-md {
|
|
157
|
+
@apply mt-6;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.ks-section-lg {
|
|
161
|
+
@apply mt-8;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.ks-section-header {
|
|
165
|
+
@apply flex items-center justify-between mb-4;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.ks-section-title {
|
|
169
|
+
@apply text-lg font-semibold text-gray-900 dark:text-white;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.ks-section-subtitle {
|
|
173
|
+
@apply mt-1 text-sm text-gray-500 dark:text-gray-400;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.ks-section-action {
|
|
177
|
+
@apply text-sm text-accent-600 hover:text-accent-900 dark:text-accent-400 dark:hover:text-accent-300;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.ks-card {
|
|
181
|
+
@apply overflow-hidden rounded-lg border border-gray-200 bg-white dark:bg-zinc-900 dark:border-zinc-700;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.ks-card-edge {
|
|
185
|
+
@apply overflow-hidden border-y border-gray-200 bg-white sm:rounded-lg sm:border-x dark:bg-zinc-900 dark:border-zinc-700;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.ks-card-body {
|
|
189
|
+
@apply px-4 py-4 sm:px-6 sm:pt-6 sm:pb-4;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.ks-card-title {
|
|
193
|
+
@apply text-lg font-semibold text-gray-900 dark:text-white m-0;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.ks-card-summary {
|
|
197
|
+
@apply mt-1 text-sm text-gray-500 dark:text-gray-400 mb-0;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.ks-card-cta {
|
|
201
|
+
@apply px-4 pb-4 sm:px-6 sm:pb-6;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.ks-card-link {
|
|
205
|
+
@apply text-sm font-medium no-underline text-accent-600 hover:text-accent-900 dark:text-accent-400;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ks-alert {
|
|
209
|
+
@apply rounded-md p-4;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.ks-alert-info {
|
|
213
|
+
@apply bg-accent-50 text-accent-800 dark:bg-accent-900/30 dark:text-accent-300;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.ks-alert-success {
|
|
217
|
+
@apply bg-green-50 text-green-800 dark:bg-green-900/30 dark:text-green-300;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.ks-alert-warning {
|
|
221
|
+
@apply bg-yellow-50 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-300;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.ks-alert-error {
|
|
225
|
+
@apply bg-red-50 text-red-800 dark:bg-red-900/30 dark:text-red-300;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.ks-alert-body {
|
|
229
|
+
@apply flex;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.ks-alert-content {
|
|
233
|
+
@apply flex-1;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.ks-alert-title {
|
|
237
|
+
@apply font-semibold;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.ks-alert-message {
|
|
241
|
+
@apply text-sm;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.ks-alert-message-titled {
|
|
245
|
+
@apply text-sm mt-1;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.ks-alert-dismiss {
|
|
249
|
+
@apply ml-auto -mr-1.5 -mt-1.5 inline-flex rounded-md p-1.5 focus:outline-none focus:ring-2 focus:ring-offset-2 cursor-pointer;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.ks-badge {
|
|
253
|
+
@apply inline-flex items-center rounded-full px-2 py-1 text-xs font-medium;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.ks-badge-neutral {
|
|
257
|
+
@apply bg-gray-100 text-gray-700 dark:bg-zinc-700 dark:text-gray-300;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.ks-badge-success {
|
|
261
|
+
@apply bg-green-100 text-green-700 dark:bg-green-900/50 dark:text-green-400;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.ks-badge-danger {
|
|
265
|
+
@apply bg-red-100 text-red-700 dark:bg-red-900/50 dark:text-red-400;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.ks-badge-warning {
|
|
269
|
+
@apply bg-yellow-100 text-yellow-700 dark:bg-yellow-900/50 dark:text-yellow-400;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.ks-badge-info {
|
|
273
|
+
@apply bg-accent-100 text-accent-700 dark:bg-accent-900/50 dark:text-accent-400;
|
|
274
|
+
}
|
|
99
275
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: keystone_ui-styles
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tyler Schneider
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|