WIP:bulma:neu
authorKai Moritz <kai@juplo.de>
Sun, 21 Feb 2021 14:37:47 +0000 (15:37 +0100)
committerKai Moritz <kai@juplo.de>
Sun, 21 Feb 2021 14:37:47 +0000 (15:37 +0100)
dist/templates/layout.html
sass/juplo.scss

index e94fd0f..b07be2b 100644 (file)
         </ul>
       </div>
       <div class="section columns">
-        <div class="column is-3">
+        <div class="column is-3 has-text-right">
           <a href="../index.html" th:href="@{/}" title="Home">
             <img src="/img/logo.svg" alt="juplo" class="logo">
           </a>
-<span class="icon">
-  <i class="fas fa-home"></i>
-</span>
-<button class="button is-primary is-rounded">
-  <span class="icon">
-    <i class="fas fa-arrow-circle-down fa-2x"></i>
-  </span>
-  <span class="ml-2 has-text-weight-bold">Primary</span>
-</button>
-<button class="button is-primary is-rounded">
-  <span class="mr-3 has-text-weight-bold">Primary</span>
-  <span class="icon">
-    <i class="fas fa-arrow-circle-down fa-2x"></i>
-  </span>
-</button>
           <ul th:with="
                 len=${crumbs == null} ? 0 : ${crumbs.size()},
                 parent=${crumbs == null} ? '' : ${crumbs[0]},
                 submenu=${_childs.get(parent)},
                 pos=1"
               id="navigation"
-              class="s has-text-right"
-              th:class="'has-text-right s' + (${len == 1 or (len == 2 and _childs.get(uri) == null)} ? ' selected' : '')">
+              class="s mr-4"
+              th:class="'mr-4 s' + (${len == 1 or (len == 2 and _childs.get(uri) == null)} ? ' selected' : '')">
             <li th:fragment="submenu(submenu, parent, pos)"
                 th:each="entry : ${submenu}"
                 th:with="
index 8e5c97d..f846d59 100644 (file)
@@ -72,8 +72,3 @@ $button-hover-border-color: #000 !important;
   text-rendering: auto;
   line-height: 1;
 }
-#navigation li.s > a.s.selected,
-#navigation li.s > strong.s
-{
-  color: $primary;
-}