diff options
author | Dan <danjm.com@gmail.com> | 2017-10-23 04:14:03 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-24 13:41:30 +0800 |
commit | e737a9565a6b78639b74511d026339c1b54bca1a (patch) | |
tree | 62ed4e91a0ea5835d90e4015f1c094f4ea27e7ca /ui/app/css | |
parent | a7069acf2e93e9eae543bb84dfdda1f5e10b3e19 (diff) | |
download | tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.tar tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.tar.gz tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.tar.bz2 tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.tar.lz tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.tar.xz tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.tar.zst tangerine-wallet-browser-e737a9565a6b78639b74511d026339c1b54bca1a.zip |
Improve customize gas modal error handling
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/send.scss | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss index c4efeccf0..d2415f26c 100644 --- a/ui/app/css/itcss/components/send.scss +++ b/ui/app/css/itcss/components/send.scss @@ -738,6 +738,7 @@ align-items: center; justify-content: space-between; font-size: 22px; + position: relative; } &__buttons { @@ -747,7 +748,7 @@ margin-right: 21.25px; } - &__revert, &__cancel, &__save { + &__revert, &__cancel, &__save, &__save__error { display: flex; justify-content: center; align-items: center; @@ -760,7 +761,7 @@ margin-left: 21.25px; } - &__cancel, &__save { + &__cancel, &__save, &__save__error { height: 34.64px; width: 85.74px; border: 1px solid $dusty-gray; @@ -769,6 +770,21 @@ font-size: 12px; color: $dusty-gray; } + + &__save__error { + opacity: 0.5; + cursor: auto; + } + + &__error-message { + display: block; + position: absolute; + top: 4px; + right: 4px; + font-size: 12px; + line-height: 12px; + color: $red; + } } &__gas-modal-card { |