Merge pull request #407 from PhoenixPeca/dev

Table overflow in mobile fix
master
Phoenix Eve Aspacio 2017-06-26 07:37:33 +08:00 committed by GitHub
commit f96da213e0
4 changed files with 20 additions and 1 deletions

View File

@ -11,6 +11,11 @@ table.footable>tbody>tr.footable-empty>td {
.table-responsive { .table-responsive {
overflow: visible !important; overflow: visible !important;
} }
@media screen and (max-width: 767px) {
.table-responsive {
overflow-x: scroll !important;
}
}
body { body {
overflow-y:scroll; overflow-y:scroll;
} }

View File

@ -11,6 +11,11 @@ table.footable>tbody>tr.footable-empty>td {
.table-responsive { .table-responsive {
overflow: visible !important; overflow: visible !important;
} }
@media screen and (max-width: 767px) {
.table-responsive {
overflow-x: scroll !important;
}
}
.footer-add-item { .footer-add-item {
display:block; display:block;
text-align: center; text-align: center;

View File

@ -11,6 +11,11 @@ table.footable>tbody>tr.footable-empty>td {
.table-responsive { .table-responsive {
overflow: visible !important; overflow: visible !important;
} }
@media screen and (max-width: 767px) {
.table-responsive {
overflow-x: scroll !important;
}
}
.footer-add-item { .footer-add-item {
display:block; display:block;
text-align: center; text-align: center;
@ -30,4 +35,3 @@ table.footable>tbody>tr.footable-empty>td {
.inputMissingAttr { .inputMissingAttr {
border-color: #FF4136; border-color: #FF4136;
} }

View File

@ -11,6 +11,11 @@ table.footable>tbody>tr.footable-empty>td {
.table-responsive { .table-responsive {
overflow: visible !important; overflow: visible !important;
} }
@media screen and (max-width: 767px) {
.table-responsive {
overflow-x: scroll !important;
}
}
.footer-add-item { .footer-add-item {
display:block; display:block;
text-align: center; text-align: center;