diaspora/app/assets/stylesheets/poll.scss
2017-08-26 03:16:05 +02:00

66 lines
1 KiB
SCSS

.poll_form {
border-bottom: 1px solid $border-grey;
border-top: 1px solid $border-grey;
margin: 10px 0;
padding: 10px 0 5px;
.toggle-result-wrapper {
display: inline-block;
margin-top: 10px;
}
form {
margin-bottom: 0;
}
.progress {
background-image: none;
box-shadow: 0 0 0;
height: 10px;
margin-bottom: 5px;
clear: both;
.bar {
background: $border-dark-grey none;
color: $text-dark-grey;
height: 100%;
text-align: left;
}
.users-vote {
background-color: $brand-primary;
}
}
.submit[disabled] {
color: $text-grey;
cursor: default;
&:hover,
&:active {
background-image: none;
}
}
}
.poll-content {
margin-top: 5px;
[type=radio],
label {
font-weight: normal;
margin-bottom: 5px;
vertical-align: middle;
display: inline;
}
[type=radio],
form .poll-result,
form .progress {
display: none; // Hide the result by default when the vote is possible
}
form [type=radio] {
display: inline;
}
}