1

better styling

This commit is contained in:
Christoph
2020-04-17 23:07:09 +02:00
parent f8ba522dd9
commit 059714a657
16 changed files with 113 additions and 110 deletions

View File

@ -11,26 +11,24 @@
<main th:fragment="bodycontent">
<div class="container-fluid">
<h1 class="def-cursor overflow-hidden" style="text-overflow: ellipsis;">Meine Gruppen</h1>
<h1>Meine Gruppen</h1>
<!--Gruppenliste belegte Gruppen-->
<div th:unless="${lectures.isEmpty()}">
<h3 class="def-cursor overflow-hidden" style="text-overflow: ellipsis;">
Veranstaltungen</h3>
<h3>Veranstaltungen</h3>
<div class="content" th:each="group: ${lectures}"
th:insert="fragments/groups :: groupcontentlink"></div>
</div>
<div th:unless="${publics.isEmpty()}">
<h3 class="def-cursor overflow-hidden" style="text-overflow: ellipsis;">Öffentliche
Gruppen</h3>
<h3>Öffentliche Gruppen</h3>
<div class="content" th:each="group: ${publics}"
th:insert="fragments/groups :: groupcontentlink"></div>
</div>
<div th:unless="${privates.isEmpty()}">
<h3 class="def-cursor overflow-hidden" style="text-overflow: ellipsis;">Private
Gruppen</h3>
<h3>Private Gruppen</h3>
<div class="content" th:each="group: ${privates}"
th:insert="fragments/groups :: groupcontentlink"></div>
</div>