empty table placeholder

This commit is contained in:
Felix Niklas 2015-11-05 13:24:24 +01:00
parent b06b90d820
commit d4dfab1c9a
2 changed files with 15 additions and 1 deletions

View file

@ -1 +1,6 @@
<p><%= @T(@explanation) %></p>
<p><%= @T(@explanation) %></p>
<table class="table table--placeholder">
<thead><tr><th><%= @T('Empty Table') %>
<tbody><tr><td>
</table>

View file

@ -718,6 +718,15 @@ table {
display: table-row;
}
.table--placeholder {
th {
text-align: center;
}
td {
height: 40px;
}
}
.table th:not(.noTruncate) .table-column-title,
.table td:not(.noTruncate) {
@extend .u-textTruncate;