@dosgato/dialog 0.0.59 → 0.0.60
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 +0 -4
- package/dist/tree/TreeCell.svelte +1 -1
- package/package.json +1 -1
package/dist/Dialog.svelte
CHANGED
|
@@ -70,7 +70,6 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
70
70
|
section {
|
|
71
71
|
position: relative;
|
|
72
72
|
background-color: #f4f4f4;
|
|
73
|
-
padding: 1em;
|
|
74
73
|
overflow: hidden;
|
|
75
74
|
}
|
|
76
75
|
section.tiny {
|
|
@@ -102,7 +101,6 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
102
101
|
display: flex;
|
|
103
102
|
align-items: center;
|
|
104
103
|
font-size: 1.1em;
|
|
105
|
-
margin: -1em;
|
|
106
104
|
margin-bottom: 0;
|
|
107
105
|
padding: 0.5em calc(var(--tabs-padding-hori, 1em) + 0.9em - 3px);
|
|
108
106
|
background-color: var(--dg-dialog-header-bg, #DDDDDD);
|
|
@@ -115,7 +113,6 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
115
113
|
|
|
116
114
|
.dialog-content {
|
|
117
115
|
position: relative;
|
|
118
|
-
margin: 0 -1em;
|
|
119
116
|
padding: 1em;
|
|
120
117
|
min-height: 5em;
|
|
121
118
|
overflow: auto;
|
|
@@ -129,7 +126,6 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
129
126
|
justify-content: flex-end;
|
|
130
127
|
flex-wrap: wrap;
|
|
131
128
|
background-color: var(--dg-dialog-footer-bg, #DDDDDD);
|
|
132
|
-
margin: -1em;
|
|
133
129
|
margin-top: 0;
|
|
134
130
|
padding: 0.5em 1em;
|
|
135
131
|
}
|
|
@@ -7,7 +7,7 @@ $: headerComponent = header.component;
|
|
|
7
7
|
</script>
|
|
8
8
|
|
|
9
9
|
{#if header.icon}
|
|
10
|
-
<span class="icon"><Icon {icon} inline width="1.
|
|
10
|
+
<span class="icon"><Icon {icon} inline width="1.3em" /></span>
|
|
11
11
|
{/if}
|
|
12
12
|
{#if header.component}
|
|
13
13
|
<svelte:component this={headerComponent} {item} {header} />
|
package/package.json
CHANGED