2019-02-06 01:24:28 +01:00
|
|
|
.advanced-gas-inputs {
|
|
|
|
&__gas-edit-rows {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__gas-edit-row {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
width: 47.5%;
|
|
|
|
|
|
|
|
&__label {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
color: #313b5e;
|
2019-02-06 01:24:28 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-09-11 20:13:36 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H8;
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
2020-01-13 16:08:39 +01:00
|
|
|
|
2019-02-06 01:24:28 +01:00
|
|
|
.fa-info-circle {
|
|
|
|
color: $silver;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-info-circle:hover {
|
|
|
|
color: $mid-gray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__error-text {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-02-06 01:24:28 +01:00
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__warning-text {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-02-06 01:24:28 +01:00
|
|
|
color: orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2019-09-03 19:47:54 +02:00
|
|
|
/*rtl:ignore*/
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-09-03 19:47:54 +02:00
|
|
|
direction: ltr;
|
2019-02-06 01:24:28 +01:00
|
|
|
border: 1px solid $dusty-gray;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: $mid-gray;
|
|
|
|
height: 24px;
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-top: 2px;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input--error {
|
2020-07-15 15:13:40 +02:00
|
|
|
border: 1px solid $red;
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input--warning {
|
2020-07-15 15:13:40 +02:00
|
|
|
border: 1px solid $orange;
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input-arrows {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2019-02-06 01:24:28 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2019-09-03 19:47:54 +02:00
|
|
|
/*rtl:ignore*/
|
2020-07-15 15:13:40 +02:00
|
|
|
right: 0;
|
2019-02-06 01:24:28 +01:00
|
|
|
width: 17px;
|
|
|
|
height: 24px;
|
|
|
|
border: 1px solid #dadada;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
color: #9b9b9b;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&__i-wrap {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__i-wrap:hover {
|
2020-07-15 15:13:40 +02:00
|
|
|
background: #4eade7;
|
2019-02-06 01:24:28 +01:00
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
i:hover {
|
2020-07-15 15:13:40 +02:00
|
|
|
background: #4eade7;
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
2020-10-29 16:03:29 +01:00
|
|
|
font-size: $font-size-h8;
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
2021-11-11 17:46:45 +01:00
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input-arrows--error {
|
|
|
|
border: 1px solid $red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input-arrows--warning {
|
|
|
|
border: 1px solid $orange;
|
|
|
|
}
|
|
|
|
|
2020-10-08 19:23:14 +02:00
|
|
|
input[type="number"] {
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
appearance: textfield;
|
|
|
|
}
|
|
|
|
|
2019-02-06 01:24:28 +01:00
|
|
|
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;
|
|
|
|
}
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
&__custom-text {
|
|
|
|
@include H7;
|
|
|
|
}
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
2020-07-15 15:13:40 +02:00
|
|
|
}
|