Browse Source

Helios SUnit - Add css to color status in results pane

Ryan Simmons 10 years ago
parent
commit
55bfaffa0d
2 changed files with 25 additions and 0 deletions
  1. 9 0
      helios.css
  2. 16 0
      helios.less

+ 9 - 0
helios.css

@@ -305,6 +305,15 @@ body[id="helios"] .welcome button {
   height: auto;
   width: 150px;
 }
+body[id="helios"] .sunit.status.success {
+  background: #43d443;
+}
+body[id="helios"] .sunit.status.failure {
+  background: #ecd443;
+}
+body[id="helios"] .sunit.status.error {
+  background: #e56f3b;
+}
 body[id="helios"] .tool_container {
   position: absolute;
   top: 23px;

+ 16 - 0
helios.less

@@ -360,6 +360,22 @@ body[id="helios"] {
 			width: 150px;
 		}
 	}
+	
+	.sunit.status {
+		&.success {
+			background: #43d443;
+		}
+
+
+		&.failure {
+			background: #ecd443;
+		}
+
+
+		&.error {
+			background: #e56f3b;
+		}
+	}
 
 	.tool_container {
 		position: absolute;