diff --git a/dist/ios-theme.css b/dist/ios-theme.css index 695f365..63e9ec5 100644 --- a/dist/ios-theme.css +++ b/dist/ios-theme.css @@ -182,6 +182,10 @@ p { background-color: transparent; } +.card .table-view { + background-image: none; +} + .card .table-view-cell:last-child { background-image: none; } diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index cefb7fb..a6ec3b2 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -949,6 +949,9 @@ hr { color: #dd524d; background-color: transparent; } +.platform-ios .card .table-view { + background-image: none; +} .platform-ios .card .table-view-cell:last-child { background-image: none; } diff --git a/lib/sass/theme-ios.scss b/lib/sass/theme-ios.scss index d32ba3c..a3eae5a 100644 --- a/lib/sass/theme-ios.scss +++ b/lib/sass/theme-ios.scss @@ -279,6 +279,9 @@ p { // -------------------------------------------------- // Cards with table-views +.card .table-view { + background-image: none; +} .card .table-view-cell:last-child { background-image: none; }