-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28640ee
commit 7ba6353
Showing
28 changed files
with
1,310 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,8 +85,8 @@ | |
"@matrix-org/react-sdk-module-api": "^2.4.0", | ||
"@matrix-org/spec": "^1.7.0", | ||
"@sentry/browser": "^8.0.0", | ||
"@vector-im/compound-design-tokens": "^2.0.1", | ||
"@vector-im/compound-web": "^7.3.0", | ||
"@vector-im/compound-design-tokens": "^2.1.0", | ||
"@vector-im/compound-web": "^7.4.0", | ||
"@vector-im/matrix-wysiwyg": "2.37.13", | ||
"@zxcvbn-ts/core": "^3.0.4", | ||
"@zxcvbn-ts/language-common": "^3.0.4", | ||
|
@@ -146,7 +146,9 @@ | |
"temporal-polyfill": "^0.2.5", | ||
"ua-parser-js": "^1.0.2", | ||
"uuid": "^11.0.0", | ||
"what-input": "^5.2.10" | ||
"what-input": "^5.2.10", | ||
"@types/react-virtualized": "^9.21.30", | ||
"react-virtualized": "^9.22.5" | ||
}, | ||
"devDependencies": { | ||
"@action-validator/cli": "^0.6.0", | ||
|
@@ -296,5 +298,6 @@ | |
}, | ||
"engines": { | ||
"node": ">=20.0.0" | ||
} | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
Copyright 2024 New Vector Ltd. | ||
Copyright 2015, 2016 OpenMarket Ltd | ||
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only | ||
Please see LICENSE files in the repository root for full details. | ||
*/ | ||
|
||
.mx_MemberListHeaderView { | ||
border-bottom: var(--cpd-border-width-1) solid var(--cpd-color-gray-400); | ||
|
||
.mx_MemberListHeaderView_container { | ||
margin-top: var(--cpd-space-6x); | ||
width: 100%; | ||
} | ||
|
||
.mx_MemberListHeaderView_invite_small { | ||
margin-left: var(--cpd-space-3x); | ||
} | ||
|
||
.mx_MemberListHeaderView_invite_large { | ||
width: 288px; | ||
height: 36px; | ||
} | ||
|
||
.mx_MemberListHeaderView_label { | ||
padding: var(--cpd-space-6x) 0 var(--cpd-space-2x) var(--cpd-space-4x); | ||
box-sizing: border-box; | ||
width: 100%; | ||
color: var(--cpd-color-text-secondary); | ||
font: var(--cpd-font-body-sm-semibold); | ||
} | ||
|
||
.mx_MemberListHeaderView_search { | ||
width: 240px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
Copyright 2024 New Vector Ltd. | ||
Copyright 2015, 2016 OpenMarket Ltd | ||
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only | ||
Please see LICENSE files in the repository root for full details. | ||
*/ | ||
|
||
.mx_MemberListView { | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
min-height: 0; | ||
|
||
.mx_MemberListView_container { | ||
height: 100%; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
.mx_MemberTileView { | ||
display: flex; | ||
padding: var(--cpd-space-3x) var(--cpd-space-3x) var(--cpd-space-3x) var(--cpd-space-4x); | ||
box-sizing: border-box; | ||
height: 56px; | ||
border-bottom: var(--cpd-border-width-1) solid var(--cpd-color-gray-300); | ||
|
||
.mx_MemberTileView_left, | ||
.mx_MemberTileView_right { | ||
display: flex; | ||
align-items: center; | ||
gap: 8px | ||
} | ||
|
||
.mx_MemberTileView_left { | ||
flex-basis: 209px; | ||
flex-grow: 1; | ||
min-width: 0; | ||
} | ||
|
||
.mx_MemberTileView_name { | ||
font: var(--cpd-font-body-md-medium); | ||
font-size: 15px; | ||
min-width: 0; | ||
} | ||
|
||
.mx_MemberTileView_user_label { | ||
font: var(--cpd-font-body-sm-regular); | ||
font-size: 13px; | ||
} | ||
|
||
.mx_MemberTileView_avatar { | ||
position: relative; | ||
height: 32px; | ||
width: 32px; | ||
} | ||
|
||
.mx_E2EIconView { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.mx_E2EIconView_warning { | ||
color: var(--cpd-color-icon-critical-primary); | ||
} | ||
|
||
.mx_E2EIconView_verified { | ||
|
||
color: var(--cpd-color-icon-success-primary); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
|
||
.mx_OverflowTileView { | ||
display: flex; | ||
align-items: center; | ||
color: $primary-content; | ||
cursor: pointer; | ||
} | ||
|
||
.mx_OverflowTileView_text { | ||
flex: 1 1 0; | ||
overflow: hidden; | ||
font: var(--cpd-font-body-md-regular); | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
font-style: italic; | ||
} | ||
|
||
.mx_OverflowTileView:hover { | ||
padding-right: 30px; | ||
position: relative; /* to keep the chevron aligned */ | ||
} | ||
|
||
.mx_OverflowTileView:hover::before { | ||
content: ""; | ||
position: absolute; | ||
top: calc(50% - 8px); /* center */ | ||
right: -8px; | ||
mask: url("@vector-im/compound-design-tokens/icons/chevron-right.svg"); | ||
mask-repeat: no-repeat; | ||
mask-position: center; | ||
width: 16px; | ||
height: 16px; | ||
background-color: $header-panel-text-primary-color; | ||
} | ||
|
||
.mx_OverflowTileView_icon { | ||
padding-left: 3px; | ||
padding-right: 12px; | ||
padding-top: 4px; | ||
padding-bottom: 4px; | ||
position: relative; | ||
line-height: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.