diff --git a/src/pages/_includes/ui/table.html b/src/pages/_includes/ui/table.html
index 244802e84..171cf1bd6 100644
--- a/src/pages/_includes/ui/table.html
+++ b/src/pages/_includes/ui/table.html
@@ -86,25 +86,5 @@
{% endfor %}
- {% if include.footer %}
-
-
- | Name |
- Title |
-
- {% unless include.avatars %}
- Email |
- {% endunless %}
-
- Role |
-
- {% if include.nowrap %}
- |
- {% endif %}
-
- |
-
-
- {% endif %}
diff --git a/src/pages/tables.html b/src/pages/tables.html
index cd5e77a65..dffb1eec2 100644
--- a/src/pages/tables.html
+++ b/src/pages/tables.html
@@ -16,7 +16,7 @@ menu: base.tables
- {% include ui/table.html card=true stripped=true offset=5 footer=true %}
+ {% include ui/table.html card=true stripped=true offset=5 %}
diff --git a/src/scss/ui/_tables.scss b/src/scss/ui/_tables.scss
index 48ec88afc..35baae0cc 100644
--- a/src/scss/ui/_tables.scss
+++ b/src/scss/ui/_tables.scss
@@ -1,6 +1,5 @@
.table {
- thead,
- tfoot {
+ thead {
th {
color: $table-th-color;
background: $table-th-bg;
@@ -27,8 +26,7 @@
}
.table-transparent {
- thead,
- tfoot {
+ thead {
th {
background: transparent;
}
@@ -64,8 +62,7 @@
@include media-breakpoint-down($breakpoint) {
display: block;
- thead,
- tfoot {
+ thead {
display: none;
}
@@ -148,8 +145,7 @@ Table sort
}
.table-borderless {
- thead th,
- tfoot th {
+ thead th {
background: transparent;
}
}