2021-11-18 18:54:58 +01:00
|
|
|
.edit-gas-item {
|
|
|
|
border-radius: 24px;
|
2021-11-23 19:18:44 +01:00
|
|
|
background: white;
|
2021-11-18 18:54:58 +01:00
|
|
|
color: $ui-4;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 12px;
|
2021-11-18 20:08:29 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-11-18 18:54:58 +01:00
|
|
|
margin: 12px 0;
|
|
|
|
padding: 4px 12px;
|
|
|
|
height: 32px;
|
2021-11-23 19:18:44 +01:00
|
|
|
width: 100%;
|
2021-11-18 18:54:58 +01:00
|
|
|
|
2021-12-06 16:40:20 +01:00
|
|
|
&:hover {
|
|
|
|
background-color: $primary-2;
|
2021-11-18 18:54:58 +01:00
|
|
|
}
|
|
|
|
|
2021-12-06 19:47:26 +01:00
|
|
|
&--selected {
|
2021-12-06 16:40:20 +01:00
|
|
|
background-color: $ui-1;
|
2021-11-18 20:08:29 +01:00
|
|
|
}
|
|
|
|
|
2021-11-18 18:54:58 +01:00
|
|
|
&__name {
|
2021-11-18 20:08:29 +01:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2021-11-18 18:54:58 +01:00
|
|
|
color: $ui-black;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
2021-12-06 16:40:20 +01:00
|
|
|
width: 36%;
|
2021-11-18 18:54:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
2021-12-06 16:40:20 +01:00
|
|
|
font-size: 20px;
|
|
|
|
line-height: 1;
|
2021-11-18 18:54:58 +01:00
|
|
|
margin-right: 4px;
|
2021-11-18 20:08:29 +01:00
|
|
|
|
|
|
|
&-custom {
|
2021-12-06 16:40:20 +01:00
|
|
|
font-size: 32px;
|
|
|
|
line-height: 1;
|
2021-11-18 20:08:29 +01:00
|
|
|
}
|
2021-11-18 18:54:58 +01:00
|
|
|
}
|
|
|
|
|
2021-12-10 01:50:38 +01:00
|
|
|
&__maxfee {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2021-11-18 18:54:58 +01:00
|
|
|
&__time-estimate {
|
|
|
|
display: inline-block;
|
2021-12-06 16:40:20 +01:00
|
|
|
text-align: left;
|
|
|
|
width: 24%;
|
2021-11-18 18:54:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__fee-estimate {
|
|
|
|
display: inline-block;
|
|
|
|
width: 30%;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__tooltip {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
|
|
|
width: 10%;
|
|
|
|
|
|
|
|
.info-tooltip {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-estimate-low,
|
|
|
|
&__fee-estimate-high {
|
|
|
|
color: $secondary-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-estimate-medium,
|
|
|
|
&__time-estimate-high {
|
|
|
|
color: $success-3;
|
|
|
|
}
|
|
|
|
}
|