Hover state for Save Options

This commit is contained in:
Ben Haynes
2020-08-11 16:19:11 -04:00
parent 13d56acae4
commit 141e7781c4

View File

@@ -41,9 +41,16 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
.v-icon.disabled {
.v-icon {
color: var(--foreground-subdued);
cursor: not-allowed;
&:hover:not(.disabled) {
color: var(--foreground-normal);
}
&.disabled {
cursor: not-allowed;
}
}
.v-list-item {