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

Unified Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2217723004: Converted Observatory isolate-summary element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed patch file Created 4 years, 4 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/observatory/lib/src/elements/css/shared.css
diff --git a/runtime/observatory/lib/src/elements/css/shared.css b/runtime/observatory/lib/src/elements/css/shared.css
index 798efe14443d852c7c337e5e65510f4e8fdc0c91..38f6cb072d633c7d96db51485e06c4dda63fd3aa 100644
--- a/runtime/observatory/lib/src/elements/css/shared.css
+++ b/runtime/observatory/lib/src/elements/css/shared.css
@@ -61,12 +61,12 @@ h1 {
white-space: nowrap;
}
-a {
+a[href] {
color: #0489c3;
text-decoration: none;
}
-a:hover {
+a[href]:hover {
text-decoration: underline;
}
@@ -461,6 +461,30 @@ function-ref-wrapped > a[href] {
text-decoration: none;
}
+/* isolate-counter-chart */
+
+isolate-counter-chart {
+ display: block;
+ position: relative;
+ height: 300px;
+ min-width: 350px;
+}
+isolate-counter-chart > div.host {
+ position: absolute;
+ left: 0;
+ bottom: 20px;
+ top: 5px;
+ right: 250px;
+}
+isolate-counter-chart > div.legend {
+ position: absolute;
+ width: 250px;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ overflow-y: auto;
+}
+
/* isolate-reconnect */
isolate-reconnect div.doubleSpaced {
@@ -479,6 +503,38 @@ isolate-ref-wrapped > a[href] {
text-decoration: none;
}
+/* isolate-shared-summary */
+/* TODO(cbernaschina) fix isolate-shared-summary-wrapped
+to isolate-shared-summary when wrapper removed */
+
+isolate-shared-summary,
+isolate-shared-summary-wrapped {
+ display: block;
+ height: 300px;
+ position: relative;
+}
+isolate-shared-summary-wrapped > .menu {
+ float: right;
+ top: 0;
+ right: 0;
+}
+isolate-shared-summary-wrapped > isolate-counter-chart {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 230px;
+ clear: both;
+}
+isolate-shared-summary-wrapped .errorBox {
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+ padding: 2em;
+ font-family: consolas, courier, monospace;
+ font-size: 1em;
+ line-height: 1.2em;
+ white-space: pre;
+}
+
/* library-ref */
/* TODO(cbernaschina) fix library-ref-wrapped to library-ref when wrapper
removed */
« no previous file with comments | « runtime/observatory/lib/models.dart ('k') | runtime/observatory/lib/src/elements/isolate/counter_chart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698