aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/css/pages/everything.css16
1 files changed, 11 insertions, 5 deletions
diff --git a/static/css/pages/everything.css b/static/css/pages/everything.css
index 6eafaa5..2b5544b 100644
--- a/static/css/pages/everything.css
+++ b/static/css/pages/everything.css
@@ -314,7 +314,7 @@ h3 {
@media print {
#everything-contents {
- display: none !important;
+ display: none;
}
.navbar {
@@ -323,19 +323,25 @@ h3 {
main#everything {
max-height: unset;
- overflow: visible;
+ overflow: visible !important;
}
#everything-lessons {
- max-height: unset !important;
+ max-height: unset;
+ overflow: visible !important;
h3.chapter-title:not(:first-child) {
- page-break-before: always;
+ break-before: always;
}
article.lesson:not(hr.chapter-separator + article.lesson) {
- page-break-inside: avoid;
+ break-inside: avoid;
}
}
+
+ /* for FireFox */
+ * {
+ overflow: visible !important;
+ }
} \ No newline at end of file