mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Merge pull request #7130 from BigFunger/add-data-textareas
[add data] fixed styling of textarea controls on processor views
This commit is contained in:
commit
c44c492c4a
4 changed files with 6 additions and 8 deletions
|
@ -67,4 +67,8 @@ pipeline-setup {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
textarea.form-control {
|
||||
min-height: 150px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
processor-ui-geoip {
|
||||
textarea {
|
||||
display:block;
|
||||
height:150px;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.advanced-section {
|
||||
margin-top: 15px;
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue