542aa637 by Jeremy Groot

fix to datatable pagination

1 parent ccdb6183
......@@ -14525,6 +14525,7 @@ a.pdf:hover, a.extern:hover, a.xls:hover, a.mailto:hover {
.dataTables_wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.dataTables_wrapper table {
flex-basis: 100%;
......@@ -14571,11 +14572,10 @@ a.pdf:hover, a.extern:hover, a.xls:hover, a.mailto:hover {
font-family: Helvetica;
padding: 0.5rem 0;
}
.sorting_asc {
.dataTables_wrapper .sorting_asc {
position: relative;
}
.sorting_asc:after {
.dataTables_wrapper .sorting_asc:after {
content: "";
background: url(/wp-content/themes/commonwell-broker/images/arrow.png);
display: inline-block;
......@@ -14587,8 +14587,7 @@ a.pdf:hover, a.extern:hover, a.xls:hover, a.mailto:hover {
top: 4px;
left: 5px;
}
.sorting:after {
.dataTables_wrapper .sorting:after {
content: "";
display: inline-block;
width: 20px;
......@@ -14598,15 +14597,13 @@ a.pdf:hover, a.extern:hover, a.xls:hover, a.mailto:hover {
top: 4px;
left: 5px;
}
#DataTables_Table_0_length {
.dataTables_wrapper #DataTables_Table_0_length {
display: none;
}
.sorting_desc {
.dataTables_wrapper .sorting_desc {
position: relative;
}
.sorting_desc:after {
.dataTables_wrapper .sorting_desc:after {
content: "";
background: url(/wp-content/themes/commonwell-broker/images/arrow.png);
display: inline-block;
......
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.
......@@ -307,6 +307,7 @@ a.pdf, a.extern, a.xls, a.mailto {
.dataTables_wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
table {
flex-basis: 100%;
width: 100%;
......@@ -354,9 +355,7 @@ a.pdf, a.extern, a.xls, a.mailto {
font-family: Helvetica;
padding: 0.5rem 0;
}
}
.sorting_asc {
.sorting_asc {
position: relative;
&:after {
content: "";
......@@ -370,9 +369,9 @@ a.pdf, a.extern, a.xls, a.mailto {
top: 4px;
left: 5px;
}
}
}
.sorting {
.sorting {
&:after {
content: "";
display: inline-block;
......@@ -383,13 +382,13 @@ a.pdf, a.extern, a.xls, a.mailto {
top: 4px;
left: 5px;
}
}
}
#DataTables_Table_0_length {
#DataTables_Table_0_length {
display: none;
}
}
.sorting_desc {
.sorting_desc {
position: relative;
&:after {
content: "";
......@@ -403,6 +402,8 @@ a.pdf, a.extern, a.xls, a.mailto {
top: 4px;
left: 5px;
}
}
}
.postal-search-results tbody tr:first-of-type {
......