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

45 lines
625 B
SCSS
Raw Normal View History

2015-05-07 13:49:06 -04:00
div.poll {
display: table;
min-width: 500px;
width: 100%;
box-sizing: border-box;
2015-05-07 13:49:06 -04:00
.poll-info {
min-width: 150px;
width: 100%;
2015-05-07 13:49:06 -04:00
display: table-cell;
border-left: 1px solid $border-color;
p {
margin: 40px 20px;
}
.info-text {
display: block;
}
}
.poll-container {
display: table-cell;
min-width: 330px;
width: 100%;
2015-05-07 13:49:06 -04:00
}
.poll-buttons {
border-top: 1px solid $border-color;
2015-05-08 05:13:32 -04:00
padding: 10px;
2015-05-07 13:49:06 -04:00
.toggle-status {
float: right;
}
}
}
.d-editor-preview {
.poll-buttons {
a:not(:first-child) {
margin-left: 5px;
}
}
}