summaryrefslogtreecommitdiffstats
path: root/App/pages
diff options
context:
space:
mode:
authorHannes Kindströmmer <me@brolaugh.com>2016-05-23 13:39:07 +0200
committerHannes Kindströmmer <me@brolaugh.com>2016-05-23 13:39:07 +0200
commit77206bbc86df48700322ec59f7ce006af34c94b5 (patch)
tree3cb9c7f83863ac6e8eb4f126f73cfc2318d78897 /App/pages
parent6397948d18f95412cf626f1bb469b446f3b58dda (diff)
downloadtasklist-php-master.zip
tasklist-php-master.tar.gz
tasklist-php-master.tar.bz2
Fixed filter for when task changes to statusHEADorigin/masterorigin/HEADmaster
Fixed filter for when task changes to status to one that is hidden via the filter.
Diffstat (limited to 'App/pages')
-rw-r--r--App/pages/dashboard.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/App/pages/dashboard.php b/App/pages/dashboard.php
index 31aafc4..e4420eb 100644
--- a/App/pages/dashboard.php
+++ b/App/pages/dashboard.php
@@ -45,20 +45,20 @@
<form class="form-horizontal" action="javascript:addTask()" method="post">
<fieldset>
<div class="form-group">
- <label for="tasktitle" class="control-label col-md-2">Uppgift</label>
+ <label for="tasktitle" class="control-label col-md-2 text-primary">Uppgift</label>
<div class="col-md-10">
<input type="text" name="tasktitle" id="tasktitle" placeholder="Uppgiftstitel" class="form-control" required="required">
</div>
</div>
<div class="form-group">
- <label for="taskbody" class="control-label col-md-2">Detalj</label>
+ <label for="taskbody" class="control-label col-md-2 text-primary">Detalj</label>
<div class="col-md-10">
- <textarea name="taskbody" id="taskbody" rows="5" class="col-md-10 col-sm-10 col-xs-12 form-control"
+ <textarea name="taskbody" id="taskbody" rows="2" style="height: auto" class="col-md-10 col-sm-10 col-xs-12 form-control"
placeholder="Detaljer"></textarea>
</div>
</div>
<div class="form-group">
- <label for="person" class="control-label col-md-2">Person</label>
+ <label for="person" class="control-label col-md-2 text-primary">Person</label>
<div class="col-md-10">
<input type="text" name="taskperson" id="taskperson" placeholder="Person" class="form-control" required="required">
</div>