# HG changeset patch # User Mike Becker # Date 1759588301 -7200 # Node ID b6357a984ae75693813028fb3a0cee6797b6f67c # Parent 0b5b37572021000dbdf45f762e867d5839b3585f fix that the sidebar is losing width too early when the window becomes smaller diff -r 0b5b37572021 -r b6357a984ae7 src/main/webapp/WEB-INF/changelogs/changelog-de.jspf --- 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 @@
  • Ungefiltertes HTML aus Vorgangsbeschreibungen in RSS-Feeds behoben.
  • Vorgänge können nicht länger mit sich selbst verlinkt werden.
  • Fehler in der Deutschen Übersetzung behoben.
  • +
  • Das Navigationsmenü verliert nicht mehr so schnell an Breite, wenn das Fenster verkleinert wird.
  • Version 1.5.1

    diff -r 0b5b37572021 -r b6357a984ae7 src/main/webapp/WEB-INF/changelogs/changelog.jspf --- 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 @@
  • Fix unescaped HTML in RSS feed.
  • Fix that issues could relate to themselves.
  • Fix errors in the German translation.
  • +
  • Fix that the sidebar is losing width too early when the window becomes smaller.
  • Version 1.5.1

    diff -r 0b5b37572021 -r b6357a984ae7 src/main/webapp/lightpit.css --- 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;