forked from joomla/Component-Builder
51 lines
1.9 KiB
CSS
51 lines
1.9 KiB
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.
|
|
*/
|
|
td.footable-editing {
|
|
width: 90px;
|
|
max-width: 90px;
|
|
}
|
|
table.footable-editing-no-edit td.footable-editing,
|
|
table.footable-editing-no-delete td.footable-editing,
|
|
table.footable-editing-no-view td.footable-editing {
|
|
width: 70px;
|
|
max-width: 70px;
|
|
}
|
|
table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,
|
|
table.footable-editing-no-edit.footable-editing-no-view td.footable-editing,
|
|
table.footable-editing-no-delete.footable-editing-no-view td.footable-editing {
|
|
width: 50px;
|
|
max-width: 50px;
|
|
}
|
|
table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,
|
|
table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing {
|
|
width: 0;
|
|
max-width: 0;
|
|
display: none !important;
|
|
}
|
|
table.footable-editing-right td.footable-editing,
|
|
table.footable-editing-right tr.footable-editing {
|
|
text-align: right;
|
|
}
|
|
table.footable-editing-left td.footable-editing,
|
|
table.footable-editing-left tr.footable-editing {
|
|
text-align: left;
|
|
}
|
|
table.footable-editing button.footable-add,
|
|
table.footable-editing button.footable-hide,
|
|
table.footable-editing-show button.footable-show,
|
|
table.footable-editing.footable-editing-always-show button.footable-show,
|
|
table.footable-editing.footable-editing-always-show button.footable-hide,
|
|
table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing {
|
|
display: none;
|
|
}
|
|
table.footable-editing.footable-editing-show button.footable-add,
|
|
table.footable-editing.footable-editing-show button.footable-hide,
|
|
table.footable-editing.footable-editing-always-show button.footable-add {
|
|
display: inline-block;
|
|
}
|