From 86fbce53a5f1f30bcb20913861c53dbf8502565d Mon Sep 17 00:00:00 2001 From: Vasek Mlejnsky Date: Mon, 24 Sep 2018 10:44:47 +0200 Subject: [PATCH] Change style for disabled Textarea --- src/components/Textarea/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Textarea/index.js b/src/components/Textarea/index.js index 8eecff33..6c4edd45 100644 --- a/src/components/Textarea/index.js +++ b/src/components/Textarea/index.js @@ -56,8 +56,9 @@ const TextArea = styled.textarea` } &:disabled { - border: 1px solid ${disabledColor}; - cursor: not-allowed; + pointer-events: none; + background: ${colors.GRAY_LIGHT}; + color: ${colors.TEXT_SECONDARY}; &::-webkit-input-placeholder { color: ${disabledColor};