jewlofthelotus / SlickQuiz-WordPress

SlickQuiz is a plugin for displaying and managing pretty, dynamic quizzes. It uses the SlickQuiz jQuery plugin.
http://wordpress.org/extend/plugins/slickquiz
Other
18 stars 19 forks source link

Add print stylesheet CSS (patch to follow) #86

Open nfreear opened 9 years ago

nfreear commented 9 years ago

Hi, I've had a feature request for JuxtaLearn, for teachers to be able to print out their quizzes - https://github.com/IET-OU/oer-evidence-hub-org/issues/30

In the short term I've put the CSS in iet-custom-style.css.

However, it obviously belongs with the SlickQuiz plugin. I'll do this soon...

nfreear commented 9 years ago

Source: @IET-OU/oer-evidence-hub-org/ .../iet-custom-style.css -- line 223:

/* Slick Quiz print CSS.
*/
@media print {

  .slickQuizWrapper .questions li.question {
    display: block;
  }

  .slickQuizWrapper a.button,
  .slickQuizWrapper .questionCount {
    display: none !important;
  }

}