refs #1351 Apply theme color for suggest popover

This commit is contained in:
AkiraFukushima 2020-09-17 23:34:22 +09:00
parent 4564d10894
commit 02c2a17991
1 changed files with 9 additions and 2 deletions

View File

@ -277,6 +277,13 @@ export default {
}
</script>
<style lang="scss">
.suggest-popper {
background-color: var(--theme-background-color);
border: 1px solid var(--theme-header-menu-color);
}
</style>
<style lang="scss" scoped>
.status {
position: relative;
@ -323,11 +330,11 @@ export default {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #606266;
height: 34px;
line-height: 34px;
box-sizing: border-box;
cursor: pointer;
color: var(--theme-regular-color);
.icon {
display: inline-block;
@ -338,7 +345,7 @@ export default {
}
.highlighted {
background-color: #f5f7fa;
background-color: var(--theme-selected-background-color);
}
}