feat: Dialog组件重构

This commit is contained in:
kailong321200875
2023-06-26 11:32:31 +08:00
parent 7ef1d1e301
commit 3701a04231
4 changed files with 53 additions and 15 deletions

View File

@@ -96,6 +96,19 @@ ${selector}:after {
background-color: var(--el-border-color);
z-index: 3;
}
`
}
],
[
/^is-hover$/,
([], { rawSelector }) => {
const selector = e(rawSelector)
return `
${selector}:hover {
${selector} span,i,svg {
color: var(--el-color-primary) !important;
}
}
`
}
]