summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--public/css/style.css9
-rw-r--r--views/project/index.tt2
2 files changed, 9 insertions, 2 deletions
diff --git a/public/css/style.css b/public/css/style.css
index 6891697..0e7ce42 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -205,6 +205,7 @@ margin-top:.5em;
 padding:0 .5em .5em .5em;
 background:#eaf2f5;
 overflow:hidden;
+font-family:Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace;
 }
 
 .display_test_result {
@@ -221,10 +222,16 @@ float: right;
 }
 
 .git {
-width:18em;padding:.8em 0 .8em 1.2em;border-left:1px solid #bedce7;color:#808080;font-family:Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace;font-size:.85em;line-height:1.5em;
+width:18em;padding:.8em 0 .8em 1.2em;border-left:1px solid #bedce7;color:#808080;;font-size:.85em;line-height:1.5em;
 }
 
 .message {
 font-family:Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace;   
 }
 .message pre{white-space:pre-wrap;word-wrap:break-word;width:40em;}
+
+.commit .name{clear:left;margin-top:.75em;line-height:1.5em}
+.commit .date{color:#888;line-height:1em;}
+.commit .builds span {font-size:110%;font-weight: bolder;}
+.commit .builds span .PASS {color:red}
+.commit .builds span .FAILED{color:red}
diff --git a/views/project/index.tt b/views/project/index.tt
index 0809b7e..5ec18dc 100644
--- a/views/project/index.tt
+++ b/views/project/index.tt
@@ -17,7 +17,7 @@
             <div class="date"><: $build.timestamp :></div>
             <div class="builds">
                 :for $build.version.keys() -> $version {
-                    <a href="<: $uri_base :>/api/build/<: $project :>/<: $build.commit :>/<: $version :>"><: $version :></a> <: $build.version[$version] :>
+                    <a href="<: $uri_base :>/api/build/<: $project :>/<: $build.commit :>/<: $version :>"><: $version :></a> <span class="<: $build.version[$version] :>"><: $build.version[$version] :></span>
                 :}
             </div>
         </div>