Skip to content

Commit

Permalink
Merge pull request #32 from elecordapp/base-styling-changes
Browse files Browse the repository at this point in the history
Base styling changes
  • Loading branch information
hazzuk authored Feb 5, 2025
2 parents 2f99367 + 6737768 commit ad501bc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion res/css/views/right_panel/_EmptyState.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Please see LICENSE files in the repository root for full details.
height: 775px;
right: -253.77px;
top: 0;
background: radial-gradient(49.95% 49.95% at 50% 50%, rgba(13, 189, 139, 0.12) 0%, rgba(18, 115, 235, 0) 100%);
background: radial-gradient(49.95% 49.95% at 50% 50%, rgba(13, 92, 189, 0.12) 0%, rgba(18, 115, 235, 0) 100%);
transform: rotate(-89.69deg);
overflow: hidden;
}
Expand Down
2 changes: 2 additions & 0 deletions res/css/views/rooms/_EventTile.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ $left-gutter: 64px;
--EventTile-box-shadow-spread-radius: -50px;
.mx_EventTile_e2eIcon {
position: absolute;
/* elecord, e2ee icon reduce visibility */
opacity: 15%;
}

.mx_MImageBody {
Expand Down
3 changes: 3 additions & 0 deletions res/css/views/rooms/_RoomListHeader.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ Please see LICENSE files in the repository root for full details.
}

.mx_RoomListHeader_plusButton {
/* elecord, hide primary plus button */
display: none;

width: 32px;
height: 32px;
border-radius: 8px;
Expand Down
4 changes: 3 additions & 1 deletion res/themes/light/css/_light.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,9 @@ $togglesw-ball-color: var(--cpd-color-bg-action-primary-rest);
/* Authpage */
/* ******************** */
$authpage-primary-color: #232f32;
$authpage-bg-color: #2e3649;
/* elecord, dark blue background */
/* $authpage-bg-color: #2e3649; */
$authpage-bg-color: #0a142d;
$authpage-modal-bg-color: $roomlist-bg-color;
$authpage-focus-bg-color: $focus-bg-color;
$authpage-lang-color: $secondary-content;
Expand Down
6 changes: 4 additions & 2 deletions src/components/views/auth/AuthPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default class AuthPage extends React.PureComponent<React.PropsWithChildre
right: 0,
bottom: 0,
left: 0,
filter: "blur(40px)",
filter: "blur(34px)",
background: pageStyle.background,
};

Expand All @@ -63,7 +63,9 @@ export default class AuthPage extends React.PureComponent<React.PropsWithChildre
};

return (
<div className="mx_AuthPage" style={pageStyle}>
// elecord, hide background
// <div className="mx_AuthPage" style={pageStyle}>
<div className="mx_AuthPage">
<div className="mx_AuthPage_modal" style={modalStyle}>
<div className="mx_AuthPage_modalBlur" style={blurStyle} />
<div className="mx_AuthPage_modalContent" style={modalContentStyle}>
Expand Down

0 comments on commit ad501bc

Please sign in to comment.