forked from joomla/Component-Builder
31 lines
925 B
CSS
31 lines
925 B
CSS
/*
|
|
* FooTable v3 - FooTable is a jQuery plugin that aims to make HTML tables on smaller devices look awesome.
|
|
* @version 3.1.4
|
|
* @link http://fooplugins.com
|
|
* @copyright Steven Usher & Brad Vincent 2015
|
|
* @license Released under the GPLv3 license.
|
|
*/
|
|
table.footable > tfoot > tr.footable-paging > td > ul.pagination {
|
|
margin: 10px 0 0 0;
|
|
}
|
|
table.footable > tfoot > tr.footable-paging > td > span.label {
|
|
display: inline-block;
|
|
margin: 0 0 10px 0;
|
|
padding: 4px 10px;
|
|
}
|
|
table.footable > tfoot > tr.footable-paging > td,
|
|
table.footable-paging-center > tfoot > tr.footable-paging > td {
|
|
text-align: center;
|
|
}
|
|
table.footable-paging-left > tfoot > tr.footable-paging > td {
|
|
text-align: left;
|
|
}
|
|
table.footable-paging-right > tfoot > tr.footable-paging > td {
|
|
text-align: right;
|
|
}
|
|
ul.pagination > li.footable-page {
|
|
display: none;
|
|
}
|
|
ul.pagination > li.footable-page.visible {
|
|
display: inline;
|
|
} |