114 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| div.tab_top, div.tab_bottom {
 | |
|     color: #333333;
 | |
|     background-color: #DDDDDD;
 | |
| }
 | |
| 
 | |
| /* Two button pagination - previous / next */
 | |
| a.paginate_disabled_previous,
 | |
| a.paginate_enabled_previous,
 | |
| a.paginate_disabled_next,
 | |
| a.paginate_enabled_next {
 | |
|     height: 19px;
 | |
|     float: left;
 | |
|     cursor: pointer;
 | |
|     *cursor: hand;
 | |
|     color: #111 !important;
 | |
| }
 | |
| a.paginate_disabled_previous:hover,
 | |
| a.paginate_enabled_previous:hover,
 | |
| a.paginate_disabled_next:hover,
 | |
| a.paginate_enabled_next:hover {
 | |
|     color: #333333 !important;
 | |
|     background-color: #B4B4B4 !important;
 | |
|     text-decoration: none !important;
 | |
| }
 | |
| a.paginate_disabled_previous:active,
 | |
| a.paginate_enabled_previous:active,
 | |
| a.paginate_disabled_next:active,
 | |
| a.paginate_enabled_next:active {
 | |
|     color: #333333 !important;
 | |
|     background-color: #a4a4a4 !important;
 | |
|     outline: none;
 | |
| }
 | |
| 
 | |
| a.paginate_disabled_previous,
 | |
| a.paginate_disabled_next {
 | |
|     color: #666 !important;
 | |
| }
 | |
| 
 | |
| a.paginate_disabled_previous,
 | |
| a.paginate_enabled_previous {
 | |
|     padding: 2px 4px 2px 23px;
 | |
|     line-height: 130%;
 | |
| }
 | |
| a.paginate_disabled_next,
 | |
| a.paginate_enabled_next {
 | |
|     padding: 2px 23px 2px 4px;
 | |
|     line-height: 125%;
 | |
|     margin-left: 10px;
 | |
| }
 | |
| 
 | |
| a.paginate_enabled_previous { background: url('../images/back_enabled.light.png') no-repeat top left !important; }
 | |
| a.paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.light.png') no-repeat top left !important; }
 | |
| a.paginate_disabled_previous { background: url('../images/back_disabled.light.png') no-repeat top left !important; }
 | |
| 
 | |
| a.paginate_enabled_next { background: url('../images/forward_enabled.light.png') no-repeat top right !important; }
 | |
| a.paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.light.png') no-repeat top right !important; }
 | |
| a.paginate_disabled_next { background: url('../images/forward_disabled.light.png') no-repeat top right !important; }
 | |
| 
 | |
| /* Full number pagination */
 | |
| div.paging_full_numbers a:active {
 | |
|     outline: none
 | |
| }
 | |
| div.paging_full_numbers a:hover {
 | |
|     text-decoration: none;
 | |
| }
 | |
| 
 | |
| div.paging_full_numbers a.paginate_button,
 | |
| div.paging_full_numbers a.paginate_active {
 | |
|     border: 1px solid #aaa;
 | |
|     border-radius: 0;
 | |
|     padding: 2px 5px;
 | |
|     margin: 0;
 | |
|     float: none;
 | |
|     cursor: pointer;
 | |
|     *cursor: hand;
 | |
|     color: #333 !important;
 | |
| }
 | |
| 
 | |
| div.paging_full_numbers a.paginate_button {
 | |
|     background-color: #ddd;
 | |
| }
 | |
| div.paging_full_numbers a.paginate_active {
 | |
|     color: #b9b9b9;
 | |
|     background-color: #7A7A7A;
 | |
| }
 | |
| 
 | |
| div.paging_full_numbers a.paginate_active:hover,
 | |
| div.paging_full_numbers a.paginate_active:active,
 | |
| div.paging_full_numbers a.paginate_active:focus {
 | |
|     color: #333333 !important;
 | |
|     background-color: #a7a7a7 !important;
 | |
| }
 | |
| 
 | |
| div.paging_full_numbers a.paginate_button:hover,
 | |
| div.paging_full_numbers a.paginate_button:active,
 | |
| div.paging_full_numbers a.paginate_button:focus {
 | |
|     color: #333333 !important;
 | |
|     background-color: #a7a7a7 !important;
 | |
| }
 | |
| 
 | |
| /* Sorting */
 | |
| thead tr.tabrow td.sorting_asc {
 | |
|     background: url("../images/sort_asc.light.png") no-repeat scroll left center rgba(0, 0, 0, 0);
 | |
|     padding-left: 20px;
 | |
| }
 | |
| thead tr.tabrow td.sorting_desc {
 | |
|     background: url("../images/sort_desc.light.png") no-repeat scroll left center rgba(0, 0, 0, 0);
 | |
|     padding-left: 20px;
 | |
| }
 | |
| thead tr.tabrow td.sorting {
 | |
|     background: url("../images/sort_both.light.png") no-repeat scroll left center rgba(0, 0, 0, 0);
 | |
|     padding-left: 20px;
 | |
| }
 | |
| tbody tr.tabrow td.sorting_asc, tbody tr.tabrow td.sorting_desc, tbody tr.tabrow td.sorting { background-image: none; } |