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

Unified Diff: runtime/bin/vmstats/vmstats.css

Issue 12377099: Added support for "bin-ified" vmstats web app source files (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Made model data immutable Created 7 years, 10 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/vmstats/vmstats.css
===================================================================
--- runtime/bin/vmstats/vmstats.css (revision 0)
+++ runtime/bin/vmstats/vmstats.css (revision 0)
@@ -0,0 +1,46 @@
+
+body {
+ background-color: #F8F8F8;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1.2em;
+ margin: 15px;
+}
+
+h1, p {
+ color: #333;
+}
+
+#vmstats {
+ width: 100%;
+ height: 500px;
+ position: relative;
+ border: 1px solid #ccc;
+ background-color: #fff;
+ padding: 10px;
+}
+
+#dashboard {
+ font-size: 12pt;
+ text-align: left;
+ margin: 20px;
+}
+
+#graph {
+ font-size: 12pt;
+ text-align: left;
+}
+
+.isolate_list {
+ font-family: 'Open Sans', sans-serif;
+ font-size: 14px;
+}
+
+.isolate_details {
+ visibility:visible;
+}
+
+.isolate_details_hidden {
+ visibility:hidden;
+}

Powered by Google App Engine
This is Rietveld 408576698