WIP:bulma:neu
authorKai Moritz <kai@juplo.de>
Wed, 24 Feb 2021 18:23:42 +0000 (19:23 +0100)
committerKai Moritz <kai@juplo.de>
Wed, 24 Feb 2021 18:27:47 +0000 (19:27 +0100)
dist/templates/layout.html
sass/juplo.scss

index 65783bd..ba55df8 100644 (file)
             <li th:fragment="submenu(submenu, parent, pos)"
                 th:each="entry : ${submenu}"
                 th:with="
-                    leaf=${pos == len - 1},
+                    leaf=${pos gt len - 1},
                     selected=${!leaf and crumbs.get(pos) == entry},
                     active=${entry == uri},
                     sibling=${pos + 1 == len and (_childs.get(uri) == null or uri == parent)},
                     childs=${entry == parent ? null : _childs.get(entry)}
                     "
                 class="s sub"
-                th:class="'s' + (${childs} ? ' sub' : '') + (${selected or sibling} ? '' : ' off')">
+                th:class="'s' + (${childs} ? ' sub' : '') + (${selected or sibling or leaf} ? '' : ' off')">
               <a  href="../potemkin/fix-swf/overview.html"
                   th:if="${entry != parent}"
                   th:href="@{${entry}}"
index 0ddb7f8..1b1bbc6 100644 (file)
@@ -81,5 +81,5 @@ $button-hover-border-color: #000 !important;
 }
 #navigation li.s > a.leaf:after
 {
-  content: " "
+  color: #fff;
 }