Add new standard table style, improve UI for group management

This commit is contained in:
ErikKalkoken
2020-02-17 23:45:00 +01:00
parent 59855a71ef
commit 0f9927686b
7 changed files with 69 additions and 29 deletions

View File

@@ -43,12 +43,29 @@ ul.list-group.list-group-horizontal > li.list-group-item {
justify-content: center;
}
/* group headers within a table */
/* style group headers within a table */
.tr-group {
font-weight: bold;
background-color: #e6e6e6 !important;
}
/* default style for tables */
.table-aa > thead > tr > th{
border-bottom: 1px solid #f2f2f2;
}
.table-aa > thead > tr > th{
vertical-align: middle;
}
.table-aa > tbody > tr > td{
border-bottom: 1px solid #f2f2f2;
}
.table-aa > tbody > tr > td {
vertical-align: middle;
}
.table-aa > tbody > tr:last-child {
border-bottom: none;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {