Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions res/css/_common.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ body {
--cpd-color-bg-accent-pressed: var(--cpd-color-blue-1100) !important;
--cpd-color-text-action-accent: var(--cpd-color-blue-900) !important;
--cpd-color-icon-accent-primary: var(--cpd-color-blue-900) !important;
--cpd-color-icon-success-primary: var(--cpd-color-blue-900) !important;
--cpd-color-icon-accent-tertiary: var(--cpd-color-blue-800) !important;
--cpd-color-icon-on-solid-primary: var(--cpd-color-gray-1400) !important;
/* e2e verification */
Expand Down
12 changes: 12 additions & 0 deletions res/css/structures/auth/_LoginSplashView.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,23 @@ Please see LICENSE files in the repository root for full details.
}
}

// elecord, splash icon
.mx_LoginSplashView_splashIcon {
display: flex;
justify-content: center;
height: 100%;
align-items: center;
}

.mx_LoginSplashView_splashButtons {
text-align: center;
width: 100%;
position: absolute;
bottom: 30px;

.mx_AccessibleButton.mx_AccessibleButton_kind_link_inline {
color: var(--cpd-color-text-secondary);
}
}

.mx_LoginSplashView_syncError {
Expand Down
3 changes: 2 additions & 1 deletion res/css/views/rooms/_NotificationBadge.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ Please see LICENSE files in the repository root for full details.

.mx_NotificationBadge_count {
font-size: $font-10px;
line-height: $font-14px;
// elecord, center notifications badge count
/* line-height: $font-14px; */
font-weight: var(--cpd-font-weight-semibold);
color: var(--cpd-color-text-on-solid-primary);
}
Expand Down
12 changes: 6 additions & 6 deletions src/components/structures/auth/LoginSplashView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ export function LoginSplashView(props: Props): React.JSX.Element {
return (
<div className="mx_MatrixChat_splash">
{errorBox}
{spinnerOrProgress}
<div className="mx_LoginSplashView_splashButtons">

{/* elecord mono icon on loading screen */}
<div>
<img src="vector-icons/128-mono.png" />
</div>
{/* elecord mono icon on loading screen */}
<div className="mx_LoginSplashView_splashIcon">
<img src="vector-icons/128-mono.png" />
</div>

<div className="mx_LoginSplashView_splashButtons">
{spinnerOrProgress}
<AccessibleButton kind="link_inline" onClick={props.onLogoutClick}>
{_t("action|logout")}
</AccessibleButton>
Expand Down
2 changes: 1 addition & 1 deletion src/components/views/messages/MImageReplyBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { type ImageContent } from "matrix-js-sdk/src/types";

import MImageBody from "./MImageBody";

const FORCED_IMAGE_HEIGHT = 44;
const FORCED_IMAGE_HEIGHT = 66;

export default class MImageReplyBody extends MImageBody {
public onClick = (ev: React.MouseEvent): void => {
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,7 @@
"create_room": "Create a Group Chat",
"explore_rooms": "Explore Public Rooms",
"has_avatar_label": "Great, that'll help people know it's you",
"intro_byline": "Own your conversations.",
"intro_byline": "Plug and play privacy.",
"intro_welcome": "Welcome to %(appName)s",
"no_avatar_label": "Add a photo so people know it's you.",
"send_dm": "Send a Direct Message",
Expand Down