aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/account-dropdown.scss
blob: b29afdc8cee13d7a8e982b4c4af9ca725a6cb082 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.account-dropdown-name {
  font-family: Roboto;
}

.account-dropdown-balance {
  color: $dusty-gray;
  line-height: 19px;
}

.account-dropdown-edit-button {
  color: $dusty-gray;
  font-family: Roboto;

  &:hover {
    color: $white;
  }
}

.account-list-item {
  &__top-row {
    display: flex;
    margin-top: 10px;
    margin-left: 8px;
    position: relative;
  }

  &__account-balances {
    height: auto;
    border: none;
    background-color: transparent;
    color: #9b9b9b;
    margin-left: 34px;
    margin-top: 4px;
    position: relative;
  }

  &__account-name {
    font-size: 16px;
    margin-left: 8px;
  }

  &__icon {
    position: absolute;
    right: 12px;
    top: 1px;
  }

  &__account-primary-balance,
  &__account-secondary-balance {
    font-family: Roboto;
    line-height: 16px;
    font-size: 12px;
  }

  &__account-primary-balance {
    color: $scorpion;
    border: none;
    outline: 0 !important;
  }

  &__account-secondary-balance {
    color: $dusty-gray;
  }

  &__account-address {
    margin-left: 35px;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  &__dropdown {
    &:hover {
      background: rgba($alto, .2);
      cursor: pointer;

      input {
        background: rgba($alto, .1);
      }
    }
  }
}