2021-11-10 23:44:57 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-11-10 23:44:57 +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-11-10 23:44:57 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MPollBody {
|
|
|
|
margin-top: 8px;
|
|
|
|
|
|
|
|
h2 {
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2021-11-10 23:44:57 +08:00
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-24px;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 8px;
|
2022-02-15 16:52:51 +08:00
|
|
|
|
|
|
|
.mx_MPollBody_edited {
|
|
|
|
color: $roomtopic-color;
|
|
|
|
font-size: $font-12px;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
2021-11-10 23:44:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h2::before {
|
|
|
|
content: "";
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 12px;
|
|
|
|
top: 3px;
|
|
|
|
left: 3px;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
background-color: $secondary-content;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-position: center;
|
|
|
|
mask-image: url("$(res)/img/element-icons/room/composer/poll.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MPollBody_totalVotes {
|
2023-02-03 04:22:26 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: inline;
|
|
|
|
justify-content: start;
|
2021-11-10 23:44:57 +08:00
|
|
|
color: $secondary-content;
|
|
|
|
font-size: $font-12px;
|
2023-02-03 04:22:26 +08:00
|
|
|
|
|
|
|
.mx_Spinner {
|
|
|
|
flex: 0;
|
|
|
|
margin-left: $spacing-8;
|
|
|
|
}
|
2021-11-10 23:44:57 +08:00
|
|
|
}
|
|
|
|
}
|
2021-12-09 20:54:31 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Prevent clicking a poll within a reply */
|
2021-12-09 20:54:31 +08:00
|
|
|
.mx_ReplyTile .mx_MPollBody {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2022-02-18 18:43:07 +08:00
|
|
|
|
2023-02-13 10:55:39 +08:00
|
|
|
.mx_MPollBody_allOptions {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: $spacing-16;
|
|
|
|
margin-bottom: $spacing-8;
|
2023-02-21 02:19:50 +08:00
|
|
|
max-width: 550px;
|
2022-02-18 18:43:07 +08:00
|
|
|
}
|