From 484caafaf4656f0f26bea5c4a6f5cf57a092c32a Mon Sep 17 00:00:00 2001
From: mabasian <54101509+mabasian@users.noreply.github.com>
Date: Wed, 3 Jul 2024 21:29:16 +0200
Subject: [PATCH] UPDATE: tooltips and languages (#1921)
* update the fetching
* fix the new api for the testers
* Revert "fix the new api for the testers"
This reverts commit ab01562bba614a5ac3a60f186204e4ba992a178a.
* Revert "update the fetching"
This reverts commit b5a052c880f412cd597f73d00b5e0c6ad9702836.
* Fix the nuke modal animation
* Revert "Fix the nuke modal animation"
This reverts commit 3c5b547c69f0681fc0651fa392d327489d46ecc2.
* FIX: footer and multi Server size
* ADD: tooltips to the server details
* ADD: tooltip for change the password
* ADD:tooltip to the server panel
* ADD:tooltip to the login page
* ADD: tooltips to ssh manaement tab
* ADD: tooltips to os update management
* ADD: tooltip to server node setting
* ADD: tooltips to the 2fa tab
---
launcher/public/output.css | 17 +-
.../server-management/MultiServerScreen.vue | 25 +-
.../components/login-form/LoginForm.vue | 79 ++-
.../components/saved-servers/ServerPanel.vue | 13 +-
.../server-details/ChangePassword.vue | 22 +-
.../server-details/ServerDetails.vue | 75 ++-
.../server-settings/ServerSettings.vue | 16 +-
.../components/server-update/UpdateRow.vue | 13 +
.../components/server-update/UpdateServer.vue | 19 +-
.../ssh-management/SshManagement.vue | 9 +
.../two-factor-auth/TwoFactoSetupBox.vue | 7 +
.../two-factor-auth/TwoFactorAuth.vue | 21 +
.../components/UI/the-control/PeerToPeer.vue | 4 +-
.../components/UI/the-control/SyncStatus.vue | 2 +-
.../UI/the-node/ResyncSeparateServices.vue | 546 ------------------
launcher/src/components/layers/TheFooter.vue | 2 +-
launcher/src/languages/en.json | 52 ++
17 files changed, 275 insertions(+), 647 deletions(-)
delete mode 100755 launcher/src/components/UI/the-node/ResyncSeparateServices.vue
diff --git a/launcher/public/output.css b/launcher/public/output.css
index 0546724a0..5df92cdad 100755
--- a/launcher/public/output.css
+++ b/launcher/public/output.css
@@ -1,7 +1,7 @@
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*
-! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
+! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com
*/
/*
@@ -1808,6 +1808,10 @@ video {
height: 95%;
}
+.h-\[95\.5\%\]{
+ height: 95.5%;
+}
+
.h-fit{
height: -webkit-fit-content;
height: -moz-fit-content;
@@ -2380,12 +2384,6 @@ video {
flex-shrink: 0;
}
-.flex-grow{
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
-}
-
.origin-top-right{
-webkit-transform-origin: top right;
transform-origin: top right;
@@ -5513,6 +5511,11 @@ html body {
border-color: rgb(77 117 117 / var(--tw-border-opacity));
}
+.hover\:border-amber-300:hover{
+ --tw-border-opacity: 1;
+ border-color: rgb(252 211 77 / var(--tw-border-opacity));
+}
+
.hover\:border-blue-400:hover{
--tw-border-opacity: 1;
border-color: rgb(96 165 250 / var(--tw-border-opacity));
diff --git a/launcher/src/components/UI/server-management/MultiServerScreen.vue b/launcher/src/components/UI/server-management/MultiServerScreen.vue
index 9f24287ae..0edac6472 100644
--- a/launcher/src/components/UI/server-management/MultiServerScreen.vue
+++ b/launcher/src/components/UI/server-management/MultiServerScreen.vue
@@ -1,7 +1,7 @@
import ServerHeader from './components/ServerHeader.vue';