diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-07-06 13:02:08 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-07-31 22:13:42 +0100 |
commit | 7b712ed5a9e78158dbc2b43f5df4ff8fc05ed37c (patch) | |
tree | 6d999d015155837d787cfec30fa2572df77a85eb | |
parent | c01d0a50cb9d57ba1c1d53a82d52487f4d5c0e3d (diff) |
Make sure disabled inputs greyed out.
-rw-r--r-- | web/cobrands/sass/_base.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 07bb2baa1..dbd357646 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -313,6 +313,9 @@ legend, box-shadow: none; color: #888888; } + &[disabled] { + background-color: #eee; + } } select.form-control { |