From 9653d88f81e3284abab4aacc97915253254ca340 Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Fri, 16 Dec 2016 16:41:53 -0600 Subject: [PATCH 1/3] fix(list): fixes #9619 --- src/components/list/list.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/list/list.scss b/src/components/list/list.scss index 8300ef32764..1d47a1e8d83 100644 --- a/src/components/list/list.scss +++ b/src/components/list/list.scss @@ -31,3 +31,11 @@ ion-list[inset] { transform: translateZ(0); } + + +// List with inputs +// -------------------------------------------------- + +ion-list .item-input:last-child { + border-bottom: 1px solid #dedede; +} From e3c9172b880df39927976a13ee19fb89e932f16f Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Tue, 20 Dec 2016 14:30:47 -0600 Subject: [PATCH 2/3] chore(list): make my sass legit --- src/components/list/list.ios.scss | 7 +++++++ src/components/list/list.md.scss | 8 ++++++++ src/components/list/list.scss | 7 ------- src/components/list/list.wp.scss | 7 +++++++ 4 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/components/list/list.ios.scss b/src/components/list/list.ios.scss index 5d95daea0cd..adea8596891 100644 --- a/src/components/list/list.ios.scss +++ b/src/components/list/list.ios.scss @@ -191,4 +191,11 @@ $list-ios-header-background-color: transparent !default; color: $color-contrast; background-color: $color-base; } +} + +// iOS List inputs +// -------------------------------------------------- + +.list-ios .item-input:last-child { + border-bottom: 1px solid $list-ios-border-color; } \ No newline at end of file diff --git a/src/components/list/list.md.scss b/src/components/list/list.md.scss index 55888f1f326..bed52d80b88 100644 --- a/src/components/list/list.md.scss +++ b/src/components/list/list.md.scss @@ -178,3 +178,11 @@ $list-md-header-color: #757575 !default; background-color: $color-base; } } + + +// Material Design List inputs +// -------------------------------------------------- + +.list-md .item-input:last-child { + border-bottom: 1px solid $list-md-border-color; +} diff --git a/src/components/list/list.scss b/src/components/list/list.scss index 1d47a1e8d83..061c1177a2a 100644 --- a/src/components/list/list.scss +++ b/src/components/list/list.scss @@ -32,10 +32,3 @@ ion-list[inset] { transform: translateZ(0); } - -// List with inputs -// -------------------------------------------------- - -ion-list .item-input:last-child { - border-bottom: 1px solid #dedede; -} diff --git a/src/components/list/list.wp.scss b/src/components/list/list.wp.scss index 78d32103eed..b52e4fd549a 100644 --- a/src/components/list/list.wp.scss +++ b/src/components/list/list.wp.scss @@ -175,3 +175,10 @@ $list-wp-header-color: $list-wp-text-color !default; background-color: $color-base; } } + +// Windows List inputs +// -------------------------------------------------- + +.list-wp .item-input:last-child { + border-bottom: 1px solid $list-wp-border-color; +} From 005243a43cb6b38fb38ecfb5a5e55c699f55a79c Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Tue, 27 Dec 2016 10:41:03 -0600 Subject: [PATCH 3/3] chore(list): remove from ios and wp css --- src/components/list/list.ios.scss | 7 ------- src/components/list/list.wp.scss | 6 ------ 2 files changed, 13 deletions(-) diff --git a/src/components/list/list.ios.scss b/src/components/list/list.ios.scss index adea8596891..76bdfa848ab 100644 --- a/src/components/list/list.ios.scss +++ b/src/components/list/list.ios.scss @@ -192,10 +192,3 @@ $list-ios-header-background-color: transparent !default; background-color: $color-base; } } - -// iOS List inputs -// -------------------------------------------------- - -.list-ios .item-input:last-child { - border-bottom: 1px solid $list-ios-border-color; -} \ No newline at end of file diff --git a/src/components/list/list.wp.scss b/src/components/list/list.wp.scss index b52e4fd549a..64593d56803 100644 --- a/src/components/list/list.wp.scss +++ b/src/components/list/list.wp.scss @@ -176,9 +176,3 @@ $list-wp-header-color: $list-wp-text-color !default; } } -// Windows List inputs -// -------------------------------------------------- - -.list-wp .item-input:last-child { - border-bottom: 1px solid $list-wp-border-color; -}