mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +00:00
c631f45ab7
* Remove gas dropdown & Add gas sliders * Update styles * Revert changes made to requestpayment.tsx * Update style & add custom labels to GasLimitField * Update styles * Update confirm transaction modal * Revert "Update confirm transaction modal" This reverts commit 743c9a505fe070feb55f7af550ad918a3d8899d1. * Add transaction fee to tx confirmation modal * Update styles * Remove old gasPriceDropdown files & use network units in tx fee * Add option to lock gaslimit data * fix tslint errors * Rename lockData to readOnly * Add option to check if validAmount before generating transaction * Add nonce field if gas slider is readonly * Automatically set nonce in <Send/> * Update snapshot * Move getNonceRequested to GasSlider component * Add optional to check value for isValidAmount selector * Add selector for transaction fee * Update GasSlider component & Rename to Gas * update snapshots * Fix subtabs className * Update styles * Remove dataField on contract interact * rename <Gas/> to <TXMetaDataPanel/>
27 lines
383 B
SCSS
27 lines
383 B
SCSS
@import 'common/sass/variables';
|
|
|
|
.Gas {
|
|
&-toggle {
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-top: $space-sm;
|
|
left: -8px;
|
|
}
|
|
}
|
|
|
|
.Calculating-limit {
|
|
color: rgba(51, 51, 51, 0.7);
|
|
display: flex;
|
|
align-items: baseline;
|
|
font-weight: 400;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
}
|
|
.Spinner {
|
|
margin-left: 8px;
|
|
}
|
|
}
|