2021-07-08 01:04:30 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-07-08 01:04:30 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-07-08 01:04:30 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_LinkPreviewGroup {
|
|
|
|
.mx_LinkPreviewGroup_hide {
|
|
|
|
cursor: pointer;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
flex: 0 0 40px;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .mx_LinkPreviewGroup_hide img,
|
2023-09-28 19:52:26 +08:00
|
|
|
.mx_LinkPreviewGroup_hide:focus-visible:focus img {
|
2021-07-08 01:04:30 +08:00
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_AccessibleButton {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2021-07-08 01:04:30 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|