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

Side by Side Diff: tools/turbolizer/turbo-visualizer.css

Issue 729913004: Add a html-based visualizer for TurboFan graphs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 4 years, 7 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
« no previous file with comments | « tools/turbolizer/text-view.js ('k') | tools/turbolizer/turbo-visualizer.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .visible-transition {
2 transition-delay: 0s;
3 transition-duration: 1s;
4 transition-property: all;
5 transition-timing-function: ease;
6 }
7
8 .collapse-pane {
9 background: #A0A0A0;
10 bottom: 0;
11 position: absolute;
12 margin-bottom: 0.5em;
13 margin-right: 0.5em;
14 margin-left: 0.5em;
15 border-radius: 5px;
16 padding: 0.5em;
17 z-index: 5;
18 opacity: 0.7;
19 }
20
21 .search-input {
22 vertical-align: middle;
23 width: 145px;
24 opacity: 1;
25 }
26
27 .button-input {
28 vertical-align: middle;
29 width: 24px;
30 opacity: 0.4;
31 cursor: pointer;
32 }
33
34 .button-input-toggled {
35 border-radius: 5px;
36 background-color: #505050;
37 }
38
39 .button-input:focus {
40 outline: none;
41 }
42
43 .button-input-invisible {
44 vertical-align: middle;
45 width: 0px;
46 visibility: hidden;
47 }
48
49
50 .selected {
51 background-color: #FFFF33;
52 }
53
54 .prettyprint ol.linenums > li {
55 list-style-type: decimal;
56 !important
57 }
58
59 body {
60 margin: 0;
61 padding: 0;
62 overflow:hidden;
63 -webkit-touch-callout: none;
64 -webkit-user-select: none;
65 -khtml-user-select: none;
66 -moz-user-select: none;
67 -ms-user-select: none;
68 user-select: none;
69 }
70
71 p {
72 text-align: center;
73 overflow: overlay;
74 position: relative;
75 }
76
77 marker {
78 fill: #080808;
79 }
80
81 g rect {
82 fill: #F0F0F0;
83 stroke: #080808;
84 stroke-width: 2px;
85 }
86
87 g.unsorted rect {
88 opacity: 0.5;
89 }
90
91 div.scrollable {
92 overflow-y: _croll; overflow-x: hidden;
93 }
94
95 g.control rect {
96 fill: #EFCC00;
97 stroke: #080808;
98 stroke-width: 5px;
99 }
100
101 g.javascript rect {
102 fill: #DD7E6B;
103 }
104
105 g.simplified rect {
106 fill: #3C78D8;
107 }
108
109 g.machine rect {
110 fill: #6AA84F;
111 }
112
113 g.input rect {
114 fill: #CFE2F3;
115 }
116
117 g.selected rect {
118 fill: #FFFF33;
119 }
120
121 circle.bubbleStyle {
122 fill: #080808;
123 fill-opacity: 0.0;
124 stroke: #080808;
125 stroke-width: 2px;
126 }
127
128 circle.bubbleStyle:hover {
129 stroke-width: 3px;
130 }
131
132 circle.filledBubbleStyle {
133 fill: #080808;
134 stroke: #080808;
135 stroke-width: 2px;
136 }
137
138 circle.filledBubbleStyle:hover {
139 fill: #080808;
140 stroke-width: 3px;
141 }
142
143 circle.halfFilledBubbleStyle {
144 fill: #808080;
145 stroke: #101010;
146 stroke-width: 2px;
147 }
148
149 circle.halfFilledBubbleStyle:hover {
150 fill: #808080;
151 stroke-width: 3px;
152 }
153
154 path.effect {
155 fill: none;
156 stroke: #080808;
157 stroke-width: 4px;
158 cursor: default;
159 }
160
161 path.effect:hover {
162 stroke-width: 6px;
163 }
164
165 path.control {
166 fill: none;
167 stroke: #080808;
168 stroke-width: 4px;
169 cursor: default;
170 }
171
172 path.control:hover {
173 stroke-width: 6px;
174 }
175
176 path.value {
177 fill: none;
178 stroke: #888888;
179 stroke-width: 4px;
180 cursor: default;
181 }
182
183 path.value:hover {
184 stroke-width: 6px;
185 }
186
187 path.frame-state {
188 fill: none;
189 stroke: #080808;
190 stroke-width: 4px;
191 cursor: default;
192 }
193
194 path.frame-state:hover{
195 stroke-width: 6px;
196 }
197
198 path.hidden {
199 fill: none;
200 stroke-width: 0;
201 }
202
203 path.link.selected {
204 stroke: #FFFF33;
205 }
206
207 pre.prettyprint {
208 border: none !important;
209 padding: 0px;
210 }
211
212 li.L1,
213 li.L3,
214 li.L5,
215 li.L7,
216 li.L9 {
217 background: none !important
218 }
219
220 li.nolinenums {
221 list-style-type:none;
222 }
223
224 ul.noindent {
225 -webkit-padding-start: 0px;
226 -webkit-margin-before: 0px;
227 -webkit-margin-after: 0px;
228 }
229
230 input:hover {
231 opacity: 1;
232 cursor: pointer;
233 }
234
235 span.linkable-text {
236 text-decoration: underline;
237 }
238
239 span.linkable-text:hover {
240 cursor: pointer;
241 font-weight: bold;
242 }
243
244 #left {
245 float: left; height: 100%; background-color: #FFFFFF;
246 -webkit-transition: all 1s ease-in-out;
247 -moz-transition: all 1s ease-in-out;
248 -o-transition: all 1s ease-in-out;
249 transition: all 1s ease-in-out;
250 transition-property: width;
251 transition-duration: 1s, 1s;
252 }
253
254 #middle {
255 float:left; height: 100%; background-color: #F8F8F8;
256 -webkit-transition: all 1s ease-in-out;
257 -moz-transition: all 1s ease-in-out;
258 -o-transition: all 1s ease-in-out;
259 transition: all 1s ease-in-out;
260 transition-property: width;
261 transition-duration: 1s, 1s;
262 }
263
264 #right {
265 float: right; background-color: #FFFFFF;
266 -webkit-transition: all 1s ease-in-out;
267 -moz-transition: all 1s ease-in-out;
268 -o-transition: all 1s ease-in-out;
269 transition: all 1s ease-in-out;
270 transition-property: width;
271 transition-duration: 1s, 1s;
272 }
273
274 #disassembly-collapse {
275 right: 0;
276 }
277
278 #source-collapse {
279 left: 0;
280 }
281
282 #graph-toolbox {
283 position: relative;
284 top: 1em;
285 left: 0.7em;
286 border: 2px solid #eee8d5;
287 border-radius: 5px;
288 padding: 0.7em;
289 z-index: 5;
290 }
291
292 #disassembly-collapse {
293 right: 0;
294 }
295
296 #source-collapse {
297 left: 0;
298 }
299
300 #graph-toolbox {
301 position: relative;
302 top: 1em;
303 left: 0.7em;
304 border: 2px solid #eee8d5;
305 border-radius: 5px;
306 padding: 0.7em;
307 z-index: 5;
308 }
309
310 #load-file {
311 background: #A0A0A0;
312 position: absolute;
313 top: 0;
314 right: 0;
315 margin-top: 0.5em;
316 margin-right: 0.5em;
317 border-radius: 5px;
318 padding: 0.5em;
319 z-index: 5;
320 opacity: 0.7;
321 }
322
323 #hidden-file-upload{
324 display: none;
325 }
326
OLDNEW
« no previous file with comments | « tools/turbolizer/text-view.js ('k') | tools/turbolizer/turbo-visualizer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698