FIX: Do not cut off long polls (#12854)
Some polls with images can be very long. Those which showed a pie chart for the results had a fixed height set, which meant that some long polls could be cut off.
This commit is contained in:
parent
e6329d3007
commit
8636292a40
|
@ -161,9 +161,6 @@ div.poll {
|
||||||
div.poll.pie {
|
div.poll.pie {
|
||||||
.poll-container {
|
.poll-container {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 340px;
|
|
||||||
max-height: 340px;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
}
|
||||||
.poll-info {
|
.poll-info {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
Loading…
Reference in New Issue