diff --git a/launcher/public/output.css b/launcher/public/output.css index c79dd0828..d60891487 100755 --- a/launcher/public/output.css +++ b/launcher/public/output.css @@ -4380,6 +4380,26 @@ video { padding-top: 2rem; } +.pt-\[0\.20rel\]{ + padding-top: 0.20rel; +} + +.pt-\[0\.20rem\]{ + padding-top: 0.20rem; +} + +.pt-\[0\.10rem\]{ + padding-top: 0.10rem; +} + +.pt-\[0\.05rem\]{ + padding-top: 0.05rem; +} + +.pt-0\.5{ + padding-top: 0.125rem; +} + .text-left{ text-align: left; } diff --git a/launcher/src/components/UI/language-page/components/MenuBody.vue b/launcher/src/components/UI/language-page/components/MenuBody.vue index be63eaf0b..129531039 100644 --- a/launcher/src/components/UI/language-page/components/MenuBody.vue +++ b/launcher/src/components/UI/language-page/components/MenuBody.vue @@ -91,7 +91,7 @@ const checkSettings = async () => { } // Handle volume settings - langStore.currentVolume = savedVolume?.volume ?? 0.95; + langStore.currentVolume = savedVolume?.volume ?? 0; } catch (error) { console.error("Failed to load saved settings:", error); } @@ -101,7 +101,7 @@ const checkVolume = async () => { try { const savedConfig = await ControlService.readConfig(); const { savedVolume } = savedConfig || {}; - langStore.currentVolume = savedVolume?.volume ?? 0.95; + langStore.currentVolume = savedVolume?.volume ?? 0; } catch (error) { console.error("Failed to load saved settings:", error); } diff --git a/launcher/src/components/UI/node-page/components/alert/NodeAlert.vue b/launcher/src/components/UI/node-page/components/alert/NodeAlert.vue index bfd131a21..03a87ce3f 100755 --- a/launcher/src/components/UI/node-page/components/alert/NodeAlert.vue +++ b/launcher/src/components/UI/node-page/components/alert/NodeAlert.vue @@ -2,16 +2,37 @@
-
+
green
-
+
green
-
+
green
@@ -33,7 +54,11 @@
- +
warn_storage
@@ -44,7 +69,11 @@
{{ availDisk }} GB Free
- +
warn_storage
@@ -57,20 +86,26 @@
- -
- warn_storage -
-
-
- {{ point }} + +
warn_storage
@@ -85,7 +120,7 @@
@@ -99,7 +134,11 @@
- +
warn_storage
@@ -112,7 +151,11 @@
-
+
warn_storage
@@ -123,29 +166,34 @@
-
-
- -
-
-
- {{ $t("nodeAlert.noFee") }} +
-
-
- warn_storage -
-
-
- {{ item.name }} UPDATE +
@@ -219,6 +269,7 @@ export default { clkUpdate: this.$t("nodeAlert.clkUpdate"), loadingAlerts: false, skeletons: [1, 2, 3, 4, 5, 6, 7, 8], + alertShowState: "showAll", }; }, computed: { @@ -337,6 +388,13 @@ export default { this.cpuMeth(); }, methods: { + alertPicker(color) { + if (this.alertShowState === color) { + this.alertShowState = "showAll"; + } else { + this.alertShowState = color; + } + }, async checkSettings() { try { const savedConfig = await ControlService.readConfig(); @@ -592,7 +650,7 @@ export default { .icon-line { display: flex; - justify-content: space-evenly; + justify-content: flex-start; padding-top: 4px; width: 100%; height: 30px; @@ -606,9 +664,14 @@ export default { align-items: center; opacity: 25%; border-radius: 5px; + margin-right: 5px; } .active { opacity: 100%; + cursor: pointer; +} +.active:hover { + transform: scale(1.1); } .status-icon img { diff --git a/launcher/src/components/UI/the-control/ControlAlert.vue b/launcher/src/components/UI/the-control/ControlAlert.vue index c68e6f1a0..46955b0c2 100755 --- a/launcher/src/components/UI/the-control/ControlAlert.vue +++ b/launcher/src/components/UI/the-control/ControlAlert.vue @@ -3,15 +3,38 @@
-
+
green
-
+
green
-
+
green
@@ -30,7 +53,7 @@
-
-
- warn_storage -
-
-
- {{ point }} +
-
-
- -
-
-
no fee recipient
-
- > {{ validator.name }} vc +
-
-
- warn_storage -
-
-
- UPDATE available +
@@ -208,7 +240,7 @@ export default { alarm: false, notification: false, newUpdate: false, - + alertShowState: "showAll", notSetAddresses: [], clkFee: this.$t("nodeAlert.clkFee"), clkUpdate: this.$t("nodeAlert.clkUpdate"), @@ -322,6 +354,13 @@ export default { this.cpuMeth(); }, methods: { + alertPicker(color) { + if (this.alertShowState === color) { + this.alertShowState = "showAll"; + } else { + this.alertShowState = color; + } + }, async checkSettings() { try { const savedConfig = await ControlService.readConfig(); @@ -523,6 +562,10 @@ export default { } .active { opacity: 100%; + cursor: pointer; +} +.active:hover { + transform: scale(1.1); } .icon_alarm img { height: 100%;