diff options
author | Marc Englund <marc.englund@itmill.com> | 2008-01-04 08:41:08 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2008-01-04 08:41:08 +0000 |
commit | ec1f9cb27cca75d00dbec02d41ce96a64b952eef (patch) | |
tree | f96a843470016fcff3940951cb15efc963c1ee79 | |
parent | bed8f33134995faf2f5b146fb227ad7111300c96 (diff) | |
download | vaadin-framework-ec1f9cb27cca75d00dbec02d41ce96a64b952eef.tar.gz vaadin-framework-ec1f9cb27cca75d00dbec02d41ce96a64b952eef.zip |
added testingtools theme (css)
svn changeset:3359/svn branch:trunk
-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 |