diff --git a/dist/ios-theme.css b/dist/ios-theme.css index abbb962..695f365 100644 --- a/dist/ios-theme.css +++ b/dist/ios-theme.css @@ -186,10 +186,17 @@ p { background-image: none; } +.table-view { + border-top: 0; + border-bottom: 0; + background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,"); + background-position: 0 100%, 0 0%; + background-repeat: no-repeat; +} .table-view .table-view-cell { border-bottom: 0; background-image: url("data:image/svg+xml;utf8,"); - background-position: 15px 100%; + background-position: 0 100%; background-repeat: no-repeat; } .table-view .table-view-cell:last-child { @@ -245,6 +252,10 @@ textarea, .input-group { padding: 0; + border: 0; + background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,"); + background-position: 0 100%, 0 0%; + background-repeat: no-repeat; } .input-group input { diff --git a/dist/ratchet.css b/dist/ratchet.css index d008bd6..5b66cfe 100644 --- a/dist/ratchet.css +++ b/dist/ratchet.css @@ -672,15 +672,23 @@ input[type="button"] { color: inherit; } +.card .table-view { + margin: 0; + border-top: 0; + border-bottom: 0; +} + .card .table-view li:last-child { border: 0; } .table-view { padding: 0; - margin: 0; + margin: 0 0 20px 0; list-style: none; background-color: #fff; + border-top: 1px solid #dddddd; + border-bottom: 1px solid #dddddd; } .table-view .table-view-cell { position: relative; @@ -793,7 +801,7 @@ input[type="color"], .input-group { width: 100%; height: 35px; - padding: 0 10px; + padding: 0 15px; margin-bottom: 10px; line-height: 21px; background-color: #fff; diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index 3aaf9ea..58fe018 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -952,10 +952,17 @@ hr { .platform-ios .card .table-view-cell:last-child { background-image: none; } +.platform-ios .table-view { + border-top: 0; + border-bottom: 0; + background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,"); + background-position: 0 100%, 0 0%; + background-repeat: no-repeat; +} .platform-ios .table-view .table-view-cell { border-bottom: 0; background-image: url("data:image/svg+xml;utf8,"); - background-position: 15px 100%; + background-position: 0 100%; background-repeat: no-repeat; } .platform-ios .table-view .table-view-cell:last-child { @@ -1006,6 +1013,10 @@ hr { } .platform-ios .input-group { padding: 0; + border: 0; + background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,"); + background-position: 0 100%, 0 0%; + background-repeat: no-repeat; } .platform-ios .input-group input { border: 0; diff --git a/examples/app-default/choose-theater.html b/examples/app-default/choose-theater.html index 93055e2..fc1e323 100644 --- a/examples/app-default/choose-theater.html +++ b/examples/app-default/choose-theater.html @@ -3,48 +3,32 @@