Skip to content

Commit

Permalink
fix(textbox): add necassery disabled styles
Browse files Browse the repository at this point in the history
  • Loading branch information
PaskalevStoyan authored and joneff committed Feb 25, 2022
1 parent ba12cfa commit b9b9797
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion packages/default/scss/input/_layout.scss
Expand Up @@ -47,8 +47,20 @@
& > * {
margin: 0;
}
}

&:disabled,
&[disabled],
&.k-disabled {
@include disabled( $disabled-styling );

[disabled],
.k-disabled,
.k-state-disabled {
opacity: 1;
filter: grayscale(0);
}
}
}

// Input
.k-input {}
Expand Down

0 comments on commit b9b9797

Please sign in to comment.