diff --git a/app/assets/stylesheets/fixes.scss b/app/assets/stylesheets/fixes.scss new file mode 100644 index 000000000..2b2360e56 --- /dev/null +++ b/app/assets/stylesheets/fixes.scss @@ -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; +}