I need to change the text color of a Vue ejs-textbox when the control is disabled.
I set the property :enabled='false' and I have the following situation:
<template>
<div>
<ejs-textbox cssClass='e-custom' :enabled='false'></ejs-textbox>
</div>
</template>
<script>
...
</script>
<style>
.e-input-group.e-disabled.e-custom input.e-input,
.e-input-group.e-control-wrapper.e-disabled.e-custom input.e-input {
background-color: yellow; --> it works font-style: italic; --> it works
font-weight: bold; --> it works
color: hotpink !important; --> DOESN'T WORK
}
</style>
It seems that all the css properties are applied, but color is not.
Why?
Any help is appreciated.
Thank You in advance.
Alberto.