I'm using less.
this is my code:
.input-mobile {
padding-left: 0 !important;
margin-left: 0 !important;
width: var(--t1-login-input-width);
input {
height: 60px !important;
padding-left: 0 !important;
font-size: 18px !important;
} {
input:disabled {
.item-input-wrap:after {
background-color: yellow;
}
}
}
I want to change background color to yellow (.item-input-wrap:after
) when my input is disabled.
but it doesn't work.