1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- table.footable>tbody>tr.footable-empty>td {
- font-size:15px !important;
- font-style:italic;
- }
- .pagination a {
- text-decoration: none !important;
- }
- .panel panel-default {
- overflow: visible !important;
- }
- .table-responsive {
- overflow: visible !important;
- }
- @media screen and (max-width: 767px) {
- .table-responsive {
- overflow-x: scroll !important;
- }
- }
- body {
- overflow-y:scroll;
- }
- /* Fix modal moving content left */
- body.modal-open {
- overflow-y:scroll;
- padding-right: inherit !important;
- }
- .mass-actions-admin {
- user-select: none;
- padding:10px 0 10px 0;
- }
- .inputMissingAttr {
- border-color: #FF4136;
- }
- .rotate {
- -moz-transition: all 0.3s linear;
- -webkit-transition: all 0.3s linear;
- transition: all 0.3s linear;
- }
- .rotate.animation {
- -ms-transform:rotateX(180deg);
- -moz-transform:rotateX(180deg);
- -webkit-transform:rotateX(180deg);
- transform:rotateX(180deg);
- }
|