fix that the sidebar is losing width too early when the window becomes smaller

Sat, 04 Oct 2025 16:31:41 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 04 Oct 2025 16:31:41 +0200
changeset 394
b6357a984ae7
parent 393
0b5b37572021
child 395
c3ef1c328b36

fix that the sidebar is losing width too early when the window becomes smaller

src/main/webapp/WEB-INF/changelogs/changelog-de.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog.jspf file | annotate | diff | comparison | revisions
src/main/webapp/lightpit.css file | annotate | diff | comparison | revisions
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Oct 04 14:41:35 2025 +0200
+++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Oct 04 16:31:41 2025 +0200
@@ -40,6 +40,7 @@
     <li>Ungefiltertes HTML aus Vorgangsbeschreibungen in RSS-Feeds behoben.</li>
     <li>Vorgänge können nicht länger mit sich selbst verlinkt werden.</li>
     <li>Fehler in der Deutschen Übersetzung behoben.</li>
+    <li>Das Navigationsmenü verliert nicht mehr so schnell an Breite, wenn das Fenster verkleinert wird.</li>
 </ul>
 
 <h3>Version 1.5.1</h3>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Oct 04 14:41:35 2025 +0200
+++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Oct 04 16:31:41 2025 +0200
@@ -40,6 +40,7 @@
     <li>Fix unescaped HTML in RSS feed.</li>
     <li>Fix that issues could relate to themselves.</li>
     <li>Fix errors in the German translation.</li>
+    <li>Fix that the sidebar is losing width too early when the window becomes smaller.</li>
 </ul>
 
 <h3>Version 1.5.1</h3>
--- a/src/main/webapp/lightpit.css	Sat Oct 04 14:41:35 2025 +0200
+++ b/src/main/webapp/lightpit.css	Sat Oct 04 16:31:41 2025 +0200
@@ -93,7 +93,8 @@
 }
 
 #sideMenu {
-    min-width: 15vw;
+    min-width: 32ex;
+    width: 15vw;
     display: flex;
     flex-flow: column;
     color: #3060f8;

mercurial