Bläddra i källkod

Manual: Fix fullscreen mode. (#22953)

* fixes #22890

* revert to width style in .fullscreen class
makc 3 år sedan
förälder
incheckning
e358365e89
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      manual/resources/lesson.css

+ 2 - 2
manual/resources/lesson.css

@@ -232,9 +232,9 @@ div[data-diagram] {
 }
 .fullscreen {
     position: fixed !important;
-    left: 0;
+    left: var(--panel-width);
     top: 0;
-    width: 100% !important;
+    width: calc(100% - var(--panel-width)) !important;
     height: 100% !important;
     z-index: 100;
 }