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%;
|
2019-11-25 12:51:01 -05:00
|
|
|
border-right: 1px solid $primary-low;
|
2015-05-07 13:49:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.poll-buttons {
|
2018-08-03 17:43:07 -04:00
|
|
|
border-top: 1px solid $primary-low;
|
2019-02-05 04:47:22 -05:00
|
|
|
padding: 1em;
|
2015-05-07 13:49:06 -04:00
|
|
|
|
2018-11-19 08:50:00 -05:00
|
|
|
.info-text {
|
|
|
|
line-height: 2em;
|
|
|
|
}
|
|
|
|
|
2019-11-22 14:06:39 -05:00
|
|
|
:not(:first-child):not(:last-child) {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
2015-05-07 13:49:06 -04:00
|
|
|
.toggle-status {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-29 03:19:56 -04:00
|
|
|
|
2019-11-25 12:51:01 -05:00
|
|
|
div.poll.pie {
|
|
|
|
.poll-container {
|
|
|
|
width: calc(100% - 181px);
|
|
|
|
|
|
|
|
.poll-grouped-pie-container {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.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;
|
2018-11-26 16:49:57 -05:00
|
|
|
border: 2px solid $primary;
|
|
|
|
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
|
|
|
}
|