Mon, 09 Aug 2021 17:09:54 +0200
minor hotfixes for the 0.6 release
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Mon Aug 09 16:58:38 2021 +0200 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Mon Aug 09 17:09:54 2021 +0200 @@ -24,7 +24,7 @@ --%> <%@ page contentType="text/html;charset=UTF-8" %> -<h3>Version 0.6 (Vorschau)</h3> +<h3>Version 0.6</h3> <ul> <li>Infoseite hinzugefĆ¼gt.</li>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf Mon Aug 09 16:58:38 2021 +0200 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf Mon Aug 09 17:09:54 2021 +0200 @@ -24,7 +24,7 @@ --%> <%@ page contentType="text/html;charset=UTF-8" %> -<h3>Version 0.6 (snapshot)</h3> +<h3>Version 0.6</h3> <ul> <li>Adds about page.</li>
--- a/src/main/webapp/WEB-INF/jsp/site.jsp Mon Aug 09 16:58:38 2021 +0200 +++ b/src/main/webapp/WEB-INF/jsp/site.jsp Mon Aug 09 17:09:54 2021 +0200 @@ -118,9 +118,12 @@ </div> </div> <c:if test="${not empty navMenu}"> - <div id="sideMenu"> - <%@include file="../jspf/navmenu.jspf" %> - </div> + <div id="sideMenu"> + <%@include file="../jspf/navmenu.jspf" %> + </div> + </c:if> + <c:if test="${empty navMenu}"> + <div id="sideMenuFiller"></div> </c:if> <div id="content-area"> <c:import url="${contentPage}"/>
--- a/src/main/webapp/language.css Mon Aug 09 16:58:38 2021 +0200 +++ b/src/main/webapp/language.css Mon Aug 09 17:09:54 2021 +0200 @@ -28,7 +28,6 @@ */ #lang-selector { - max-width: 30%; display: flex; flex-basis: content; flex-direction: column;
--- a/src/main/webapp/lightpit.css Mon Aug 09 16:58:38 2021 +0200 +++ b/src/main/webapp/lightpit.css Mon Aug 09 17:09:54 2021 +0200 @@ -86,7 +86,7 @@ #body-area { display: grid; - grid-template-columns: max-content auto; + grid-template-columns: min-content auto; grid-template-rows: max-content 1fr; height: 100%; } @@ -118,6 +118,11 @@ background: #f7f7ff; } +#sideMenuFiller { + grid-row: 2; + grid-column: 1; +} + #mainMenu .menuEntry { padding: .25em 1em .25em 1em; border-right-style: solid; @@ -126,6 +131,7 @@ } #sideMenu .menuEntry { + white-space: nowrap; padding-right: 1em; padding-top: .25em; padding-bottom: .25em;