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