@medyll/idae-slotui-svelte 0.62.0 → 0.64.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.
- package/dist/base/cartouche/Cartouche.svelte +13 -7
- package/dist/base/cartouche/cartouche.scss +23 -23
- package/dist/base/titleBar/TitleBar.svelte +3 -1
- package/dist/base/titleBar/title-bar.scss +3 -1
- package/dist/controls/button/Button.svelte +498 -892
- package/dist/controls/button/ButtonAction.svelte +493 -887
- package/dist/controls/button/button.scss +51 -71
- package/dist/controls/checkbox/Checkbox.svelte +20 -16
- package/dist/controls/checkbox/checkbox.scss +14 -11
- package/dist/controls/slider/Slider.svelte +9 -7
- package/dist/controls/slider/slider.scss +9 -7
- package/dist/controls/textfield/TextField.svelte +7 -3
- package/dist/csss/csss.scss +3 -1
- package/dist/data/dataList/DataList.svelte +2 -2
- package/dist/data/dataList/datalist.scss +1 -1
- package/dist/data/finder/Finder.svelte +6 -2
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -3
- package/dist/navigation/drawer/Drawer.svelte +10 -6
- package/dist/navigation/drawer/drawer.scss +17 -13
- package/dist/slotui-css/button.css +493 -887
- package/dist/slotui-css/button.min.css +493 -887
- package/dist/slotui-css/cartouche.css +13 -7
- package/dist/slotui-css/cartouche.min.css +13 -7
- package/dist/slotui-css/checkbox.css +20 -16
- package/dist/slotui-css/checkbox.min.css +20 -16
- package/dist/slotui-css/csss.css +5 -5
- package/dist/slotui-css/csss.min.css +5 -5
- package/dist/slotui-css/datalist.css +2 -2
- package/dist/slotui-css/datalist.min.css +2 -2
- package/dist/slotui-css/drawer.css +10 -6
- package/dist/slotui-css/drawer.min.css +10 -6
- package/dist/slotui-css/finder.css +6 -2
- package/dist/slotui-css/finder.min.css +6 -2
- package/dist/slotui-css/marquee.css +6 -6
- package/dist/slotui-css/marquee.min.css +6 -6
- package/dist/slotui-css/menu-list.css +61 -192
- package/dist/slotui-css/menu-list.min.css +61 -192
- package/dist/slotui-css/menu.css +15 -14
- package/dist/slotui-css/menu.min.css +15 -14
- package/dist/slotui-css/slider.css +9 -7
- package/dist/slotui-css/slider.min.css +9 -7
- package/dist/slotui-css/slotui-css.css +654 -1153
- package/dist/slotui-css/slotui-min-css.css +654 -1153
- package/dist/slotui-css/textfield.css +7 -3
- package/dist/slotui-css/textfield.min.css +7 -3
- package/dist/slotui-css/title-bar.css +3 -1
- package/dist/slotui-css/title-bar.min.css +3 -1
- package/dist/slotui-css/tree.css +4 -5
- package/dist/slotui-css/tree.min.css +4 -5
- package/dist/styles/slotui-mixins.scss +26 -23
- package/dist/ui/marquee/Marquee.svelte +6 -6
- package/dist/ui/menu/MenuTitle.svelte +15 -14
- package/dist/ui/menu/menu.scss +16 -11
- package/dist/ui/menuList/MenuList.svelte +63 -194
- package/dist/ui/menuList/MenuListItem.svelte +62 -194
- package/dist/ui/menuList/MenuListTitle.svelte +61 -192
- package/dist/ui/menuList/menu-list.scss +16 -16
- package/dist/ui/tree/Tree.svelte +5 -6
- package/dist/utils/content/Content.svelte +10 -8
- package/package.json +3 -3
- package/dist/slotui-css/slotui-combined.css +0 -5075
|
@@ -34,7 +34,7 @@ let startRef = $state(void 0);
|
|
|
34
34
|
</script>
|
|
35
35
|
|
|
36
36
|
<button
|
|
37
|
-
class={className + ' button '}
|
|
37
|
+
class={className + ' slotui-button '}
|
|
38
38
|
class:loading
|
|
39
39
|
bind:this={element}
|
|
40
40
|
use:popper={usePopperProps}
|
|
@@ -44,7 +44,7 @@ let startRef = $state(void 0);
|
|
|
44
44
|
type={buttonType}
|
|
45
45
|
{tall}
|
|
46
46
|
{width}
|
|
47
|
-
{variant}
|
|
47
|
+
variant={variant}
|
|
48
48
|
{selected}
|
|
49
49
|
{...rest}
|
|
50
50
|
style:aspect-ratio={ratio}
|
|
@@ -53,7 +53,7 @@ let startRef = $state(void 0);
|
|
|
53
53
|
{#if buttonStart || icon}
|
|
54
54
|
<div
|
|
55
55
|
bind:this={startRef}
|
|
56
|
-
class="
|
|
56
|
+
class="start"
|
|
57
57
|
style="--start-position:{(children ?? value) ? 'absolute' : 'relative'}"
|
|
58
58
|
>
|
|
59
59
|
<Slotted child={buttonStart}>
|
|
@@ -63,14 +63,14 @@ let startRef = $state(void 0);
|
|
|
63
63
|
{/if}
|
|
64
64
|
{#if children ?? value}
|
|
65
65
|
<div
|
|
66
|
-
class="
|
|
66
|
+
class="central {ellipsis? 'ellipsis' : ''}"
|
|
67
67
|
style="--content-padding:{buttonStart || icon ? `${startRef?.clientWidth ?? '0.5rem'}px` : '0.5rem'}"
|
|
68
68
|
>
|
|
69
69
|
<Slotted child={children}>{value ?? ''}</Slotted>
|
|
70
70
|
</div>
|
|
71
71
|
{/if}
|
|
72
72
|
{#if buttonEnd || iconEnd}
|
|
73
|
-
<div class="
|
|
73
|
+
<div class="end">
|
|
74
74
|
<Slotted child={buttonEnd}>
|
|
75
75
|
<Icon icon={iconEnd} />
|
|
76
76
|
</Slotted>
|
|
@@ -113,311 +113,239 @@ let startRef = $state(void 0);
|
|
|
113
113
|
background-color: rgba(255, 255, 255, 0.5);
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
button,
|
|
117
|
-
.button,
|
|
118
|
-
button.button,
|
|
119
|
-
input[type=button
|
|
120
|
-
input[type=submit] {
|
|
116
|
+
.slotui-button,
|
|
117
|
+
button.slotui-button,
|
|
118
|
+
input[type=button].slotui-button,
|
|
119
|
+
input[type=submit].slotui-button {
|
|
121
120
|
width: var(--sld-width-small);
|
|
122
|
-
min-height: var(--preset-tall-small);
|
|
123
|
-
height: var(--preset-tall-small);
|
|
124
|
-
border: none;
|
|
125
|
-
border-radius: 0;
|
|
126
|
-
margin: 0;
|
|
127
|
-
text-align: var(--sld-button-text-align);
|
|
128
|
-
font-size: var(--sld-button-font-size);
|
|
129
|
-
border-radius: var(--sld-button-radius);
|
|
130
|
-
color: var(--sld-color-foreground);
|
|
131
|
-
padding: var(--sld-button-padding);
|
|
132
|
-
position: relative;
|
|
133
|
-
display: inline-flex;
|
|
134
|
-
transition: all 0.2s ease-in-out;
|
|
135
|
-
overflow: hidden;
|
|
136
|
-
cursor: pointer;
|
|
137
|
-
align-content: center;
|
|
138
|
-
align-items: center;
|
|
139
|
-
background: var(--sld-button-background);
|
|
140
|
-
/* :focus {
|
|
141
|
-
outline: 1px solid var(--sld-button-focus-border-color);
|
|
142
|
-
outline-offset: 2px;
|
|
143
|
-
box-shadow: var(--sld-button-focus-shadow);
|
|
144
|
-
}
|
|
145
|
-
:focus-visible {
|
|
146
|
-
outline: 1px solid var(--sld-button-focus-border-color);
|
|
147
|
-
outline-offset: -2px;
|
|
148
|
-
box-shadow: var(--sld-button-focus-shadow);
|
|
149
|
-
}
|
|
150
|
-
:hover {
|
|
151
|
-
background-color: var(--sld-button-hover-background);
|
|
152
|
-
box-shadow: var(--sld-button-hover-shadow);
|
|
153
|
-
}
|
|
154
|
-
:active {
|
|
155
|
-
transform: translateY(1px);
|
|
156
|
-
box-shadow: var(--sld-button-active-shadow);
|
|
157
|
-
}
|
|
158
|
-
:focus:not(:focus-visible) {
|
|
159
|
-
box-shadow: var(--sld-button-focus-shadow);
|
|
160
|
-
} */
|
|
161
|
-
width: var(--sld-width-small);
|
|
162
|
-
min-height: var(--preset-tall-small);
|
|
163
|
-
height: var(--preset-tall-small);
|
|
164
121
|
}
|
|
165
|
-
button,
|
|
166
|
-
.button,
|
|
167
|
-
button.button,
|
|
168
|
-
input[type=button
|
|
169
|
-
input[type=submit] {
|
|
122
|
+
.slotui-button,
|
|
123
|
+
button.slotui-button,
|
|
124
|
+
input[type=button].slotui-button,
|
|
125
|
+
input[type=submit].slotui-button {
|
|
170
126
|
--preset-width: var(--sld-width-small);
|
|
171
127
|
}
|
|
172
|
-
button[width=tiny], button.width-tiny,
|
|
173
|
-
.button[width=tiny],
|
|
174
|
-
.button.width-tiny,
|
|
175
|
-
button.button[width=tiny],
|
|
176
|
-
button.button.width-tiny,
|
|
177
|
-
input[type=button
|
|
178
|
-
input[type=
|
|
179
|
-
input[type=submit][width=tiny],
|
|
180
|
-
input[type=submit].width-tiny {
|
|
128
|
+
.slotui-button[width=tiny], .slotui-button.width-tiny,
|
|
129
|
+
button.slotui-button[width=tiny],
|
|
130
|
+
button.slotui-button.width-tiny,
|
|
131
|
+
input[type=button].slotui-button[width=tiny],
|
|
132
|
+
input[type=button].slotui-button.width-tiny,
|
|
133
|
+
input[type=submit].slotui-button[width=tiny],
|
|
134
|
+
input[type=submit].slotui-button.width-tiny {
|
|
181
135
|
--preset-width: var(--sld-width-tiny);
|
|
182
136
|
width: var(--sld-width-tiny) !important;
|
|
183
137
|
}
|
|
184
|
-
button[width=mini], button.width-mini,
|
|
185
|
-
.button[width=mini],
|
|
186
|
-
.button.width-mini,
|
|
187
|
-
button.button[width=mini],
|
|
188
|
-
button.button.width-mini,
|
|
189
|
-
input[type=button
|
|
190
|
-
input[type=
|
|
191
|
-
input[type=submit][width=mini],
|
|
192
|
-
input[type=submit].width-mini {
|
|
138
|
+
.slotui-button[width=mini], .slotui-button.width-mini,
|
|
139
|
+
button.slotui-button[width=mini],
|
|
140
|
+
button.slotui-button.width-mini,
|
|
141
|
+
input[type=button].slotui-button[width=mini],
|
|
142
|
+
input[type=button].slotui-button.width-mini,
|
|
143
|
+
input[type=submit].slotui-button[width=mini],
|
|
144
|
+
input[type=submit].slotui-button.width-mini {
|
|
193
145
|
--preset-width: var(--sld-width-mini);
|
|
194
146
|
width: var(--sld-width-mini) !important;
|
|
195
147
|
}
|
|
196
|
-
button[width=small], button.width-small,
|
|
197
|
-
.button[width=small],
|
|
198
|
-
.button.width-small,
|
|
199
|
-
button.button[width=small],
|
|
200
|
-
button.button.width-small,
|
|
201
|
-
input[type=button
|
|
202
|
-
input[type=
|
|
203
|
-
input[type=submit][width=small],
|
|
204
|
-
input[type=submit].width-small {
|
|
148
|
+
.slotui-button[width=small], .slotui-button.width-small,
|
|
149
|
+
button.slotui-button[width=small],
|
|
150
|
+
button.slotui-button.width-small,
|
|
151
|
+
input[type=button].slotui-button[width=small],
|
|
152
|
+
input[type=button].slotui-button.width-small,
|
|
153
|
+
input[type=submit].slotui-button[width=small],
|
|
154
|
+
input[type=submit].slotui-button.width-small {
|
|
205
155
|
--preset-width: var(--sld-width-small);
|
|
206
156
|
width: var(--sld-width-small) !important;
|
|
207
157
|
}
|
|
208
|
-
button[width=med], button.width-med,
|
|
209
|
-
.button[width=med],
|
|
210
|
-
.button.width-med,
|
|
211
|
-
button.button[width=med],
|
|
212
|
-
button.button.width-med,
|
|
213
|
-
input[type=button
|
|
214
|
-
input[type=
|
|
215
|
-
input[type=submit][width=med],
|
|
216
|
-
input[type=submit].width-med {
|
|
158
|
+
.slotui-button[width=med], .slotui-button.width-med,
|
|
159
|
+
button.slotui-button[width=med],
|
|
160
|
+
button.slotui-button.width-med,
|
|
161
|
+
input[type=button].slotui-button[width=med],
|
|
162
|
+
input[type=button].slotui-button.width-med,
|
|
163
|
+
input[type=submit].slotui-button[width=med],
|
|
164
|
+
input[type=submit].slotui-button.width-med {
|
|
217
165
|
--preset-width: var(--sld-width-med);
|
|
218
166
|
width: var(--sld-width-med) !important;
|
|
219
167
|
}
|
|
220
|
-
button[width=kind], button.width-kind,
|
|
221
|
-
.button[width=kind],
|
|
222
|
-
.button.width-kind,
|
|
223
|
-
button.button[width=kind],
|
|
224
|
-
button.button.width-kind,
|
|
225
|
-
input[type=button
|
|
226
|
-
input[type=
|
|
227
|
-
input[type=submit][width=kind],
|
|
228
|
-
input[type=submit].width-kind {
|
|
168
|
+
.slotui-button[width=kind], .slotui-button.width-kind,
|
|
169
|
+
button.slotui-button[width=kind],
|
|
170
|
+
button.slotui-button.width-kind,
|
|
171
|
+
input[type=button].slotui-button[width=kind],
|
|
172
|
+
input[type=button].slotui-button.width-kind,
|
|
173
|
+
input[type=submit].slotui-button[width=kind],
|
|
174
|
+
input[type=submit].slotui-button.width-kind {
|
|
229
175
|
--preset-width: var(--sld-width-kind);
|
|
230
176
|
width: var(--sld-width-kind) !important;
|
|
231
177
|
}
|
|
232
|
-
button[width=full], button.width-full,
|
|
233
|
-
.button[width=full],
|
|
234
|
-
.button.width-full,
|
|
235
|
-
button.button[width=full],
|
|
236
|
-
button.button.width-full,
|
|
237
|
-
input[type=button
|
|
238
|
-
input[type=
|
|
239
|
-
input[type=submit][width=full],
|
|
240
|
-
input[type=submit].width-full {
|
|
178
|
+
.slotui-button[width=full], .slotui-button.width-full,
|
|
179
|
+
button.slotui-button[width=full],
|
|
180
|
+
button.slotui-button.width-full,
|
|
181
|
+
input[type=button].slotui-button[width=full],
|
|
182
|
+
input[type=button].slotui-button.width-full,
|
|
183
|
+
input[type=submit].slotui-button[width=full],
|
|
184
|
+
input[type=submit].slotui-button.width-full {
|
|
241
185
|
--preset-width: var(--sld-width-full);
|
|
242
186
|
width: var(--sld-width-full) !important;
|
|
243
187
|
}
|
|
244
|
-
button[width=auto], button.width-auto,
|
|
245
|
-
.button[width=auto],
|
|
246
|
-
.button.width-auto,
|
|
247
|
-
button.button[width=auto],
|
|
248
|
-
button.button.width-auto,
|
|
249
|
-
input[type=button
|
|
250
|
-
input[type=
|
|
251
|
-
input[type=submit][width=auto],
|
|
252
|
-
input[type=submit].width-auto {
|
|
188
|
+
.slotui-button[width=auto], .slotui-button.width-auto,
|
|
189
|
+
button.slotui-button[width=auto],
|
|
190
|
+
button.slotui-button.width-auto,
|
|
191
|
+
input[type=button].slotui-button[width=auto],
|
|
192
|
+
input[type=button].slotui-button.width-auto,
|
|
193
|
+
input[type=submit].slotui-button[width=auto],
|
|
194
|
+
input[type=submit].slotui-button.width-auto {
|
|
253
195
|
--preset-width: var(--sld-width-auto);
|
|
254
196
|
width: var(--sld-width-auto) !important;
|
|
255
197
|
}
|
|
256
|
-
button[width=default], button.width-default,
|
|
257
|
-
.button[width=default],
|
|
258
|
-
.button.width-default,
|
|
259
|
-
button.button[width=default],
|
|
260
|
-
button.button.width-default,
|
|
261
|
-
input[type=button
|
|
262
|
-
input[type=
|
|
263
|
-
input[type=submit][width=default],
|
|
264
|
-
input[type=submit].width-default {
|
|
198
|
+
.slotui-button[width=default], .slotui-button.width-default,
|
|
199
|
+
button.slotui-button[width=default],
|
|
200
|
+
button.slotui-button.width-default,
|
|
201
|
+
input[type=button].slotui-button[width=default],
|
|
202
|
+
input[type=button].slotui-button.width-default,
|
|
203
|
+
input[type=submit].slotui-button[width=default],
|
|
204
|
+
input[type=submit].slotui-button.width-default {
|
|
265
205
|
--preset-width: var(--sld-width-default);
|
|
266
206
|
width: var(--sld-width-default) !important;
|
|
267
207
|
}
|
|
268
|
-
button,
|
|
269
|
-
.button,
|
|
270
|
-
button.button,
|
|
271
|
-
input[type=button
|
|
272
|
-
|
|
208
|
+
.slotui-button,
|
|
209
|
+
button.slotui-button,
|
|
210
|
+
input[type=button].slotui-button,
|
|
211
|
+
input[type=submit].slotui-button {
|
|
212
|
+
min-height: var(--preset-tall-small);
|
|
213
|
+
height: var(--preset-tall-small);
|
|
214
|
+
}
|
|
215
|
+
.slotui-button,
|
|
216
|
+
button.slotui-button,
|
|
217
|
+
input[type=button].slotui-button,
|
|
218
|
+
input[type=submit].slotui-button {
|
|
273
219
|
--preset-tall: var(--sld-tall-small);
|
|
274
220
|
}
|
|
275
|
-
button[tall=tiny], button.tall-tiny,
|
|
276
|
-
.button[tall=tiny],
|
|
277
|
-
.button.tall-tiny,
|
|
278
|
-
button.button[tall=tiny],
|
|
279
|
-
button.button.tall-tiny,
|
|
280
|
-
input[type=button
|
|
281
|
-
input[type=
|
|
282
|
-
input[type=submit][tall=tiny],
|
|
283
|
-
input[type=submit].tall-tiny {
|
|
221
|
+
.slotui-button[tall=tiny], .slotui-button.tall-tiny,
|
|
222
|
+
button.slotui-button[tall=tiny],
|
|
223
|
+
button.slotui-button.tall-tiny,
|
|
224
|
+
input[type=button].slotui-button[tall=tiny],
|
|
225
|
+
input[type=button].slotui-button.tall-tiny,
|
|
226
|
+
input[type=submit].slotui-button[tall=tiny],
|
|
227
|
+
input[type=submit].slotui-button.tall-tiny {
|
|
284
228
|
min-height: var(--sld-tall-tiny) !important;
|
|
285
229
|
}
|
|
286
|
-
button[tall=mini], button.tall-mini,
|
|
287
|
-
.button[tall=mini],
|
|
288
|
-
.button.tall-mini,
|
|
289
|
-
button.button[tall=mini],
|
|
290
|
-
button.button.tall-mini,
|
|
291
|
-
input[type=button
|
|
292
|
-
input[type=
|
|
293
|
-
input[type=submit][tall=mini],
|
|
294
|
-
input[type=submit].tall-mini {
|
|
230
|
+
.slotui-button[tall=mini], .slotui-button.tall-mini,
|
|
231
|
+
button.slotui-button[tall=mini],
|
|
232
|
+
button.slotui-button.tall-mini,
|
|
233
|
+
input[type=button].slotui-button[tall=mini],
|
|
234
|
+
input[type=button].slotui-button.tall-mini,
|
|
235
|
+
input[type=submit].slotui-button[tall=mini],
|
|
236
|
+
input[type=submit].slotui-button.tall-mini {
|
|
295
237
|
min-height: var(--sld-tall-mini) !important;
|
|
296
238
|
}
|
|
297
|
-
button[tall=small], button.tall-small,
|
|
298
|
-
.button[tall=small],
|
|
299
|
-
.button.tall-small,
|
|
300
|
-
button.button[tall=small],
|
|
301
|
-
button.button.tall-small,
|
|
302
|
-
input[type=button
|
|
303
|
-
input[type=
|
|
304
|
-
input[type=submit][tall=small],
|
|
305
|
-
input[type=submit].tall-small {
|
|
239
|
+
.slotui-button[tall=small], .slotui-button.tall-small,
|
|
240
|
+
button.slotui-button[tall=small],
|
|
241
|
+
button.slotui-button.tall-small,
|
|
242
|
+
input[type=button].slotui-button[tall=small],
|
|
243
|
+
input[type=button].slotui-button.tall-small,
|
|
244
|
+
input[type=submit].slotui-button[tall=small],
|
|
245
|
+
input[type=submit].slotui-button.tall-small {
|
|
306
246
|
min-height: var(--sld-tall-small) !important;
|
|
307
247
|
}
|
|
308
|
-
button[tall=med], button.tall-med,
|
|
309
|
-
.button[tall=med],
|
|
310
|
-
.button.tall-med,
|
|
311
|
-
button.button[tall=med],
|
|
312
|
-
button.button.tall-med,
|
|
313
|
-
input[type=button
|
|
314
|
-
input[type=
|
|
315
|
-
input[type=submit][tall=med],
|
|
316
|
-
input[type=submit].tall-med {
|
|
248
|
+
.slotui-button[tall=med], .slotui-button.tall-med,
|
|
249
|
+
button.slotui-button[tall=med],
|
|
250
|
+
button.slotui-button.tall-med,
|
|
251
|
+
input[type=button].slotui-button[tall=med],
|
|
252
|
+
input[type=button].slotui-button.tall-med,
|
|
253
|
+
input[type=submit].slotui-button[tall=med],
|
|
254
|
+
input[type=submit].slotui-button.tall-med {
|
|
317
255
|
min-height: var(--sld-tall-med) !important;
|
|
318
256
|
}
|
|
319
|
-
button[tall=kind], button.tall-kind,
|
|
320
|
-
.button[tall=kind],
|
|
321
|
-
.button.tall-kind,
|
|
322
|
-
button.button[tall=kind],
|
|
323
|
-
button.button.tall-kind,
|
|
324
|
-
input[type=button
|
|
325
|
-
input[type=
|
|
326
|
-
input[type=submit][tall=kind],
|
|
327
|
-
input[type=submit].tall-kind {
|
|
257
|
+
.slotui-button[tall=kind], .slotui-button.tall-kind,
|
|
258
|
+
button.slotui-button[tall=kind],
|
|
259
|
+
button.slotui-button.tall-kind,
|
|
260
|
+
input[type=button].slotui-button[tall=kind],
|
|
261
|
+
input[type=button].slotui-button.tall-kind,
|
|
262
|
+
input[type=submit].slotui-button[tall=kind],
|
|
263
|
+
input[type=submit].slotui-button.tall-kind {
|
|
328
264
|
min-height: var(--sld-tall-kind) !important;
|
|
329
265
|
}
|
|
330
|
-
button[tall=auto], button.tall-auto,
|
|
331
|
-
.button[tall=auto],
|
|
332
|
-
.button.tall-auto,
|
|
333
|
-
button.button[tall=auto],
|
|
334
|
-
button.button.tall-auto,
|
|
335
|
-
input[type=button
|
|
336
|
-
input[type=
|
|
337
|
-
input[type=submit][tall=auto],
|
|
338
|
-
input[type=submit].tall-auto {
|
|
266
|
+
.slotui-button[tall=auto], .slotui-button.tall-auto,
|
|
267
|
+
button.slotui-button[tall=auto],
|
|
268
|
+
button.slotui-button.tall-auto,
|
|
269
|
+
input[type=button].slotui-button[tall=auto],
|
|
270
|
+
input[type=button].slotui-button.tall-auto,
|
|
271
|
+
input[type=submit].slotui-button[tall=auto],
|
|
272
|
+
input[type=submit].slotui-button.tall-auto {
|
|
339
273
|
min-height: var(--sld-tall-auto) !important;
|
|
340
274
|
}
|
|
341
|
-
button[tall=default], button.tall-default,
|
|
342
|
-
.button[tall=default],
|
|
343
|
-
.button.tall-default,
|
|
344
|
-
button.button[tall=default],
|
|
345
|
-
button.button.tall-default,
|
|
346
|
-
input[type=button
|
|
347
|
-
input[type=
|
|
348
|
-
input[type=submit][tall=default],
|
|
349
|
-
input[type=submit].tall-default {
|
|
275
|
+
.slotui-button[tall=default], .slotui-button.tall-default,
|
|
276
|
+
button.slotui-button[tall=default],
|
|
277
|
+
button.slotui-button.tall-default,
|
|
278
|
+
input[type=button].slotui-button[tall=default],
|
|
279
|
+
input[type=button].slotui-button.tall-default,
|
|
280
|
+
input[type=submit].slotui-button[tall=default],
|
|
281
|
+
input[type=submit].slotui-button.tall-default {
|
|
350
282
|
min-height: var(--sld-tall-default) !important;
|
|
351
283
|
}
|
|
352
|
-
button[variant*=square],
|
|
353
|
-
.button[variant*=square],
|
|
354
|
-
.button[square
|
|
355
|
-
.button
|
|
356
|
-
button.button[variant*=square],
|
|
357
|
-
button.button[square=true],
|
|
358
|
-
button.button.square,
|
|
359
|
-
input[type=button][variant*=square],
|
|
360
|
-
input[type=button][square=true],
|
|
361
|
-
input[type=button].square,
|
|
362
|
-
input[type=submit][variant*=square],
|
|
363
|
-
input[type=submit][square=true],
|
|
364
|
-
input[type=submit].square {
|
|
284
|
+
.slotui-button[variant*=square],
|
|
285
|
+
button.slotui-button[variant*=square],
|
|
286
|
+
input[type=button].slotui-button[variant*=square],
|
|
287
|
+
input[type=submit].slotui-button[variant*=square] {
|
|
365
288
|
aspect-ratio: 1/1 !important;
|
|
366
289
|
height: auto;
|
|
367
290
|
}
|
|
368
|
-
button[variant*=rounded],
|
|
369
|
-
.button[variant*=rounded],
|
|
370
|
-
.button[rounded
|
|
371
|
-
.button
|
|
372
|
-
button.button[variant*=rounded],
|
|
373
|
-
button.button[rounded=true],
|
|
374
|
-
button.button.rounded,
|
|
375
|
-
input[type=button][variant*=rounded],
|
|
376
|
-
input[type=button][rounded=true],
|
|
377
|
-
input[type=button].rounded,
|
|
378
|
-
input[type=submit][variant*=rounded],
|
|
379
|
-
input[type=submit][rounded=true],
|
|
380
|
-
input[type=submit].rounded {
|
|
291
|
+
.slotui-button[variant*=rounded],
|
|
292
|
+
button.slotui-button[variant*=rounded],
|
|
293
|
+
input[type=button].slotui-button[variant*=rounded],
|
|
294
|
+
input[type=submit].slotui-button[variant*=rounded] {
|
|
381
295
|
border-radius: 50%;
|
|
382
296
|
}
|
|
383
|
-
button.elevation-0, button[elevation-0],
|
|
384
|
-
.button.elevation-0,
|
|
385
|
-
.button[elevation-0],
|
|
386
|
-
button.button.elevation-0,
|
|
387
|
-
button.button[elevation-0],
|
|
388
|
-
input[type=
|
|
389
|
-
input[type=button
|
|
390
|
-
input[type=submit].elevation-0,
|
|
391
|
-
input[type=submit][elevation-0] {
|
|
297
|
+
.slotui-button.elevation-0, .slotui-button[elevation-0],
|
|
298
|
+
button.slotui-button.elevation-0,
|
|
299
|
+
button.slotui-button[elevation-0],
|
|
300
|
+
input[type=button].slotui-button.elevation-0,
|
|
301
|
+
input[type=button].slotui-button[elevation-0],
|
|
302
|
+
input[type=submit].slotui-button.elevation-0,
|
|
303
|
+
input[type=submit].slotui-button[elevation-0] {
|
|
392
304
|
box-shadow: var(--sld-elevation-0);
|
|
393
305
|
}
|
|
394
|
-
button.elevation-through, button[elevation-through],
|
|
395
|
-
.button.elevation-through,
|
|
396
|
-
.button[elevation-through],
|
|
397
|
-
button.button.elevation-through,
|
|
398
|
-
button.button[elevation-through],
|
|
399
|
-
input[type=
|
|
400
|
-
input[type=button
|
|
401
|
-
input[type=submit].elevation-through,
|
|
402
|
-
input[type=submit][elevation-through] {
|
|
306
|
+
.slotui-button.elevation-through, .slotui-button[elevation-through],
|
|
307
|
+
button.slotui-button.elevation-through,
|
|
308
|
+
button.slotui-button[elevation-through],
|
|
309
|
+
input[type=button].slotui-button.elevation-through,
|
|
310
|
+
input[type=button].slotui-button[elevation-through],
|
|
311
|
+
input[type=submit].slotui-button.elevation-through,
|
|
312
|
+
input[type=submit].slotui-button[elevation-through] {
|
|
403
313
|
box-shadow: var(--sld-elevation-through);
|
|
404
314
|
}
|
|
405
|
-
button.elevation-5, button[elevation-5],
|
|
406
|
-
.button.elevation-5,
|
|
407
|
-
.button[elevation-5],
|
|
408
|
-
button.button.elevation-5,
|
|
409
|
-
button.button[elevation-5],
|
|
410
|
-
input[type=
|
|
411
|
-
input[type=button
|
|
412
|
-
input[type=submit].elevation-5,
|
|
413
|
-
input[type=submit][elevation-5] {
|
|
315
|
+
.slotui-button.elevation-5, .slotui-button[elevation-5],
|
|
316
|
+
button.slotui-button.elevation-5,
|
|
317
|
+
button.slotui-button[elevation-5],
|
|
318
|
+
input[type=button].slotui-button.elevation-5,
|
|
319
|
+
input[type=button].slotui-button[elevation-5],
|
|
320
|
+
input[type=submit].slotui-button.elevation-5,
|
|
321
|
+
input[type=submit].slotui-button[elevation-5] {
|
|
414
322
|
box-shadow: var(--sld-elevation-5);
|
|
415
323
|
}
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
button.button
|
|
419
|
-
input[type=
|
|
420
|
-
|
|
324
|
+
.slotui-button,
|
|
325
|
+
button.slotui-button,
|
|
326
|
+
input[type=button].slotui-button,
|
|
327
|
+
input[type=submit].slotui-button {
|
|
328
|
+
border: none;
|
|
329
|
+
border-radius: 0;
|
|
330
|
+
margin: 0;
|
|
331
|
+
text-align: var(--sld-button-text-align);
|
|
332
|
+
font-size: var(--sld-button-font-size);
|
|
333
|
+
border-radius: var(--sld-button-radius);
|
|
334
|
+
color: var(--sld-color-foreground);
|
|
335
|
+
padding: var(--sld-button-padding);
|
|
336
|
+
position: relative;
|
|
337
|
+
display: inline-flex;
|
|
338
|
+
transition: all 0.2s ease-in-out;
|
|
339
|
+
overflow: hidden;
|
|
340
|
+
cursor: pointer;
|
|
341
|
+
align-content: center;
|
|
342
|
+
align-items: center;
|
|
343
|
+
background: var(--sld-button-background);
|
|
344
|
+
}
|
|
345
|
+
.slotui-button .start,
|
|
346
|
+
button.slotui-button .start,
|
|
347
|
+
input[type=button].slotui-button .start,
|
|
348
|
+
input[type=submit].slotui-button .start {
|
|
421
349
|
position: relative;
|
|
422
350
|
top: 0;
|
|
423
351
|
left: 0;
|
|
@@ -427,56 +355,33 @@ input[type=submit] .button-start {
|
|
|
427
355
|
padding: 0 0.5rem;
|
|
428
356
|
display: block;
|
|
429
357
|
}
|
|
430
|
-
button .
|
|
431
|
-
.button .
|
|
432
|
-
button.button .
|
|
433
|
-
input[type=button
|
|
434
|
-
input[type=submit] .button-start:empty {
|
|
358
|
+
.slotui-button .start:empty,
|
|
359
|
+
button.slotui-button .start:empty,
|
|
360
|
+
input[type=button].slotui-button .start:empty,
|
|
361
|
+
input[type=submit].slotui-button .start:empty {
|
|
435
362
|
display: none;
|
|
436
363
|
}
|
|
437
|
-
button .
|
|
438
|
-
.button .
|
|
439
|
-
button.button .
|
|
440
|
-
input[type=button
|
|
441
|
-
input[type=submit] .button-central {
|
|
442
|
-
display: block;
|
|
443
|
-
max-width: 100%;
|
|
444
|
-
max-height: 100%;
|
|
445
|
-
flex: 1;
|
|
446
|
-
align-items: center;
|
|
447
|
-
align-content: center;
|
|
448
|
-
justify-content: center;
|
|
449
|
-
justify-items: center;
|
|
450
|
-
padding-left: 0.25rem;
|
|
451
|
-
padding-right: 0.25rem;
|
|
452
|
-
text-align: var(--sld-button-text-align, center);
|
|
453
|
-
overflow: hidden;
|
|
454
|
-
}
|
|
455
|
-
button .button-central,
|
|
456
|
-
.button .button-central,
|
|
457
|
-
button.button .button-central,
|
|
458
|
-
input[type=button] .button-central,
|
|
459
|
-
input[type=submit] .button-central {
|
|
364
|
+
.slotui-button .central,
|
|
365
|
+
button.slotui-button .central,
|
|
366
|
+
input[type=button].slotui-button .central,
|
|
367
|
+
input[type=submit].slotui-button .central {
|
|
460
368
|
--preset-ellipsis-line: 1;
|
|
461
369
|
}
|
|
462
|
-
button .
|
|
463
|
-
.button .
|
|
464
|
-
.button .
|
|
465
|
-
button.button .
|
|
466
|
-
button.button .
|
|
467
|
-
input[type=button
|
|
468
|
-
input[type=button
|
|
469
|
-
input[type=submit] .button-central[ellipsis],
|
|
470
|
-
input[type=submit] .button-central.ellipsis {
|
|
370
|
+
.slotui-button .central[ellipsis], .slotui-button .central.ellipsis,
|
|
371
|
+
button.slotui-button .central[ellipsis],
|
|
372
|
+
button.slotui-button .central.ellipsis,
|
|
373
|
+
input[type=button].slotui-button .central[ellipsis],
|
|
374
|
+
input[type=button].slotui-button .central.ellipsis,
|
|
375
|
+
input[type=submit].slotui-button .central[ellipsis],
|
|
376
|
+
input[type=submit].slotui-button .central.ellipsis {
|
|
471
377
|
white-space: nowrap;
|
|
472
378
|
overflow: hidden;
|
|
473
379
|
text-overflow: ellipsis;
|
|
474
380
|
}
|
|
475
|
-
button .
|
|
476
|
-
.button .
|
|
477
|
-
button.button .
|
|
478
|
-
input[type=button
|
|
479
|
-
input[type=submit] .button-central.ellipsis-line-1 {
|
|
381
|
+
.slotui-button .central.ellipsis-line-1,
|
|
382
|
+
button.slotui-button .central.ellipsis-line-1,
|
|
383
|
+
input[type=button].slotui-button .central.ellipsis-line-1,
|
|
384
|
+
input[type=submit].slotui-button .central.ellipsis-line-1 {
|
|
480
385
|
display: -webkit-box;
|
|
481
386
|
-webkit-line-clamp: 1;
|
|
482
387
|
-webkit-box-orient: vertical;
|
|
@@ -485,11 +390,10 @@ input[type=submit] .button-central.ellipsis-line-1 {
|
|
|
485
390
|
white-space: normal;
|
|
486
391
|
--preset-ellipsis-line: 1;
|
|
487
392
|
}
|
|
488
|
-
button .
|
|
489
|
-
.button .
|
|
490
|
-
button.button .
|
|
491
|
-
input[type=button
|
|
492
|
-
input[type=submit] .button-central.ellipsis-line-2 {
|
|
393
|
+
.slotui-button .central.ellipsis-line-2,
|
|
394
|
+
button.slotui-button .central.ellipsis-line-2,
|
|
395
|
+
input[type=button].slotui-button .central.ellipsis-line-2,
|
|
396
|
+
input[type=submit].slotui-button .central.ellipsis-line-2 {
|
|
493
397
|
display: -webkit-box;
|
|
494
398
|
-webkit-line-clamp: 2;
|
|
495
399
|
-webkit-box-orient: vertical;
|
|
@@ -498,11 +402,10 @@ input[type=submit] .button-central.ellipsis-line-2 {
|
|
|
498
402
|
white-space: normal;
|
|
499
403
|
--preset-ellipsis-line: 2;
|
|
500
404
|
}
|
|
501
|
-
button .
|
|
502
|
-
.button .
|
|
503
|
-
button.button .
|
|
504
|
-
input[type=button
|
|
505
|
-
input[type=submit] .button-central.ellipsis-line-3 {
|
|
405
|
+
.slotui-button .central.ellipsis-line-3,
|
|
406
|
+
button.slotui-button .central.ellipsis-line-3,
|
|
407
|
+
input[type=button].slotui-button .central.ellipsis-line-3,
|
|
408
|
+
input[type=submit].slotui-button .central.ellipsis-line-3 {
|
|
506
409
|
display: -webkit-box;
|
|
507
410
|
-webkit-line-clamp: 3;
|
|
508
411
|
-webkit-box-orient: vertical;
|
|
@@ -511,11 +414,10 @@ input[type=submit] .button-central.ellipsis-line-3 {
|
|
|
511
414
|
white-space: normal;
|
|
512
415
|
--preset-ellipsis-line: 3;
|
|
513
416
|
}
|
|
514
|
-
button .
|
|
515
|
-
.button .
|
|
516
|
-
button.button .
|
|
517
|
-
input[type=button
|
|
518
|
-
input[type=submit] .button-central.ellipsis-line-4 {
|
|
417
|
+
.slotui-button .central.ellipsis-line-4,
|
|
418
|
+
button.slotui-button .central.ellipsis-line-4,
|
|
419
|
+
input[type=button].slotui-button .central.ellipsis-line-4,
|
|
420
|
+
input[type=submit].slotui-button .central.ellipsis-line-4 {
|
|
519
421
|
display: -webkit-box;
|
|
520
422
|
-webkit-line-clamp: 4;
|
|
521
423
|
-webkit-box-orient: vertical;
|
|
@@ -524,11 +426,10 @@ input[type=submit] .button-central.ellipsis-line-4 {
|
|
|
524
426
|
white-space: normal;
|
|
525
427
|
--preset-ellipsis-line: 4;
|
|
526
428
|
}
|
|
527
|
-
button .
|
|
528
|
-
.button .
|
|
529
|
-
button.button .
|
|
530
|
-
input[type=button
|
|
531
|
-
input[type=submit] .button-central.ellipsis-line-5 {
|
|
429
|
+
.slotui-button .central.ellipsis-line-5,
|
|
430
|
+
button.slotui-button .central.ellipsis-line-5,
|
|
431
|
+
input[type=button].slotui-button .central.ellipsis-line-5,
|
|
432
|
+
input[type=submit].slotui-button .central.ellipsis-line-5 {
|
|
532
433
|
display: -webkit-box;
|
|
533
434
|
-webkit-line-clamp: 5;
|
|
534
435
|
-webkit-box-orient: vertical;
|
|
@@ -537,18 +438,33 @@ input[type=submit] .button-central.ellipsis-line-5 {
|
|
|
537
438
|
white-space: normal;
|
|
538
439
|
--preset-ellipsis-line: 5;
|
|
539
440
|
}
|
|
540
|
-
button .
|
|
541
|
-
.button .
|
|
542
|
-
button.button .
|
|
543
|
-
input[type=button
|
|
544
|
-
|
|
441
|
+
.slotui-button .central,
|
|
442
|
+
button.slotui-button .central,
|
|
443
|
+
input[type=button].slotui-button .central,
|
|
444
|
+
input[type=submit].slotui-button .central {
|
|
445
|
+
display: block;
|
|
446
|
+
max-width: 100%;
|
|
447
|
+
max-height: 100%;
|
|
448
|
+
flex: 1;
|
|
449
|
+
align-items: center;
|
|
450
|
+
align-content: center;
|
|
451
|
+
justify-content: center;
|
|
452
|
+
justify-items: center;
|
|
453
|
+
padding-left: 0.25rem;
|
|
454
|
+
padding-right: 0.25rem;
|
|
455
|
+
text-align: var(--sld-button-text-align, center);
|
|
456
|
+
overflow: hidden;
|
|
457
|
+
}
|
|
458
|
+
.slotui-button .central:empty,
|
|
459
|
+
button.slotui-button .central:empty,
|
|
460
|
+
input[type=button].slotui-button .central:empty,
|
|
461
|
+
input[type=submit].slotui-button .central:empty {
|
|
545
462
|
display: none;
|
|
546
463
|
}
|
|
547
|
-
button .
|
|
548
|
-
.button .
|
|
549
|
-
button.button .
|
|
550
|
-
input[type=button
|
|
551
|
-
input[type=submit] .button-end {
|
|
464
|
+
.slotui-button .end,
|
|
465
|
+
button.slotui-button .end,
|
|
466
|
+
input[type=button].slotui-button .end,
|
|
467
|
+
input[type=submit].slotui-button .end {
|
|
552
468
|
position: relative;
|
|
553
469
|
align-items: center;
|
|
554
470
|
align-content: center;
|
|
@@ -556,42 +472,36 @@ input[type=submit] .button-end {
|
|
|
556
472
|
text-align: center;
|
|
557
473
|
cursor: pointer;
|
|
558
474
|
}
|
|
559
|
-
button .
|
|
560
|
-
.button .
|
|
561
|
-
button.button .
|
|
562
|
-
input[type=button
|
|
563
|
-
input[type=submit] .button-end:empty {
|
|
475
|
+
.slotui-button .end:empty,
|
|
476
|
+
button.slotui-button .end:empty,
|
|
477
|
+
input[type=button].slotui-button .end:empty,
|
|
478
|
+
input[type=submit].slotui-button .end:empty {
|
|
564
479
|
display: none;
|
|
565
480
|
}
|
|
566
|
-
button .
|
|
567
|
-
.button .
|
|
568
|
-
button.button .
|
|
569
|
-
input[type=button
|
|
570
|
-
input[type=submit] .button-end:hover {
|
|
481
|
+
.slotui-button .end:hover,
|
|
482
|
+
button.slotui-button .end:hover,
|
|
483
|
+
input[type=button].slotui-button .end:hover,
|
|
484
|
+
input[type=submit].slotui-button .end:hover {
|
|
571
485
|
background-color: var(--sld-button-action-hover-background);
|
|
572
486
|
}
|
|
573
|
-
button.loading, button[aria-busy=true],
|
|
574
|
-
.button.loading,
|
|
575
|
-
.button[aria-busy=true],
|
|
576
|
-
button.button.loading,
|
|
577
|
-
button.button[aria-busy=true],
|
|
578
|
-
input[type=
|
|
579
|
-
input[type=button
|
|
580
|
-
input[type=submit].loading,
|
|
581
|
-
input[type=submit][aria-busy=true] {
|
|
487
|
+
.slotui-button.loading, .slotui-button[aria-busy=true],
|
|
488
|
+
button.slotui-button.loading,
|
|
489
|
+
button.slotui-button[aria-busy=true],
|
|
490
|
+
input[type=button].slotui-button.loading,
|
|
491
|
+
input[type=button].slotui-button[aria-busy=true],
|
|
492
|
+
input[type=submit].slotui-button.loading,
|
|
493
|
+
input[type=submit].slotui-button[aria-busy=true] {
|
|
582
494
|
position: relative;
|
|
583
495
|
color: transparent;
|
|
584
496
|
pointer-events: none;
|
|
585
497
|
}
|
|
586
|
-
button.loading::after, button[aria-busy=true]::after,
|
|
587
|
-
.button.loading::after,
|
|
588
|
-
.button[aria-busy=true]::after,
|
|
589
|
-
button.button.loading::after,
|
|
590
|
-
button.button[aria-busy=true]::after,
|
|
591
|
-
input[type=
|
|
592
|
-
input[type=button
|
|
593
|
-
input[type=submit].loading::after,
|
|
594
|
-
input[type=submit][aria-busy=true]::after {
|
|
498
|
+
.slotui-button.loading::after, .slotui-button[aria-busy=true]::after,
|
|
499
|
+
button.slotui-button.loading::after,
|
|
500
|
+
button.slotui-button[aria-busy=true]::after,
|
|
501
|
+
input[type=button].slotui-button.loading::after,
|
|
502
|
+
input[type=button].slotui-button[aria-busy=true]::after,
|
|
503
|
+
input[type=submit].slotui-button.loading::after,
|
|
504
|
+
input[type=submit].slotui-button[aria-busy=true]::after {
|
|
595
505
|
content: " ";
|
|
596
506
|
position: absolute;
|
|
597
507
|
width: 16px;
|
|
@@ -606,19 +516,16 @@ input[type=submit][aria-busy=true]::after {
|
|
|
606
516
|
border-radius: 50%;
|
|
607
517
|
animation: button-spinner 0.6s linear infinite;
|
|
608
518
|
}
|
|
609
|
-
button[disabled], button.disabled, button[aria-disabled=true],
|
|
610
|
-
.button[disabled],
|
|
611
|
-
.button.disabled,
|
|
612
|
-
.button[aria-disabled=true],
|
|
613
|
-
button.button[disabled],
|
|
614
|
-
button.button.disabled,
|
|
615
|
-
button.button[aria-disabled=true],
|
|
616
|
-
input[type=button
|
|
617
|
-
input[type=
|
|
618
|
-
input[type=button
|
|
619
|
-
input[type=submit][disabled],
|
|
620
|
-
input[type=submit].disabled,
|
|
621
|
-
input[type=submit][aria-disabled=true] {
|
|
519
|
+
.slotui-button[disabled], .slotui-button.disabled, .slotui-button[aria-disabled=true],
|
|
520
|
+
button.slotui-button[disabled],
|
|
521
|
+
button.slotui-button.disabled,
|
|
522
|
+
button.slotui-button[aria-disabled=true],
|
|
523
|
+
input[type=button].slotui-button[disabled],
|
|
524
|
+
input[type=button].slotui-button.disabled,
|
|
525
|
+
input[type=button].slotui-button[aria-disabled=true],
|
|
526
|
+
input[type=submit].slotui-button[disabled],
|
|
527
|
+
input[type=submit].slotui-button.disabled,
|
|
528
|
+
input[type=submit].slotui-button[aria-disabled=true] {
|
|
622
529
|
color: var(--color-gray-800);
|
|
623
530
|
border-color: var(--color-gray-400);
|
|
624
531
|
opacity: 0.6;
|
|
@@ -626,24 +533,21 @@ input[type=submit][aria-disabled=true] {
|
|
|
626
533
|
box-shadow: none;
|
|
627
534
|
pointer-events: none;
|
|
628
535
|
}
|
|
629
|
-
button[aria-pressed=true], button.selected,
|
|
630
|
-
.button[aria-pressed=true],
|
|
631
|
-
.button.selected,
|
|
632
|
-
button.button[aria-pressed=true],
|
|
633
|
-
button.button.selected,
|
|
634
|
-
input[type=button
|
|
635
|
-
input[type=
|
|
636
|
-
input[type=submit][aria-pressed=true],
|
|
637
|
-
input[type=submit].selected {
|
|
536
|
+
.slotui-button[aria-pressed=true], .slotui-button.selected,
|
|
537
|
+
button.slotui-button[aria-pressed=true],
|
|
538
|
+
button.slotui-button.selected,
|
|
539
|
+
input[type=button].slotui-button[aria-pressed=true],
|
|
540
|
+
input[type=button].slotui-button.selected,
|
|
541
|
+
input[type=submit].slotui-button[aria-pressed=true],
|
|
542
|
+
input[type=submit].slotui-button.selected {
|
|
638
543
|
box-shadow: var(--sld-elevation-3);
|
|
639
544
|
background-color: var(--sld-color-secondary);
|
|
640
545
|
font-weight: bold;
|
|
641
546
|
}
|
|
642
|
-
button .chip,
|
|
643
|
-
.button .chip,
|
|
644
|
-
button.button .chip,
|
|
645
|
-
input[type=button
|
|
646
|
-
input[type=submit] .chip {
|
|
547
|
+
.slotui-button .chip,
|
|
548
|
+
button.slotui-button .chip,
|
|
549
|
+
input[type=button].slotui-button .chip,
|
|
550
|
+
input[type=submit].slotui-button .chip {
|
|
647
551
|
position: absolute;
|
|
648
552
|
z-index: 2;
|
|
649
553
|
height: 3px;
|
|
@@ -654,11 +558,10 @@ input[type=submit] .chip {
|
|
|
654
558
|
border-radius: var(--sld-radius-large);
|
|
655
559
|
bottom: 2px;
|
|
656
560
|
}
|
|
657
|
-
button .loadingButtonZone,
|
|
658
|
-
.button .loadingButtonZone,
|
|
659
|
-
button.button .loadingButtonZone,
|
|
660
|
-
input[type=button
|
|
661
|
-
input[type=submit] .loadingButtonZone {
|
|
561
|
+
.slotui-button .loadingButtonZone,
|
|
562
|
+
button.slotui-button .loadingButtonZone,
|
|
563
|
+
input[type=button].slotui-button .loadingButtonZone,
|
|
564
|
+
input[type=submit].slotui-button .loadingButtonZone {
|
|
662
565
|
z-index: 10;
|
|
663
566
|
position: absolute;
|
|
664
567
|
top: 0;
|
|
@@ -670,367 +573,118 @@ input[type=submit] .loadingButtonZone {
|
|
|
670
573
|
align-content: center;
|
|
671
574
|
justify-content: space-around;
|
|
672
575
|
}
|
|
673
|
-
button,
|
|
674
|
-
.button,
|
|
675
|
-
button.button,
|
|
676
|
-
|
|
677
|
-
input[type=
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
.button[
|
|
682
|
-
.button.
|
|
683
|
-
button.button[width=tiny],
|
|
684
|
-
button.button.width-tiny,
|
|
685
|
-
input[type=button][width=tiny],
|
|
686
|
-
input[type=button].width-tiny,
|
|
687
|
-
input[type=submit][width=tiny],
|
|
688
|
-
input[type=submit].width-tiny {
|
|
689
|
-
--preset-width: var(--sld-width-tiny);
|
|
690
|
-
width: var(--sld-width-tiny) !important;
|
|
691
|
-
}
|
|
692
|
-
button[width=mini], button.width-mini,
|
|
693
|
-
.button[width=mini],
|
|
694
|
-
.button.width-mini,
|
|
695
|
-
button.button[width=mini],
|
|
696
|
-
button.button.width-mini,
|
|
697
|
-
input[type=button][width=mini],
|
|
698
|
-
input[type=button].width-mini,
|
|
699
|
-
input[type=submit][width=mini],
|
|
700
|
-
input[type=submit].width-mini {
|
|
701
|
-
--preset-width: var(--sld-width-mini);
|
|
702
|
-
width: var(--sld-width-mini) !important;
|
|
703
|
-
}
|
|
704
|
-
button[width=small], button.width-small,
|
|
705
|
-
.button[width=small],
|
|
706
|
-
.button.width-small,
|
|
707
|
-
button.button[width=small],
|
|
708
|
-
button.button.width-small,
|
|
709
|
-
input[type=button][width=small],
|
|
710
|
-
input[type=button].width-small,
|
|
711
|
-
input[type=submit][width=small],
|
|
712
|
-
input[type=submit].width-small {
|
|
713
|
-
--preset-width: var(--sld-width-small);
|
|
714
|
-
width: var(--sld-width-small) !important;
|
|
715
|
-
}
|
|
716
|
-
button[width=med], button.width-med,
|
|
717
|
-
.button[width=med],
|
|
718
|
-
.button.width-med,
|
|
719
|
-
button.button[width=med],
|
|
720
|
-
button.button.width-med,
|
|
721
|
-
input[type=button][width=med],
|
|
722
|
-
input[type=button].width-med,
|
|
723
|
-
input[type=submit][width=med],
|
|
724
|
-
input[type=submit].width-med {
|
|
725
|
-
--preset-width: var(--sld-width-med);
|
|
726
|
-
width: var(--sld-width-med) !important;
|
|
727
|
-
}
|
|
728
|
-
button[width=kind], button.width-kind,
|
|
729
|
-
.button[width=kind],
|
|
730
|
-
.button.width-kind,
|
|
731
|
-
button.button[width=kind],
|
|
732
|
-
button.button.width-kind,
|
|
733
|
-
input[type=button][width=kind],
|
|
734
|
-
input[type=button].width-kind,
|
|
735
|
-
input[type=submit][width=kind],
|
|
736
|
-
input[type=submit].width-kind {
|
|
737
|
-
--preset-width: var(--sld-width-kind);
|
|
738
|
-
width: var(--sld-width-kind) !important;
|
|
739
|
-
}
|
|
740
|
-
button[width=full], button.width-full,
|
|
741
|
-
.button[width=full],
|
|
742
|
-
.button.width-full,
|
|
743
|
-
button.button[width=full],
|
|
744
|
-
button.button.width-full,
|
|
745
|
-
input[type=button][width=full],
|
|
746
|
-
input[type=button].width-full,
|
|
747
|
-
input[type=submit][width=full],
|
|
748
|
-
input[type=submit].width-full {
|
|
749
|
-
--preset-width: var(--sld-width-full);
|
|
750
|
-
width: var(--sld-width-full) !important;
|
|
751
|
-
}
|
|
752
|
-
button[width=auto], button.width-auto,
|
|
753
|
-
.button[width=auto],
|
|
754
|
-
.button.width-auto,
|
|
755
|
-
button.button[width=auto],
|
|
756
|
-
button.button.width-auto,
|
|
757
|
-
input[type=button][width=auto],
|
|
758
|
-
input[type=button].width-auto,
|
|
759
|
-
input[type=submit][width=auto],
|
|
760
|
-
input[type=submit].width-auto {
|
|
761
|
-
--preset-width: var(--sld-width-auto);
|
|
762
|
-
width: var(--sld-width-auto) !important;
|
|
763
|
-
}
|
|
764
|
-
button[width=default], button.width-default,
|
|
765
|
-
.button[width=default],
|
|
766
|
-
.button.width-default,
|
|
767
|
-
button.button[width=default],
|
|
768
|
-
button.button.width-default,
|
|
769
|
-
input[type=button][width=default],
|
|
770
|
-
input[type=button].width-default,
|
|
771
|
-
input[type=submit][width=default],
|
|
772
|
-
input[type=submit].width-default {
|
|
773
|
-
--preset-width: var(--sld-width-default);
|
|
774
|
-
width: var(--sld-width-default) !important;
|
|
775
|
-
}
|
|
776
|
-
button,
|
|
777
|
-
.button,
|
|
778
|
-
button.button,
|
|
779
|
-
input[type=button],
|
|
780
|
-
input[type=submit] {
|
|
781
|
-
--preset-tall: var(--sld-tall-small);
|
|
782
|
-
}
|
|
783
|
-
button[tall=tiny], button.tall-tiny,
|
|
784
|
-
.button[tall=tiny],
|
|
785
|
-
.button.tall-tiny,
|
|
786
|
-
button.button[tall=tiny],
|
|
787
|
-
button.button.tall-tiny,
|
|
788
|
-
input[type=button][tall=tiny],
|
|
789
|
-
input[type=button].tall-tiny,
|
|
790
|
-
input[type=submit][tall=tiny],
|
|
791
|
-
input[type=submit].tall-tiny {
|
|
792
|
-
min-height: var(--sld-tall-tiny) !important;
|
|
793
|
-
}
|
|
794
|
-
button[tall=mini], button.tall-mini,
|
|
795
|
-
.button[tall=mini],
|
|
796
|
-
.button.tall-mini,
|
|
797
|
-
button.button[tall=mini],
|
|
798
|
-
button.button.tall-mini,
|
|
799
|
-
input[type=button][tall=mini],
|
|
800
|
-
input[type=button].tall-mini,
|
|
801
|
-
input[type=submit][tall=mini],
|
|
802
|
-
input[type=submit].tall-mini {
|
|
803
|
-
min-height: var(--sld-tall-mini) !important;
|
|
804
|
-
}
|
|
805
|
-
button[tall=small], button.tall-small,
|
|
806
|
-
.button[tall=small],
|
|
807
|
-
.button.tall-small,
|
|
808
|
-
button.button[tall=small],
|
|
809
|
-
button.button.tall-small,
|
|
810
|
-
input[type=button][tall=small],
|
|
811
|
-
input[type=button].tall-small,
|
|
812
|
-
input[type=submit][tall=small],
|
|
813
|
-
input[type=submit].tall-small {
|
|
814
|
-
min-height: var(--sld-tall-small) !important;
|
|
815
|
-
}
|
|
816
|
-
button[tall=med], button.tall-med,
|
|
817
|
-
.button[tall=med],
|
|
818
|
-
.button.tall-med,
|
|
819
|
-
button.button[tall=med],
|
|
820
|
-
button.button.tall-med,
|
|
821
|
-
input[type=button][tall=med],
|
|
822
|
-
input[type=button].tall-med,
|
|
823
|
-
input[type=submit][tall=med],
|
|
824
|
-
input[type=submit].tall-med {
|
|
825
|
-
min-height: var(--sld-tall-med) !important;
|
|
826
|
-
}
|
|
827
|
-
button[tall=kind], button.tall-kind,
|
|
828
|
-
.button[tall=kind],
|
|
829
|
-
.button.tall-kind,
|
|
830
|
-
button.button[tall=kind],
|
|
831
|
-
button.button.tall-kind,
|
|
832
|
-
input[type=button][tall=kind],
|
|
833
|
-
input[type=button].tall-kind,
|
|
834
|
-
input[type=submit][tall=kind],
|
|
835
|
-
input[type=submit].tall-kind {
|
|
836
|
-
min-height: var(--sld-tall-kind) !important;
|
|
837
|
-
}
|
|
838
|
-
button[tall=auto], button.tall-auto,
|
|
839
|
-
.button[tall=auto],
|
|
840
|
-
.button.tall-auto,
|
|
841
|
-
button.button[tall=auto],
|
|
842
|
-
button.button.tall-auto,
|
|
843
|
-
input[type=button][tall=auto],
|
|
844
|
-
input[type=button].tall-auto,
|
|
845
|
-
input[type=submit][tall=auto],
|
|
846
|
-
input[type=submit].tall-auto {
|
|
847
|
-
min-height: var(--sld-tall-auto) !important;
|
|
848
|
-
}
|
|
849
|
-
button[tall=default], button.tall-default,
|
|
850
|
-
.button[tall=default],
|
|
851
|
-
.button.tall-default,
|
|
852
|
-
button.button[tall=default],
|
|
853
|
-
button.button.tall-default,
|
|
854
|
-
input[type=button][tall=default],
|
|
855
|
-
input[type=button].tall-default,
|
|
856
|
-
input[type=submit][tall=default],
|
|
857
|
-
input[type=submit].tall-default {
|
|
858
|
-
min-height: var(--sld-tall-default) !important;
|
|
859
|
-
}
|
|
860
|
-
button[variant*=square], button[square=true], button.square,
|
|
861
|
-
.button[variant*=square],
|
|
862
|
-
.button[square=true],
|
|
863
|
-
.button.square,
|
|
864
|
-
button.button[variant*=square],
|
|
865
|
-
button.button[square=true],
|
|
866
|
-
button.button.square,
|
|
867
|
-
input[type=button][variant*=square],
|
|
868
|
-
input[type=button][square=true],
|
|
869
|
-
input[type=button].square,
|
|
870
|
-
input[type=submit][variant*=square],
|
|
871
|
-
input[type=submit][square=true],
|
|
872
|
-
input[type=submit].square {
|
|
873
|
-
aspect-ratio: 1/1 !important;
|
|
874
|
-
height: auto;
|
|
875
|
-
}
|
|
876
|
-
button[variant*=rounded], button[rounded=true], button.rounded,
|
|
877
|
-
.button[variant*=rounded],
|
|
878
|
-
.button[rounded=true],
|
|
879
|
-
.button.rounded,
|
|
880
|
-
button.button[variant*=rounded],
|
|
881
|
-
button.button[rounded=true],
|
|
882
|
-
button.button.rounded,
|
|
883
|
-
input[type=button][variant*=rounded],
|
|
884
|
-
input[type=button][rounded=true],
|
|
885
|
-
input[type=button].rounded,
|
|
886
|
-
input[type=submit][variant*=rounded],
|
|
887
|
-
input[type=submit][rounded=true],
|
|
888
|
-
input[type=submit].rounded {
|
|
889
|
-
border-radius: 50%;
|
|
890
|
-
}
|
|
891
|
-
button[variant*=bordered], button[bordered=true], button.bordered,
|
|
892
|
-
.button[variant*=bordered],
|
|
893
|
-
.button[bordered=true],
|
|
894
|
-
.button.bordered,
|
|
895
|
-
button.button[variant*=bordered],
|
|
896
|
-
button.button[bordered=true],
|
|
897
|
-
button.button.bordered,
|
|
898
|
-
input[type=button][variant*=bordered],
|
|
899
|
-
input[type=button][bordered=true],
|
|
900
|
-
input[type=button].bordered,
|
|
901
|
-
input[type=submit][variant*=bordered],
|
|
902
|
-
input[type=submit][bordered=true],
|
|
903
|
-
input[type=submit].bordered {
|
|
576
|
+
.slotui-button[variant*=bordered], .slotui-button[bordered=true], .slotui-button.bordered,
|
|
577
|
+
button.slotui-button[variant*=bordered],
|
|
578
|
+
button.slotui-button[bordered=true],
|
|
579
|
+
button.slotui-button.bordered,
|
|
580
|
+
input[type=button].slotui-button[variant*=bordered],
|
|
581
|
+
input[type=button].slotui-button[bordered=true],
|
|
582
|
+
input[type=button].slotui-button.bordered,
|
|
583
|
+
input[type=submit].slotui-button[variant*=bordered],
|
|
584
|
+
input[type=submit].slotui-button[bordered=true],
|
|
585
|
+
input[type=submit].slotui-button.bordered {
|
|
904
586
|
color: var(--sld-color-foreground);
|
|
905
587
|
border: var(--sld-button-border-width) solid var(--sld-button-border-color);
|
|
906
588
|
box-shadow: var(--sld-elevation-1);
|
|
907
589
|
background-color: var(--sld-button-background);
|
|
908
590
|
}
|
|
909
|
-
button[variant*=bordered]:hover, button[bordered=true]:hover, button.bordered:hover,
|
|
910
|
-
.button[variant*=bordered]:hover,
|
|
911
|
-
.button[bordered=true]:hover,
|
|
912
|
-
.button.bordered:hover,
|
|
913
|
-
button.button[variant*=bordered]:hover,
|
|
914
|
-
button.button[bordered=true]:hover,
|
|
915
|
-
button.button.bordered:hover,
|
|
916
|
-
input[type=button
|
|
917
|
-
input[type=button
|
|
918
|
-
input[type=
|
|
919
|
-
input[type=submit][variant*=bordered]:hover,
|
|
920
|
-
input[type=submit][bordered=true]:hover,
|
|
921
|
-
input[type=submit].bordered:hover {
|
|
591
|
+
.slotui-button[variant*=bordered]:hover, .slotui-button[bordered=true]:hover, .slotui-button.bordered:hover,
|
|
592
|
+
button.slotui-button[variant*=bordered]:hover,
|
|
593
|
+
button.slotui-button[bordered=true]:hover,
|
|
594
|
+
button.slotui-button.bordered:hover,
|
|
595
|
+
input[type=button].slotui-button[variant*=bordered]:hover,
|
|
596
|
+
input[type=button].slotui-button[bordered=true]:hover,
|
|
597
|
+
input[type=button].slotui-button.bordered:hover,
|
|
598
|
+
input[type=submit].slotui-button[variant*=bordered]:hover,
|
|
599
|
+
input[type=submit].slotui-button[bordered=true]:hover,
|
|
600
|
+
input[type=submit].slotui-button.bordered:hover {
|
|
922
601
|
border-color: var(--sld-color-primary);
|
|
923
602
|
box-shadow: var(--sld-button-hover-shadow);
|
|
924
603
|
}
|
|
925
|
-
button[variant*=bordered]:focus, button[variant*=bordered]:active, button[bordered=true]:focus, button[bordered=true]:active, button.bordered:focus, button.bordered:active,
|
|
926
|
-
.button[variant*=bordered]:focus,
|
|
927
|
-
.button[variant*=bordered]:active,
|
|
928
|
-
.button[bordered=true]:focus,
|
|
929
|
-
.button[bordered=true]:active,
|
|
930
|
-
.button.bordered:focus,
|
|
931
|
-
.button.bordered:active,
|
|
932
|
-
button.button[variant*=bordered]:focus,
|
|
933
|
-
button.button[variant*=bordered]:active,
|
|
934
|
-
button.button[bordered=true]:focus,
|
|
935
|
-
button.button[bordered=true]:active,
|
|
936
|
-
button.button.bordered:focus,
|
|
937
|
-
button.button.bordered:active,
|
|
938
|
-
input[type=button
|
|
939
|
-
input[type=button
|
|
940
|
-
input[type=button
|
|
941
|
-
input[type=button
|
|
942
|
-
input[type=
|
|
943
|
-
input[type=
|
|
944
|
-
input[type=submit][variant*=bordered]:focus,
|
|
945
|
-
input[type=submit][variant*=bordered]:active,
|
|
946
|
-
input[type=submit][bordered=true]:focus,
|
|
947
|
-
input[type=submit][bordered=true]:active,
|
|
948
|
-
input[type=submit].bordered:focus,
|
|
949
|
-
input[type=submit].bordered:active {
|
|
604
|
+
.slotui-button[variant*=bordered]:focus, .slotui-button[variant*=bordered]:active, .slotui-button[bordered=true]:focus, .slotui-button[bordered=true]:active, .slotui-button.bordered:focus, .slotui-button.bordered:active,
|
|
605
|
+
button.slotui-button[variant*=bordered]:focus,
|
|
606
|
+
button.slotui-button[variant*=bordered]:active,
|
|
607
|
+
button.slotui-button[bordered=true]:focus,
|
|
608
|
+
button.slotui-button[bordered=true]:active,
|
|
609
|
+
button.slotui-button.bordered:focus,
|
|
610
|
+
button.slotui-button.bordered:active,
|
|
611
|
+
input[type=button].slotui-button[variant*=bordered]:focus,
|
|
612
|
+
input[type=button].slotui-button[variant*=bordered]:active,
|
|
613
|
+
input[type=button].slotui-button[bordered=true]:focus,
|
|
614
|
+
input[type=button].slotui-button[bordered=true]:active,
|
|
615
|
+
input[type=button].slotui-button.bordered:focus,
|
|
616
|
+
input[type=button].slotui-button.bordered:active,
|
|
617
|
+
input[type=submit].slotui-button[variant*=bordered]:focus,
|
|
618
|
+
input[type=submit].slotui-button[variant*=bordered]:active,
|
|
619
|
+
input[type=submit].slotui-button[bordered=true]:focus,
|
|
620
|
+
input[type=submit].slotui-button[bordered=true]:active,
|
|
621
|
+
input[type=submit].slotui-button.bordered:focus,
|
|
622
|
+
input[type=submit].slotui-button.bordered:active {
|
|
950
623
|
border-color: var(--sld-button-active-border-color);
|
|
951
624
|
box-shadow: var(--sld-button-active-shadow);
|
|
952
625
|
}
|
|
953
|
-
button[variant*=contained], button[contained=true], button.contained,
|
|
954
|
-
.button[variant*=contained],
|
|
955
|
-
.button[contained=true],
|
|
956
|
-
.button.contained,
|
|
957
|
-
button.button[variant*=contained],
|
|
958
|
-
button.button[contained=true],
|
|
959
|
-
button.button.contained,
|
|
960
|
-
input[type=button
|
|
961
|
-
input[type=button
|
|
962
|
-
input[type=
|
|
963
|
-
input[type=submit][variant*=contained],
|
|
964
|
-
input[type=submit][contained=true],
|
|
965
|
-
input[type=submit].contained {
|
|
626
|
+
.slotui-button[variant*=contained], .slotui-button[contained=true], .slotui-button.contained,
|
|
627
|
+
button.slotui-button[variant*=contained],
|
|
628
|
+
button.slotui-button[contained=true],
|
|
629
|
+
button.slotui-button.contained,
|
|
630
|
+
input[type=button].slotui-button[variant*=contained],
|
|
631
|
+
input[type=button].slotui-button[contained=true],
|
|
632
|
+
input[type=button].slotui-button.contained,
|
|
633
|
+
input[type=submit].slotui-button[variant*=contained],
|
|
634
|
+
input[type=submit].slotui-button[contained=true],
|
|
635
|
+
input[type=submit].slotui-button.contained {
|
|
966
636
|
border: var(--sld-button-border-width) solid var(--sld-button-border-color);
|
|
967
637
|
color: var(--sld-color-on-primary);
|
|
968
638
|
background-color: var(--sld-button-contained-background);
|
|
969
639
|
background-clip: padding-box;
|
|
970
640
|
box-shadow: var(--sld-elevation-1);
|
|
971
641
|
}
|
|
972
|
-
button[variant*=contained]:hover, button[contained=true]:hover, button.contained:hover,
|
|
973
|
-
.button[variant*=contained]:hover,
|
|
974
|
-
.button[contained=true]:hover,
|
|
975
|
-
.button.contained:hover,
|
|
976
|
-
button.button[variant*=contained]:hover,
|
|
977
|
-
button.button[contained=true]:hover,
|
|
978
|
-
button.button.contained:hover,
|
|
979
|
-
input[type=button
|
|
980
|
-
input[type=button
|
|
981
|
-
input[type=
|
|
982
|
-
input[type=submit][variant*=contained]:hover,
|
|
983
|
-
input[type=submit][contained=true]:hover,
|
|
984
|
-
input[type=submit].contained:hover {
|
|
642
|
+
.slotui-button[variant*=contained]:hover, .slotui-button[contained=true]:hover, .slotui-button.contained:hover,
|
|
643
|
+
button.slotui-button[variant*=contained]:hover,
|
|
644
|
+
button.slotui-button[contained=true]:hover,
|
|
645
|
+
button.slotui-button.contained:hover,
|
|
646
|
+
input[type=button].slotui-button[variant*=contained]:hover,
|
|
647
|
+
input[type=button].slotui-button[contained=true]:hover,
|
|
648
|
+
input[type=button].slotui-button.contained:hover,
|
|
649
|
+
input[type=submit].slotui-button[variant*=contained]:hover,
|
|
650
|
+
input[type=submit].slotui-button[contained=true]:hover,
|
|
651
|
+
input[type=submit].slotui-button.contained:hover {
|
|
985
652
|
background-color: var(--sld-color-secondary);
|
|
986
653
|
color: var(--sld-color-on-secondary);
|
|
987
654
|
}
|
|
988
|
-
button[variant*=contained]:focus, button[variant*=contained]:active, button[contained=true]:focus, button[contained=true]:active, button.contained:focus, button.contained:active,
|
|
989
|
-
.button[variant*=contained]:focus,
|
|
990
|
-
.button[variant*=contained]:active,
|
|
991
|
-
.button[contained=true]:focus,
|
|
992
|
-
.button[contained=true]:active,
|
|
993
|
-
.button.contained:focus,
|
|
994
|
-
.button.contained:active,
|
|
995
|
-
button.button[variant*=contained]:focus,
|
|
996
|
-
button.button[variant*=contained]:active,
|
|
997
|
-
button.button[contained=true]:focus,
|
|
998
|
-
button.button[contained=true]:active,
|
|
999
|
-
button.button.contained:focus,
|
|
1000
|
-
button.button.contained:active,
|
|
1001
|
-
input[type=button
|
|
1002
|
-
input[type=button
|
|
1003
|
-
input[type=button
|
|
1004
|
-
input[type=button
|
|
1005
|
-
input[type=
|
|
1006
|
-
input[type=
|
|
1007
|
-
input[type=submit][variant*=contained]:focus,
|
|
1008
|
-
input[type=submit][variant*=contained]:active,
|
|
1009
|
-
input[type=submit][contained=true]:focus,
|
|
1010
|
-
input[type=submit][contained=true]:active,
|
|
1011
|
-
input[type=submit].contained:focus,
|
|
1012
|
-
input[type=submit].contained:active {
|
|
655
|
+
.slotui-button[variant*=contained]:focus, .slotui-button[variant*=contained]:active, .slotui-button[contained=true]:focus, .slotui-button[contained=true]:active, .slotui-button.contained:focus, .slotui-button.contained:active,
|
|
656
|
+
button.slotui-button[variant*=contained]:focus,
|
|
657
|
+
button.slotui-button[variant*=contained]:active,
|
|
658
|
+
button.slotui-button[contained=true]:focus,
|
|
659
|
+
button.slotui-button[contained=true]:active,
|
|
660
|
+
button.slotui-button.contained:focus,
|
|
661
|
+
button.slotui-button.contained:active,
|
|
662
|
+
input[type=button].slotui-button[variant*=contained]:focus,
|
|
663
|
+
input[type=button].slotui-button[variant*=contained]:active,
|
|
664
|
+
input[type=button].slotui-button[contained=true]:focus,
|
|
665
|
+
input[type=button].slotui-button[contained=true]:active,
|
|
666
|
+
input[type=button].slotui-button.contained:focus,
|
|
667
|
+
input[type=button].slotui-button.contained:active,
|
|
668
|
+
input[type=submit].slotui-button[variant*=contained]:focus,
|
|
669
|
+
input[type=submit].slotui-button[variant*=contained]:active,
|
|
670
|
+
input[type=submit].slotui-button[contained=true]:focus,
|
|
671
|
+
input[type=submit].slotui-button[contained=true]:active,
|
|
672
|
+
input[type=submit].slotui-button.contained:focus,
|
|
673
|
+
input[type=submit].slotui-button.contained:active {
|
|
1013
674
|
background-color: var(--sld-color-tertiary);
|
|
1014
675
|
color: var(--sld-color-on-tertiary);
|
|
1015
676
|
box-shadow: var(--sld-button-active-shadow);
|
|
1016
677
|
}
|
|
1017
|
-
button[variant*=link], button
|
|
1018
|
-
.button[variant*=link],
|
|
1019
|
-
.button
|
|
1020
|
-
.button
|
|
1021
|
-
.button[
|
|
1022
|
-
button.button
|
|
1023
|
-
button.button[link
|
|
1024
|
-
|
|
1025
|
-
button.
|
|
1026
|
-
input[type=button
|
|
1027
|
-
input[type=button][link=true],
|
|
1028
|
-
input[type=button].link,
|
|
1029
|
-
input[type=button][role=link],
|
|
1030
|
-
input[type=submit][variant*=link],
|
|
1031
|
-
input[type=submit][link=true],
|
|
1032
|
-
input[type=submit].link,
|
|
1033
|
-
input[type=submit][role=link] {
|
|
678
|
+
.slotui-button[variant*=link], .slotui-button.link, .slotui-button[role=link],
|
|
679
|
+
button.slotui-button[variant*=link],
|
|
680
|
+
button.slotui-button.link,
|
|
681
|
+
button.slotui-button[role=link],
|
|
682
|
+
input[type=button].slotui-button[variant*=link],
|
|
683
|
+
input[type=button].slotui-button.link,
|
|
684
|
+
input[type=button].slotui-button[role=link],
|
|
685
|
+
input[type=submit].slotui-button[variant*=link],
|
|
686
|
+
input[type=submit].slotui-button.link,
|
|
687
|
+
input[type=submit].slotui-button[role=link] {
|
|
1034
688
|
color: var(--sld-color-primary);
|
|
1035
689
|
text-decoration: underline;
|
|
1036
690
|
text-underline-offset: 0.35rem;
|
|
@@ -1038,199 +692,151 @@ input[type=submit][role=link] {
|
|
|
1038
692
|
cursor: pointer;
|
|
1039
693
|
border: none;
|
|
1040
694
|
}
|
|
1041
|
-
button[variant*=link]:hover, button
|
|
1042
|
-
.button[variant*=link]:hover,
|
|
1043
|
-
.button
|
|
1044
|
-
.button
|
|
1045
|
-
.button[
|
|
1046
|
-
button.button
|
|
1047
|
-
button.button[link
|
|
1048
|
-
|
|
1049
|
-
button.
|
|
1050
|
-
input[type=button
|
|
1051
|
-
input[type=button][link=true]:hover,
|
|
1052
|
-
input[type=button].link:hover,
|
|
1053
|
-
input[type=button][role=link]:hover,
|
|
1054
|
-
input[type=submit][variant*=link]:hover,
|
|
1055
|
-
input[type=submit][link=true]:hover,
|
|
1056
|
-
input[type=submit].link:hover,
|
|
1057
|
-
input[type=submit][role=link]:hover {
|
|
695
|
+
.slotui-button[variant*=link]:hover, .slotui-button.link:hover, .slotui-button[role=link]:hover,
|
|
696
|
+
button.slotui-button[variant*=link]:hover,
|
|
697
|
+
button.slotui-button.link:hover,
|
|
698
|
+
button.slotui-button[role=link]:hover,
|
|
699
|
+
input[type=button].slotui-button[variant*=link]:hover,
|
|
700
|
+
input[type=button].slotui-button.link:hover,
|
|
701
|
+
input[type=button].slotui-button[role=link]:hover,
|
|
702
|
+
input[type=submit].slotui-button[variant*=link]:hover,
|
|
703
|
+
input[type=submit].slotui-button.link:hover,
|
|
704
|
+
input[type=submit].slotui-button[role=link]:hover {
|
|
1058
705
|
text-decoration: underline;
|
|
1059
706
|
}
|
|
1060
|
-
button[variant*=link]:focus, button[variant*=link]:active, button
|
|
1061
|
-
.button[variant*=link]:focus,
|
|
1062
|
-
.button[variant*=link]:active,
|
|
1063
|
-
.button
|
|
1064
|
-
.button
|
|
1065
|
-
.button
|
|
1066
|
-
.button
|
|
1067
|
-
.button[
|
|
1068
|
-
.button[
|
|
1069
|
-
button.button
|
|
1070
|
-
button.button
|
|
1071
|
-
button.button[link
|
|
1072
|
-
button.button[link
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
button.
|
|
1076
|
-
button.
|
|
1077
|
-
input[type=button
|
|
1078
|
-
input[type=button
|
|
1079
|
-
input[type=button][link=true]:focus,
|
|
1080
|
-
input[type=button][link=true]:active,
|
|
1081
|
-
input[type=button].link:focus,
|
|
1082
|
-
input[type=button].link:active,
|
|
1083
|
-
input[type=button][role=link]:focus,
|
|
1084
|
-
input[type=button][role=link]:active,
|
|
1085
|
-
input[type=submit][variant*=link]:focus,
|
|
1086
|
-
input[type=submit][variant*=link]:active,
|
|
1087
|
-
input[type=submit][link=true]:focus,
|
|
1088
|
-
input[type=submit][link=true]:active,
|
|
1089
|
-
input[type=submit].link:focus,
|
|
1090
|
-
input[type=submit].link:active,
|
|
1091
|
-
input[type=submit][role=link]:focus,
|
|
1092
|
-
input[type=submit][role=link]:active {
|
|
707
|
+
.slotui-button[variant*=link]:focus, .slotui-button[variant*=link]:active, .slotui-button.link:focus, .slotui-button.link:active, .slotui-button[role=link]:focus, .slotui-button[role=link]:active,
|
|
708
|
+
button.slotui-button[variant*=link]:focus,
|
|
709
|
+
button.slotui-button[variant*=link]:active,
|
|
710
|
+
button.slotui-button.link:focus,
|
|
711
|
+
button.slotui-button.link:active,
|
|
712
|
+
button.slotui-button[role=link]:focus,
|
|
713
|
+
button.slotui-button[role=link]:active,
|
|
714
|
+
input[type=button].slotui-button[variant*=link]:focus,
|
|
715
|
+
input[type=button].slotui-button[variant*=link]:active,
|
|
716
|
+
input[type=button].slotui-button.link:focus,
|
|
717
|
+
input[type=button].slotui-button.link:active,
|
|
718
|
+
input[type=button].slotui-button[role=link]:focus,
|
|
719
|
+
input[type=button].slotui-button[role=link]:active,
|
|
720
|
+
input[type=submit].slotui-button[variant*=link]:focus,
|
|
721
|
+
input[type=submit].slotui-button[variant*=link]:active,
|
|
722
|
+
input[type=submit].slotui-button.link:focus,
|
|
723
|
+
input[type=submit].slotui-button.link:active,
|
|
724
|
+
input[type=submit].slotui-button[role=link]:focus,
|
|
725
|
+
input[type=submit].slotui-button[role=link]:active {
|
|
1093
726
|
text-decoration: underline;
|
|
1094
727
|
outline: none;
|
|
1095
728
|
box-shadow: none;
|
|
1096
729
|
}
|
|
1097
|
-
button[variant*=naked], button[naked=true], button.naked,
|
|
1098
|
-
.button[variant*=naked],
|
|
1099
|
-
.button[naked=true],
|
|
1100
|
-
.button.naked,
|
|
1101
|
-
button.button[variant*=naked],
|
|
1102
|
-
button.button[naked=true],
|
|
1103
|
-
button.button.naked,
|
|
1104
|
-
input[type=button
|
|
1105
|
-
input[type=button
|
|
1106
|
-
input[type=
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
730
|
+
.slotui-button[variant*=naked]:hover, .slotui-button[naked=true]:hover, .slotui-button.naked:hover,
|
|
731
|
+
button.slotui-button[variant*=naked]:hover,
|
|
732
|
+
button.slotui-button[naked=true]:hover,
|
|
733
|
+
button.slotui-button.naked:hover,
|
|
734
|
+
input[type=button].slotui-button[variant*=naked]:hover,
|
|
735
|
+
input[type=button].slotui-button[naked=true]:hover,
|
|
736
|
+
input[type=button].slotui-button.naked:hover,
|
|
737
|
+
input[type=submit].slotui-button[variant*=naked]:hover,
|
|
738
|
+
input[type=submit].slotui-button[naked=true]:hover,
|
|
739
|
+
input[type=submit].slotui-button.naked:hover {
|
|
740
|
+
border-color: var(--sld-hover-border-color);
|
|
741
|
+
background-color: var(--sld-background-disabled);
|
|
742
|
+
}
|
|
743
|
+
.slotui-button[variant*=naked], .slotui-button[naked=true], .slotui-button.naked,
|
|
744
|
+
button.slotui-button[variant*=naked],
|
|
745
|
+
button.slotui-button[naked=true],
|
|
746
|
+
button.slotui-button.naked,
|
|
747
|
+
input[type=button].slotui-button[variant*=naked],
|
|
748
|
+
input[type=button].slotui-button[naked=true],
|
|
749
|
+
input[type=button].slotui-button.naked,
|
|
750
|
+
input[type=submit].slotui-button[variant*=naked],
|
|
751
|
+
input[type=submit].slotui-button[naked=true],
|
|
752
|
+
input[type=submit].slotui-button.naked {
|
|
1110
753
|
color: inherit;
|
|
1111
754
|
background-color: transparent;
|
|
1112
755
|
border: 0px solid transparent;
|
|
1113
756
|
cursor: pointer;
|
|
1114
757
|
}
|
|
1115
|
-
button[variant*=naked]:hover, button[naked=true]:hover, button.naked:hover,
|
|
1116
|
-
.button[variant*=naked]:hover,
|
|
1117
|
-
.button[naked=true]:hover,
|
|
1118
|
-
.button.naked:hover,
|
|
1119
|
-
button.button[variant*=naked]:hover,
|
|
1120
|
-
button.button[naked=true]:hover,
|
|
1121
|
-
button.button.naked:hover,
|
|
1122
|
-
input[type=button
|
|
1123
|
-
input[type=button
|
|
1124
|
-
input[type=
|
|
1125
|
-
input[type=submit][variant*=naked]:hover,
|
|
1126
|
-
input[type=submit][naked=true]:hover,
|
|
1127
|
-
input[type=submit].naked:hover {
|
|
1128
|
-
border-color: var(--sld-hover-border-color);
|
|
1129
|
-
background-color: var(--sld-background-disabled);
|
|
1130
|
-
}
|
|
1131
|
-
button[variant*=naked]:hover, button[naked=true]:hover, button.naked:hover,
|
|
1132
|
-
.button[variant*=naked]:hover,
|
|
1133
|
-
.button[naked=true]:hover,
|
|
1134
|
-
.button.naked:hover,
|
|
1135
|
-
button.button[variant*=naked]:hover,
|
|
1136
|
-
button.button[naked=true]:hover,
|
|
1137
|
-
button.button.naked:hover,
|
|
1138
|
-
input[type=button][variant*=naked]:hover,
|
|
1139
|
-
input[type=button][naked=true]:hover,
|
|
1140
|
-
input[type=button].naked:hover,
|
|
1141
|
-
input[type=submit][variant*=naked]:hover,
|
|
1142
|
-
input[type=submit][naked=true]:hover,
|
|
1143
|
-
input[type=submit].naked:hover {
|
|
758
|
+
.slotui-button[variant*=naked]:hover, .slotui-button[naked=true]:hover, .slotui-button.naked:hover,
|
|
759
|
+
button.slotui-button[variant*=naked]:hover,
|
|
760
|
+
button.slotui-button[naked=true]:hover,
|
|
761
|
+
button.slotui-button.naked:hover,
|
|
762
|
+
input[type=button].slotui-button[variant*=naked]:hover,
|
|
763
|
+
input[type=button].slotui-button[naked=true]:hover,
|
|
764
|
+
input[type=button].slotui-button.naked:hover,
|
|
765
|
+
input[type=submit].slotui-button[variant*=naked]:hover,
|
|
766
|
+
input[type=submit].slotui-button[naked=true]:hover,
|
|
767
|
+
input[type=submit].slotui-button.naked:hover {
|
|
1144
768
|
background-color: var(--sld-button-hover-background);
|
|
1145
769
|
}
|
|
1146
|
-
button[variant*=naked]:active, button[variant*=naked]:focus, button[naked=true]:active, button[naked=true]:focus, button.naked:active, button.naked:focus,
|
|
1147
|
-
.button[variant*=naked]:active,
|
|
1148
|
-
.button[variant*=naked]:focus,
|
|
1149
|
-
.button[naked=true]:active,
|
|
1150
|
-
.button[naked=true]:focus,
|
|
1151
|
-
.button.naked:active,
|
|
1152
|
-
.button.naked:focus,
|
|
1153
|
-
button.button[variant*=naked]:active,
|
|
1154
|
-
button.button[variant*=naked]:focus,
|
|
1155
|
-
button.button[naked=true]:active,
|
|
1156
|
-
button.button[naked=true]:focus,
|
|
1157
|
-
button.button.naked:active,
|
|
1158
|
-
button.button.naked:focus,
|
|
1159
|
-
input[type=button
|
|
1160
|
-
input[type=button
|
|
1161
|
-
input[type=button
|
|
1162
|
-
input[type=button
|
|
1163
|
-
input[type=
|
|
1164
|
-
input[type=
|
|
1165
|
-
input[type=submit][variant*=naked]:active,
|
|
1166
|
-
input[type=submit][variant*=naked]:focus,
|
|
1167
|
-
input[type=submit][naked=true]:active,
|
|
1168
|
-
input[type=submit][naked=true]:focus,
|
|
1169
|
-
input[type=submit].naked:active,
|
|
1170
|
-
input[type=submit].naked:focus {
|
|
770
|
+
.slotui-button[variant*=naked]:active, .slotui-button[variant*=naked]:focus, .slotui-button[naked=true]:active, .slotui-button[naked=true]:focus, .slotui-button.naked:active, .slotui-button.naked:focus,
|
|
771
|
+
button.slotui-button[variant*=naked]:active,
|
|
772
|
+
button.slotui-button[variant*=naked]:focus,
|
|
773
|
+
button.slotui-button[naked=true]:active,
|
|
774
|
+
button.slotui-button[naked=true]:focus,
|
|
775
|
+
button.slotui-button.naked:active,
|
|
776
|
+
button.slotui-button.naked:focus,
|
|
777
|
+
input[type=button].slotui-button[variant*=naked]:active,
|
|
778
|
+
input[type=button].slotui-button[variant*=naked]:focus,
|
|
779
|
+
input[type=button].slotui-button[naked=true]:active,
|
|
780
|
+
input[type=button].slotui-button[naked=true]:focus,
|
|
781
|
+
input[type=button].slotui-button.naked:active,
|
|
782
|
+
input[type=button].slotui-button.naked:focus,
|
|
783
|
+
input[type=submit].slotui-button[variant*=naked]:active,
|
|
784
|
+
input[type=submit].slotui-button[variant*=naked]:focus,
|
|
785
|
+
input[type=submit].slotui-button[naked=true]:active,
|
|
786
|
+
input[type=submit].slotui-button[naked=true]:focus,
|
|
787
|
+
input[type=submit].slotui-button.naked:active,
|
|
788
|
+
input[type=submit].slotui-button.naked:focus {
|
|
1171
789
|
background-color: transparent;
|
|
1172
790
|
border: 0.5px solid transparent;
|
|
1173
791
|
color: inherit;
|
|
1174
792
|
}
|
|
1175
|
-
button[variant*=flat], button[flat=true], button.flat,
|
|
1176
|
-
.button[variant*=flat],
|
|
1177
|
-
.button[flat=true],
|
|
1178
|
-
.button.flat,
|
|
1179
|
-
button.button[variant*=flat],
|
|
1180
|
-
button.button[flat=true],
|
|
1181
|
-
button.button.flat,
|
|
1182
|
-
input[type=button
|
|
1183
|
-
input[type=button
|
|
1184
|
-
input[type=
|
|
1185
|
-
input[type=submit][variant*=flat],
|
|
1186
|
-
input[type=submit][flat=true],
|
|
1187
|
-
input[type=submit].flat {
|
|
793
|
+
.slotui-button[variant*=flat], .slotui-button[flat=true], .slotui-button.flat,
|
|
794
|
+
button.slotui-button[variant*=flat],
|
|
795
|
+
button.slotui-button[flat=true],
|
|
796
|
+
button.slotui-button.flat,
|
|
797
|
+
input[type=button].slotui-button[variant*=flat],
|
|
798
|
+
input[type=button].slotui-button[flat=true],
|
|
799
|
+
input[type=button].slotui-button.flat,
|
|
800
|
+
input[type=submit].slotui-button[variant*=flat],
|
|
801
|
+
input[type=submit].slotui-button[flat=true],
|
|
802
|
+
input[type=submit].slotui-button.flat {
|
|
1188
803
|
color: inherit;
|
|
1189
804
|
background-color: transparent;
|
|
1190
805
|
border: none;
|
|
1191
806
|
border-radius: 0;
|
|
1192
807
|
cursor: pointer;
|
|
1193
808
|
}
|
|
1194
|
-
button[variant*=flat]:hover, button[flat=true]:hover, button.flat:hover,
|
|
1195
|
-
.button[variant*=flat]:hover,
|
|
1196
|
-
.button[flat=true]:hover,
|
|
1197
|
-
.button.flat:hover,
|
|
1198
|
-
button.button[variant*=flat]:hover,
|
|
1199
|
-
button.button[flat=true]:hover,
|
|
1200
|
-
button.button.flat:hover,
|
|
1201
|
-
input[type=button
|
|
1202
|
-
input[type=button
|
|
1203
|
-
input[type=
|
|
1204
|
-
input[type=submit][variant*=flat]:hover,
|
|
1205
|
-
input[type=submit][flat=true]:hover,
|
|
1206
|
-
input[type=submit].flat:hover {
|
|
809
|
+
.slotui-button[variant*=flat]:hover, .slotui-button[flat=true]:hover, .slotui-button.flat:hover,
|
|
810
|
+
button.slotui-button[variant*=flat]:hover,
|
|
811
|
+
button.slotui-button[flat=true]:hover,
|
|
812
|
+
button.slotui-button.flat:hover,
|
|
813
|
+
input[type=button].slotui-button[variant*=flat]:hover,
|
|
814
|
+
input[type=button].slotui-button[flat=true]:hover,
|
|
815
|
+
input[type=button].slotui-button.flat:hover,
|
|
816
|
+
input[type=submit].slotui-button[variant*=flat]:hover,
|
|
817
|
+
input[type=submit].slotui-button[flat=true]:hover,
|
|
818
|
+
input[type=submit].slotui-button.flat:hover {
|
|
1207
819
|
background-color: var(--sld-button-hover-background);
|
|
1208
820
|
}
|
|
1209
|
-
button[variant*=flat]:active, button[variant*=flat]:focus, button[flat=true]:active, button[flat=true]:focus, button.flat:active, button.flat:focus,
|
|
1210
|
-
.button[variant*=flat]:active,
|
|
1211
|
-
.button[variant*=flat]:focus,
|
|
1212
|
-
.button[flat=true]:active,
|
|
1213
|
-
.button[flat=true]:focus,
|
|
1214
|
-
.button.flat:active,
|
|
1215
|
-
.button.flat:focus,
|
|
1216
|
-
button.button[variant*=flat]:active,
|
|
1217
|
-
button.button[variant*=flat]:focus,
|
|
1218
|
-
button.button[flat=true]:active,
|
|
1219
|
-
button.button[flat=true]:focus,
|
|
1220
|
-
button.button.flat:active,
|
|
1221
|
-
button.button.flat:focus,
|
|
1222
|
-
input[type=button
|
|
1223
|
-
input[type=button
|
|
1224
|
-
input[type=button
|
|
1225
|
-
input[type=button
|
|
1226
|
-
input[type=
|
|
1227
|
-
input[type=
|
|
1228
|
-
input[type=submit][variant*=flat]:active,
|
|
1229
|
-
input[type=submit][variant*=flat]:focus,
|
|
1230
|
-
input[type=submit][flat=true]:active,
|
|
1231
|
-
input[type=submit][flat=true]:focus,
|
|
1232
|
-
input[type=submit].flat:active,
|
|
1233
|
-
input[type=submit].flat:focus {
|
|
821
|
+
.slotui-button[variant*=flat]:active, .slotui-button[variant*=flat]:focus, .slotui-button[flat=true]:active, .slotui-button[flat=true]:focus, .slotui-button.flat:active, .slotui-button.flat:focus,
|
|
822
|
+
button.slotui-button[variant*=flat]:active,
|
|
823
|
+
button.slotui-button[variant*=flat]:focus,
|
|
824
|
+
button.slotui-button[flat=true]:active,
|
|
825
|
+
button.slotui-button[flat=true]:focus,
|
|
826
|
+
button.slotui-button.flat:active,
|
|
827
|
+
button.slotui-button.flat:focus,
|
|
828
|
+
input[type=button].slotui-button[variant*=flat]:active,
|
|
829
|
+
input[type=button].slotui-button[variant*=flat]:focus,
|
|
830
|
+
input[type=button].slotui-button[flat=true]:active,
|
|
831
|
+
input[type=button].slotui-button[flat=true]:focus,
|
|
832
|
+
input[type=button].slotui-button.flat:active,
|
|
833
|
+
input[type=button].slotui-button.flat:focus,
|
|
834
|
+
input[type=submit].slotui-button[variant*=flat]:active,
|
|
835
|
+
input[type=submit].slotui-button[variant*=flat]:focus,
|
|
836
|
+
input[type=submit].slotui-button[flat=true]:active,
|
|
837
|
+
input[type=submit].slotui-button[flat=true]:focus,
|
|
838
|
+
input[type=submit].slotui-button.flat:active,
|
|
839
|
+
input[type=submit].slotui-button.flat:focus {
|
|
1234
840
|
background-color: transparent;
|
|
1235
841
|
border: none;
|
|
1236
842
|
border-radius: 0;
|