2021-11-10 23:44:57 +08:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.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 {
|
2022-12-12 19:24:14 +08:00
|
|
|
content: "";
|
2021-11-10 23:44:57 +08:00
|
|
|
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;
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/room/composer/poll.svg");
|
2021-11-10 23:44:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|