b7d18b44 by Jeremy Groot

fix to datatable design

1 parent c87ebb61
......@@ -14522,10 +14522,14 @@ a.pdf:hover, a.extern:hover, a.xls:hover, a.mailto:hover {
font-family: "Helvetica-Bold";
}
table.dataTable + .bottom {
width: 100%;
}
.dataTables_wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
justify-content: left;
}
.dataTables_wrapper table {
flex-basis: 100%;
......@@ -14538,7 +14542,10 @@ a.pdf:hover, a.extern:hover, a.xls:hover, a.mailto:hover {
cursor: pointer;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
width: 300px;
width: auto;
}
.dataTables_wrapper .dataTables_paginate {
flex-basis: 100%;
}
.dataTables_wrapper .dataTables_filter label {
font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -304,10 +304,14 @@ a.pdf, a.extern, a.xls, a.mailto {
}
}
table.dataTable + .bottom {
width: 100%;
}
.dataTables_wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
justify-content:left;
table {
flex-basis: 100%;
width: 100%;
......@@ -319,7 +323,10 @@ a.pdf, a.extern, a.xls, a.mailto {
cursor: pointer;
}
.dataTables_length, .dataTables_filter {
width: 300px;
width: auto;
}
.dataTables_paginate {
flex-basis: 100%;
}
.dataTables_filter {
label {
......