aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2019-05-16 04:57:24 +0800
committerGitHub <noreply@github.com>2019-05-16 04:57:24 +0800
commitcb584a6ce526fed5ee1466dc048164cea7807d7b (patch)
tree41c048c14430b7d2706f7f73a77bd9b50c6f8ef8 /ui/app/css
parentc043132b00801f81d467748bebe147cae6893719 (diff)
parentc8cb4ba3705478a16cd1e39f8edc1f277bb2ede6 (diff)
downloadtangerine-wallet-browser-cb584a6ce526fed5ee1466dc048164cea7807d7b.tar.gz
tangerine-wallet-browser-cb584a6ce526fed5ee1466dc048164cea7807d7b.tar.zst
tangerine-wallet-browser-cb584a6ce526fed5ee1466dc048164cea7807d7b.zip
Merge pull request #6606 from industral/issue-5524
Improve ENS Address Input
Diffstat (limited to 'ui/app/css')
-rw-r--r--ui/app/css/itcss/components/send.scss38
1 files changed, 37 insertions, 1 deletions
diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss
index 927640f0b..2e76cc842 100644
--- a/ui/app/css/itcss/components/send.scss
+++ b/ui/app/css/itcss/components/send.scss
@@ -763,7 +763,43 @@
}
}
- &__to-autocomplete, &__memo-text-area, &__hex-data {
+ &__to-autocomplete {
+ display: flex;
+ flex-direction: column;
+ z-index: 1025;
+ position: relative;
+ height: 54px;
+ width: 100%;
+ border: 1px solid $alto;
+ border-radius: 4px;
+ background-color: $white;
+ color: $tundora;
+ padding: 0 10px;
+ font-family: Roboto;
+ line-height: 21px;
+
+ &__input {
+ font-size: 16px;
+ height: 100%;
+ border: none;
+ }
+
+ &__resolved {
+ font-size: 12px;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+ height: 30px;
+ cursor: pointer;
+
+ + .send-v2__to-autocomplete__qr-code {
+ top: 2px;
+ right: 0;
+ }
+ }
+ }
+
+ &__memo-text-area, &__hex-data {
&__input {
z-index: 1025;
position: relative;