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

Unified Diff: tools/profviz/profviz.css

Issue 17620008: Include statistical profile into profviz. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: small tweak Created 7 years, 6 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 | « tools/profviz/composer.js ('k') | tools/profviz/profviz.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/profviz/profviz.css
diff --git a/tools/profviz/profviz.css b/tools/profviz/profviz.css
index 4042f15aaa35765a30fd69a1eace7d6b11943aad..c583b8943c7635e8662626324a7f89a549743f44 100644
--- a/tools/profviz/profviz.css
+++ b/tools/profviz/profviz.css
@@ -31,40 +31,75 @@ body {
}
#content {
- background-color: #fff;
+ background-color: #fff;
Jakob Kummerow 2013/07/02 15:30:33 Good catch! This was a serious bug.
width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 25px;
}
-textarea.log {
- font-family: monospace;
+textarea {
width: 1200px;
- background-color: #ffe;
- color: #000;
resize: none;
+ font-family: monospace;
+ font-size: 12px;
+ color: #000;
+ border: 1px dotted #aaa;
+ padding: 10px;
+ box-sizing: border-box;
}
-button#start {
- width: 100px;
+textarea.log {
+ background-color: #ffe;
}
-button#reset {
+.display {
+ width: 1200px;
+ height: 600px;
+ background-color: #fff;
+ display: block;
+ box-sizing: border-box;
+}
+
+table {
+ width: 1200px;
+}
+
+button {
width: 100px;
+ height: 20px;
+ border: 1px solid #000;
+ border-color: #aaa;
+ font-family: Verdana;
+ font-size: 12px;
+ background-color: #ddd;
+}
+
+button:hover {
+ background-color: #eee;
+}
+
+#file {
+ width: 200px;
+ height: 20px;
+ border: none;
+ font-family: Verdana;
+ font-size: 12px;
}
input.range {
- width: 80px;
+ width: 70px;
+ height: 16px;
text-align: right;
padding-right: 5px;
-}
-
-table {
- width: 1200px;
+ border: 0px;
+ background-color: #eee;
+ font-family: Verdana;
+ font-size: 12px;
}
label {
+ height: 20px;
font-family: Verdana;
font-size: 12px;
}
@@ -96,3 +131,8 @@ a {
text-decoration: none;
color: #282;
}
+
+a.unroll {
+ border-bottom: 1px dotted #000;
+ color: #222;
+}
« no previous file with comments | « tools/profviz/composer.js ('k') | tools/profviz/profviz.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698