1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-21 19:54:15 +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; * cursor: hand;
} }
.ui-buttonset .ui-button { .dataTables_paginate .ui-button {
margin-right: -0.1em !important; margin-right: -0.1em !important;
} }
@ -52,7 +52,7 @@
width: 350px !important; width: 350px !important;
} }
.ui-toolbar { .dataTables_wrapper .ui-toolbar {
padding: 5px; padding: 5px;
} }
@ -209,15 +209,23 @@ table.display td.center {
*/ */
.sorting_asc { .sorting_asc {
background: url('../images/sort_asc.jpg') no-repeat center right; background: url('../images/sort_asc.png') no-repeat center right;
} }
.sorting_desc { .sorting_desc {
background: url('../images/sort_desc.jpg') no-repeat center right; background: url('../images/sort_desc.png') no-repeat center right;
} }
.sorting { .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;
} }