Skip to content

Commit

Permalink
レスポンシブテーブルの列固定のiOS対応
Browse files Browse the repository at this point in the history
  • Loading branch information
yhira committed Dec 11, 2019
1 parent 050d6b2 commit a139f2e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions css/admin.css
Expand Up @@ -636,7 +636,7 @@ https://codepen.io/nxworld/pen/oLdoWb
.admin-settings .demo table th, .admin-settings .demo table td { border: 1px solid #ddd; padding: 6px; }
.admin-settings .demo .scrollable-table { -webkit-overflow-scrolling: touch; }
.admin-settings .demo .scrollable-table.stfc-sticky tr > *:first-child { background-color: #e9eff2; color: #333; position: sticky; left: 0; z-index: 2; }
.admin-settings .demo .scrollable-table table { border-collapse: collapse; max-width: 100%; }
.admin-settings .demo .scrollable-table table { border-collapse: collapse; max-width: none; }
.admin-settings .demo .scrollable-table th { background-color: #eee; }
.admin-settings .demo .scrollable-table th, .admin-settings .demo .scrollable-table td { border: solid 1px #ccc; padding: 3px 5px; white-space: nowrap; }
.admin-settings .demo .scrollable-table { overflow-x: auto !important; overflow-y: hidden !important; margin-bottom: 1em; }
Expand Down Expand Up @@ -2177,7 +2177,7 @@ https://codepen.io/nxworld/pen/oLdoWb
.admin-settings .demo table th, .admin-settings .demo table td { border: 1px solid #ddd; padding: 6px; }
.admin-settings .demo .scrollable-table { -webkit-overflow-scrolling: touch; }
.admin-settings .demo .scrollable-table.stfc-sticky tr > *:first-child { background-color: #e9eff2; color: #333; position: sticky; left: 0; z-index: 2; }
.admin-settings .demo .scrollable-table table { border-collapse: collapse; max-width: 100%; }
.admin-settings .demo .scrollable-table table { border-collapse: collapse; max-width: none; }
.admin-settings .demo .scrollable-table th { background-color: #eee; }
.admin-settings .demo .scrollable-table th, .admin-settings .demo .scrollable-table td { border: solid 1px #ccc; padding: 3px 5px; white-space: nowrap; }
.admin-settings .demo .scrollable-table { overflow-x: auto !important; overflow-y: hidden !important; margin-bottom: 1em; }
Expand Down
2 changes: 1 addition & 1 deletion scss/content.scss
Expand Up @@ -152,7 +152,7 @@ table {

.scrollable-table table{
border-collapse: collapse;
max-width: 100%;
max-width: none;
}

.scrollable-table th{
Expand Down
2 changes: 1 addition & 1 deletion style.css
Expand Up @@ -1517,7 +1517,7 @@ table td {

.scrollable-table table {
border-collapse: collapse;
max-width: 100%;
max-width: none;
}

.scrollable-table th {
Expand Down

0 comments on commit a139f2e

Please sign in to comment.