2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Percy screenshot test specific CSS */
|
2022-06-13 20:25:39 +02:00
|
|
|
@media only percy {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Stick the default room avatar colour, so it doesn't cause a false diff on the screenshot */
|
2023-08-24 05:48:35 +02:00
|
|
|
.mx_BaseAvatar {
|
2023-03-27 14:13:25 +02:00
|
|
|
background-color: var(--percy-color-avatar) !important;
|
2023-08-25 15:52:20 +02:00
|
|
|
color: white !important;
|
2022-06-13 20:25:39 +02:00
|
|
|
}
|
|
|
|
}
|
2023-08-30 13:47:35 +02:00
|
|
|
|
|
|
|
button.mx_BaseAvatar {
|
2023-09-11 11:27:12 +02:00
|
|
|
/* <button> is a form element and by default it uses the user agent (browser) styling.
|
|
|
|
We want it to inherit the font-family and line-height from its parent.
|
2023-08-30 13:47:35 +02:00
|
|
|
*/
|
2023-09-11 11:27:12 +02:00
|
|
|
font-family: inherit;
|
2023-09-08 12:01:21 +02:00
|
|
|
line-height: inherit;
|
2023-08-30 13:47:35 +02:00
|
|
|
}
|