Merge pull request #7130 from BigFunger/add-data-textareas

[add data] fixed styling of textarea controls on processor views
This commit is contained in:
Jim Unger 2016-05-05 09:06:31 -05:00
commit c44c492c4a
4 changed files with 6 additions and 8 deletions

View file

@ -67,4 +67,8 @@ pipeline-setup {
}
}
}
textarea.form-control {
min-height: 150px;
}
}

View file

@ -1,10 +1,4 @@
processor-ui-geoip {
textarea {
display:block;
height:150px;
width:100%;
}
.advanced-section {
margin-top: 15px;

View file

@ -4,5 +4,5 @@
</div>
<div class="form-group">
<label>Values:</label><span> (line delimited)</span>
<textarea ng-model="values" style="display:block; width:100%; height:150px;"></textarea>
<textarea ng-model="values" class="form-control"></textarea>
</div>

View file

@ -36,7 +36,7 @@
</div>
<div class="form-group">
<label>Data Fields:</label><span> (line delimited)</span>
<textarea ng-model="databaseFields"></textarea>
<textarea ng-model="databaseFields" class="form-control"></textarea>
</div>
</div>
</div>