Remove the distinct border from the disabled textarea and textinput

This commit is contained in:
Tessa Kelly 2024-01-17 11:49:37 -07:00
parent 04b0e348e8
commit 9af2efdf17
2 changed files with 2 additions and 0 deletions

View File

@ -373,6 +373,7 @@ view_ label config =
, Css.batch
(if config.disabled then
[ Css.boxShadow Css.none |> Css.important
, Css.borderColor Colors.gray85 |> Css.important
, Css.backgroundColor Colors.gray85
]

View File

@ -928,6 +928,7 @@ view label attributes =
, Css.batch
(if config.disabled then
[ Css.backgroundColor Colors.gray85
, Css.borderColor Colors.gray85 |> Css.important
, Css.property "box-shadow" "none" |> Css.important
]