Browse Source

warns and errors differ in color (style)

svn changeset:3389/svn branch:trunk
tags/6.7.0.beta1
Marc Englund 16 years ago
parent
commit
5a1344a161
1 changed files with 14 additions and 3 deletions
  1. 14
    3
      WebContent/ITMILL/themes/testingtools/styles.css

+ 14
- 3
WebContent/ITMILL/themes/testingtools/styles.css View File

@@ -8,6 +8,9 @@
.resulttable TR.error {
background-color: #ffeeee;
}
.resulttable TR.warn {
background-color: #ffffee;
}
.resulttable TR.even {
background-color: #eeeeee;
}
@@ -22,6 +25,9 @@
.resulttable .error .line A {
color: red;
}
.resulttable .warn .line A {
color: green;
}
.resulttable .code {
white-space: nowrap;
@@ -29,8 +35,13 @@
border-right: 1px solid #cccccc;
padding: 3px 3px 3px 7px;
}
.resulttable .msg {
color: red;
.resulttable .msg {
padding: 5px 10px 5px 10px;
white-space: nowrap;
}
}
.resulttable .msg span {
color: green;
}
.resulttable .msg span.err {
color: red;
}

Loading…
Cancel
Save