added styling to textarea field

This commit is contained in:
David Baldwynn 2016-05-31 18:27:56 -07:00
parent 6eb897d775
commit b2f10f50e1

View file

@ -14,7 +14,7 @@
</p>
</div>
<div class="col-xs-12 field-input">
<small style="color:darkgrey;">Press SHIFT+ENTER to add a newline</small>
<small style="font-size:0.6em;">Press SHIFT+ENTER to add a newline</small>
<textarea class="textarea focusOn" type="text"
ng-model="field.fieldValue"
ng-model-options="{ debounce: 250 }"
@ -23,7 +23,8 @@
ng-required="field.required"
ng-disabled="field.disabled"
ng-focus="setActiveField(field._id, index, true)"
on-enter-key="nextField()">
on-enter-key="nextField()"
style="border: none; border-left: lightgrey dashed 2px;">
</textarea>
</div>
</div>