Skip to content

Commit cb0d72f

Browse files
authored
Merge branch 'develop' into dbkr/stateafter
2 parents 931edd7 + 9a6be72 commit cb0d72f

File tree

32 files changed

+200
-135
lines changed

32 files changed

+200
-135
lines changed

playwright/plugins/homeserver/synapse/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { randB64Bytes } from "../../utils/rand";
2020
// Docker tag to use for synapse docker image.
2121
// We target a specific digest as every now and then a Synapse update will break our CI.
2222
// This digest is updated by the playwright-image-updates.yaml workflow periodically.
23-
const DOCKER_TAG = "develop@sha256:6c33604ee62f009f3b34454a3c3e85f7e3ff5de63e45011fcd79e0ddc54a4e51";
23+
const DOCKER_TAG = "develop@sha256:d1a89bd0fcdc2bf2900dac30696d53bb9e44da1231faacd5c2d3b9f539ce9586";
2424

2525
async function cfgDirFromTemplate(opts: StartHomeserverOpts): Promise<Omit<HomeserverConfig, "dockerUrl">> {
2626
const templateDir = path.join(__dirname, "templates", opts.template);

playwright/plugins/homeserver/synapse/templates/default/homeserver.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,5 @@ experimental_features:
102102
# messages > non-joined historical messages.
103103
# Can be removed after Synapse enables it by default
104104
msc4115_membership_on_events: true
105+
106+
enable_authenticated_media: true

res/css/structures/_RoomStatusBar.pcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Please see LICENSE files in the repository root for full details.
125125
padding-left: 34px; /* 28px from above, but +6px to account for the wider icon */
126126

127127
&::before {
128-
mask-image: url("$(res)/img/element-icons/retry.svg");
128+
mask-image: url("@vector-im/compound-design-tokens/icons/restart.svg");
129129
}
130130
}
131131
}

res/css/structures/_SpaceHierarchy.pcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Please see LICENSE files in the repository root for full details.
7777
height: 16px;
7878
width: 16px;
7979
left: 0;
80-
background-image: url("$(res)/img/element-icons/warning-badge.svg");
80+
background-image: url("@vector-im/compound-design-tokens/icons/error.svg");
8181
background-size: cover;
8282
background-repeat: no-repeat;
8383
}

res/css/views/context_menus/_MessageContextMenu.pcss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please see LICENSE files in the repository root for full details.
2929
}
3030

3131
.mx_MessageContextMenu_iconReport::before {
32-
mask-image: url("$(res)/img/element-icons/warning-badge.svg");
32+
mask-image: url("@vector-im/compound-design-tokens/icons/error.svg");
3333
}
3434

3535
.mx_MessageContextMenu_iconLink::before {
@@ -61,7 +61,7 @@ Please see LICENSE files in the repository root for full details.
6161
}
6262

6363
.mx_MessageContextMenu_iconResend::before {
64-
mask-image: url("$(res)/img/element-icons/retry.svg");
64+
mask-image: url("@vector-im/compound-design-tokens/icons/restart.svg");
6565
}
6666

6767
.mx_MessageContextMenu_iconSource::before {

res/css/views/dialogs/_AddExistingToSpaceDialog.pcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Please see LICENSE files in the repository root for full details.
125125
mask-repeat: no-repeat;
126126
mask-position: center;
127127
mask-size: contain;
128-
mask-image: url("$(res)/img/element-icons/retry.svg");
128+
mask-image: url("@vector-im/compound-design-tokens/icons/restart.svg");
129129
width: 18px;
130130
height: 18px;
131131
left: 0;

res/css/views/dialogs/security/_AccessSecretStorageDialog.pcss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Please see LICENSE files in the repository root for full details.
2121

2222
&.mx_AccessSecretStorageDialog_resetBadge::before {
2323
/* The image isn't capable of masking, so we use a background instead. */
24-
background-image: url("$(res)/img/element-icons/warning-badge.svg");
24+
background-image: url("@vector-im/compound-design-tokens/icons/error.svg");
2525
background-size: 24px;
2626
background-color: transparent;
2727
}
@@ -120,7 +120,7 @@ Please see LICENSE files in the repository root for full details.
120120
width: 16px;
121121
left: 0;
122122
top: 2px; /* alignment */
123-
background-image: url("$(res)/img/element-icons/warning-badge.svg");
123+
background-image: url("@vector-im/compound-design-tokens/icons/error.svg");
124124
background-size: contain;
125125
}
126126

res/css/views/elements/_InfoTooltip.pcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ Please see LICENSE files in the repository root for full details.
2929
}
3030

3131
.mx_InfoTooltip_icon_warning::before {
32-
mask-image: url("$(res)/img/element-icons/warning.svg");
32+
mask-image: url("@vector-im/compound-design-tokens/icons/error.svg");
3333
}

res/css/views/messages/_MessageActionBar.pcss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ Please see LICENSE files in the repository root for full details.
108108
color: var(--cpd-color-icon-primary);
109109
}
110110

111+
&.mx_MessageActionBar_retryButton {
112+
--MessageActionBar-icon-size: 16px;
113+
}
114+
111115
&.mx_MessageActionBar_downloadButton {
112116
--MessageActionBar-icon-size: 14px;
113117

0 commit comments

Comments
 (0)