diff --git a/public/views/advancedSettings.html b/public/views/advancedSettings.html index 842904fd5..e0a2d0e5d 100644 --- a/public/views/advancedSettings.html +++ b/public/views/advancedSettings.html @@ -1,4 +1,4 @@ - + {{'Advanced Settings' | translate}} @@ -33,19 +33,19 @@ Use Unconfirmed Funds -
+
If enabled, wallets will also try to spend unconfirmed funds. This option may cause transaction delays.
Experimental Features
-
+
These features aren't quite ready for primetime. They may change, stop working, or disappear at any time.
Recent Transaction Card -
+
If enabled, the Recent Transactions card - a list of transactions occuring across all wallets - will appear in the Home tab.
diff --git a/src/sass/main.scss b/src/sass/main.scss index 916c8f500..d5a17d289 100644 --- a/src/sass/main.scss +++ b/src/sass/main.scss @@ -996,6 +996,7 @@ input[type=number] { @import "views/tab-send"; @import "views/tab-settings"; @import "views/walletDetails"; +@import "views/advancedSettings"; @import "views/bitpayCard"; @import "views/address-book"; @import "views/wallet-backup-phrase"; diff --git a/src/sass/views/advancedSettings.scss b/src/sass/views/advancedSettings.scss new file mode 100644 index 000000000..d3da674d9 --- /dev/null +++ b/src/sass/views/advancedSettings.scss @@ -0,0 +1,53 @@ +.settings { + .item { + color: #444; + border-color: rgba(221, 221, 221, 0.3); + } +} + +#advanced-settings { + .list { + .item { + color: #444; + border-top: none; + padding-top: 1.5rem; + padding-bottom: 1.5rem; + &:before { + display: block; + position: absolute; + width: 100%; + height: 1px; + background: rgba(221, 221, 221, 0.3); + top: 0; + right: 0; + content: ''; + } + &.item-divider { + color: rgba(74, 74, 74, .8); + } + &.item-heading { + &:before { + top: 99% + } + } + &:nth-child(2) { + &:before { + width: 0; + } + } + .item-note { + color: rgb(58, 58, 58); + } + } + .comment { + padding: 15px; + background-color: #fff; + color: rgba(74, 74, 74, 0.8); + } + .divider-comment { + padding: 15px; + color: rgba(74, 74, 74, 0.8); + font-size: 15px; + } + } +}