Query boxes are bigger now

This commit is contained in:
Aphyr 2013-02-19 13:51:35 -08:00
parent 61e4c8ec70
commit 6eb4df1430
2 changed files with 7 additions and 2 deletions

View file

@ -50,8 +50,8 @@
Grid.prototype.editForm = function() {
return Mustache.render('<label for="title">Title</label>' +
'<input type="text" name="title" value="{{title}}" /><br />' +
'<label for="query">Query</label>' +
'<input type="text" name="query" value="{{query}}" /><br />' +
'<label for="query">Query</label><br />' +
'<textarea name="query" class="query">{{query}}</textarea><br />' +
'<label for="max">Max</label>' +
'<input type="text" name="max" value="{{max}}" /><br />' +
'<span class="desc">"all", "host", "service", or any number.</span>',

View file

@ -275,6 +275,11 @@ html,table {
cursor:pointer;
}
textarea.query {
width: 100%;
height: 100px;
}
.quickfit {
display: block;
white-space: nowrap;