From ea5901e4e56d2621e3f5f045d8368b1247d26e80 Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Tue, 9 Jan 2018 20:28:09 -0800 Subject: [PATCH 1/8] fix(number-input-pinwheel): Remove pinwheel arrows that were showing in the amount field of the request and pay forms --- app/components/Form/PayForm.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index 541b7c01..1e91eb4e 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -172,4 +172,9 @@ cursor: pointer; } } +} + +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; } \ No newline at end of file From 3721b16efc36cf76bf3d9c1b0423d36dd38d5f9c Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Wed, 10 Jan 2018 08:00:19 -0800 Subject: [PATCH 2/8] fix(number-input-pinwheel): Use SASS ampersand to avoid repeating selector info --- app/components/Form/PayForm.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index 1e91eb4e..133d816d 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -174,7 +174,8 @@ } } -input[type=number]::-webkit-inner-spin-button, -input[type=number]::-webkit-outer-spin-button { - -webkit-appearance: none; +input[type=number]{ + &::-webkit-inner-spin-button, &::-webkit-outer-spin-button { + -webkit-appearance: none; + } } \ No newline at end of file From a2a26b66c5569e03ee71889aa0db101cde8e93d9 Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Wed, 10 Jan 2018 10:16:10 -0800 Subject: [PATCH 3/8] fix(number-input-pinwheel): Whitespace fix --- app/components/Form/PayForm.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index 133d816d..8db858b4 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -174,7 +174,7 @@ } } -input[type=number]{ +input[type=number] { &::-webkit-inner-spin-button, &::-webkit-outer-spin-button { -webkit-appearance: none; } From e0251399cd794f4b2889a37b7e99e8097c1b6bbe Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Tue, 9 Jan 2018 20:28:09 -0800 Subject: [PATCH 4/8] fix(number-input-pinwheel): Remove pinwheel arrows that were showing in the amount field of the request and pay forms --- app/components/Form/PayForm.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index 6f4c596f..919a6dde 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -158,3 +158,8 @@ } } } + +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; +} \ No newline at end of file From fcf0ee2c70f63558c458f1c4ddac57eed66236b3 Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Wed, 10 Jan 2018 08:00:19 -0800 Subject: [PATCH 5/8] fix(number-input-pinwheel): Use SASS ampersand to avoid repeating selector info --- app/components/Form/PayForm.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index 919a6dde..af4bafaf 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -159,7 +159,8 @@ } } -input[type=number]::-webkit-inner-spin-button, -input[type=number]::-webkit-outer-spin-button { - -webkit-appearance: none; +input[type=number]{ + &::-webkit-inner-spin-button, &::-webkit-outer-spin-button { + -webkit-appearance: none; + } } \ No newline at end of file From a1bbd193f40677c7377e9c6c31a8d510e5962cc3 Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Wed, 10 Jan 2018 10:16:10 -0800 Subject: [PATCH 6/8] fix(number-input-pinwheel): Whitespace fix --- app/components/Form/PayForm.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index af4bafaf..e50b5f74 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -159,7 +159,7 @@ } } -input[type=number]{ +input[type=number] { &::-webkit-inner-spin-button, &::-webkit-outer-spin-button { -webkit-appearance: none; } From a31bc0ef22912d440a0ea957b703d98133ea78db Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Thu, 11 Jan 2018 16:27:36 -0800 Subject: [PATCH 7/8] fix(number-input-pinwheel): Fix rebase merge error --- app/components/Form/PayForm.scss | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index b0301b9a..03afa355 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -163,10 +163,4 @@ cursor: pointer; } } -} - -input[type=number] { - &::-webkit-inner-spin-button, &::-webkit-outer-spin-button { - -webkit-appearance: none; - } } \ No newline at end of file From 73cc0b25e208a936b0c32328a7795fc25b83d377 Mon Sep 17 00:00:00 2001 From: "Kehlmann, Matthew" Date: Thu, 11 Jan 2018 16:29:25 -0800 Subject: [PATCH 8/8] fix(number-input-pinwheel): Whitespace --- app/components/Form/PayForm.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Form/PayForm.scss b/app/components/Form/PayForm.scss index 03afa355..b40eab3d 100644 --- a/app/components/Form/PayForm.scss +++ b/app/components/Form/PayForm.scss @@ -163,4 +163,4 @@ cursor: pointer; } } -} \ No newline at end of file +}