Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Unified Diff: runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html

Issue 237683004: Disable applyAuthorStyles (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html
diff --git a/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html b/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html
index 200dc426bedb4cc3663080dbb56de542c4802b68..faaaeb011e3bcdee4e3b5d2e6bc2c4138293bbe9 100644
--- a/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html
+++ b/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html
@@ -4,22 +4,14 @@
</head>
<polymer-element name="service-exception-view" extends="observatory-element">
<template>
+ <link rel="stylesheet" href="css/shared.css" />
<nav-bar>
<top-nav-menu last="{{ true }}"></top-nav-menu>
</nav-bar>
-
- <div class="row">
- <div class="col-md-8 col-md-offset-2">
- <div class="panel panel-danger">
- <div class="panel-heading">{{ exception.kind }}</div>
- <div class="panel-body">
- <p>{{ exception.message }}</p>
- </div>
- <div class="well">
- <p>{{ exception.response }}</p>
- </div>
- </div>
- </div>
+ <div class="content">
+ <h1>{{ exception.kind }}</h1>
+ <div class="well">{{ exception.message }}</div>
+ <div class="well">{{ exception.response }}</div>
</div>
</template>
<script type="application/dart" src="service_exception_view.dart"></script>

Powered by Google App Engine
This is Rietveld 408576698