Re-show checkboxes that were hidden by materialize

This commit is contained in:
Tristan 2018-06-28 14:51:25 -05:00
parent 8ad9d24b8b
commit 65442c1818

View File

@ -0,0 +1,11 @@
/*
* These are temporary fixes and/or hacks for issues seen in prod. Every line here
* should be assumed temporary and with an inherit desire to remove it with something
* cleaner.
*/
// For some reason, the latest materializecss hides checkboxes. This un-hides them.
input[type="checkbox"]:not(:checked), input[type="checkbox"]:checked {
position: inherit !important;
opacity: inherit !important;
}