forked from lthn/blockchain
* fixed issue when user at first typing '.' in field amount * show amount value in modal without 0 * changed wallet colors style * fixed few issues with attachment encryption * added extra conditions on extra fields update in wallet * has_field_of_type_in_extra() -> have_type_in_variant_container() * implemented exclude_staking_txs filter * Implement master password confirmation * Small GUI bugs-> added translate for scale * Unexpected screen after clicking 'go back' * #154->Make alias registration error messages more informative * added Wallet Status on Lock-Screen * cleaned unused code * changed ! to i in sidebar * fixed ng build --prod issue Co-authored-by: cryptozoidberg <crypto.zoidberg@gmail.com> Co-authored-by: sowle <crypto.sowle@gmail.com>
191 lines
3.8 KiB
SCSS
191 lines
3.8 KiB
SCSS
app-sidebar {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(sidebarBackgroundColor);
|
|
}
|
|
|
|
.sidebar-accounts {
|
|
|
|
.sidebar-accounts-header {
|
|
|
|
h3 {
|
|
|
|
@include themify($themes) {
|
|
color: themed(mainTextColor);
|
|
}
|
|
}
|
|
|
|
button {
|
|
|
|
@include themify($themes) {
|
|
color: themed(blueTextColor);
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar-accounts-list {
|
|
|
|
.sidebar-account {
|
|
|
|
@include themify($themes) {
|
|
background-color: transparent;
|
|
color: themed(mainTextColor);
|
|
}
|
|
|
|
.icon {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(blueTextColor);
|
|
}
|
|
}
|
|
|
|
.sidebar-account-row {
|
|
|
|
.text {
|
|
|
|
@include themify($themes) {
|
|
color: themed(optionalTextColor);
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(blueTextColor);
|
|
}
|
|
}
|
|
|
|
.indicator {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(blueButtonBackgroundColor);
|
|
color: themed(alternativeTextColor);
|
|
}
|
|
}
|
|
|
|
.progress-bar-container {
|
|
|
|
.progress-bar {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(progressBarBackgroundColor);
|
|
}
|
|
|
|
.fill {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(blueTextColor);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.account-synchronization {
|
|
|
|
@include themify($themes) {
|
|
color: themed(optionalTextColor);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(accountBackgroundColor);
|
|
color: themed(accountMainTextColor);
|
|
}
|
|
|
|
.sidebar-account-row {
|
|
|
|
.text {
|
|
|
|
@include themify($themes) {
|
|
color: themed(accountOptionalTextColor);
|
|
}
|
|
}
|
|
|
|
.indicator {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(accountIndicatorBackgroundColor);
|
|
color: themed(accountIndicatorTextColor);
|
|
}
|
|
}
|
|
|
|
.switch {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(accountSwitchBackgroundColor);
|
|
color: themed(mainTextColor);
|
|
}
|
|
}
|
|
|
|
&.account-synchronization {
|
|
|
|
@include themify($themes) {
|
|
color: themed(accountOptionalTextColor);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover:not(.active) {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(accountHoverBackgroundColor);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&:after {
|
|
|
|
@include themify($themes) {
|
|
background: linear-gradient(to bottom, transparent 0%, themed(sidebarBackgroundColor) 100%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar-settings {
|
|
|
|
@include themify($themes) {
|
|
border-bottom: 0.2rem solid themed(sidebarBorderColor);
|
|
}
|
|
|
|
.wrap-button {
|
|
|
|
button {
|
|
|
|
@include themify($themes) {
|
|
color: themed(mainTextColor);
|
|
}
|
|
|
|
.icon {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(blueTextColor);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
|
|
button {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(accountBackgroundColor)!important;
|
|
color: themed(accountMainTextColor)!important;
|
|
}
|
|
|
|
.icon {
|
|
|
|
@include themify($themes) {
|
|
background-color: themed(accountIndicatorBackgroundColor)!important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|