123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /**
- Ubilling style
- */
- .css_right {
- float: right;
- }
- .css_left {
- float: left;
- }
- .dataTables_wrapper .ui-toolbar {
- padding: 1px;
- }
- table.dataTable tbody th,
- table.dataTable tbody td {
- padding: 1px 1px;
- }
- table.dataTable.hover tbody tr:hover,
- table.dataTable.hover tbody tr.odd:hover,
- table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
- table.dataTable.display tbody tr.odd:hover,
- table.dataTable.display tbody tr.even:hover {
- background-color: #d9d9d9;
- }
- table.dataTable.display tbody tr:hover > .sorting_1,
- table.dataTable.display tbody tr.odd:hover > .sorting_1,
- table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
- background-color: #cdcdcd;
- }
- .jqdt_word_wrap {
- overflow-wrap: break-word;
- word-wrap: break-word; /* Internet Explorer 5.5+ */;
- word-break: break-all;
- }
- table.dataTable th.dt-left,
- table.dataTable td.dt-left {
- text-align: left;
- }
- table.dataTable th.dt-center,
- table.dataTable td.dt-center,
- table.dataTable td.dataTables_empty {
- text-align: center;
- }
- table.dataTable th.dt-right,
- table.dataTable td.dt-right {
- text-align: right;
- }
- table.dataTable th.dt-justify,
- table.dataTable td.dt-justify {
- text-align: justify;
- }
- table.dataTable thead th.dt-head-left,
- table.dataTable thead td.dt-head-left,
- table.dataTable tfoot th.dt-head-left,
- table.dataTable tfoot td.dt-head-left {
- text-align: left;
- }
- table.dataTable thead th.dt-head-center,
- table.dataTable thead td.dt-head-center,
- table.dataTable tfoot th.dt-head-center,
- table.dataTable tfoot td.dt-head-center {
- text-align: center;
- }
- table.dataTable thead th.dt-head-right,
- table.dataTable thead td.dt-head-right,
- table.dataTable tfoot th.dt-head-right,
- table.dataTable tfoot td.dt-head-right {
- text-align: right;
- }
- table.dataTable thead th.dt-head-justify,
- table.dataTable thead td.dt-head-justify,
- table.dataTable tfoot th.dt-head-justify,
- table.dataTable tfoot td.dt-head-justify {
- text-align: justify;
- }
- table.dataTable tbody th.dt-body-left,
- table.dataTable tbody td.dt-body-left {
- text-align: left;
- }
- table.dataTable tbody th.dt-body-center,
- table.dataTable tbody td.dt-body-center {
- text-align: center;
- }
- table.dataTable tbody th.dt-body-right,
- table.dataTable tbody td.dt-body-right {
- text-align: right;
- }
- table.dataTable tbody th.dt-body-justify,
- table.dataTable tbody td.dt-body-justify {
- text-align: justify;
- }
|