2015-05-07 13:49:06 -04:00
|
|
|
div.poll {
|
|
|
|
display: table;
|
2016-07-28 05:39:06 -04:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2015-05-07 13:49:06 -04:00
|
|
|
|
|
|
|
.poll-info {
|
2016-07-28 05:39:06 -04:00
|
|
|
min-width: 150px;
|
|
|
|
width: 100%;
|
2015-05-07 13:49:06 -04:00
|
|
|
display: table-cell;
|
2018-08-27 16:53:35 -04:00
|
|
|
text-align: center;
|
2015-05-07 13:49:06 -04:00
|
|
|
|
2018-08-27 16:53:35 -04:00
|
|
|
.info-number {
|
|
|
|
font-size: 3.5em;
|
|
|
|
}
|
|
|
|
|
2015-05-07 13:49:06 -04:00
|
|
|
p {
|
2019-02-05 04:47:22 -05:00
|
|
|
margin: 0.5em 0;
|
2015-05-07 13:49:06 -04:00
|
|
|
}
|
|
|
|
|
2018-05-02 20:12:19 -04:00
|
|
|
.info-label {
|
2015-05-07 13:49:06 -04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-container {
|
|
|
|
display: table-cell;
|
2016-07-28 05:39:06 -04:00
|
|
|
width: 100%;
|
2020-08-04 11:14:33 -04:00
|
|
|
border-right: 1px solid var(--primary-low);
|
2015-05-07 13:49:06 -04:00
|
|
|
}
|
|
|
|
|
2020-10-02 03:21:24 -04:00
|
|
|
.poll-title {
|
|
|
|
border-bottom: 1px solid var(--primary-low);
|
2020-10-27 08:48:54 -04:00
|
|
|
margin-bottom: 0.5em;
|
2020-10-02 03:21:24 -04:00
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
2015-05-07 13:49:06 -04:00
|
|
|
.poll-buttons {
|
2020-08-04 11:14:33 -04:00
|
|
|
border-top: 1px solid var(--primary-low);
|
2019-02-05 04:47:22 -05:00
|
|
|
padding: 1em;
|
2021-08-02 22:03:18 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2015-05-07 13:49:06 -04:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
.info-text {
|
|
|
|
line-height: 2em;
|
|
|
|
}
|
|
|
|
|
2021-09-07 13:19:03 -04:00
|
|
|
button:not(:first-child) {
|
|
|
|
margin-left: 0.5em;
|
2019-11-22 14:06:39 -05:00
|
|
|
}
|
|
|
|
|
2021-08-02 22:03:18 -04:00
|
|
|
.btn-danger.toggle-status {
|
|
|
|
margin-left: auto;
|
2015-05-07 13:49:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-29 03:19:56 -04:00
|
|
|
|
2019-11-25 12:51:01 -05:00
|
|
|
div.poll.pie {
|
|
|
|
.poll-container {
|
2019-12-02 12:51:06 -05:00
|
|
|
width: calc(100% - 190px);
|
2019-11-25 12:51:01 -05:00
|
|
|
}
|
2020-08-06 11:57:06 -04:00
|
|
|
|
2019-11-25 12:51:01 -05:00
|
|
|
.poll-info {
|
|
|
|
display: inline-block;
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-29 03:19:56 -04:00
|
|
|
.d-editor-preview {
|
|
|
|
.poll-buttons {
|
|
|
|
a:not(:first-child) {
|
2018-08-27 16:53:35 -04:00
|
|
|
margin-left: 0.25em;
|
2016-07-29 03:19:56 -04:00
|
|
|
}
|
|
|
|
}
|
2016-07-29 04:15:52 -04:00
|
|
|
|
|
|
|
.poll {
|
|
|
|
li[data-poll-option-id]:before {
|
|
|
|
position: relative;
|
2018-08-27 16:53:35 -04:00
|
|
|
vertical-align: baseline;
|
2020-08-04 11:14:33 -04:00
|
|
|
border: 2px solid var(--primary);
|
2018-11-26 16:49:57 -05:00
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
content: "";
|
2016-07-29 04:15:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&[data-poll-type="multiple"] {
|
|
|
|
li[data-poll-option-id]:before {
|
2018-11-26 16:49:57 -05:00
|
|
|
border-radius: 3px;
|
2016-07-29 04:15:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-29 03:19:56 -04:00
|
|
|
}
|