diff options
author | Dan <danjm.com@gmail.com> | 2017-09-20 20:32:18 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-27 00:05:29 +0800 |
commit | 7102772c3a4a73d594ccc20e760defa2999f2d3f (patch) | |
tree | 5514016e0b816cf60c7a2b108d635fdced84c4f6 /ui/app/css | |
parent | d1737777f0fcc78cf034c52aa1fb039f40eca4e2 (diff) | |
download | tangerine-wallet-browser-7102772c3a4a73d594ccc20e760defa2999f2d3f.tar.gz tangerine-wallet-browser-7102772c3a4a73d594ccc20e760defa2999f2d3f.tar.zst tangerine-wallet-browser-7102772c3a4a73d594ccc20e760defa2999f2d3f.zip |
Connect export key modal to state and enable actions.
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/modal.scss | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/ui/app/css/itcss/components/modal.scss b/ui/app/css/itcss/components/modal.scss index 9cdfdec8f..00b6111f7 100644 --- a/ui/app/css/itcss/components/modal.scss +++ b/ui/app/css/itcss/components/modal.scss @@ -283,13 +283,18 @@ flex-direction: column; } -.private-key-password-label { +.private-key-password-label, .private-key-password-error { color: $scorpion; font-size: 14px; line-height: 18px; margin-bottom: 10px; } +.private-key-password-error { + color: $crimson; + margin-bottom: 0; +} + .private-key-password-input { padding: 10px 0 13px 17px; font-size: 16px; @@ -333,6 +338,27 @@ } } +.private-key-password-display-wrapper { + height: 80px; + width: 291px; + border: 1px solid $silver; + border-radius: 2px; +} + +.private-key-password-display-textarea { + color: $crimson; + font-family: "DIN OT"; + font-size: 16px; + line-height: 21px; + border: none; + height: 75px; + width: 253px; + overflow: hidden; + resize: none; + padding: 9px 13px 8px; + text-transform: uppercase; +} + // New Account Modal .new-account-modal-wrapper { |