fix add-option bug

This commit is contained in:
Mutasem 2022-04-06 13:02:06 +02:00
parent 3549ea7315
commit 6705afbf08
2 changed files with 46 additions and 0 deletions

View file

@ -198,6 +198,29 @@ export default mixins(
position: relative;
padding: 0.25em 0 0.25em 1em;
}
.add-option {
i.el-select__caret {
color: var(--color-foreground-xlight);
}
.el-input .el-input__inner {
&,
&:hover,
&:focus {
border-radius: 20px;
color: var(--color-foreground-xlight);
font-weight: 600;
background-color: var(--color-primary);
border-color: var(--color-primary);
text-align: center;
}
&::placeholder {
color: var(--color-foreground-xlight);
opacity: 1; /** Firefox */
}
}
}
}
</style>

View file

@ -294,6 +294,29 @@ export default mixins(genericHelpers)
margin: var(--spacing-xs) 0;
}
.add-option {
i.el-select__caret {
color: var(--color-foreground-xlight);
}
.el-input .el-input__inner {
&,
&:hover,
&:focus {
border-radius: 20px;
color: var(--color-foreground-xlight);
font-weight: 600;
background-color: var(--color-primary);
border-color: var(--color-primary);
text-align: center;
}
&::placeholder {
color: var(--color-foreground-xlight);
opacity: 1; /** Firefox */
}
}
}
.delete-option {
display: none;
position: absolute;