@dosgato/dialog 1.1.4 → 1.1.6
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/Dialog.svelte
CHANGED
|
@@ -167,16 +167,14 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
167
167
|
border-bottom: 0px !important;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
footer.actions {
|
|
171
|
-
container-type: inline-size;
|
|
172
|
-
container-name: dosgato-dialog-actions
|
|
173
|
-
}
|
|
174
|
-
|
|
175
170
|
footer.actions :global(.prev) {
|
|
176
171
|
margin-right: auto;
|
|
177
172
|
}
|
|
178
173
|
|
|
179
|
-
@
|
|
174
|
+
@media (max-width: 475px) {
|
|
175
|
+
footer.actions {
|
|
176
|
+
padding: 0.5em;
|
|
177
|
+
}
|
|
180
178
|
footer.actions :global(button span.prev-next) {
|
|
181
179
|
display: none;
|
|
182
180
|
}
|
|
@@ -242,6 +242,7 @@ $: void updateSelected($value);
|
|
|
242
242
|
display: flex;
|
|
243
243
|
align-items: flex-start;
|
|
244
244
|
margin-top: 0.2em;
|
|
245
|
+
gap: 0.3em;
|
|
245
246
|
}
|
|
246
247
|
:global([data-eq~="400px"]) .dialog-chooser-entry {
|
|
247
248
|
flex-direction: column;
|
|
@@ -252,7 +253,7 @@ $: void updateSelected($value);
|
|
|
252
253
|
border: 0;
|
|
253
254
|
background-color: var(--dg-button-bg, #501214);
|
|
254
255
|
color: var(--dg-button-text, #fff);
|
|
255
|
-
padding: 0.
|
|
256
|
+
padding: 0.4em 1em;
|
|
256
257
|
font-size: 0.8em;
|
|
257
258
|
}
|
|
258
259
|
.dialog-chooser-entry-input {
|
|
@@ -260,7 +261,6 @@ $: void updateSelected($value);
|
|
|
260
261
|
flex-grow: 1;
|
|
261
262
|
}
|
|
262
263
|
:global([data-eq~="400px"]) .dialog-chooser-entry-input {
|
|
263
|
-
margin-bottom: 0.2em;
|
|
264
264
|
width: 100%;
|
|
265
265
|
}
|
|
266
266
|
.dialog-chooser-entry-input input {
|
package/package.json
CHANGED