aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/index.scss
blob: ae99ba4aafa6a2a4b09aa4e6d32ed7845dddbdc8 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import './time-remaining/index';

.advanced-tab {
  display: flex;
  flex-flow: column;

  &__transaction-data-summary,
  &__fee-chart-title {
    padding-left: 24px;
    padding-right: 24px;
  }

  &__transaction-data-summary {
    display: flex;
    flex-flow: column;
    color: $mid-gray;
    margin-top: 12px;
    padding-left: 18px;
    padding-right: 18px;

    &__titles,
    &__container {
      display: flex;
      flex-flow: row;
      justify-content: space-between;
      font-size: 12px;
      color: #888EA3;
    }

    &__container {
      font-size: 16px;
      margin-top: 0px;
    }

    &__fee {
      font-size: 16px;
      color: #313A5E;
    }
  }

  &__fee-chart-title {
    font-size: 14px;
    color: $scorpion;
    margin-top: 22px;
  }

  &__fee-chart {
    padding-left: 10px;
    margin-top: 8px;
    height: 258px;
    background: #F8F9FB;
    border-bottom: 1px solid #d2d8dd;
    border-top: 1px solid #d2d8dd;
  }

  &__slider-container {
    padding-left: 27px;
    padding-right: 27px;
  }

  &__gas-edit-rows {
    height: 87px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 9px;
  }

  &__gas-edit-row {
    display: flex;
    flex-flow: column;

    &__label {
      color: #313B5E;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      
      .fa-info-circle {
        color: $silver;
        margin-left: 10px;
        cursor: pointer;
      }

      .fa-info-circle:hover {
        color: $mid-gray;
      }
    }


    &__input-wrapper {
      position: relative;
    }

    &__input {
      border: 1px solid $dusty-gray;
      border-radius: 4px;
      color: $mid-gray;
      font-size: 16px;
      height: 24px;
      width: 155px;
      padding-left: 8px;
      padding-top: 2px;
      margin-top: 7px;
    }

    input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      -moz-appearance: none;
      display: none;
    }

    input[type="number"]:hover::-webkit-inner-spin-button {
      -webkit-appearance: none;
      -moz-appearance: none;
      display: none;
    }

    &__gwei-symbol {
      position: absolute;
      top: 8px;
      right: 10px;
      color: $dusty-gray;
    }
  }
}