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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/profviz/composer.js ('k') | tools/profviz/profviz.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright 2013 the V8 project authors. All rights reserved. 2 Copyright 2013 the V8 project authors. All rights reserved.
3 3
4 Redistribution and use in source and binary forms, with or without 4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are 5 modification, are permitted provided that the following conditions are
6 met: 6 met:
7 * Redistributions of source code must retain the above copyright 7 * Redistributions of source code must retain the above copyright
8 notice, this list of conditions and the following disclaimer. 8 notice, this list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above 9 * Redistributions in binary form must reproduce the above
10 copyright notice, this list of conditions and the following 10 copyright notice, this list of conditions and the following
(...skipping 13 matching lines...) Expand all
24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 body { 29 body {
30 background-color: #ddd; 30 background-color: #ddd;
31 } 31 }
32 32
33 #content { 33 #content {
34 » background-color: #fff; 34 background-color: #fff;
Jakob Kummerow 2013/07/02 15:30:33 Good catch! This was a serious bug.
35 width: 1200px; 35 width: 1200px;
36 margin-left: auto; 36 margin-left: auto;
37 margin-right: auto; 37 margin-right: auto;
38 padding: 25px; 38 padding: 25px;
39 } 39 }
40 40
41 textarea.log { 41 textarea {
42 width: 1200px;
43 resize: none;
42 font-family: monospace; 44 font-family: monospace;
43 width: 1200px; 45 font-size: 12px;
44 background-color: #ffe; 46 color: #000;
45 color: #000; 47 border: 1px dotted #aaa;
46 resize: none; 48 padding: 10px;
49 box-sizing: border-box;
47 } 50 }
48 51
49 button#start { 52 textarea.log {
50 width: 100px; 53 background-color: #ffe;
51 } 54 }
52 55
53 button#reset { 56 .display {
54 width: 100px; 57 width: 1200px;
55 } 58 height: 600px;
56 59 background-color: #fff;
57 input.range { 60 display: block;
58 width: 80px; 61 box-sizing: border-box;
59 text-align: right;
60 padding-right: 5px;
61 } 62 }
62 63
63 table { 64 table {
64 width: 1200px; 65 width: 1200px;
65 } 66 }
66 67
67 label { 68 button {
69 width: 100px;
70 height: 20px;
71 border: 1px solid #000;
72 border-color: #aaa;
73 font-family: Verdana;
74 font-size: 12px;
75 background-color: #ddd;
76 }
77
78 button:hover {
79 background-color: #eee;
80 }
81
82 #file {
83 width: 200px;
84 height: 20px;
85 border: none;
68 font-family: Verdana; 86 font-family: Verdana;
69 font-size: 12px; 87 font-size: 12px;
70 } 88 }
89
90 input.range {
91 width: 70px;
92 height: 16px;
93 text-align: right;
94 padding-right: 5px;
95 border: 0px;
96 background-color: #eee;
97 font-family: Verdana;
98 font-size: 12px;
99 }
100
101 label {
102 height: 20px;
103 font-family: Verdana;
104 font-size: 12px;
105 }
71 106
72 .tooltip { 107 .tooltip {
73 border-bottom: 1px dotted #000; 108 border-bottom: 1px dotted #000;
74 } 109 }
75 110
76 h1 { 111 h1 {
77 font-family: Verdana; 112 font-family: Verdana;
78 font-size: 14px; 113 font-size: 14px;
79 font-weight: bold; 114 font-weight: bold;
80 } 115 }
81 116
82 .text { 117 .text {
83 font-family: Verdana; 118 font-family: Verdana;
84 font-size: 12px; 119 font-size: 12px;
85 } 120 }
86 121
87 .tt { 122 .tt {
88 font-family: monospace; 123 font-family: monospace;
89 font-size: 12px; 124 font-size: 12px;
90 color: #822; 125 color: #822;
91 } 126 }
92 127
93 a { 128 a {
94 font-family: Verdana; 129 font-family: Verdana;
95 font-size: 12px; 130 font-size: 12px;
96 text-decoration: none; 131 text-decoration: none;
97 color: #282; 132 color: #282;
98 } 133 }
134
135 a.unroll {
136 border-bottom: 1px dotted #000;
137 color: #222;
138 }
OLDNEW
« 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