diff options
author | Camil Staps | 2015-02-24 10:05:54 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-24 10:05:54 +0100 |
commit | 8e18237679adb5ddfdcb469e1c483dcb1c065575 (patch) | |
tree | c9519ee4fa2041c4246812dfea43e854cacc843d | |
parent | Fix multipage invoices (diff) |
Fix for long contact names in currently active offers
-rw-r--r-- | include/home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/home.php b/include/home.php index 0be5f7e..219c205 100644 --- a/include/home.php +++ b/include/home.php @@ -141,7 +141,7 @@ require('header.php'); krsort($list, SORT_STRING); foreach ($list as $item) { echo "<p>#{$item['id']} to {$item['contactClientName']} ({$item['start']} - {$item['end']})<span class='pull-right text-muted'>{$item['percentage']}% complete</span></p> - <div class='progress progress-striped active'> + <div class='progress progress-striped active' style='clear:both;'> <div class='progress-bar progress-bar-".($item['percentage'] < 60 ? 'info' : ($item['percentage'] < 80 ? 'warning' : 'danger'))."' style='width:{$item['percentage']}%;' aria-valuemax='100' aria-valuemin='0' aria-valuenow='{$item['percentage']}' role='progressbar'></div> </div>"; } |