Fix avatars in percy not having the right border radius (#9102)

* Fix avatars in percy not having the right border radius

* Fix percy media for base avatars
pull/28217/head
Michael Telatynski 2022-07-26 16:39:17 +01:00 committed by GitHub
parent a08df49db1
commit d2b942de42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -55,9 +55,15 @@ limitations under the License.
// Percy screenshot test specific CSS
@media only percy {
.mx_BaseAvatar_initial,
.mx_BaseAvatar_initial + .mx_BaseAvatar_image {
// Stick the default room avatar colour, so it doesn't cause a false diff on the screenshot
// Stick the default room avatar colour, so it doesn't cause a false diff on the screenshot
.mx_BaseAvatar_initial {
background-color: $username-variant2-color !important;
border-radius: 125px;
}
.mx_RoomAvatar_isSpaceRoom .mx_BaseAvatar_initial {
border-radius: 8px;
}
.mx_BaseAvatar_initial + .mx_BaseAvatar_image {
visibility: hidden;
}
}