Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 1d374f6

Browse files
committed
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into t3chguy/fix/17731
2 parents 2e940b7 + 1f27049 commit 1d374f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+859
-580
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"linkifyjs": "^2.1.9",
8080
"lodash": "^4.17.20",
8181
"matrix-js-sdk": "12.0.0",
82-
"matrix-widget-api": "^0.1.0-beta.14",
82+
"matrix-widget-api": "^0.1.0-beta.15",
8383
"minimist": "^1.2.5",
8484
"opus-recorder": "^8.0.3",
8585
"pako": "^2.0.3",
@@ -172,7 +172,7 @@
172172
"jest": {
173173
"testEnvironment": "./__test-utils__/environment.js",
174174
"testMatch": [
175-
"<rootDir>/test/**/*-test.[jt]s"
175+
"<rootDir>/test/**/*-test.[jt]s?(x)"
176176
],
177177
"setupFiles": [
178178
"jest-canvas-mock"

res/css/structures/_LeftPanel.scss

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,29 @@ $roomListCollapsedWidth: 68px;
111111
}
112112
}
113113

114+
.mx_LeftPanel_dialPadButton {
115+
width: 32px;
116+
height: 32px;
117+
border-radius: 8px;
118+
background-color: $roomlist-button-bg-color;
119+
position: relative;
120+
margin-left: 8px;
121+
122+
&::before {
123+
content: '';
124+
position: absolute;
125+
top: 8px;
126+
left: 8px;
127+
width: 16px;
128+
height: 16px;
129+
mask-image: url('$(res)/img/element-icons/call/dialpad.svg');
130+
mask-position: center;
131+
mask-size: contain;
132+
mask-repeat: no-repeat;
133+
background: $secondary-fg-color;
134+
}
135+
}
136+
114137
.mx_LeftPanel_exploreButton {
115138
width: 32px;
116139
height: 32px;
@@ -185,6 +208,12 @@ $roomListCollapsedWidth: 68px;
185208
flex-direction: column;
186209
justify-content: center;
187210

211+
.mx_LeftPanel_dialPadButton {
212+
margin-left: 0;
213+
margin-top: 8px;
214+
background-color: transparent;
215+
}
216+
188217
.mx_LeftPanel_exploreButton {
189218
margin-left: 0;
190219
margin-top: 8px;

res/css/structures/_ToastContainer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ limitations under the License.
7171
&::before {
7272
background-color: #ffffff;
7373
mask-image: url('$(res)/img/e2e/normal.svg');
74-
mask-size: 90%;
74+
mask-size: 80%;
7575
}
7676

7777
&::after {

res/css/views/dialogs/_InviteDialog.scss

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ limitations under the License.
295295

296296
.mx_InviteDialog_content {
297297
overflow: hidden;
298+
height: 100%;
298299
}
299300
}
300301

@@ -316,3 +317,42 @@ limitations under the License.
316317
.mx_InviteDialog_helpText .mx_AccessibleButton_kind_link {
317318
padding: 0;
318319
}
320+
321+
.mx_InviteDialog_multiInviterError {
322+
> h4 {
323+
font-size: $font-15px;
324+
line-height: $font-24px;
325+
color: $secondary-fg-color;
326+
font-weight: normal;
327+
}
328+
329+
> div {
330+
.mx_InviteDialog_multiInviterError_entry {
331+
margin-bottom: 24px;
332+
333+
.mx_InviteDialog_multiInviterError_entry_userProfile {
334+
.mx_InviteDialog_multiInviterError_entry_name {
335+
margin-left: 6px;
336+
font-size: $font-15px;
337+
line-height: $font-24px;
338+
font-weight: $font-semi-bold;
339+
color: $primary-fg-color;
340+
}
341+
342+
.mx_InviteDialog_multiInviterError_entry_userId {
343+
margin-left: 6px;
344+
font-size: $font-12px;
345+
line-height: $font-15px;
346+
color: $tertiary-fg-color;
347+
}
348+
}
349+
350+
.mx_InviteDialog_multiInviterError_entry_error {
351+
margin-left: 32px;
352+
font-size: $font-15px;
353+
line-height: $font-24px;
354+
color: $notice-primary-color;
355+
}
356+
}
357+
}
358+
}

res/css/views/messages/_TextualEvent.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,9 @@ limitations under the License.
1717
.mx_TextualEvent {
1818
opacity: 0.5;
1919
overflow-y: hidden;
20+
21+
a {
22+
color: $accent-color;
23+
cursor: pointer;
24+
}
2025
}

res/css/views/messages/_common_CryptoEvent.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
mask-image: url('$(res)/img/e2e/normal.svg');
2222
mask-repeat: no-repeat;
2323
mask-position: center;
24-
mask-size: 90%;
24+
mask-size: 80%;
2525
}
2626

2727
&.mx_cryptoEvent_icon::after {

res/css/views/rooms/_E2EIcon.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ limitations under the License.
4545
mask-image: url('$(res)/img/e2e/normal.svg');
4646
mask-repeat: no-repeat;
4747
mask-position: center;
48-
mask-size: 90%;
48+
mask-size: 80%;
4949
}
5050

5151
// transparent-looking border surrounding the shield for when overlain over avatars
@@ -59,7 +59,7 @@ limitations under the License.
5959
}
6060
// shrink the infill of the badge
6161
&::before {
62-
mask-size: 65%;
62+
mask-size: 60%;
6363
}
6464
}
6565

res/css/views/rooms/_EventTile.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ $hover-select-border: 4px;
345345
mask-image: url('$(res)/img/e2e/normal.svg');
346346
mask-repeat: no-repeat;
347347
mask-position: center;
348-
mask-size: 90%;
348+
mask-size: 80%;
349349
}
350350
}
351351

res/css/views/spaces/_SpaceBasicSettings.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ limitations under the License.
7373
}
7474
}
7575

76-
.mx_AccessibleButton {
76+
.mx_AccessibleButton_hasKind {
7777
padding: 8px 22px;
7878
margin-left: auto;
7979
display: block;

res/css/views/voip/_DialPad.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ limitations under the License.
2323
.mx_DialPad_button {
2424
width: 40px;
2525
height: 40px;
26-
background-color: $theme-button-bg-color;
26+
background-color: $dialpad-button-bg-color;
2727
border-radius: 40px;
2828
font-size: 18px;
2929
font-weight: 600;

0 commit comments

Comments
 (0)