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

42 lines
977 B
CSS
Raw Normal View History

2012-03-22 14:50:17 +00:00
/* pager wrapper, div */
2012-09-27 19:57:19 +00:00
.tablesorter-pager {
2012-03-22 14:50:17 +00:00
padding: 5px;
2011-06-22 23:19:27 +00:00
}
2012-03-22 14:50:17 +00:00
/* pager wrapper, in thead/tfoot */
2012-09-27 19:57:19 +00:00
td.tablesorter-pager {
2012-03-22 14:50:17 +00:00
background-color: #e6eeee;
2012-09-27 19:57:19 +00:00
margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */
2011-06-22 23:19:27 +00:00
}
2012-03-22 14:50:17 +00:00
/* pager navigation arrows */
2012-09-27 19:57:19 +00:00
.tablesorter-pager img {
2012-03-22 14:50:17 +00:00
vertical-align: middle;
margin-right: 2px;
cursor: pointer;
2011-06-22 23:19:27 +00:00
}
2012-09-27 19:57:19 +00:00
2012-03-22 14:50:17 +00:00
/* pager output text */
2012-09-27 19:57:19 +00:00
.tablesorter-pager .pagedisplay {
2012-03-22 14:50:17 +00:00
padding: 0 5px 0 5px;
2012-10-13 19:41:34 +00:00
width: auto;
white-space: nowrap;
2011-06-22 23:19:27 +00:00
text-align: center;
2012-03-07 17:59:39 +00:00
}
2012-03-22 14:50:17 +00:00
2012-09-27 19:57:19 +00:00
/* pager element reset (needed for bootstrap) */
.tablesorter-pager select {
margin: 0;
padding: 0;
}
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 */
2012-09-27 19:57:19 +00:00
.tablesorter-pager.disabled {
display: none;
}
/* hide or fade out pager arrows when the first or last row is visible */
2012-09-27 19:57:19 +00:00
.tablesorter-pager .disabled {
/* visibility: hidden */
opacity: 0.5;
filter: alpha(opacity=50);
cursor: default;
2011-07-17 15:01:18 +00:00
}