discourse/plugins/poll/assets/stylesheets/common/poll.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

197 lines
3.0 KiB
SCSS
Raw Normal View History

div.poll {
2018-08-28 04:53:35 +08:00
margin: 1em 0;
2018-08-04 05:43:07 +08:00
border: 1px solid $primary-low;
2015-05-08 17:13:32 +08:00
2015-07-31 18:42:19 +08:00
@include unselectable;
ul,
ol {
margin: 0;
padding: 0;
list-style: none;
display: inline-block;
2015-05-05 04:29:45 +08:00
width: 100%;
}
li {
cursor: pointer;
2018-08-28 04:53:35 +08:00
font-size: $font-up-1;
}
li[data-poll-option-id] {
color: $primary;
padding: 0.5em 0;
word-break: break-word;
}
img {
// needed to override internal styles in image-sizing hack
max-width: 100% !important;
height: auto;
}
2015-05-05 04:29:45 +08:00
.poll-info {
2018-08-04 05:43:07 +08:00
color: $primary-medium;
2015-05-05 04:29:45 +08:00
vertical-align: middle;
2018-08-28 04:53:35 +08:00
padding: 1em 0;
2015-05-05 04:29:45 +08:00
.info-label {
font-size: $font-up-4;
2018-08-28 04:53:35 +08:00
line-height: $line-height-medium;
2015-05-05 04:29:45 +08:00
}
.info-text {
margin: 0.25em 0;
display: block;
}
2015-05-05 04:29:45 +08:00
}
.poll-container {
2015-05-05 04:29:45 +08:00
vertical-align: middle;
padding: 0.5em 1em;
2015-05-05 04:29:45 +08:00
2016-06-09 21:33:17 +08:00
.poll-results-number-rating {
font-size: $font-up-5;
2015-05-05 04:29:45 +08:00
}
}
.poll-buttons {
.info-text {
margin: 0.25em 0;
2018-08-04 05:43:07 +08:00
color: $primary-medium;
}
2019-03-07 09:27:40 +08:00
.info-text + .info-text,
button + .info-text {
margin-left: 0.5em;
}
}
.poll-voters:not(:empty) {
margin-bottom: 0.25em;
2016-06-07 18:55:01 +08:00
li {
display: inline;
}
}
.poll-voters-toggle-expand {
2016-06-09 21:33:17 +08:00
width: 100%;
2016-06-07 18:55:01 +08:00
text-align: center;
}
.results {
2018-08-29 21:11:03 +08:00
> li {
cursor: default;
padding: 0.25em 0;
&:last-child {
padding-bottom: 0;
}
2018-08-28 04:53:35 +08:00
}
.option {
p {
margin: 0;
}
}
.percentage {
float: right;
2018-08-04 05:43:07 +08:00
color: $primary-medium;
2018-08-28 04:53:35 +08:00
margin-left: 0.25em;
}
.bar-back {
2018-08-04 05:43:07 +08:00
background: $primary-low;
}
.bar {
2018-08-28 04:53:35 +08:00
height: 0.75em;
2018-08-04 05:43:07 +08:00
background: $primary-medium;
2017-01-25 11:56:39 +08:00
}
.chosen .bar {
background: $tertiary;
}
}
&[data-poll-type="number"] {
2016-06-07 18:55:01 +08:00
li[data-poll-option-id] {
display: inline-block;
2018-08-28 04:53:35 +08:00
width: 3.25em;
margin-right: 0.25em;
}
}
.pie-chart-legends {
text-align: center;
margin: 10px 0;
.legend {
display: inline-block;
margin: 4px 0 4px 14px;
.swatch {
display: inline-block;
width: 24px;
height: 12px;
margin-right: 4px;
}
}
}
.poll-grouped-pies-controls {
display: flex;
justify-content: space-between;
}
.poll-results-chart {
height: 310px;
overflow-y: auto;
overflow-x: hidden;
}
.poll-group-by-toggle {
margin-bottom: 10px;
}
.poll-group-by-selector {
height: 30px;
}
.poll-grouped-pie-container {
display: inline-block;
position: relative;
padding: 15px 0;
.poll-pie-label {
display: block;
text-align: center;
}
}
}
div.poll.pie {
.poll-container {
display: inline-block;
height: 310px;
max-height: 310px;
overflow-y: auto;
.poll-grouped-pie-container {
width: 50%;
}
}
.poll-info {
display: inline-block;
width: 150px;
}
}
// hides 0 vote count in crawler and print view
body.crawler {
.poll {
.poll-info,
.poll-button {
display: none;
}
}
}