Owen Leonard
9042ce4ea5
This follow-up adds some style improvements and corrects some errors in the previous patch: - The path to datatables.css has been corrected - Unused CSS has been removed from datatables.css (particularly related to pagination controls, which are currently unused in the OPAC). - Style has been added to datatables.css to make the table search form look better. - The configuration of the course details table has been enhanced to include a title sort which ignores articles and date sorting according to the "title-string" method for date format agnostic sorting. - Unrelated: A message <div> has been modified to have the correct style for the Bootstrap theme. To test you should have multiple courses and at least one course with multiple reserves. Clear your browser cache if necessary and view the list of courses in the OPAC. All table sorting should work correctly, as should the table search form. View the details of a course which has multiple reserves. All sorting should work correctly, including title sort excluding articles. Sorting by date due should work correctly for any dateformat system preference setting. View the details of a course which has no reserves. You should see a "No reserves" message box with a style consistent with similar messages in the Bootstrap OPAC. View other sorted tables in the OPAC to confirm that the CSS changes have not negatively affected their appearance: opac-user.pl for instance, or opac-detail.pl. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
28 lines
397 B
CSS
28 lines
397 B
CSS
.dataTables_filter label {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.dataTables_filter input {
|
|
font-size : 12px;
|
|
height : auto;
|
|
margin : 0;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
input.search_init {
|
|
color: #999999;
|
|
}
|
|
|
|
div.top {clear : both; }
|
|
|
|
div.dataTables_filter {
|
|
float: left;
|
|
padding : .3em 0 0 0;
|
|
margin : 0;
|
|
|
|
}
|
|
|
|
div.dataTables_length,
|
|
div.dataTables_filter {
|
|
border-left : 1px solid #FFF;
|
|
}
|