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

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

Issue 2299893003: Converted Observatory logging-page element (Closed)
Patch Set: Updated observatory_sources.gypi Created 4 years, 3 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
« no previous file with comments | « runtime/observatory/lib/src/app/page.dart ('k') | runtime/observatory/lib/src/elements/logging.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ffd0c9840046c3f2418aadae66f1b3b3d35bacec..2fd18b38fe31c46b8ae0bb11c6639cd22762d560 100644
--- a/runtime/observatory/lib/src/elements/css/shared.css
+++ b/runtime/observatory/lib/src/elements/css/shared.css
@@ -1200,6 +1200,54 @@ library-ref-wrapped > a[href] {
color: white;
}
+/* logging-list */
+
+logging-list .outlined {
+ -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
+ -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
+ box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
+ margin: 4px;
+}
+logging-list .logItem {
+ display: inline-block;
+ font: normal 14px consolas, courier, monospace;
+ white-space: pre;
+ line-height: 125%;
+ width: 100%;
+}
+logging-list .level {
+ display: inline-block;
+ width: 5em;
+}
+logging-list .time {
+ display: inline-block;
+ width: 12em;
+}
+logging-list .FINEST {
+ background-color: #FAFAFA;
+}
+logging-list .FINER {
+ background-color: #ECEFF1;
+}
+logging-list .FINE {
+ background-color: #EFEBE9;
+}
+logging-list .CONFIG {
+ background-color: #FFF3E0;
+}
+logging-list .INFO {
+ background-color: #F1F8E9;
+}
+logging-list .WARNING {
+ background-color: #FFE0B2;
+}
+logging-list .SEVERE {
+ background-color: #FFCCBC;
+}
+logging-list .SHOUT {
+ background-color: #FFCDD2;
+}
+
/* megamorphic-cache-ref */
/* TODO(cbernaschina) fix megamorphic-cache-ref-wrapped to megamorphic-cache-ref
when wrapper removed */
« no previous file with comments | « runtime/observatory/lib/src/app/page.dart ('k') | runtime/observatory/lib/src/elements/logging.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698