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

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

Issue 2164373002: [turbolizer] Style improvements. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@t-p3-base
Patch Set: Created 4 years, 5 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/index.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .visible-transition { 1 .visible-transition {
2 transition-delay: 0s; 2 transition-delay: 0s;
3 transition-duration: 1s; 3 transition-duration: 1s;
4 transition-property: all; 4 transition-property: all;
5 transition-timing-function: ease; 5 transition-timing-function: ease;
6 } 6 }
7 7
8 .collapse-pane { 8 .collapse-pane {
9 background: #A0A0A0; 9 background: #A0A0A0;
10 bottom: 0; 10 bottom: 0;
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 } 273 }
274 274
275 #disassembly-collapse { 275 #disassembly-collapse {
276 right: 0; 276 right: 0;
277 } 277 }
278 278
279 #source-collapse { 279 #source-collapse {
280 left: 0; 280 left: 0;
281 } 281 }
282 282
283 #graph-toolbox { 283 #graph-toolbox-anchor {
284 position: relative; 284 height: 0px;
285 top: 1em;
286 left: 0.7em;
287 border: 2px solid #eee8d5;
288 border-radius: 5px;
289 padding: 0.7em;
290 z-index: 5;
291 }
292
293 #disassembly-collapse {
294 right: 0;
295 }
296
297 #source-collapse {
298 left: 0;
299 } 285 }
300 286
301 #graph-toolbox { 287 #graph-toolbox {
302 position: relative; 288 position: relative;
303 top: 1em; 289 top: 1em;
304 left: 0.7em; 290 left: 0.7em;
305 border: 2px solid #eee8d5; 291 border: 2px solid #eee8d5;
306 border-radius: 5px; 292 border-radius: 5px;
307 padding: 0.7em; 293 padding: 0.7em;
308 z-index: 5; 294 z-index: 5;
295 background: rgba(100%, 100%, 100%, 0.7);
309 } 296 }
310 297
311 #load-file { 298 #load-file {
312 background: #A0A0A0;
313 position: absolute; 299 position: absolute;
314 top: 0; 300 top: 0;
315 right: 0; 301 right: 0;
316 margin-top: 0.5em; 302 margin-top: 0.5em;
317 margin-right: 0.5em; 303 margin-right: 0.5em;
304 z-index: 5;
305 opacity: 0.7;
306 }
307
308 #load-file input {
309 background: #A0A0A0;
318 border-radius: 5px; 310 border-radius: 5px;
319 padding: 0.5em; 311 padding: 0.5em;
320 z-index: 5;
321 opacity: 0.7;
322 } 312 }
323 313
324 #hidden-file-upload{ 314 #hidden-file-upload{
325 display: none; 315 display: none;
326 } 316 }
327 317
OLDNEW
« no previous file with comments | « tools/turbolizer/index.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698