tablesorter/addons/pager/jquery.tablesorter.pager.css

41 lines
932 B
CSS
Raw Normal View History

2012-03-22 14:50:17 +00:00
/* pager wrapper, div */
.pager {
padding: 5px;
2011-06-22 23:19:27 +00:00
}
2012-03-22 14:50:17 +00:00
/* pager wrapper, in thead/tfoot */
td.pager {
background-color: #e6eeee;
2011-06-22 23:19:27 +00:00
}
2012-03-22 14:50:17 +00:00
/* pager navigation arrows */
.pager img {
vertical-align: middle;
margin-right: 2px;
cursor: pointer;
2011-06-22 23:19:27 +00:00
}
2012-03-22 14:50:17 +00:00
/* pager output text */
.pager .pagedisplay {
font-size: 11px;
padding: 0 5px 0 5px;
2011-06-22 23:19:27 +00:00
width: 50px;
text-align: center;
2012-03-07 17:59:39 +00:00
}
2012-03-22 14:50:17 +00:00
/*** loading ajax indeterminate progress indicator ***/
2012-03-07 17:59:39 +00:00
#tablesorterPagerLoading {
background: rgba(255,255,255,0.8) url(icons/loading.gif) center center no-repeat;
position: absolute;
z-index: 1000;
}
2012-03-22 14:50:17 +00:00
/*** css used when "updateArrows" option is true ***/
/* the pager itself gets a disabled class when the number of rows is less than the size */
.pager.disabled {
display: none;
}
/* hide or fade out pager arrows when the first or last row is visible */
.pager img.disabled {
/* visibility: hidden */
opacity: 0.5;
filter: alpha(opacity=50);
cursor: default;
2011-07-17 15:01:18 +00:00
}