2022-08-15 23:30:18 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-08-15 23:30:18 +08:00
|
|
|
Copyright 2022 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.
|
2022-08-15 23:30:18 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_DeviceExpandDetailsButton {
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
border-radius: 4px;
|
2023-07-13 01:46:49 +08:00
|
|
|
color: $icon-button-color;
|
2022-08-15 23:30:18 +08:00
|
|
|
|
|
|
|
--icon-transform: rotate(-90deg);
|
2022-12-20 09:17:05 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $quinary-content;
|
|
|
|
}
|
2022-08-15 23:30:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DeviceExpandDetailsButton.mx_DeviceExpandDetailsButton_expanded {
|
|
|
|
--icon-transform: rotate(0deg);
|
|
|
|
|
|
|
|
background: $system;
|
2022-12-20 09:17:05 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $quinary-content;
|
|
|
|
}
|
2022-08-15 23:30:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DeviceExpandDetailsButton_icon {
|
2022-12-20 09:17:05 +08:00
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
2022-08-15 23:30:18 +08:00
|
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
transform: var(--icon-transform);
|
|
|
|
transform-origin: center;
|
|
|
|
}
|