mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00
Schildify login screen a bit better
This commit is contained in:
parent
720ec98278
commit
44ea087c1a
@ -1 +1 @@
|
||||
Subproject commit 6c2c4015b9bdf9986b82c71dd67465cc12ae4b77
|
||||
Subproject commit 4290ab5db91968c183402ef260f9b20b2670bcc3
|
@ -36,7 +36,7 @@ persist_patches() {
|
||||
}
|
||||
|
||||
persist_patches element-desktop
|
||||
#persist_patches element-web
|
||||
persist_patches element-web
|
||||
persist_patches matrix-react-sdk
|
||||
persist_patches matrix-js-sdk
|
||||
|
||||
|
22120
patches/element-web/0004-Change-default-login-background.patch
Normal file
22120
patches/element-web/0004-Change-default-login-background.patch
Normal file
File diff suppressed because it is too large
Load Diff
25
patches/element-web/0005-Don-t-welcome-to-Element.patch
Normal file
25
patches/element-web/0005-Don-t-welcome-to-Element.patch
Normal file
@ -0,0 +1,25 @@
|
||||
From 7eea3425a4a9d27359dc2801e6f486f5a51138c6 Mon Sep 17 00:00:00 2001
|
||||
From: SpiritCroc <dev@spiritcroc.de>
|
||||
Date: Sun, 27 Oct 2024 19:38:47 +0100
|
||||
Subject: Don't welcome to Element
|
||||
|
||||
---
|
||||
res/welcome.html | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/res/welcome.html b/res/welcome.html
|
||||
index ef2d43bd8f..5b71670f4f 100644
|
||||
--- a/res/welcome.html
|
||||
+++ b/res/welcome.html
|
||||
@@ -169,7 +169,7 @@ we don't have an account and should hide them. No account == no guest account ei
|
||||
<a href="https://element.io" target="_blank" rel="noopener">
|
||||
<img src="$logoUrl" alt="" class="mx_Logo" />
|
||||
</a>
|
||||
- <h1 class="mx_Header_title">_t("welcome_to_element")</h1>
|
||||
+ <h1 class="mx_Header_title">_t("Welcome to SchildiChat")</h1>
|
||||
<!-- XXX: Our translations system isn't smart enough to recognize variables in the HTML, so we manually do it -->
|
||||
<h4 class="mx_Header_subtitle">_t("powered_by_matrix_with_logo")</h4>
|
||||
<div class="mx_ButtonGroup">
|
||||
--
|
||||
2.47.0
|
||||
|
@ -0,0 +1,25 @@
|
||||
From dfafd2ac8a2b1a5614b0432560c67c2d1a1b6164 Mon Sep 17 00:00:00 2001
|
||||
From: SpiritCroc <dev@spiritcroc.de>
|
||||
Date: Sun, 27 Oct 2024 19:55:30 +0100
|
||||
Subject: Stronger login background to ensure contrast of our icon with our bg
|
||||
|
||||
---
|
||||
src/components/views/auth/VectorAuthPage.tsx | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/components/views/auth/VectorAuthPage.tsx b/src/components/views/auth/VectorAuthPage.tsx
|
||||
index 2053903c03..822db9da93 100644
|
||||
--- a/src/components/views/auth/VectorAuthPage.tsx
|
||||
+++ b/src/components/views/auth/VectorAuthPage.tsx
|
||||
@@ -56,7 +56,7 @@ export default class VectorAuthPage extends React.PureComponent {
|
||||
const modalContentStyle: React.CSSProperties = {
|
||||
display: "flex",
|
||||
zIndex: 1,
|
||||
- background: "rgba(255, 255, 255, 0.59)",
|
||||
+ background: "linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7))",
|
||||
borderRadius: "8px",
|
||||
};
|
||||
|
||||
--
|
||||
2.47.0
|
||||
|
30
patches/element-web/0007-Schildify-login-footer.patch
Normal file
30
patches/element-web/0007-Schildify-login-footer.patch
Normal file
@ -0,0 +1,30 @@
|
||||
From 4290ab5db91968c183402ef260f9b20b2670bcc3 Mon Sep 17 00:00:00 2001
|
||||
From: SpiritCroc <dev@spiritcroc.de>
|
||||
Date: Sun, 27 Oct 2024 20:07:30 +0100
|
||||
Subject: Schildify login footer
|
||||
|
||||
---
|
||||
src/components/views/auth/VectorAuthFooter.tsx | 7 ++++---
|
||||
1 file changed, 4 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/components/views/auth/VectorAuthFooter.tsx b/src/components/views/auth/VectorAuthFooter.tsx
|
||||
index a81517b516..3828e5ad74 100644
|
||||
--- a/src/components/views/auth/VectorAuthFooter.tsx
|
||||
+++ b/src/components/views/auth/VectorAuthFooter.tsx
|
||||
@@ -14,9 +14,10 @@ import { _t } from "../../../languageHandler";
|
||||
const VectorAuthFooter = (): ReactElement => {
|
||||
const brandingConfig = SdkConfig.getObject("branding");
|
||||
const links = brandingConfig?.get("auth_footer_links") ?? [
|
||||
- { text: "Blog", url: "https://element.io/blog" },
|
||||
- { text: "Twitter", url: "https://twitter.com/element_hq" },
|
||||
- { text: "GitHub", url: "https://github.com/element-hq/element-web" },
|
||||
+ //{ text: "Blog", url: "https://element.io/blog" },
|
||||
+ //{ text: "Twitter", url: "https://twitter.com/element_hq" },
|
||||
+ { text: "About", url: "https://schildi.chat" },
|
||||
+ { text: "GitHub", url: "https://github.com/schildichat/schildichat-desktop" },
|
||||
];
|
||||
|
||||
const authFooterLinks: JSX.Element[] = [];
|
||||
--
|
||||
2.47.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user