Adds extra text to range input

EmailTemplateFixes
Denis Krienbühl 2012-01-31 12:27:40 +01:00
parent 25e85b3a80
commit f36c2ce220
2 changed files with 6 additions and 0 deletions

View File

@ -98,6 +98,11 @@ html, body {
margin-top: 5px;
}
.rangeinput span.help-block {
clear: left;
margin-left: 35px;
}
input.sending {
text-shadow: 0px 0px 5px white !important;
-webkit-transition: 0.3s linear all !important;

View File

@ -3,4 +3,5 @@
<input name="question_{{ question.number }}" type="range" min="{{ qdict.rmin }}" max="{{ qdict.rmax }}" step="{{ qdict.rstep }}" value="{{ qdict.current }}">
</div>
<label data-unit="{{ qdict.runit }}">{{ qdict.runit }}</label>
<span class="help-block">{{ question.extra }}</span>
</div>