diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-07-06 15:01:43 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-07-07 09:14:20 +0100 |
commit | 5fc8fc8eadc4abfb207df423169d179c6d9c922a (patch) | |
tree | f5b937bc0f61fb58200f4c32f3addd907148e281 | |
parent | 7c234d71c7691ccbd419032bee5e737146d82368 (diff) |
Make sure segmented control input not offscreen.
The input is used by e.g. Chrome/Safari to position the "required" error
message, so needs to be on screen.
-rw-r--r-- | web/cobrands/sass/_base.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 5866ab986..cd7199df2 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -2253,7 +2253,7 @@ table.nicetable { .segmented-control--radio { input { position: absolute; - left: -999px; + opacity: 0; } input:checked + label { |