| Index: runtime/observatory/lib/src/elements/nav_bar.html
|
| diff --git a/runtime/observatory/lib/src/elements/nav_bar.html b/runtime/observatory/lib/src/elements/nav_bar.html
|
| index 4299d0cbdcdffca68ba80263ac6cdf916bcf8fab..983f8afaea2ca21833857cdf49aa534154f3ef74 100644
|
| --- a/runtime/observatory/lib/src/elements/nav_bar.html
|
| +++ b/runtime/observatory/lib/src/elements/nav_bar.html
|
| @@ -386,7 +386,7 @@
|
| margin-top: 10px;
|
| margin-right: 10px;
|
| padding-right: 25px;
|
| - width: 250px;
|
| + width: 500px;
|
| color: #ddd;
|
| background: rgba(0,0,0,.6);
|
| border: solid 2px white;
|
| @@ -428,6 +428,9 @@
|
| a.boxclose:hover {
|
| background: rgba(255,255,255,0.5);
|
| }
|
| + .stacktrace {
|
| + white-space: pre
|
| + }
|
| </style>
|
| <template if="{{ isUnexpectedError }}">
|
| <!-- TODO(turnidge): Add a file-a-bug link to this notification -->
|
| @@ -436,7 +439,7 @@
|
| <div class="indent">{{ exception.toString() }}</div><br>
|
| <template if="{{ stacktrace != null }}">
|
| Stacktrace:<br><br>
|
| - <div class="indent">{{ stacktrace.toString() }}</div>
|
| + <div class="indent stacktrace">{{ stacktrace.toString() }}</div>
|
| <br>
|
| </template>
|
| [<a class="link" on-click="{{ goto }}"
|
|
|