Skip to content
Snippets Groups Projects
Verified Commit ffba0f82 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix css classes in tables

parent 53d82e48
No related branches found
No related tags found
1 merge request!275Resolve "Fix CSS classes in tables"
Pipeline #2182 passed
......@@ -8,7 +8,7 @@ class PersonsTable(tables.Table):
"""Table to list persons."""
class Meta:
attrs = {"class": "table table-striped table-bordered table-hover table-responsive-xl"}
attrs = {"class": "responsive-table highlight"}
first_name = tables.LinkColumn("person_by_id", args=[A("id")])
last_name = tables.LinkColumn("person_by_id", args=[A("id")])
......@@ -18,7 +18,7 @@ class GroupsTable(tables.Table):
"""Table to list groups."""
class Meta:
attrs = {"class": "table table-striped table-bordered table-hover table-responsive-xl"}
attrs = {"class": "responsive-table highlight"}
name = tables.LinkColumn("group_by_id", args=[A("id")])
short_name = tables.LinkColumn("group_by_id", args=[A("id")])
......
......@@ -44,7 +44,7 @@
{% endif %}
</div>
<div class="col s12 m8">
<table class="table table-responsive-xl table-border table-striped">
<table class="responsive-table highlight">
<tr>
<td rowspan="6">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment