@mixd-id/web-scaffold 0.1.240411089 → 0.1.240411091
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/package.json
CHANGED
|
@@ -98,6 +98,12 @@
|
|
|
98
98
|
</svg>
|
|
99
99
|
</Button>
|
|
100
100
|
</div>
|
|
101
|
+
|
|
102
|
+
<div v-if="importData.result.downloadUrl" class="mt-3">
|
|
103
|
+
<Ahref variant="minimal" class="text-primary" :href="importData.result.downloadUrl" target="_blank" download>
|
|
104
|
+
Download
|
|
105
|
+
</Ahref>
|
|
106
|
+
</div>
|
|
101
107
|
</div>
|
|
102
108
|
</div>
|
|
103
109
|
|
|
@@ -181,14 +181,18 @@ const plugin = Plugin(function({ addBase, addUtilities, config, theme }) {
|
|
|
181
181
|
|
|
182
182
|
'.menu-item': {
|
|
183
183
|
},
|
|
184
|
-
'.menu-item:hover': {
|
|
184
|
+
'.menu-item:hover:not(:disabled)': {
|
|
185
185
|
background: 'rgb(var(--primary-500))',
|
|
186
186
|
fill: '#fff',
|
|
187
187
|
color: '#fff'
|
|
188
188
|
},
|
|
189
|
-
'.menu-item:hover *': {
|
|
189
|
+
'.menu-item:hover:not(:disabled) *': {
|
|
190
190
|
fill: '#fff',
|
|
191
191
|
color: '#fff'
|
|
192
|
+
},
|
|
193
|
+
'.menu-item:disabled, .menu-item:disabled *': {
|
|
194
|
+
opacity: '0.5',
|
|
195
|
+
cursor: 'not-allowed'
|
|
192
196
|
}
|
|
193
197
|
|
|
194
198
|
})
|