diff options
-rw-r--r-- | WebContent/ITMILL/themes/testingtools/styles.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/WebContent/ITMILL/themes/testingtools/styles.css b/WebContent/ITMILL/themes/testingtools/styles.css new file mode 100644 index 0000000000..9a6207421a --- /dev/null +++ b/WebContent/ITMILL/themes/testingtools/styles.css @@ -0,0 +1,35 @@ +.resulttable {
+ border-collapse: collapse;
+ border-spacing: 0px;
+ margin: 0px 0px 0px 0px;
+ width: 100%;
+}
+.resulttable TR.error {
+ background-color: #ffeeee;
+}
+.resulttable TR.even {
+ background-color: #eeeeee;
+}
+.resulttable .line {
+ text-align: right;
+ border-right: 1px solid #cccccc;
+}
+.resulttable .line A {
+ color: #666666;
+ text-decoration: none;
+}
+.resulttable .error .line A {
+ color: red;
+}
+
+.resulttable .code {
+ white-space: nowrap;
+ font-family: monospace;
+ border-right: 1px solid #cccccc;
+ padding: 3px 3px 3px 7px;
+}
+.resulttable .msg {
+ color: red;
+ padding: 5px 10px 5px 10px;
+ white-space: nowrap;
+}
\ No newline at end of file |