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

129 lines
1.9 KiB
SCSS
Raw Normal View History

2015-05-05 04:29:45 +08:00
$border-color: rgb(219,219,219);
$text-color: #9E9E9E;
$option-background: dark-light-diff($primary, $secondary, 90%, -65%);
div.poll {
margin: 10px 0px;
2015-05-08 17:13:32 +08:00
border: 1px solid $border-color;
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;
font-size: 15px;
margin-bottom: 10px;
}
li[data-poll-option-id] {
color: $primary;
padding: .5em .7em .7em .5em;
}
.button {
display: inline-block;
padding: 6px 12px;
margin-right: 5px;
text-align: center;
cursor: pointer;
color: $primary;
background: dark-light-diff($primary, $secondary, 90%, -65%);
&:hover {
background: dark-light-diff($primary, $secondary, 65%, -75%);
color: #fff;
}
}
2015-05-05 04:29:45 +08:00
.poll-info {
color: $text-color;
text-align: center;
vertical-align: middle;
.info-number {
font-size: 3.5em;
}
.info-text {
font-size: 1.7em;
}
}
.poll-container {
2015-05-05 04:29:45 +08:00
vertical-align: middle;
padding: 10px;
2016-06-09 21:33:17 +08:00
.poll-results-number-rating {
2015-05-05 04:29:45 +08:00
font-size: 2em;
}
}
.poll-buttons {
2015-05-06 02:14:38 +08:00
button {
float: none;
}
}
2016-06-07 18:55:01 +08:00
.poll-voters-list {
li {
display: inline;
}
2017-01-13 06:16:39 +08:00
margin-top: 4px;
2016-06-07 18:55:01 +08:00
}
.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 {
.option {
padding-bottom: 5px;
p {
margin: 0;
}
}
.percentage {
2016-06-22 08:01:23 +08:00
font-size: 20px;
float: right;
2015-05-05 04:29:45 +08:00
color: $text-color;
2016-06-22 08:01:23 +08:00
margin-left: 5px;
}
.bar-back {
background: $option-background;
}
.bar {
height: 10px;
2017-01-25 11:56:39 +08:00
background: dark-light-diff($primary, $secondary, 50%, -25%);;
}
.chosen .bar {
background: $tertiary;
}
}
&[data-poll-type="number"] {
2016-06-07 18:55:01 +08:00
li[data-poll-option-id] {
display: inline-block;
2016-07-29 10:30:38 +08:00
width: 45px;
2016-06-07 18:55:01 +08:00
margin-right: 5px;
}
}
}