1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-19 17:54:14 +01:00

Fix: JUI CSS styles were using only JPG images rather than PNG for standard paging

This commit is contained in:
Allan Jardine 2011-03-01 17:52:14 +00:00
parent 8c37c48e00
commit 64fd1059f2

View File

@ -44,7 +44,7 @@
* cursor: hand;
}
.ui-buttonset .ui-button {
.dataTables_paginate .ui-button {
margin-right: -0.1em !important;
}
@ -52,7 +52,7 @@
width: 350px !important;
}
.ui-toolbar {
.dataTables_wrapper .ui-toolbar {
padding: 5px;
}
@ -209,15 +209,23 @@ table.display td.center {
*/
.sorting_asc {
background: url('../images/sort_asc.jpg') no-repeat center right;
background: url('../images/sort_asc.png') no-repeat center right;
}
.sorting_desc {
background: url('../images/sort_desc.jpg') no-repeat center right;
background: url('../images/sort_desc.png') no-repeat center right;
}
.sorting {
background: url('../images/sort_both.jpg') no-repeat center right;
background: url('../images/sort_both.png') no-repeat center right;
}
.sorting_asc_disabled {
background: url('../images/sort_asc_disabled.png') no-repeat center right;
}
.sorting_desc_disabled {
background: url('../images/sort_desc_disabled.png') no-repeat center right;
}