FIX: add borders on polls on mobile

This commit is contained in:
Régis Hanol 2015-05-08 11:13:32 +02:00
parent 46606cd818
commit c2ffe255c3
3 changed files with 6 additions and 4 deletions

View File

@ -7,6 +7,8 @@ $option-shadow: dark-light-diff($option-background, $primary, 10%, -10%);
div.poll { div.poll {
border: 1px solid $border-color;
ul, ol { ul, ol {
margin: 0; margin: 0;
padding: 0; padding: 0;
@ -83,8 +85,6 @@ div.poll {
} }
.poll-buttons { .poll-buttons {
padding: 10px;
button { button {
float: none; float: none;
} }

View File

@ -1,6 +1,5 @@
div.poll { div.poll {
display: table; display: table;
border: 1px solid $border-color;
width: 500px; width: 500px;
max-width: 500px; max-width: 500px;
@ -26,6 +25,7 @@ div.poll {
.poll-buttons { .poll-buttons {
border-top: 1px solid $border-color; border-top: 1px solid $border-color;
padding: 10px;
.toggle-status { .toggle-status {
float: right; float: right;

View File

@ -1,7 +1,9 @@
div.poll { div.poll {
.poll-buttons { .poll-buttons {
padding: 0 5px 5px 5px;
button { button {
margin: 3px 0; margin: 4px 2px;
} }
} }
} }