Skip to content

Instantly share code, notes, and snippets.

@peterkos
Created November 27, 2017 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterkos/ce3a0602d810c80d79109c99dfd534dc to your computer and use it in GitHub Desktop.
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
.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