From fcba3238a7c2b9702a259cf1ecaf659779e986e3 Mon Sep 17 00:00:00 2001 From: Job Date: Thu, 10 Nov 2016 16:50:37 +0100 Subject: [PATCH 1/2] fix(util): click-block transform on IE --- src/themes/util.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/themes/util.scss b/src/themes/util.scss index d58d588ee4..3588e362ce 100755 --- a/src/themes/util.scss +++ b/src/themes/util.scss @@ -57,8 +57,7 @@ ion-input :focus { display: block; opacity: 0; - transform: translate3d(0, -100%, 0); - transform: translate3d(0, calc(-100% + 1px), 0); + transform: translate3d(0, -100%, 0) translateY(1px); // background: red; // opacity: .3; From a0b61f26effd5fbfd64542c5a5e4e5ebfc6722f6 Mon Sep 17 00:00:00 2001 From: Job Date: Thu, 10 Nov 2016 17:14:52 +0100 Subject: [PATCH 2/2] fix(fab): position fab-list correctly on IE --- src/components/fab/fab.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fab/fab.scss b/src/components/fab/fab.scss index fc77aee08a..025fd237ac 100755 --- a/src/components/fab/fab.scss +++ b/src/components/fab/fab.scss @@ -156,7 +156,7 @@ ion-fab-list[side=right] .fab-in-list { } ion-fab-list[side=top] { - top: initial; + top: auto; bottom: 0; flex-direction: column-reverse;