Commit ca35a7cb authored by Ashwin Vishnu's avatar Ashwin Vishnu Committed by François Michonneau
Browse files

Show solution while printing lessons

Printing to paper or PDF via the browser would invoke the @media print CSS query. It is useful to show all solution while doing so
parent 2a9f189d
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -389,3 +389,13 @@ kbd {
    white-space: nowrap;
    font-style: normal;
}

//------------------------------------------
// Show solution while printing (Ctrl + P)
// -----------------------------------------

@media print {
  blockquote.solution > * {
    display: unset !important;
  }
}