diff options
author | Dan <danjm.com@gmail.com> | 2018-06-01 01:59:17 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-06-01 01:59:17 +0800 |
commit | d12bb8c14fccadef5ef8e3d40ccb262c9fa9db74 (patch) | |
tree | 7914db5005773d1553338e64e2fbc2250d453534 /ui/app/css | |
parent | 5091b03e4b2499697cda376a44405139827068cd (diff) | |
parent | 15f4ce352ddb88c43659ddd6fa29e53126d2a68c (diff) | |
download | tangerine-wallet-browser-d12bb8c14fccadef5ef8e3d40ccb262c9fa9db74.tar.gz tangerine-wallet-browser-d12bb8c14fccadef5ef8e3d40ccb262c9fa9db74.tar.zst tangerine-wallet-browser-d12bb8c14fccadef5ef8e3d40ccb262c9fa9db74.zip |
Merge branch 'i3725-refactor-send-component-' of github.com:MetaMask/metamask-extension into i3725-refactor-send-component-
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/currency-display.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ui/app/css/itcss/components/currency-display.scss b/ui/app/css/itcss/components/currency-display.scss index 36d843c79..3560b0b0c 100644 --- a/ui/app/css/itcss/components/currency-display.scss +++ b/ui/app/css/itcss/components/currency-display.scss @@ -47,10 +47,32 @@ &__input-wrapper { position: relative; display: flex; + + input[type="number"]::-webkit-inner-spin-button { + -webkit-appearance: none; + display: none; + } + + input[type="number"]:hover::-webkit-inner-spin-button { + -webkit-appearance: none; + display: none; + } } &__currency-symbol { margin-top: 1px; color: $scorpion; } + + .react-numeric-input { + input[type="number"]::-webkit-inner-spin-button { + -webkit-appearance: none; + display: none; + } + + input[type="number"]:hover::-webkit-inner-spin-button { + -webkit-appearance: none; + display: none; + } + } }
\ No newline at end of file |