Fix alignment of table cells, remove superfluous button label

This commit is contained in:
Björn Fromme
2020-01-28 17:48:59 +01:00
parent 6e1851acd4
commit ed315a6cda
@@ -21,7 +21,7 @@
<tbody> <tbody>
<f:for each="{pageinatedPages}" as="page"> <f:for each="{pageinatedPages}" as="page">
<tr> <tr>
<td style="white-space: nowrap"> <td style="white-space: nowrap; vertical-align: top">
<f:spaceless> <f:spaceless>
{page.title} {page.title}
<f:if condition="{page.hidden}"> <f:if condition="{page.hidden}">
@@ -29,18 +29,17 @@
</f:if> </f:if>
</f:spaceless> </f:spaceless>
</td> </td>
<td> <td style="vertical-align: top">
{page.seoTitle} {page.seoTitle}
</td> </td>
<td> <td style="vertical-align: top">
{page.description} {page.description}
</td> </td>
<td> <td style="vertical-align: top">
<div class="btn-group"> <div class="btn-group">
<a href="{be:uri.editRecord(table: 'pages', uid: page.uid)}" <a href="{be:uri.editRecord(table: 'pages', uid: page.uid)}"
title="" class="btn btn-default"> title="" class="btn btn-default">
<core:icon identifier="actions-document-open"/> <core:icon identifier="actions-document-open"/>
bearbeiten
</a> </a>
</div> </div>
</td> </td>