소스 검색

Helios SUnit - Add css to color status in results pane

Ryan Simmons 11 년 전
부모
커밋
55bfaffa0d
2개의 변경된 파일25개의 추가작업 그리고 0개의 파일을 삭제
  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;