From a6184d0c130cfba7de8d85fc9bb527f81d6d639b Mon Sep 17 00:00:00 2001 From: connors Date: Sat, 15 Feb 2014 11:38:08 -0800 Subject: [PATCH] table-views in cards ios --- dist/ios-theme.css | 4 ++++ docs-assets/css/docs.css | 3 +++ lib/sass/theme-ios.scss | 3 +++ 3 files changed, 10 insertions(+) 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; }