[Bps-public-commit] SD - A distributed issue tracker branch, master, updated. 46a04e47e42fd5b370ef94b3a6991e981a96b6e3
jesse
jesse at bestpractical.com
Mon Feb 2 01:23:57 EST 2009
The branch, master has been updated
via 46a04e47e42fd5b370ef94b3a6991e981a96b6e3 (commit)
from e9fcb48e4085fb20c2ef81c279e2f97fc2cbbbe6 (commit)
Summary of changes:
lib/App/SD/Server/View.pm | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 46a04e47e42fd5b370ef94b3a6991e981a96b6e3
Author: Jesse Vincent <jesse at bestpractical.com>
Date: Mon Feb 2 01:23:46 2009 -0500
Fix ordering of status component milestone
diff --git a/lib/App/SD/Server/View.pm b/lib/App/SD/Server/View.pm
index db80b1e..ba0068d 100644
--- a/lib/App/SD/Server/View.pm
+++ b/lib/App/SD/Server/View.pm
@@ -91,6 +91,7 @@ h1 {
padding-top:0.3em;
padding-left: 70px;
padding-bottom: 0.3em;
+ padding-right: 0.25em;
margin-bottom: 2.5em;
background-color: #666;
color: #fff;
@@ -337,6 +338,7 @@ width: 100%;
}
.other-props {
+ margin-top: 0;
padding-top: 0em;
}
@@ -349,6 +351,10 @@ width: 100%;
width: 40%;
}
+.other-props .widget input {
+ width: 13em;
+}
+
ul.page-nav {
position: absolute;
top: 0;
@@ -984,7 +990,8 @@ private template 'ticket_basics' => sub {
label { 'UUID' };
div { { class is 'value uuid'}; $ticket->uuid; }
};
- for my $key (@BASIC_PROPS, (sort keys %props)) {
+ for my $key (qw'status component milestone',
+ @BASIC_PROPS, (sort keys %props)) {
next unless defined $props{$key};
next if ($key eq 'summary');
next if ($key =~ /.{8}-.{4}-.{4}-.{12}-id/);
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list