-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added uuid for each transaction, general refactoring (#71) * added uuid for each transaction, general refactoring * update to version 0.5.1 * Filter the state object (#68) * Filtered the state object returned from getState to just the essential pieces of state that would be required by a dapp dev * added missing parameter minimumBalance and reordered parameters in readme * fixed image bug for browser onboarding (#75) * added check to not render iframe if user is on mobile and mobile isn't blocked so that touch events work correctly on mobile (#74) * made txRepeat notification persist when txConfirmReminder notification is shown (#78) * Added inline custom tx messages (#79) * Enhancement/dark mode option (#77) * added darkMode option to config * Added new light blocknative logo, made sure basic modal is set to dark mode as well * fixed focus text color * added new darkmode assets for browser and mobile not supported modals * Enhancement/position notifications (#81) * Added config option to position transaction notifications * subtle tweaks to UI * fixed typo in readme * fixed transaction timer bug (#83)
- Loading branch information
Showing
20 changed files
with
726 additions
and
460 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.bn-onboard-modal-shade { | ||
background: rgba(237, 237, 237, 0.1); | ||
} | ||
|
||
.bn-onboard-modal { | ||
background: #152128; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
p { | ||
color: #ededed; | ||
} | ||
|
||
.bn-onboard-basic .bn-onboard-main { | ||
background: #152128; | ||
} | ||
|
||
.bn-onboard-basic .bn-onboard-sidebar { | ||
background: #2c3943; | ||
} | ||
|
||
.bn-active { | ||
color: #ededed; | ||
} | ||
|
||
.bn-notification { | ||
background: #152128; | ||
box-shadow: -1px -1px 8px 0px rgba(237, 237, 237, 0.1); | ||
border: 1px 0px solid rgba(237, 237, 237, 0.1); | ||
} | ||
|
||
.bn-status-icon { | ||
transition: background-color 150ms ease-in-out; | ||
} | ||
|
||
.bn-notification:hover .bn-status-icon { | ||
background-position: -48px 1px !important; | ||
background-color: #152128; | ||
} | ||
|
||
.bn-notification.bn-failed .bn-status-icon:hover, | ||
.bn-notification.bn-progress .bn-status-icon:hover, | ||
.bn-notification.bn-complete .bn-status-icon:hover { | ||
background-color: #ededed; | ||
background-position: -48px 1px !important; | ||
} |
Oops, something went wrong.