This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnapp/media/vendor/mottie-tablesorter/css/jquery.tablesorter.pager.css

41 lines
867 B
CSS
Raw Normal View History

2013-05-07 01:38:28 +00:00
/* pager wrapper, div */
.tablesorter-pager {
font-size: 14px;
}
/* pager navigation arrows */
.tablesorter-pager [class^="icon-"] {
vertical-align: middle;
margin-right: 4px;
cursor: pointer;
}
/* pager output text */
.tablesorter-pager .pagedisplay {
padding: 0 5px 0 5px;
width: auto;
white-space: nowrap;
text-align: center;
}
/* pager element reset (needed for bootstrap) */
.tablesorter-pager select {
margin: 0;
padding: 0;
height: 25px;
font-size: 12px;
}
/*** css used when "updateArrows" option is true ***/
/* the pager itself gets a disabled class when the number of rows is less than the size */
.tablesorter-pager.disabled {
display: none;
}
/* hide or fade out pager arrows when the first or last row is visible */
.tablesorter-pager .disabled {
/* visibility: hidden */
opacity: 0.5;
filter: alpha(opacity=50);
cursor: default;
}