Created
November 27, 2017 03:07
-
-
Save peterkos/ce3a0602d810c80d79109c99dfd534dc to your computer and use it in GitHub Desktop.
On Canvas LMS, hides "correct/wrong" answer arrows to allow reviewing of quizzes without being influenced by answers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.answer { | |
opacity: 1 !important; | |
} | |
.answer_arrow { | |
display: none; | |
} | |
.answer.wrong_answer { | |
border-top: 1px solid #ddd !important; | |
border-left: none !important; | |
border-right: none !important; | |
border-bottom: none !important; | |
border-radius: 0 !important; | |
} | |
input[type="radio"] { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment