Add some more status matching

This is broadly taken from [1] which does similar matching to colorise
the status in Zuul.  This should cover all the status values.

[1] https://opendev.org/zuul/zuul/src/branch/master/web/src/containers/build/Misc.jsx

Change-Id: I2712b276ee9d4a8fb9f5fdabd26860356649a273
diff --git a/zuul-results-summary/zuul-results-summary.js b/zuul-results-summary/zuul-results-summary.js
index ec92202..af6ca8f 100644
--- a/zuul-results-summary/zuul-results-summary.js
+++ b/zuul-results-summary/zuul-results-summary.js
@@ -77,9 +77,41 @@
       color: red;
     }
 
+    .status-RETRY_LIMIT {
+      color: red;
+    }
+
+    .status-SKIPPED {
+      color: #73bcf7;
+    }
+
+    .status-ABORTED {
+      color: orange;
+    }
+
+    .status-MERGER_FAILURE {
+      color: orange;
+    }
+
     .status-NODE_FAILURE {
       color: orange;
     }
+
+    .status-TIMED_OUT {
+      color: ornage;
+    }
+
+    .status-POST_FAILURE {
+      color: orange;
+    }
+
+    .status-CONFIG_ERROR {
+      color: orange;
+    }
+
+    .status-DISK_FULL {
+      color: orange;
+    }
   </style>
 
   <template is="dom-repeat" items="[[__table]]">