@adnap/krysalicss 0.0.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.
- package/LICENSE +21 -0
- package/README.md +119 -0
- package/dist/base/global.css +141 -0
- package/dist/base/global.min.css +1 -0
- package/dist/base/reset.css +170 -0
- package/dist/base/reset.min.css +1 -0
- package/dist/element/badge.css +167 -0
- package/dist/element/badge.min.css +1 -0
- package/dist/element/button.css +250 -0
- package/dist/element/button.min.css +1 -0
- package/dist/element/checkbox.css +149 -0
- package/dist/element/checkbox.min.css +1 -0
- package/dist/element/file.css +148 -0
- package/dist/element/file.min.css +1 -0
- package/dist/element/progress.css +183 -0
- package/dist/element/progress.min.css +1 -0
- package/dist/element/radio.css +144 -0
- package/dist/element/radio.min.css +1 -0
- package/dist/element/range.css +183 -0
- package/dist/element/range.min.css +1 -0
- package/dist/element/select.css +156 -0
- package/dist/element/select.min.css +1 -0
- package/dist/element/switch.css +186 -0
- package/dist/element/switch.min.css +1 -0
- package/dist/element/text-input.css +143 -0
- package/dist/element/text-input.min.css +1 -0
- package/dist/element/textarea.css +145 -0
- package/dist/element/textarea.min.css +1 -0
- package/dist/helper/breakpoints.css +113 -0
- package/dist/helper/breakpoints.min.css +1 -0
- package/dist/helper/state.css +126 -0
- package/dist/helper/state.min.css +1 -0
- package/dist/krysalicss.css +1420 -0
- package/dist/krysalicss.css.map +1 -0
- package/dist/krysalicss.min.css +1 -0
- package/dist/layout/container.css +145 -0
- package/dist/layout/container.min.css +1 -0
- package/dist/layout/flex.css +135 -0
- package/dist/layout/flex.min.css +1 -0
- package/dist/layout/grid.css +188 -0
- package/dist/layout/grid.min.css +1 -0
- package/dist/module/alert.css +166 -0
- package/dist/module/alert.min.css +1 -0
- package/dist/module/card.css +157 -0
- package/dist/module/card.min.css +1 -0
- package/dist/module/field.css +138 -0
- package/dist/module/field.min.css +1 -0
- package/dist/module/modal.css +187 -0
- package/dist/module/modal.min.css +1 -0
- package/dist/module/navbar.css +256 -0
- package/dist/module/navbar.min.css +1 -0
- package/dist/module/tabs.css +167 -0
- package/dist/module/tabs.min.css +1 -0
- package/dist/tokens/dark.json +85 -0
- package/dist/tokens/default.json +85 -0
- package/dist/tokens/high-contrast.json +85 -0
- package/dist/typography/base.css +131 -0
- package/dist/typography/base.min.css +1 -0
- package/dist/typography/content.css +137 -0
- package/dist/typography/content.min.css +1 -0
- package/dist/typography/link.css +132 -0
- package/dist/typography/link.min.css +1 -0
- package/dist/typography/table.css +121 -0
- package/dist/typography/table.min.css +1 -0
- package/dist/typography/title.css +122 -0
- package/dist/typography/title.min.css +1 -0
- package/package.json +111 -0
- package/src/_index.scss +18 -0
- package/src/base/_index.scss +2 -0
- package/src/base/global/_index.scss +2 -0
- package/src/base/global/_plugin.scss +34 -0
- package/src/base/global/_variables.scss +11 -0
- package/src/base/reset/_index.scss +2 -0
- package/src/base/reset/_plugin.scss +70 -0
- package/src/base/reset/_variables.scss +5 -0
- package/src/element/_index.scss +11 -0
- package/src/element/badge/_index.scss +2 -0
- package/src/element/badge/_plugin.scss +44 -0
- package/src/element/badge/_variables.scss +19 -0
- package/src/element/button/_index.scss +2 -0
- package/src/element/button/_plugin.scss +173 -0
- package/src/element/button/_variables.scss +36 -0
- package/src/element/checkbox/_index.scss +2 -0
- package/src/element/checkbox/_plugin.scss +48 -0
- package/src/element/checkbox/_variables.scss +24 -0
- package/src/element/file/_index.scss +2 -0
- package/src/element/file/_plugin.scss +45 -0
- package/src/element/file/_variables.scss +27 -0
- package/src/element/progress/_index.scss +2 -0
- package/src/element/progress/_plugin.scss +96 -0
- package/src/element/progress/_variables.scss +19 -0
- package/src/element/radio/_index.scss +2 -0
- package/src/element/radio/_plugin.scss +47 -0
- package/src/element/radio/_variables.scss +16 -0
- package/src/element/range/_index.scss +2 -0
- package/src/element/range/_plugin.scss +101 -0
- package/src/element/range/_variables.scss +19 -0
- package/src/element/select/_index.scss +2 -0
- package/src/element/select/_plugin.scss +58 -0
- package/src/element/select/_variables.scss +26 -0
- package/src/element/switch/_index.scss +2 -0
- package/src/element/switch/_plugin.scss +105 -0
- package/src/element/switch/_variables.scss +28 -0
- package/src/element/text-input/_index.scss +2 -0
- package/src/element/text-input/_plugin.scss +37 -0
- package/src/element/text-input/_variables.scss +22 -0
- package/src/element/textarea/_index.scss +2 -0
- package/src/element/textarea/_plugin.scss +39 -0
- package/src/element/textarea/_variables.scss +22 -0
- package/src/helper/_breakpoints.scss +45 -0
- package/src/helper/_controls.scss +82 -0
- package/src/helper/_index.scss +3 -0
- package/src/helper/_state.scss +35 -0
- package/src/krysalicss.scss +17 -0
- package/src/layout/_index.scss +3 -0
- package/src/layout/container/_index.scss +2 -0
- package/src/layout/container/_plugin.scss +26 -0
- package/src/layout/container/_variables.scss +5 -0
- package/src/layout/flex/_index.scss +2 -0
- package/src/layout/flex/_plugin.scss +32 -0
- package/src/layout/flex/_variables.scss +9 -0
- package/src/layout/grid/_index.scss +2 -0
- package/src/layout/grid/_plugin.scss +37 -0
- package/src/layout/grid/_variables.scss +37 -0
- package/src/module/_index.scss +6 -0
- package/src/module/alert/_index.scss +2 -0
- package/src/module/alert/_plugin.scss +51 -0
- package/src/module/alert/_variables.scss +24 -0
- package/src/module/card/_index.scss +2 -0
- package/src/module/card/_plugin.scss +31 -0
- package/src/module/card/_variables.scss +13 -0
- package/src/module/field/_index.scss +2 -0
- package/src/module/field/_plugin.scss +49 -0
- package/src/module/field/_variables.scss +26 -0
- package/src/module/modal/_index.scss +2 -0
- package/src/module/modal/_plugin.scss +137 -0
- package/src/module/modal/_variables.scss +39 -0
- package/src/module/navbar/_index.scss +2 -0
- package/src/module/navbar/_plugin.scss +186 -0
- package/src/module/navbar/_variables.scss +49 -0
- package/src/module/tabs/_index.scss +2 -0
- package/src/module/tabs/_plugin.scss +106 -0
- package/src/module/tabs/_variables.scss +16 -0
- package/src/theme/_create.scss +74 -0
- package/src/theme/dark.scss +51 -0
- package/src/theme/default.scss +45 -0
- package/src/theme/high-contrast.scss +53 -0
- package/src/typography/_index.scss +5 -0
- package/src/typography/base/_index.scss +2 -0
- package/src/typography/base/_plugin.scss +21 -0
- package/src/typography/base/_variables.scss +15 -0
- package/src/typography/content/_index.scss +2 -0
- package/src/typography/content/_plugin.scss +39 -0
- package/src/typography/content/_variables.scss +1 -0
- package/src/typography/link/_index.scss +2 -0
- package/src/typography/link/_mixins.scss +29 -0
- package/src/typography/link/_plugin.scss +15 -0
- package/src/typography/link/_variables.scss +15 -0
- package/src/typography/table/_index.scss +2 -0
- package/src/typography/table/_plugin.scss +13 -0
- package/src/typography/table/_variables.scss +6 -0
- package/src/typography/title/_index.scss +2 -0
- package/src/typography/title/_plugin.scss +36 -0
- package/src/typography/title/_variables.scss +7 -0
- package/src/variables/_color.scss +66 -0
- package/src/variables/_default.scss +52 -0
- package/src/variables/_feature.scss +39 -0
- package/src/variables/_global.scss +93 -0
- package/src/variables/_index.scss +7 -0
- package/src/variables/_responsive.scss +10 -0
- package/src/variables/_selector.scss +1 -0
- package/src/variables/_size.scss +5 -0
|
@@ -0,0 +1,1420 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
:root {
|
|
3
|
+
--kc-bg: #ffffff;
|
|
4
|
+
--kc-fg: #27282b;
|
|
5
|
+
--kc-link: #1a6347;
|
|
6
|
+
--kc-link-hover: #525a22;
|
|
7
|
+
--kc-link-visited: #8c351a;
|
|
8
|
+
--kc-border-radius: 5px;
|
|
9
|
+
--kc-card-bg: #ffffff;
|
|
10
|
+
--kc-card-fg: #27282b;
|
|
11
|
+
--kc-focus-ring: #1a6347;
|
|
12
|
+
--kc-default-bg: #ffffff;
|
|
13
|
+
--kc-default-fg: #27282b;
|
|
14
|
+
--kc-primary-bg: #247d59;
|
|
15
|
+
--kc-primary-fg: #ffffff;
|
|
16
|
+
--kc-warning-bg: #7a4f10;
|
|
17
|
+
--kc-warning-fg: #ffffff;
|
|
18
|
+
--kc-danger-bg: #8c351a;
|
|
19
|
+
--kc-danger-fg: #ffffff;
|
|
20
|
+
--kc-success-bg: #525a22;
|
|
21
|
+
--kc-success-fg: #ffffff;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media (prefers-color-scheme: light) {
|
|
25
|
+
:root {
|
|
26
|
+
--kc-bg: #ffffff;
|
|
27
|
+
--kc-fg: #27282b;
|
|
28
|
+
--kc-link: #1a6347;
|
|
29
|
+
--kc-link-hover: #525a22;
|
|
30
|
+
--kc-link-visited: #8c351a;
|
|
31
|
+
--kc-border-radius: 5px;
|
|
32
|
+
--kc-card-bg: #ffffff;
|
|
33
|
+
--kc-card-fg: #27282b;
|
|
34
|
+
--kc-focus-ring: #1a6347;
|
|
35
|
+
--kc-default-bg: #ffffff;
|
|
36
|
+
--kc-default-fg: #27282b;
|
|
37
|
+
--kc-primary-bg: #247d59;
|
|
38
|
+
--kc-primary-fg: #ffffff;
|
|
39
|
+
--kc-warning-bg: #7a4f10;
|
|
40
|
+
--kc-warning-fg: #ffffff;
|
|
41
|
+
--kc-danger-bg: #8c351a;
|
|
42
|
+
--kc-danger-fg: #ffffff;
|
|
43
|
+
--kc-success-bg: #525a22;
|
|
44
|
+
--kc-success-fg: #ffffff;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
:root.theme-light {
|
|
48
|
+
--kc-bg: #ffffff;
|
|
49
|
+
--kc-fg: #27282b;
|
|
50
|
+
--kc-link: #1a6347;
|
|
51
|
+
--kc-link-hover: #525a22;
|
|
52
|
+
--kc-link-visited: #8c351a;
|
|
53
|
+
--kc-border-radius: 5px;
|
|
54
|
+
--kc-card-bg: #ffffff;
|
|
55
|
+
--kc-card-fg: #27282b;
|
|
56
|
+
--kc-focus-ring: #1a6347;
|
|
57
|
+
--kc-default-bg: #ffffff;
|
|
58
|
+
--kc-default-fg: #27282b;
|
|
59
|
+
--kc-primary-bg: #247d59;
|
|
60
|
+
--kc-primary-fg: #ffffff;
|
|
61
|
+
--kc-warning-bg: #7a4f10;
|
|
62
|
+
--kc-warning-fg: #ffffff;
|
|
63
|
+
--kc-danger-bg: #8c351a;
|
|
64
|
+
--kc-danger-fg: #ffffff;
|
|
65
|
+
--kc-success-bg: #525a22;
|
|
66
|
+
--kc-success-fg: #ffffff;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@media (prefers-color-scheme: dark) {
|
|
70
|
+
:root {
|
|
71
|
+
--kc-bg: #121417;
|
|
72
|
+
--kc-fg: #e6e8eb;
|
|
73
|
+
--kc-link: #6bd1a7;
|
|
74
|
+
--kc-link-hover: #9ce3c2;
|
|
75
|
+
--kc-link-visited: #c8a8e0;
|
|
76
|
+
--kc-border-radius: 5px;
|
|
77
|
+
--kc-card-bg: #1b1e22;
|
|
78
|
+
--kc-card-fg: #e6e8eb;
|
|
79
|
+
--kc-focus-ring: #6bd1a7;
|
|
80
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
81
|
+
--kc-default-bg: #1b1e22;
|
|
82
|
+
--kc-default-fg: #e6e8eb;
|
|
83
|
+
--kc-primary-bg: #1f6e51;
|
|
84
|
+
--kc-primary-fg: #f4f7fb;
|
|
85
|
+
--kc-warning-bg: #b8991e;
|
|
86
|
+
--kc-warning-fg: #1b1b13;
|
|
87
|
+
--kc-danger-bg: #a2481a;
|
|
88
|
+
--kc-danger-fg: #fff6f0;
|
|
89
|
+
--kc-success-bg: #5c6529;
|
|
90
|
+
--kc-success-fg: #f3f6e5;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
.theme-dark {
|
|
94
|
+
--kc-bg: #121417;
|
|
95
|
+
--kc-fg: #e6e8eb;
|
|
96
|
+
--kc-link: #6bd1a7;
|
|
97
|
+
--kc-link-hover: #9ce3c2;
|
|
98
|
+
--kc-link-visited: #c8a8e0;
|
|
99
|
+
--kc-border-radius: 5px;
|
|
100
|
+
--kc-card-bg: #1b1e22;
|
|
101
|
+
--kc-card-fg: #e6e8eb;
|
|
102
|
+
--kc-focus-ring: #6bd1a7;
|
|
103
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
104
|
+
--kc-default-bg: #1b1e22;
|
|
105
|
+
--kc-default-fg: #e6e8eb;
|
|
106
|
+
--kc-primary-bg: #1f6e51;
|
|
107
|
+
--kc-primary-fg: #f4f7fb;
|
|
108
|
+
--kc-warning-bg: #b8991e;
|
|
109
|
+
--kc-warning-fg: #1b1b13;
|
|
110
|
+
--kc-danger-bg: #a2481a;
|
|
111
|
+
--kc-danger-fg: #fff6f0;
|
|
112
|
+
--kc-success-bg: #5c6529;
|
|
113
|
+
--kc-success-fg: #f3f6e5;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/*! krysalicss-reset
|
|
117
|
+
derived from minireset.css v0.0.6
|
|
118
|
+
MIT
|
|
119
|
+
github.com/jgthms/minireset.css)
|
|
120
|
+
*/
|
|
121
|
+
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
|
|
122
|
+
margin: 0;
|
|
123
|
+
padding: 0;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
h1, h2, h3, h4, h5, h6 {
|
|
127
|
+
font-size: 100%;
|
|
128
|
+
font-weight: normal;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
ul {
|
|
132
|
+
list-style: none;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
button, input, select, textarea {
|
|
136
|
+
margin: 0;
|
|
137
|
+
font-family: inherit;
|
|
138
|
+
font-size: 1em;
|
|
139
|
+
line-height: inherit;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
html {
|
|
143
|
+
box-sizing: border-box;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
*, *::before, *::after {
|
|
147
|
+
box-sizing: inherit;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
img, video {
|
|
151
|
+
height: auto;
|
|
152
|
+
max-width: 100%;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
iframe {
|
|
156
|
+
border: 0;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
table {
|
|
160
|
+
border-collapse: collapse;
|
|
161
|
+
border-spacing: 0;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
td,
|
|
165
|
+
th {
|
|
166
|
+
padding: 0;
|
|
167
|
+
}
|
|
168
|
+
td:not([align]),
|
|
169
|
+
th:not([align]) {
|
|
170
|
+
text-align: start;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
html {
|
|
174
|
+
background-color: #ffffff;
|
|
175
|
+
background-color: var(--kc-bg, #ffffff);
|
|
176
|
+
color: #27282b;
|
|
177
|
+
color: var(--kc-fg, #27282b);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
@media (forced-colors: active) {
|
|
181
|
+
:root {
|
|
182
|
+
--kc-bg: Canvas;
|
|
183
|
+
--kc-fg: CanvasText;
|
|
184
|
+
--kc-link: LinkText;
|
|
185
|
+
--kc-link-hover: LinkText;
|
|
186
|
+
--kc-card-bg: Canvas;
|
|
187
|
+
--kc-card-fg: CanvasText;
|
|
188
|
+
--kc-default-bg: Canvas;
|
|
189
|
+
--kc-default-fg: CanvasText;
|
|
190
|
+
--kc-primary-bg: Highlight;
|
|
191
|
+
--kc-primary-fg: HighlightText;
|
|
192
|
+
--kc-warning-bg: Canvas;
|
|
193
|
+
--kc-warning-fg: CanvasText;
|
|
194
|
+
--kc-danger-bg: Canvas;
|
|
195
|
+
--kc-danger-fg: CanvasText;
|
|
196
|
+
--kc-success-bg: Canvas;
|
|
197
|
+
--kc-success-fg: CanvasText;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
[data-state=success]::before {
|
|
201
|
+
content: var(--kc-state-icon-success, "✓ ");
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
[data-state=warning]::before {
|
|
205
|
+
content: var(--kc-state-icon-warning, "⚠ ");
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
[data-state=danger]::before {
|
|
209
|
+
content: var(--kc-state-icon-danger, "✕ ");
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.container {
|
|
213
|
+
flex-grow: 1;
|
|
214
|
+
margin: 0 auto;
|
|
215
|
+
position: relative;
|
|
216
|
+
width: auto;
|
|
217
|
+
padding-inline-start: 1rem;
|
|
218
|
+
padding-inline-end: 1rem;
|
|
219
|
+
}
|
|
220
|
+
@media screen and (min-width: 768px) {
|
|
221
|
+
.container {
|
|
222
|
+
max-width: 768px;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
@media screen and (min-width: 1024px) {
|
|
226
|
+
.container {
|
|
227
|
+
max-width: 1024px;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
@media screen and (min-width: 1280px) {
|
|
231
|
+
.container {
|
|
232
|
+
max-width: 1280px;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
@media screen and (min-width: 1536px) {
|
|
236
|
+
.container {
|
|
237
|
+
max-width: 1536px;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
.container.is-fluid {
|
|
241
|
+
max-width: none;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.flex {
|
|
245
|
+
display: flex;
|
|
246
|
+
flex-wrap: wrap;
|
|
247
|
+
gap: 1rem;
|
|
248
|
+
}
|
|
249
|
+
.flex.no-wrap {
|
|
250
|
+
flex-wrap: nowrap;
|
|
251
|
+
}
|
|
252
|
+
.flex.is-centered {
|
|
253
|
+
justify-content: center;
|
|
254
|
+
}
|
|
255
|
+
.flex.is-vertical {
|
|
256
|
+
flex-direction: column;
|
|
257
|
+
}
|
|
258
|
+
.flex > .col {
|
|
259
|
+
flex: 1 1 0;
|
|
260
|
+
min-width: 0;
|
|
261
|
+
}
|
|
262
|
+
.flex > .col.is-narrow {
|
|
263
|
+
flex: none;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.grid {
|
|
267
|
+
display: grid;
|
|
268
|
+
gap: 1rem;
|
|
269
|
+
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
|
|
270
|
+
}
|
|
271
|
+
.grid.is-cols-2 {
|
|
272
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
273
|
+
}
|
|
274
|
+
.grid.is-cols-3 {
|
|
275
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
276
|
+
}
|
|
277
|
+
.grid.is-cols-4 {
|
|
278
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
279
|
+
}
|
|
280
|
+
.grid.is-cols-6 {
|
|
281
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
282
|
+
}
|
|
283
|
+
.grid.is-cols-12 {
|
|
284
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
285
|
+
}
|
|
286
|
+
.grid > .cell.is-span-1 {
|
|
287
|
+
grid-column: span 1;
|
|
288
|
+
}
|
|
289
|
+
.grid > .cell.is-span-2 {
|
|
290
|
+
grid-column: span 2;
|
|
291
|
+
}
|
|
292
|
+
.grid > .cell.is-span-3 {
|
|
293
|
+
grid-column: span 3;
|
|
294
|
+
}
|
|
295
|
+
.grid > .cell.is-span-4 {
|
|
296
|
+
grid-column: span 4;
|
|
297
|
+
}
|
|
298
|
+
.grid > .cell.is-span-5 {
|
|
299
|
+
grid-column: span 5;
|
|
300
|
+
}
|
|
301
|
+
.grid > .cell.is-span-6 {
|
|
302
|
+
grid-column: span 6;
|
|
303
|
+
}
|
|
304
|
+
.grid > .cell.is-span-7 {
|
|
305
|
+
grid-column: span 7;
|
|
306
|
+
}
|
|
307
|
+
.grid > .cell.is-span-8 {
|
|
308
|
+
grid-column: span 8;
|
|
309
|
+
}
|
|
310
|
+
.grid > .cell.is-span-9 {
|
|
311
|
+
grid-column: span 9;
|
|
312
|
+
}
|
|
313
|
+
.grid > .cell.is-span-10 {
|
|
314
|
+
grid-column: span 10;
|
|
315
|
+
}
|
|
316
|
+
.grid > .cell.is-span-11 {
|
|
317
|
+
grid-column: span 11;
|
|
318
|
+
}
|
|
319
|
+
.grid > .cell.is-span-12 {
|
|
320
|
+
grid-column: span 12;
|
|
321
|
+
}
|
|
322
|
+
.grid > .cell.is-full {
|
|
323
|
+
grid-column: span 12;
|
|
324
|
+
}
|
|
325
|
+
.grid > .cell.is-half {
|
|
326
|
+
grid-column: span 6;
|
|
327
|
+
}
|
|
328
|
+
.grid > .cell.is-one-third {
|
|
329
|
+
grid-column: span 4;
|
|
330
|
+
}
|
|
331
|
+
.grid > .cell.is-two-thirds {
|
|
332
|
+
grid-column: span 8;
|
|
333
|
+
}
|
|
334
|
+
.grid > .cell.is-one-quarter {
|
|
335
|
+
grid-column: span 3;
|
|
336
|
+
}
|
|
337
|
+
.grid > .cell.is-three-quarters {
|
|
338
|
+
grid-column: span 9;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
html {
|
|
342
|
+
-moz-osx-font-smoothing: grayscale;
|
|
343
|
+
-webkit-font-smoothing: antialiased;
|
|
344
|
+
font-size: 16px;
|
|
345
|
+
line-height: 1.5;
|
|
346
|
+
text-rendering: optimizeLegibility;
|
|
347
|
+
color: #27282b;
|
|
348
|
+
color: var(--kc-fg, #27282b);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
body,
|
|
352
|
+
button,
|
|
353
|
+
input,
|
|
354
|
+
select,
|
|
355
|
+
textarea {
|
|
356
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.title {
|
|
360
|
+
font-size: 2.5rem;
|
|
361
|
+
font-weight: 800;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.subtitle {
|
|
365
|
+
font-size: 1.75rem;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
a {
|
|
369
|
+
cursor: pointer;
|
|
370
|
+
text-decoration: underline;
|
|
371
|
+
color: #27282b;
|
|
372
|
+
color: var(--kc-link, #27282b);
|
|
373
|
+
}
|
|
374
|
+
a:hover {
|
|
375
|
+
color: #27282b;
|
|
376
|
+
color: var(--kc-link-hover, #27282b);
|
|
377
|
+
}
|
|
378
|
+
a:visited {
|
|
379
|
+
color: #27282b;
|
|
380
|
+
color: var(--kc-link-visited, #27282b);
|
|
381
|
+
}
|
|
382
|
+
a:focus-visible {
|
|
383
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
384
|
+
outline-offset: 2px;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.content p:not(:last-child),
|
|
388
|
+
.content dl:not(:last-child),
|
|
389
|
+
.content ol:not(:last-child),
|
|
390
|
+
.content ul:not(:last-child),
|
|
391
|
+
.content blockquote:not(:last-child),
|
|
392
|
+
.content pre:not(:last-child),
|
|
393
|
+
.content table:not(:last-child) {
|
|
394
|
+
margin-block-end: 1em;
|
|
395
|
+
}
|
|
396
|
+
.content ol,
|
|
397
|
+
.content ul {
|
|
398
|
+
list-style-position: outside;
|
|
399
|
+
margin-inline-start: 2rem;
|
|
400
|
+
}
|
|
401
|
+
.content ul {
|
|
402
|
+
list-style-type: disc;
|
|
403
|
+
}
|
|
404
|
+
.content ul ul {
|
|
405
|
+
list-style-type: circle;
|
|
406
|
+
}
|
|
407
|
+
.content ul ul ul {
|
|
408
|
+
list-style-type: square;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.table {
|
|
412
|
+
vertical-align: top;
|
|
413
|
+
}
|
|
414
|
+
.table td,
|
|
415
|
+
.table th {
|
|
416
|
+
padding: 0.5rem;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.card {
|
|
420
|
+
background-color: #ffffff;
|
|
421
|
+
background-color: var(--kc-card-bg, #ffffff);
|
|
422
|
+
color: #27282b;
|
|
423
|
+
color: var(--kc-card-fg, #27282b);
|
|
424
|
+
padding: 1rem;
|
|
425
|
+
border-radius: 5px;
|
|
426
|
+
border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
|
|
427
|
+
}
|
|
428
|
+
.card a {
|
|
429
|
+
color: currentColor;
|
|
430
|
+
text-decoration: underline;
|
|
431
|
+
}
|
|
432
|
+
.card.is-default {
|
|
433
|
+
background-color: #ffffff;
|
|
434
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
435
|
+
color: #27282b;
|
|
436
|
+
color: var(--kc-default-fg, #27282b);
|
|
437
|
+
}
|
|
438
|
+
.card.is-primary {
|
|
439
|
+
background-color: #247d59;
|
|
440
|
+
background-color: var(--kc-primary-bg, #247d59);
|
|
441
|
+
color: #ffffff;
|
|
442
|
+
color: var(--kc-primary-fg, #ffffff);
|
|
443
|
+
}
|
|
444
|
+
.card.is-warning {
|
|
445
|
+
background-color: #7a4f10;
|
|
446
|
+
background-color: var(--kc-warning-bg, #7a4f10);
|
|
447
|
+
color: #ffffff;
|
|
448
|
+
color: var(--kc-warning-fg, #ffffff);
|
|
449
|
+
}
|
|
450
|
+
.card.is-danger {
|
|
451
|
+
background-color: #8c351a;
|
|
452
|
+
background-color: var(--kc-danger-bg, #8c351a);
|
|
453
|
+
color: #ffffff;
|
|
454
|
+
color: var(--kc-danger-fg, #ffffff);
|
|
455
|
+
}
|
|
456
|
+
.card.is-success {
|
|
457
|
+
background-color: #525a22;
|
|
458
|
+
background-color: var(--kc-success-bg, #525a22);
|
|
459
|
+
color: #ffffff;
|
|
460
|
+
color: var(--kc-success-fg, #ffffff);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.alert {
|
|
464
|
+
background-color: #ffffff;
|
|
465
|
+
background-color: var(--kc-alert-bg, #ffffff);
|
|
466
|
+
color: #27282b;
|
|
467
|
+
color: var(--kc-alert-fg, #27282b);
|
|
468
|
+
display: flex;
|
|
469
|
+
align-items: flex-start;
|
|
470
|
+
gap: 0.5rem;
|
|
471
|
+
padding: 0.75rem 1rem;
|
|
472
|
+
border-radius: 5px;
|
|
473
|
+
border-inline-start-width: 3px;
|
|
474
|
+
border-inline-start-style: solid;
|
|
475
|
+
border-inline-start-color: var(--kc-fg, #27282b);
|
|
476
|
+
}
|
|
477
|
+
.alert > .alert__icon {
|
|
478
|
+
flex: 0 0 auto;
|
|
479
|
+
line-height: inherit;
|
|
480
|
+
}
|
|
481
|
+
.alert a {
|
|
482
|
+
color: currentColor;
|
|
483
|
+
text-decoration: underline;
|
|
484
|
+
}
|
|
485
|
+
.alert.is-default {
|
|
486
|
+
background-color: #ffffff;
|
|
487
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
488
|
+
color: #27282b;
|
|
489
|
+
color: var(--kc-default-fg, #27282b);
|
|
490
|
+
}
|
|
491
|
+
.alert.is-primary {
|
|
492
|
+
background-color: #247d59;
|
|
493
|
+
background-color: var(--kc-primary-bg, #247d59);
|
|
494
|
+
color: #ffffff;
|
|
495
|
+
color: var(--kc-primary-fg, #ffffff);
|
|
496
|
+
}
|
|
497
|
+
.alert.is-warning {
|
|
498
|
+
background-color: #7a4f10;
|
|
499
|
+
background-color: var(--kc-warning-bg, #7a4f10);
|
|
500
|
+
color: #ffffff;
|
|
501
|
+
color: var(--kc-warning-fg, #ffffff);
|
|
502
|
+
}
|
|
503
|
+
.alert.is-danger {
|
|
504
|
+
background-color: #8c351a;
|
|
505
|
+
background-color: var(--kc-danger-bg, #8c351a);
|
|
506
|
+
color: #ffffff;
|
|
507
|
+
color: var(--kc-danger-fg, #ffffff);
|
|
508
|
+
}
|
|
509
|
+
.alert.is-success {
|
|
510
|
+
background-color: #525a22;
|
|
511
|
+
background-color: var(--kc-success-bg, #525a22);
|
|
512
|
+
color: #ffffff;
|
|
513
|
+
color: var(--kc-success-fg, #ffffff);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.field {
|
|
517
|
+
display: flex;
|
|
518
|
+
flex-direction: column;
|
|
519
|
+
gap: 0.5rem;
|
|
520
|
+
margin-block-end: 1rem;
|
|
521
|
+
}
|
|
522
|
+
.field > .field__label {
|
|
523
|
+
font-weight: 600;
|
|
524
|
+
}
|
|
525
|
+
.field > .field__help {
|
|
526
|
+
font-size: 0.85em;
|
|
527
|
+
color: color-mix(in srgb, currentColor 70%, transparent);
|
|
528
|
+
}
|
|
529
|
+
.field.is-invalid > .field__help {
|
|
530
|
+
color: var(--kc-danger-bg, currentColor);
|
|
531
|
+
}
|
|
532
|
+
.field.is-invalid > .field__label::before, .field:has(:user-invalid) > .field__label::before, .field:has([aria-invalid=true]) > .field__label::before {
|
|
533
|
+
content: var(--kc-state-icon-danger, "✕ ");
|
|
534
|
+
color: var(--kc-danger-bg, currentColor);
|
|
535
|
+
}
|
|
536
|
+
.field.is-disabled > .field__label, .field.is-disabled > .field__help {
|
|
537
|
+
opacity: 0.6;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.navbar {
|
|
541
|
+
background-color: var(--kc-bg, #ffffff);
|
|
542
|
+
background-color: var(--kc-navbar-bg, var(--kc-bg, #ffffff));
|
|
543
|
+
color: var(--kc-fg, #27282b);
|
|
544
|
+
color: var(--kc-navbar-fg, var(--kc-fg, #27282b));
|
|
545
|
+
display: flex;
|
|
546
|
+
align-items: center;
|
|
547
|
+
gap: 1rem;
|
|
548
|
+
padding: 0.75rem 1rem;
|
|
549
|
+
border-radius: 5px;
|
|
550
|
+
}
|
|
551
|
+
.navbar .navbar__brand,
|
|
552
|
+
.navbar .navbar__link {
|
|
553
|
+
display: inline-block;
|
|
554
|
+
padding: 0.5rem 0.75rem;
|
|
555
|
+
border-radius: 5px;
|
|
556
|
+
text-decoration: none;
|
|
557
|
+
color: inherit;
|
|
558
|
+
}
|
|
559
|
+
.navbar .navbar__brand:focus-visible,
|
|
560
|
+
.navbar .navbar__link:focus-visible {
|
|
561
|
+
outline: 2px solid var(--kc-focus-ring, currentColor);
|
|
562
|
+
outline-offset: 2px;
|
|
563
|
+
}
|
|
564
|
+
.navbar .navbar__brand:hover,
|
|
565
|
+
.navbar .navbar__link:hover {
|
|
566
|
+
background: color-mix(in srgb, currentColor 8%, transparent);
|
|
567
|
+
}
|
|
568
|
+
.navbar .navbar__brand {
|
|
569
|
+
font-weight: 600;
|
|
570
|
+
flex: 0 0 auto;
|
|
571
|
+
}
|
|
572
|
+
.navbar .navbar__menu {
|
|
573
|
+
list-style: none;
|
|
574
|
+
margin: 0;
|
|
575
|
+
padding: 0;
|
|
576
|
+
display: flex;
|
|
577
|
+
flex-wrap: wrap;
|
|
578
|
+
gap: 1rem;
|
|
579
|
+
flex: 1 1 auto;
|
|
580
|
+
}
|
|
581
|
+
.navbar .navbar__item {
|
|
582
|
+
position: relative;
|
|
583
|
+
}
|
|
584
|
+
.navbar .navbar__link {
|
|
585
|
+
background: transparent;
|
|
586
|
+
border: 0;
|
|
587
|
+
min-width: 0;
|
|
588
|
+
font: inherit;
|
|
589
|
+
cursor: pointer;
|
|
590
|
+
}
|
|
591
|
+
.navbar .navbar__item.has-dropdown .navbar__dropdown-toggle {
|
|
592
|
+
position: absolute;
|
|
593
|
+
width: 1px;
|
|
594
|
+
height: 1px;
|
|
595
|
+
padding: 0;
|
|
596
|
+
margin: -1px;
|
|
597
|
+
overflow: hidden;
|
|
598
|
+
clip: rect(0, 0, 0, 0);
|
|
599
|
+
white-space: nowrap;
|
|
600
|
+
border: 0;
|
|
601
|
+
}
|
|
602
|
+
.navbar .navbar__item.has-dropdown .navbar__dropdown {
|
|
603
|
+
display: none;
|
|
604
|
+
position: absolute;
|
|
605
|
+
inset-block-start: 100%;
|
|
606
|
+
inset-inline-start: 0;
|
|
607
|
+
min-width: 12rem;
|
|
608
|
+
padding: 0.5rem;
|
|
609
|
+
margin: 0;
|
|
610
|
+
list-style: none;
|
|
611
|
+
border-radius: 5px;
|
|
612
|
+
background-color: var(--kc-bg, #ffffff);
|
|
613
|
+
background-color: var(--kc-navbar-dropdown-bg, var(--kc-bg, #ffffff));
|
|
614
|
+
color: var(--kc-fg, #27282b);
|
|
615
|
+
color: var(--kc-navbar-dropdown-fg, var(--kc-fg, #27282b));
|
|
616
|
+
border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
|
|
617
|
+
box-shadow: 0 4px 12px color-mix(in srgb, currentColor 18%, transparent);
|
|
618
|
+
z-index: 10;
|
|
619
|
+
}
|
|
620
|
+
.navbar .navbar__item.has-dropdown:has(.navbar__dropdown-toggle:checked) .navbar__dropdown {
|
|
621
|
+
display: block;
|
|
622
|
+
}
|
|
623
|
+
.navbar .navbar__item.has-dropdown:has([aria-expanded=true]) .navbar__dropdown {
|
|
624
|
+
display: block;
|
|
625
|
+
}
|
|
626
|
+
.navbar .navbar__item.has-dropdown.hoverable:hover .navbar__dropdown, .navbar .navbar__item.has-dropdown.hoverable:focus-within .navbar__dropdown {
|
|
627
|
+
display: block;
|
|
628
|
+
}
|
|
629
|
+
.navbar .navbar__toggle {
|
|
630
|
+
display: none;
|
|
631
|
+
flex: 0 0 auto;
|
|
632
|
+
margin-inline-start: auto;
|
|
633
|
+
}
|
|
634
|
+
@media screen and (max-width: 767px) {
|
|
635
|
+
.navbar {
|
|
636
|
+
flex-wrap: wrap;
|
|
637
|
+
}
|
|
638
|
+
.navbar .navbar__toggle {
|
|
639
|
+
display: inline-block;
|
|
640
|
+
}
|
|
641
|
+
.navbar .navbar__menu {
|
|
642
|
+
flex-direction: column;
|
|
643
|
+
flex-basis: 100%;
|
|
644
|
+
gap: 0.5rem;
|
|
645
|
+
}
|
|
646
|
+
.navbar .navbar__item.has-dropdown .navbar__dropdown {
|
|
647
|
+
position: static;
|
|
648
|
+
box-shadow: none;
|
|
649
|
+
border: 0;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
.navbar.is-default {
|
|
653
|
+
background-color: #ffffff;
|
|
654
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
655
|
+
color: #27282b;
|
|
656
|
+
color: var(--kc-default-fg, #27282b);
|
|
657
|
+
}
|
|
658
|
+
.navbar.is-primary {
|
|
659
|
+
background-color: #247d59;
|
|
660
|
+
background-color: var(--kc-primary-bg, #247d59);
|
|
661
|
+
color: #ffffff;
|
|
662
|
+
color: var(--kc-primary-fg, #ffffff);
|
|
663
|
+
}
|
|
664
|
+
.navbar.is-warning {
|
|
665
|
+
background-color: #7a4f10;
|
|
666
|
+
background-color: var(--kc-warning-bg, #7a4f10);
|
|
667
|
+
color: #ffffff;
|
|
668
|
+
color: var(--kc-warning-fg, #ffffff);
|
|
669
|
+
}
|
|
670
|
+
.navbar.is-danger {
|
|
671
|
+
background-color: #8c351a;
|
|
672
|
+
background-color: var(--kc-danger-bg, #8c351a);
|
|
673
|
+
color: #ffffff;
|
|
674
|
+
color: var(--kc-danger-fg, #ffffff);
|
|
675
|
+
}
|
|
676
|
+
.navbar.is-success {
|
|
677
|
+
background-color: #525a22;
|
|
678
|
+
background-color: var(--kc-success-bg, #525a22);
|
|
679
|
+
color: #ffffff;
|
|
680
|
+
color: var(--kc-success-fg, #ffffff);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
html:has(.modal) {
|
|
684
|
+
scrollbar-gutter: stable;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
html:has(.modal:target) {
|
|
688
|
+
overflow: hidden;
|
|
689
|
+
}
|
|
690
|
+
html:has(.modal:target)::before {
|
|
691
|
+
content: "";
|
|
692
|
+
position: fixed;
|
|
693
|
+
inset: 0;
|
|
694
|
+
background-color: color-mix(in srgb, #000000 55%, transparent);
|
|
695
|
+
background-color: var(--kc-modal-backdrop, color-mix(in srgb, #000000 55%, transparent));
|
|
696
|
+
backdrop-filter: blur(6px);
|
|
697
|
+
-webkit-backdrop-filter: blur(6px);
|
|
698
|
+
z-index: 99;
|
|
699
|
+
pointer-events: none;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.modal {
|
|
703
|
+
background-color: #ffffff;
|
|
704
|
+
background-color: var(--kc-modal-bg, #ffffff);
|
|
705
|
+
color: #27282b;
|
|
706
|
+
color: var(--kc-modal-fg, #27282b);
|
|
707
|
+
width: min(100% - 2rem, 32rem);
|
|
708
|
+
padding: 1rem;
|
|
709
|
+
border: 0;
|
|
710
|
+
border-radius: 5px;
|
|
711
|
+
box-shadow: 0 12px 32px color-mix(in srgb, #000000 32%, transparent);
|
|
712
|
+
}
|
|
713
|
+
.modal::backdrop {
|
|
714
|
+
background-color: color-mix(in srgb, #000000 55%, transparent);
|
|
715
|
+
background-color: var(--kc-modal-backdrop, color-mix(in srgb, #000000 55%, transparent));
|
|
716
|
+
backdrop-filter: blur(6px);
|
|
717
|
+
-webkit-backdrop-filter: blur(6px);
|
|
718
|
+
}
|
|
719
|
+
.modal .modal__content {
|
|
720
|
+
display: flex;
|
|
721
|
+
flex-direction: column;
|
|
722
|
+
gap: 0.75rem;
|
|
723
|
+
}
|
|
724
|
+
.modal .modal__header {
|
|
725
|
+
display: flex;
|
|
726
|
+
align-items: center;
|
|
727
|
+
justify-content: space-between;
|
|
728
|
+
gap: 0.75rem;
|
|
729
|
+
}
|
|
730
|
+
.modal .modal__body {
|
|
731
|
+
flex: 1 1 auto;
|
|
732
|
+
}
|
|
733
|
+
.modal .modal__footer {
|
|
734
|
+
display: flex;
|
|
735
|
+
flex-wrap: wrap;
|
|
736
|
+
gap: 0.75rem;
|
|
737
|
+
justify-content: flex-end;
|
|
738
|
+
}
|
|
739
|
+
.modal:target {
|
|
740
|
+
display: block;
|
|
741
|
+
position: fixed;
|
|
742
|
+
inset: 0;
|
|
743
|
+
margin: auto;
|
|
744
|
+
height: fit-content;
|
|
745
|
+
z-index: 100;
|
|
746
|
+
}
|
|
747
|
+
.modal:target .modal__dismiss {
|
|
748
|
+
display: block;
|
|
749
|
+
position: fixed;
|
|
750
|
+
inset: 0;
|
|
751
|
+
z-index: -1;
|
|
752
|
+
}
|
|
753
|
+
.modal .modal__dismiss {
|
|
754
|
+
display: none;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.tabs {
|
|
758
|
+
display: flex;
|
|
759
|
+
flex-wrap: wrap;
|
|
760
|
+
gap: 0.5rem;
|
|
761
|
+
}
|
|
762
|
+
.tabs .tabs__input {
|
|
763
|
+
position: absolute;
|
|
764
|
+
width: 1px;
|
|
765
|
+
height: 1px;
|
|
766
|
+
padding: 0;
|
|
767
|
+
margin: -1px;
|
|
768
|
+
overflow: hidden;
|
|
769
|
+
clip: rect(0, 0, 0, 0);
|
|
770
|
+
white-space: nowrap;
|
|
771
|
+
border: 0;
|
|
772
|
+
}
|
|
773
|
+
.tabs .tabs__tab {
|
|
774
|
+
display: inline-block;
|
|
775
|
+
padding: 0.75rem 0.75rem;
|
|
776
|
+
border-start-start-radius: 5px;
|
|
777
|
+
border-start-end-radius: 5px;
|
|
778
|
+
border-end-start-radius: 0;
|
|
779
|
+
border-end-end-radius: 0;
|
|
780
|
+
cursor: pointer;
|
|
781
|
+
appearance: none;
|
|
782
|
+
background: transparent;
|
|
783
|
+
color: inherit;
|
|
784
|
+
font: inherit;
|
|
785
|
+
border: 0;
|
|
786
|
+
border-block-end: 2px solid transparent;
|
|
787
|
+
-webkit-user-select: none;
|
|
788
|
+
user-select: none;
|
|
789
|
+
}
|
|
790
|
+
.tabs .tabs__input:checked + .tabs__tab {
|
|
791
|
+
background-color: #ffffff;
|
|
792
|
+
background-color: var(--kc-tabs-active-bg, #ffffff);
|
|
793
|
+
color: #27282b;
|
|
794
|
+
color: var(--kc-tabs-active-fg, #27282b);
|
|
795
|
+
border-block-end-color: currentColor;
|
|
796
|
+
}
|
|
797
|
+
.tabs .tabs__input:focus-visible + .tabs__tab {
|
|
798
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
799
|
+
outline-offset: 2px;
|
|
800
|
+
}
|
|
801
|
+
.tabs .tabs__panel {
|
|
802
|
+
order: 999;
|
|
803
|
+
flex: 1 1 100%;
|
|
804
|
+
padding: 1rem;
|
|
805
|
+
display: none;
|
|
806
|
+
}
|
|
807
|
+
.tabs .tabs__input:checked + .tabs__tab + .tabs__panel {
|
|
808
|
+
display: block;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
button, .button {
|
|
812
|
+
background-color: #ffffff;
|
|
813
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
814
|
+
color: #27282b;
|
|
815
|
+
color: var(--kc-default-fg, #27282b);
|
|
816
|
+
border: 1px solid transparent;
|
|
817
|
+
padding: 0.625rem 1rem;
|
|
818
|
+
min-width: 2.75rem;
|
|
819
|
+
border-radius: 5px;
|
|
820
|
+
cursor: pointer;
|
|
821
|
+
text-decoration: none;
|
|
822
|
+
}
|
|
823
|
+
button:focus-visible, .button:focus-visible {
|
|
824
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
825
|
+
outline-offset: 2px;
|
|
826
|
+
}
|
|
827
|
+
button:hover, .button:hover {
|
|
828
|
+
filter: brightness(0.95);
|
|
829
|
+
}
|
|
830
|
+
button:disabled, .button:disabled {
|
|
831
|
+
cursor: not-allowed;
|
|
832
|
+
opacity: 0.6;
|
|
833
|
+
}
|
|
834
|
+
button:disabled:hover, .button:disabled:hover {
|
|
835
|
+
filter: none;
|
|
836
|
+
}
|
|
837
|
+
button.is-default, .button.is-default {
|
|
838
|
+
background-color: #ffffff;
|
|
839
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
840
|
+
color: #27282b;
|
|
841
|
+
color: var(--kc-default-fg, #27282b);
|
|
842
|
+
}
|
|
843
|
+
button.is-primary, .button.is-primary {
|
|
844
|
+
background-color: #247d59;
|
|
845
|
+
background-color: var(--kc-primary-bg, #247d59);
|
|
846
|
+
color: #ffffff;
|
|
847
|
+
color: var(--kc-primary-fg, #ffffff);
|
|
848
|
+
}
|
|
849
|
+
button.is-primary.is-inverted, .button.is-primary.is-inverted {
|
|
850
|
+
background-color: #ffffff;
|
|
851
|
+
background-color: var(--kc-bg, #ffffff);
|
|
852
|
+
color: #247d59;
|
|
853
|
+
color: var(--kc-primary-bg, #247d59);
|
|
854
|
+
}
|
|
855
|
+
button.is-primary.is-outlined, .button.is-primary.is-outlined {
|
|
856
|
+
background: transparent;
|
|
857
|
+
color: #247d59;
|
|
858
|
+
border: 1px solid #247d59;
|
|
859
|
+
}
|
|
860
|
+
button.is-warning, .button.is-warning {
|
|
861
|
+
background-color: #7a4f10;
|
|
862
|
+
background-color: var(--kc-warning-bg, #7a4f10);
|
|
863
|
+
color: #ffffff;
|
|
864
|
+
color: var(--kc-warning-fg, #ffffff);
|
|
865
|
+
}
|
|
866
|
+
button.is-warning.is-inverted, .button.is-warning.is-inverted {
|
|
867
|
+
background-color: #ffffff;
|
|
868
|
+
background-color: var(--kc-bg, #ffffff);
|
|
869
|
+
color: #7a4f10;
|
|
870
|
+
color: var(--kc-warning-bg, #7a4f10);
|
|
871
|
+
}
|
|
872
|
+
button.is-warning.is-outlined, .button.is-warning.is-outlined {
|
|
873
|
+
background: transparent;
|
|
874
|
+
color: #7a4f10;
|
|
875
|
+
border: 1px solid #7a4f10;
|
|
876
|
+
}
|
|
877
|
+
button.is-danger, .button.is-danger {
|
|
878
|
+
background-color: #8c351a;
|
|
879
|
+
background-color: var(--kc-danger-bg, #8c351a);
|
|
880
|
+
color: #ffffff;
|
|
881
|
+
color: var(--kc-danger-fg, #ffffff);
|
|
882
|
+
}
|
|
883
|
+
button.is-danger.is-inverted, .button.is-danger.is-inverted {
|
|
884
|
+
background-color: #ffffff;
|
|
885
|
+
background-color: var(--kc-bg, #ffffff);
|
|
886
|
+
color: #8c351a;
|
|
887
|
+
color: var(--kc-danger-bg, #8c351a);
|
|
888
|
+
}
|
|
889
|
+
button.is-danger.is-outlined, .button.is-danger.is-outlined {
|
|
890
|
+
background: transparent;
|
|
891
|
+
color: #8c351a;
|
|
892
|
+
border: 1px solid #8c351a;
|
|
893
|
+
}
|
|
894
|
+
button.is-success, .button.is-success {
|
|
895
|
+
background-color: #525a22;
|
|
896
|
+
background-color: var(--kc-success-bg, #525a22);
|
|
897
|
+
color: #ffffff;
|
|
898
|
+
color: var(--kc-success-fg, #ffffff);
|
|
899
|
+
}
|
|
900
|
+
button.is-success.is-inverted, .button.is-success.is-inverted {
|
|
901
|
+
background-color: #ffffff;
|
|
902
|
+
background-color: var(--kc-bg, #ffffff);
|
|
903
|
+
color: #525a22;
|
|
904
|
+
color: var(--kc-success-bg, #525a22);
|
|
905
|
+
}
|
|
906
|
+
button.is-success.is-outlined, .button.is-success.is-outlined {
|
|
907
|
+
background: transparent;
|
|
908
|
+
color: #525a22;
|
|
909
|
+
border: 1px solid #525a22;
|
|
910
|
+
}
|
|
911
|
+
button.is-inverted, .button.is-inverted {
|
|
912
|
+
background-color: #27282b;
|
|
913
|
+
background-color: var(--kc-default-fg, #27282b);
|
|
914
|
+
color: #ffffff;
|
|
915
|
+
color: var(--kc-default-bg, #ffffff);
|
|
916
|
+
}
|
|
917
|
+
button.is-outlined, .button.is-outlined {
|
|
918
|
+
background: transparent;
|
|
919
|
+
border-color: #27282b;
|
|
920
|
+
border-color: var(--kc-default-fg, #27282b);
|
|
921
|
+
}
|
|
922
|
+
button.is-link, .button.is-link {
|
|
923
|
+
background: transparent;
|
|
924
|
+
border: 1px solid transparent;
|
|
925
|
+
cursor: pointer;
|
|
926
|
+
text-decoration: underline;
|
|
927
|
+
color: #27282b;
|
|
928
|
+
color: var(--kc-link, #27282b);
|
|
929
|
+
}
|
|
930
|
+
button.is-link:hover, .button.is-link:hover {
|
|
931
|
+
color: #27282b;
|
|
932
|
+
color: var(--kc-link-hover, #27282b);
|
|
933
|
+
}
|
|
934
|
+
button.is-link:visited, .button.is-link:visited {
|
|
935
|
+
color: #27282b;
|
|
936
|
+
color: var(--kc-link-visited, #27282b);
|
|
937
|
+
}
|
|
938
|
+
button.is-link:hover, .button.is-link:hover {
|
|
939
|
+
filter: none;
|
|
940
|
+
}
|
|
941
|
+
@media (forced-colors: active) {
|
|
942
|
+
button:hover, .button:hover {
|
|
943
|
+
outline: 2px solid Highlight;
|
|
944
|
+
outline-offset: 2px;
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.badge {
|
|
949
|
+
background-color: #ffffff;
|
|
950
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
951
|
+
color: #27282b;
|
|
952
|
+
color: var(--kc-default-fg, #27282b);
|
|
953
|
+
display: inline-flex;
|
|
954
|
+
align-items: center;
|
|
955
|
+
justify-content: center;
|
|
956
|
+
padding: 0 0.5rem;
|
|
957
|
+
line-height: 1.25rem;
|
|
958
|
+
font-size: 0.75rem;
|
|
959
|
+
border-radius: 999px;
|
|
960
|
+
outline: 1px solid color-mix(in srgb, var(--kc-fg, currentColor) 50%, transparent);
|
|
961
|
+
outline-offset: -1px;
|
|
962
|
+
}
|
|
963
|
+
.badge.is-square {
|
|
964
|
+
border-radius: 5px;
|
|
965
|
+
}
|
|
966
|
+
.badge.is-default {
|
|
967
|
+
background-color: #ffffff;
|
|
968
|
+
background-color: var(--kc-default-bg, #ffffff);
|
|
969
|
+
color: #27282b;
|
|
970
|
+
color: var(--kc-default-fg, #27282b);
|
|
971
|
+
}
|
|
972
|
+
.badge.is-primary {
|
|
973
|
+
background-color: #247d59;
|
|
974
|
+
background-color: var(--kc-primary-bg, #247d59);
|
|
975
|
+
color: #ffffff;
|
|
976
|
+
color: var(--kc-primary-fg, #ffffff);
|
|
977
|
+
}
|
|
978
|
+
.badge.is-warning {
|
|
979
|
+
background-color: #7a4f10;
|
|
980
|
+
background-color: var(--kc-warning-bg, #7a4f10);
|
|
981
|
+
color: #ffffff;
|
|
982
|
+
color: var(--kc-warning-fg, #ffffff);
|
|
983
|
+
}
|
|
984
|
+
.badge.is-danger {
|
|
985
|
+
background-color: #8c351a;
|
|
986
|
+
background-color: var(--kc-danger-bg, #8c351a);
|
|
987
|
+
color: #ffffff;
|
|
988
|
+
color: var(--kc-danger-fg, #ffffff);
|
|
989
|
+
}
|
|
990
|
+
.badge.is-success {
|
|
991
|
+
background-color: #525a22;
|
|
992
|
+
background-color: var(--kc-success-bg, #525a22);
|
|
993
|
+
color: #ffffff;
|
|
994
|
+
color: var(--kc-success-fg, #ffffff);
|
|
995
|
+
}
|
|
996
|
+
@media (forced-colors: active) {
|
|
997
|
+
.badge {
|
|
998
|
+
outline-color: CanvasText;
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
progress, .progress {
|
|
1003
|
+
appearance: none;
|
|
1004
|
+
-webkit-appearance: none;
|
|
1005
|
+
-moz-appearance: none;
|
|
1006
|
+
display: block;
|
|
1007
|
+
width: 100%;
|
|
1008
|
+
height: 0.5rem;
|
|
1009
|
+
border: none;
|
|
1010
|
+
border-radius: 999px;
|
|
1011
|
+
overflow: hidden;
|
|
1012
|
+
background-color: color-mix(in srgb, var(--kc-fg, currentColor) 12%, transparent);
|
|
1013
|
+
color: #ffffff;
|
|
1014
|
+
color: var(--kc-default-bg, #ffffff);
|
|
1015
|
+
}
|
|
1016
|
+
progress.is-default, .progress.is-default {
|
|
1017
|
+
color: #ffffff;
|
|
1018
|
+
color: var(--kc-default-bg, #ffffff);
|
|
1019
|
+
}
|
|
1020
|
+
progress.is-primary, .progress.is-primary {
|
|
1021
|
+
color: #247d59;
|
|
1022
|
+
color: var(--kc-primary-bg, #247d59);
|
|
1023
|
+
}
|
|
1024
|
+
progress.is-warning, .progress.is-warning {
|
|
1025
|
+
color: #7a4f10;
|
|
1026
|
+
color: var(--kc-warning-bg, #7a4f10);
|
|
1027
|
+
}
|
|
1028
|
+
progress.is-danger, .progress.is-danger {
|
|
1029
|
+
color: #8c351a;
|
|
1030
|
+
color: var(--kc-danger-bg, #8c351a);
|
|
1031
|
+
}
|
|
1032
|
+
progress.is-success, .progress.is-success {
|
|
1033
|
+
color: #525a22;
|
|
1034
|
+
color: var(--kc-success-bg, #525a22);
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
progress::-webkit-progress-bar, .progress::-webkit-progress-bar {
|
|
1038
|
+
background: transparent;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
progress::-webkit-progress-value, .progress::-webkit-progress-value {
|
|
1042
|
+
background-color: currentColor;
|
|
1043
|
+
border-radius: 999px;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
progress::-moz-progress-bar, .progress::-moz-progress-bar {
|
|
1047
|
+
background-color: currentColor;
|
|
1048
|
+
border-radius: 999px;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
progress > .progress__value, .progress > .progress__value {
|
|
1052
|
+
display: block;
|
|
1053
|
+
height: 100%;
|
|
1054
|
+
background-color: currentColor;
|
|
1055
|
+
border-radius: inherit;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
@media (forced-colors: active) {
|
|
1059
|
+
progress, .progress {
|
|
1060
|
+
background-color: ButtonFace;
|
|
1061
|
+
border: 1px solid CanvasText;
|
|
1062
|
+
}
|
|
1063
|
+
progress::-webkit-progress-value, .progress::-webkit-progress-value,
|
|
1064
|
+
progress > .progress__value, .progress > .progress__value {
|
|
1065
|
+
background-color: Highlight;
|
|
1066
|
+
}
|
|
1067
|
+
progress::-moz-progress-bar, .progress::-moz-progress-bar {
|
|
1068
|
+
background-color: Highlight;
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url] {
|
|
1072
|
+
background-color: transparent;
|
|
1073
|
+
background-color: var(--kc-input-bg, transparent);
|
|
1074
|
+
color: currentColor;
|
|
1075
|
+
color: var(--kc-input-fg, currentColor);
|
|
1076
|
+
display: inline-block;
|
|
1077
|
+
width: 100%;
|
|
1078
|
+
padding: 0.5rem 0.75rem;
|
|
1079
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1080
|
+
border-radius: 5px;
|
|
1081
|
+
font: inherit;
|
|
1082
|
+
line-height: 1.4;
|
|
1083
|
+
}
|
|
1084
|
+
input[type=email]:focus-visible, input[type=number]:focus-visible, input[type=password]:focus-visible, input[type=search]:focus-visible, input[type=tel]:focus-visible, input[type=text]:focus-visible, input[type=url]:focus-visible {
|
|
1085
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
1086
|
+
outline-offset: 2px;
|
|
1087
|
+
border-color: var(--kc-fg, currentColor);
|
|
1088
|
+
}
|
|
1089
|
+
input[type=email]:user-invalid, input[type=email][aria-invalid=true], input[type=number]:user-invalid, input[type=number][aria-invalid=true], input[type=password]:user-invalid, input[type=password][aria-invalid=true], input[type=search]:user-invalid, input[type=search][aria-invalid=true], input[type=tel]:user-invalid, input[type=tel][aria-invalid=true], input[type=text]:user-invalid, input[type=text][aria-invalid=true], input[type=url]:user-invalid, input[type=url][aria-invalid=true] {
|
|
1090
|
+
border-color: var(--kc-danger-bg, currentColor);
|
|
1091
|
+
}
|
|
1092
|
+
input[type=email]:disabled, input[type=number]:disabled, input[type=password]:disabled, input[type=search]:disabled, input[type=tel]:disabled, input[type=text]:disabled, input[type=url]:disabled {
|
|
1093
|
+
cursor: not-allowed;
|
|
1094
|
+
opacity: 0.6;
|
|
1095
|
+
}
|
|
1096
|
+
input[type=email]::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder, input[type=tel]::placeholder, input[type=text]::placeholder, input[type=url]::placeholder {
|
|
1097
|
+
color: color-mix(in srgb, currentColor 65%, transparent);
|
|
1098
|
+
opacity: 1;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
textarea {
|
|
1102
|
+
background-color: transparent;
|
|
1103
|
+
background-color: var(--kc-input-bg, transparent);
|
|
1104
|
+
color: currentColor;
|
|
1105
|
+
color: var(--kc-input-fg, currentColor);
|
|
1106
|
+
display: block;
|
|
1107
|
+
width: 100%;
|
|
1108
|
+
min-height: 4rem;
|
|
1109
|
+
padding: 0.5rem 0.75rem;
|
|
1110
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1111
|
+
border-radius: 5px;
|
|
1112
|
+
font: inherit;
|
|
1113
|
+
line-height: 1.4;
|
|
1114
|
+
resize: vertical;
|
|
1115
|
+
}
|
|
1116
|
+
textarea:focus-visible {
|
|
1117
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
1118
|
+
outline-offset: 2px;
|
|
1119
|
+
border-color: var(--kc-fg, currentColor);
|
|
1120
|
+
}
|
|
1121
|
+
textarea:user-invalid, textarea[aria-invalid=true] {
|
|
1122
|
+
border-color: var(--kc-danger-bg, currentColor);
|
|
1123
|
+
}
|
|
1124
|
+
textarea:disabled {
|
|
1125
|
+
cursor: not-allowed;
|
|
1126
|
+
opacity: 0.6;
|
|
1127
|
+
}
|
|
1128
|
+
textarea::placeholder {
|
|
1129
|
+
color: color-mix(in srgb, currentColor 65%, transparent);
|
|
1130
|
+
opacity: 1;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
select {
|
|
1134
|
+
background-color: transparent;
|
|
1135
|
+
background-color: var(--kc-input-bg, transparent);
|
|
1136
|
+
color: currentColor;
|
|
1137
|
+
color: var(--kc-input-fg, currentColor);
|
|
1138
|
+
appearance: none;
|
|
1139
|
+
-webkit-appearance: none;
|
|
1140
|
+
-moz-appearance: none;
|
|
1141
|
+
display: inline-block;
|
|
1142
|
+
width: 100%;
|
|
1143
|
+
padding: 0.5rem 2rem 0.5rem 0.75rem;
|
|
1144
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1145
|
+
border-radius: 5px;
|
|
1146
|
+
font: inherit;
|
|
1147
|
+
line-height: 1.4;
|
|
1148
|
+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8" fill="none"><path d="M1 1.5l5 5 5-5" stroke="%23888" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
|
|
1149
|
+
background-repeat: no-repeat;
|
|
1150
|
+
background-position: right 0.75rem center;
|
|
1151
|
+
background-size: 0.75rem auto;
|
|
1152
|
+
}
|
|
1153
|
+
select:dir(rtl) {
|
|
1154
|
+
background-position: left 0.75rem center;
|
|
1155
|
+
padding-inline-start: 2rem;
|
|
1156
|
+
padding-inline-end: 0.75rem;
|
|
1157
|
+
}
|
|
1158
|
+
select:focus-visible {
|
|
1159
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
1160
|
+
outline-offset: 2px;
|
|
1161
|
+
border-color: var(--kc-fg, currentColor);
|
|
1162
|
+
}
|
|
1163
|
+
select:user-invalid, select[aria-invalid=true] {
|
|
1164
|
+
border-color: var(--kc-danger-bg, currentColor);
|
|
1165
|
+
}
|
|
1166
|
+
select:disabled {
|
|
1167
|
+
cursor: not-allowed;
|
|
1168
|
+
opacity: 0.6;
|
|
1169
|
+
}
|
|
1170
|
+
select[multiple] {
|
|
1171
|
+
padding-inline-end: 0.75rem;
|
|
1172
|
+
background-image: none;
|
|
1173
|
+
height: auto;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
input[type=checkbox]:not(.switch) {
|
|
1177
|
+
appearance: none;
|
|
1178
|
+
-webkit-appearance: none;
|
|
1179
|
+
-moz-appearance: none;
|
|
1180
|
+
display: inline-block;
|
|
1181
|
+
width: 1rem;
|
|
1182
|
+
height: 1rem;
|
|
1183
|
+
margin: 0;
|
|
1184
|
+
padding: 0;
|
|
1185
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1186
|
+
border-radius: 3px;
|
|
1187
|
+
background-color: transparent;
|
|
1188
|
+
vertical-align: middle;
|
|
1189
|
+
flex-shrink: 0;
|
|
1190
|
+
}
|
|
1191
|
+
input[type=checkbox]:not(.switch):checked {
|
|
1192
|
+
background-color: var(--kc-primary-bg, currentColor);
|
|
1193
|
+
border-color: var(--kc-primary-bg, currentColor);
|
|
1194
|
+
color: var(--kc-primary-fg, currentColor);
|
|
1195
|
+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none"><path d="M2.5 6.5l2.5 2.5 4.5-5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
|
|
1196
|
+
background-repeat: no-repeat;
|
|
1197
|
+
background-position: center;
|
|
1198
|
+
background-size: 80% auto;
|
|
1199
|
+
}
|
|
1200
|
+
input[type=checkbox]:not(.switch):focus-visible {
|
|
1201
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
1202
|
+
outline-offset: 2px;
|
|
1203
|
+
}
|
|
1204
|
+
input[type=checkbox]:not(.switch):user-invalid, input[type=checkbox]:not(.switch)[aria-invalid=true] {
|
|
1205
|
+
border-color: var(--kc-danger-bg, currentColor);
|
|
1206
|
+
}
|
|
1207
|
+
input[type=checkbox]:not(.switch):disabled {
|
|
1208
|
+
cursor: not-allowed;
|
|
1209
|
+
opacity: 0.6;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
input[type=radio] {
|
|
1213
|
+
appearance: none;
|
|
1214
|
+
-webkit-appearance: none;
|
|
1215
|
+
-moz-appearance: none;
|
|
1216
|
+
display: inline-block;
|
|
1217
|
+
width: 1rem;
|
|
1218
|
+
height: 1rem;
|
|
1219
|
+
margin: 0;
|
|
1220
|
+
padding: 0;
|
|
1221
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1222
|
+
border-radius: 50%;
|
|
1223
|
+
background-color: transparent;
|
|
1224
|
+
vertical-align: middle;
|
|
1225
|
+
flex-shrink: 0;
|
|
1226
|
+
}
|
|
1227
|
+
input[type=radio]:checked {
|
|
1228
|
+
border-color: var(--kc-primary-bg, currentColor);
|
|
1229
|
+
background-image: radial-gradient(circle, var(--kc-primary-bg, currentColor) 50%, transparent calc(50% + 1px));
|
|
1230
|
+
}
|
|
1231
|
+
input[type=radio]:focus-visible {
|
|
1232
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
1233
|
+
outline-offset: 2px;
|
|
1234
|
+
}
|
|
1235
|
+
input[type=radio]:user-invalid, input[type=radio][aria-invalid=true] {
|
|
1236
|
+
border-color: var(--kc-danger-bg, currentColor);
|
|
1237
|
+
}
|
|
1238
|
+
input[type=radio]:disabled {
|
|
1239
|
+
cursor: not-allowed;
|
|
1240
|
+
opacity: 0.6;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
input[type=checkbox].switch {
|
|
1244
|
+
appearance: none;
|
|
1245
|
+
-webkit-appearance: none;
|
|
1246
|
+
-moz-appearance: none;
|
|
1247
|
+
position: relative;
|
|
1248
|
+
display: inline-block;
|
|
1249
|
+
width: 2.25rem;
|
|
1250
|
+
height: 1.25rem;
|
|
1251
|
+
margin: 0;
|
|
1252
|
+
padding: 0;
|
|
1253
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1254
|
+
border-radius: 999px;
|
|
1255
|
+
background-color: color-mix(in srgb, currentColor 50%, transparent);
|
|
1256
|
+
cursor: pointer;
|
|
1257
|
+
vertical-align: middle;
|
|
1258
|
+
flex-shrink: 0;
|
|
1259
|
+
transition: background-color 120ms ease, border-color 120ms ease;
|
|
1260
|
+
}
|
|
1261
|
+
input[type=checkbox].switch::before {
|
|
1262
|
+
content: "";
|
|
1263
|
+
position: absolute;
|
|
1264
|
+
inset-block-start: 2px;
|
|
1265
|
+
inset-inline-start: 2px;
|
|
1266
|
+
width: calc(1.25rem - 2 * 2px - 2 * 1px);
|
|
1267
|
+
height: calc(1.25rem - 2 * 2px - 2 * 1px);
|
|
1268
|
+
border-radius: 50%;
|
|
1269
|
+
background-color: var(--kc-fg, currentColor);
|
|
1270
|
+
transition: transform 120ms ease;
|
|
1271
|
+
}
|
|
1272
|
+
input[type=checkbox].switch:checked {
|
|
1273
|
+
background-color: var(--kc-primary-bg, currentColor);
|
|
1274
|
+
border-color: var(--kc-primary-bg, currentColor);
|
|
1275
|
+
}
|
|
1276
|
+
input[type=checkbox].switch:checked::before {
|
|
1277
|
+
background-color: var(--kc-primary-fg, white);
|
|
1278
|
+
transform: translateX(calc(2.25rem - 1.25rem));
|
|
1279
|
+
}
|
|
1280
|
+
input[type=checkbox].switch:dir(rtl):checked::before {
|
|
1281
|
+
transform: translateX(calc(-1 * (2.25rem - 1.25rem)));
|
|
1282
|
+
}
|
|
1283
|
+
input[type=checkbox].switch:focus-visible {
|
|
1284
|
+
outline: 2px solid var(--kc-focus-ring, var(--kc-fg, currentColor));
|
|
1285
|
+
outline-offset: 2px;
|
|
1286
|
+
}
|
|
1287
|
+
input[type=checkbox].switch:disabled {
|
|
1288
|
+
cursor: not-allowed;
|
|
1289
|
+
opacity: 0.6;
|
|
1290
|
+
}
|
|
1291
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1292
|
+
input[type=checkbox].switch {
|
|
1293
|
+
transition: none;
|
|
1294
|
+
}
|
|
1295
|
+
input[type=checkbox].switch::before {
|
|
1296
|
+
transition: none;
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
@media (forced-colors: active) {
|
|
1300
|
+
input[type=checkbox].switch {
|
|
1301
|
+
background-color: ButtonFace;
|
|
1302
|
+
border-color: CanvasText;
|
|
1303
|
+
}
|
|
1304
|
+
input[type=checkbox].switch::before {
|
|
1305
|
+
background-color: CanvasText;
|
|
1306
|
+
}
|
|
1307
|
+
input[type=checkbox].switch:checked {
|
|
1308
|
+
background-color: Highlight;
|
|
1309
|
+
border-color: Highlight;
|
|
1310
|
+
}
|
|
1311
|
+
input[type=checkbox].switch:checked::before {
|
|
1312
|
+
background-color: HighlightText;
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
input[type=file] {
|
|
1317
|
+
background-color: transparent;
|
|
1318
|
+
background-color: var(--kc-input-bg, transparent);
|
|
1319
|
+
color: currentColor;
|
|
1320
|
+
color: var(--kc-input-fg, currentColor);
|
|
1321
|
+
display: inline-block;
|
|
1322
|
+
max-width: 100%;
|
|
1323
|
+
padding: 0.5rem 0.75rem;
|
|
1324
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1325
|
+
border-radius: 5px;
|
|
1326
|
+
font: inherit;
|
|
1327
|
+
line-height: 1.4;
|
|
1328
|
+
cursor: pointer;
|
|
1329
|
+
}
|
|
1330
|
+
input[type=file]:focus-visible {
|
|
1331
|
+
outline: 2px solid var(--kc-fg, currentColor);
|
|
1332
|
+
outline-offset: 2px;
|
|
1333
|
+
border-color: var(--kc-fg, currentColor);
|
|
1334
|
+
}
|
|
1335
|
+
input[type=file]:disabled {
|
|
1336
|
+
cursor: not-allowed;
|
|
1337
|
+
opacity: 0.6;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
input[type=file]::file-selector-button {
|
|
1341
|
+
margin-inline-end: 0.75rem;
|
|
1342
|
+
padding: 0.25rem 0.75rem;
|
|
1343
|
+
border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
|
|
1344
|
+
border-radius: 5px;
|
|
1345
|
+
background-color: var(--kc-default-bg, transparent);
|
|
1346
|
+
color: var(--kc-default-fg, currentColor);
|
|
1347
|
+
font: inherit;
|
|
1348
|
+
cursor: inherit;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
input[type=range] {
|
|
1352
|
+
appearance: none;
|
|
1353
|
+
-webkit-appearance: none;
|
|
1354
|
+
-moz-appearance: none;
|
|
1355
|
+
width: 100%;
|
|
1356
|
+
height: 1.125rem;
|
|
1357
|
+
background: transparent;
|
|
1358
|
+
cursor: pointer;
|
|
1359
|
+
}
|
|
1360
|
+
input[type=range]:focus-visible {
|
|
1361
|
+
outline: 2px solid var(--kc-fg, currentColor);
|
|
1362
|
+
outline-offset: 2px;
|
|
1363
|
+
}
|
|
1364
|
+
input[type=range]:disabled {
|
|
1365
|
+
cursor: not-allowed;
|
|
1366
|
+
opacity: 0.6;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
input[type=range]::-webkit-slider-runnable-track {
|
|
1370
|
+
height: 0.375rem;
|
|
1371
|
+
border-radius: 999px;
|
|
1372
|
+
background-color: color-mix(in srgb, currentColor 18%, transparent);
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
input[type=range]::-moz-range-track {
|
|
1376
|
+
height: 0.375rem;
|
|
1377
|
+
border-radius: 999px;
|
|
1378
|
+
background-color: color-mix(in srgb, currentColor 18%, transparent);
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
input[type=range]::-webkit-slider-thumb {
|
|
1382
|
+
appearance: none;
|
|
1383
|
+
-webkit-appearance: none;
|
|
1384
|
+
width: 1.125rem;
|
|
1385
|
+
height: 1.125rem;
|
|
1386
|
+
border-radius: 50%;
|
|
1387
|
+
background-color: var(--kc-fg, currentColor);
|
|
1388
|
+
border: 2px solid var(--kc-bg, white);
|
|
1389
|
+
margin-block-start: calc((0.375rem - 1.125rem) / 2);
|
|
1390
|
+
cursor: pointer;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
input[type=range]::-moz-range-thumb {
|
|
1394
|
+
width: 1.125rem;
|
|
1395
|
+
height: 1.125rem;
|
|
1396
|
+
border-radius: 50%;
|
|
1397
|
+
background-color: var(--kc-fg, currentColor);
|
|
1398
|
+
border: 2px solid var(--kc-bg, white);
|
|
1399
|
+
cursor: pointer;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
@media (forced-colors: active) {
|
|
1403
|
+
input[type=range]::-webkit-slider-runnable-track {
|
|
1404
|
+
background-color: ButtonFace;
|
|
1405
|
+
border: 1px solid CanvasText;
|
|
1406
|
+
}
|
|
1407
|
+
input[type=range]::-moz-range-track {
|
|
1408
|
+
background-color: ButtonFace;
|
|
1409
|
+
border: 1px solid CanvasText;
|
|
1410
|
+
}
|
|
1411
|
+
input[type=range]::-webkit-slider-thumb {
|
|
1412
|
+
background-color: Highlight;
|
|
1413
|
+
border-color: HighlightText;
|
|
1414
|
+
}
|
|
1415
|
+
input[type=range]::-moz-range-thumb {
|
|
1416
|
+
background-color: Highlight;
|
|
1417
|
+
border-color: HighlightText;
|
|
1418
|
+
}
|
|
1419
|
+
}
|
|
1420
|
+
/*# sourceMappingURL=krysalicss.css.map */
|