2021-04-27 10:48:24 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-04-27 10:48:24 +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-04-27 10:48:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_PlayPauseButton {
|
|
|
|
position: relative;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
2022-07-27 21:39:29 +08:00
|
|
|
min-width: 32px; /* for when the button is used in a flexbox */
|
|
|
|
min-height: 32px; /* for when the button is used in a flexbox */
|
2021-04-27 10:48:24 +08:00
|
|
|
border-radius: 32px;
|
2021-10-17 02:29:03 +08:00
|
|
|
background-color: $system;
|
2021-04-27 10:48:24 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
2022-07-27 21:39:29 +08:00
|
|
|
position: absolute; /* sizing varies by icon */
|
2021-10-17 02:28:01 +08:00
|
|
|
background-color: $secondary-content;
|
2021-04-27 10:48:24 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
2024-10-08 20:00:37 +08:00
|
|
|
top: 6px; /* center */
|
|
|
|
left: 6px; /* center */
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2021-04-27 10:48:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_PlayPauseButton_disabled::before {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_PlayPauseButton_play::before {
|
2024-10-08 20:00:37 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/play-solid.svg");
|
2021-04-27 10:48:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_PlayPauseButton_pause::before {
|
2024-10-08 20:00:37 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/pause-solid.svg");
|
2021-04-27 10:48:24 +08:00
|
|
|
}
|
|
|
|
}
|