diff --git a/TrxerConsole/Trxer.css b/TrxerConsole/Trxer.css
index dfede24..27be641 100644
--- a/TrxerConsole/Trxer.css
+++ b/TrxerConsole/Trxer.css
@@ -218,7 +218,7 @@ td.slowest {
}
.SummaryDiv {
- width: 90%;
+ width: 98%;
border-top: 1px solid #e5eff8;
border-right: 1px solid #e5eff8;
margin: 1em auto;
@@ -359,3 +359,12 @@ td.slowest {
.visibleRow {
visibility: visible;
}
+
+.wordwrap {
+ white-space: pre-wrap; /* css-3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+ word-break: break-all; /* Firefox */
+}
diff --git a/TrxerConsole/Trxer.xslt b/TrxerConsole/Trxer.xslt
index a181ae4..bc1a5a9 100644
--- a/TrxerConsole/Trxer.xslt
+++ b/TrxerConsole/Trxer.xslt
@@ -9,6 +9,7 @@
+
2);
+ }
+
+ public string ShortenText(string text)
+ {
+ var ret = new StringBuilder();
+ using (var reader = new StringReader(text))
+ {
+ var lines = 3;
+ for (var line = reader.ReadLine(); lines > 0 & line != null; --lines, line = reader.ReadLine())
+ {
+ ret.Append(line);
+ ret.Append("\n");
+ }
+ }
+ return ret.ToString();
+ }
]]>
@@ -494,7 +527,7 @@
-
+
↳
@@ -502,8 +535,56 @@
|
-
-
+ |
+
+ |
+
+
+
+
+
+
+
+
+ ↳
+
+ |
+
+
+
+
+ ↳
+
+ |
+
+
+
+
+ ↳
+
+
+
+
+
+ >
|
@@ -535,47 +616,45 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- Show Stacktrace
-
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
diff --git a/TrxerConsole/TrxerTable.css b/TrxerConsole/TrxerTable.css
index b74b7f4..7895170 100644
--- a/TrxerConsole/TrxerTable.css
+++ b/TrxerConsole/TrxerTable.css
@@ -10,7 +10,7 @@ img {
}
table {
- width: 90%;
+ width: 98%;
margin: 1em auto;
border-collapse: collapse;
border: 1px solid #a2caf2;
|