${this.urls.map(myPlugin => myPlugin.menus.length === 0 ? html`
diff --git a/qortal-ui-core/src/components/wallet-profile.js b/qortal-ui-core/src/components/wallet-profile.js
index 40f6548a..be67c5cd 100644
--- a/qortal-ui-core/src/components/wallet-profile.js
+++ b/qortal-ui-core/src/components/wallet-profile.js
@@ -35,10 +35,12 @@ class WalletProfile extends connect(store)(LitElement) {
diff --git a/qortal-ui-plugins/plugins/core/messaging/index.html b/qortal-ui-plugins/plugins/core/messaging/index.html
index 4b6f5c49..390c33c9 100644
--- a/qortal-ui-plugins/plugins/core/messaging/index.html
+++ b/qortal-ui-plugins/plugins/core/messaging/index.html
@@ -3,6 +3,7 @@
+
diff --git a/qortal-ui-plugins/plugins/core/messaging/messaging.src.js b/qortal-ui-plugins/plugins/core/messaging/messaging.src.js
index 349a5a1e..68ebe567 100644
--- a/qortal-ui-plugins/plugins/core/messaging/messaging.src.js
+++ b/qortal-ui-plugins/plugins/core/messaging/messaging.src.js
@@ -5,16 +5,26 @@ const parentEpml = new Epml({ type: 'WINDOW', source: window.parent })
class Messaging extends LitElement {
static get properties() {
- return {}
+ return {
+ theme: { type: String, reflect: true }
+ }
}
static get styles() {
return css`
* {
--mdc-theme-primary: rgb(3, 169, 244);
+ --paper-input-container-focus-color: var(--mdc-theme-primary);
+ --lumo-primary-text-color: rgb(0, 167, 245);
+ --lumo-primary-color-50pct: rgba(0, 167, 245, 0.5);
+ --lumo-primary-color-10pct: rgba(0, 167, 245, 0.1);
+ --lumo-primary-color: hsl(199, 100%, 48%);
+ --lumo-base-color: var(--white);
+ --lumo-body-text-color: var(--black);
}
+
#page {
- background: #fff;
+ background: var(--white);
padding: 12px 24px;
}
@@ -24,7 +34,7 @@ class Messaging extends LitElement {
}
h3, h4, h5 {
- color:#333;
+ color: var(--black);
font-weight: 400;
}
@@ -57,24 +67,25 @@ class Messaging extends LitElement {
}
.divCard {
- border: 1px solid #eee;
+ border: 1px solid var(--border);
padding: 1em;
box-shadow: 0 .3px 1px 0 rgba(0,0,0,0.14), 0 1px 1px -1px rgba(0,0,0,0.12), 0 1px 2px 0 rgba(0,0,0,0.20);
margin-bottom: 1.5rem;
}
p {
- color:#333;
+ color: var(--black);
}
ul, ul li {
- color:#333;
+ color: var(--black);
}
`
}
constructor() {
super()
+ this.theme = localStorage.getItem('qortalTheme') ? localStorage.getItem('qortalTheme') : 'light'
}
render() {
@@ -95,8 +106,6 @@ class Messaging extends LitElement {
These messages are able to be sent to groups or individual accounts, and are essentially the 'e-mail' of Qortal.
Use these messages if you intend on the message being a PERMANENT message that stays when and where you send it.
-
-
There are no @ in Qortal Chain Messaging, only 'registered names'. As the registered names on the chain can only be registered ONCE. Therefore, there are NO DUPLICATES.
- To "activate" your account, an OUTGOING transaction needs to take place.
- Name Registration is the most common method. You can ask someone in Q-Chat to send you a small amount of QORT so that you may activate your account,
- or buy QORT within the Trade Portal then make an OUTGOING transaction of any kind and secure your public key on the blockchain.
- Until you do this, your public key is only known by you, in your UI, and no one else can pull your public key from the chain.
+ To "activate" your account, an OUTGOING transaction needs to take place.
+ Name Registration is the most common method. You can ask someone in Q-Chat to send you a small amount of QORT so that you may activate your account,
+ or buy QORT within the Trade Portal then make an OUTGOING transaction of any kind and secure your public key on the blockchain.
+ Until you do this, your public key is only known by you, in your UI, and no one else can pull your public key from the chain.
- Node has been online for: ${this.upTime}
+ Node has been online for: ${this.upTime}
@@ -212,8 +223,7 @@ class NodeManagement extends LitElement {
render(html` this.removeMintingAccount(data.item.publicKey)}>createRemove`, root)
}}>
-
- ${this.isEmptyArray(this.mintingAccounts) ? html` No minting accounts found for this node ` : ""}
+ ${this.isEmptyArray(this.mintingAccounts) ? html`No minting accounts found for this node` : ""}
@@ -267,7 +277,7 @@ class NodeManagement extends LitElement {
}}>
- ${this.isEmptyArray(this.peers) ? html` Node has no connected peers ` : ""}
+ ${this.isEmptyArray(this.peers) ? html`Node has no connected peers` : ""}
${this.renderRelayModeText()}
@@ -335,7 +350,7 @@ class Websites extends LitElement {
Loading...
`: ''}
${this.isEmptyArray(this.webResources) ? html`
- You aren't following any websites
+ You aren't following any websites
`: ''}
${this.renderRelayModeText()}
@@ -373,7 +388,7 @@ class Websites extends LitElement {
Loading...
`: ''}
${this.isEmptyArray(this.blockResources) ? html`
- You have not blocked any websites
+ You have not blocked any websites
`: ''}
-
+
@@ -146,13 +157,18 @@ class RewardShare extends LitElement {
${this.isEmptyArray(this.rewardShares) ? html`
- Account is not involved in any reward shares
+ Account is not involved in any reward shares
`: ''}