mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 01:33:49 +08:00
49 lines
600 B
SCSS
49 lines
600 B
SCSS
.poll-ui-builder-form {
|
|
margin: 0;
|
|
|
|
label {
|
|
font-weight: bold;
|
|
display: inline;
|
|
}
|
|
|
|
.tip {
|
|
display: block;
|
|
min-height: 20px;
|
|
}
|
|
|
|
.input-group-label {
|
|
display: inline-block;
|
|
width: 45px;
|
|
}
|
|
|
|
.poll-number {
|
|
margin: 8px 0;
|
|
|
|
.tip {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
input {
|
|
width: 70px;
|
|
}
|
|
|
|
input + .tip {
|
|
margin-top: 4px;
|
|
}
|
|
}
|
|
|
|
.poll-textarea textarea {
|
|
width: 100%;
|
|
height: 90px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.poll-select + .poll-textarea {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.poll-checkbox {
|
|
margin-top: 4px;
|
|
}
|
|
}
|