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

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

Issue 2230783005: [turbolizer] Use a 300ms transition for expanding/collapsing panes, not 1000ms. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@t-p2-base
Patch Set: Created 4 years, 4 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 | « no previous file | 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
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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 span.linkable-text:hover { 244 span.linkable-text:hover {
245 cursor: pointer; 245 cursor: pointer;
246 font-weight: bold; 246 font-weight: bold;
247 } 247 }
248 248
249 #left { 249 #left {
250 float: left; height: 100%; background-color: #FFFFFF; 250 float: left; height: 100%; background-color: #FFFFFF;
251 -webkit-transition: all 1s ease-in-out; 251 -webkit-transition: all 1s ease-in-out;
252 -moz-transition: all 1s ease-in-out; 252 -moz-transition: all 1s ease-in-out;
253 -o-transition: all 1s ease-in-out; 253 -o-transition: all 1s ease-in-out;
254 transition: all 1s ease-in-out; 254 transition: all .3s ease-in-out;
255 transition-property: width; 255 transition-property: width;
256 transition-duration: 1s, 1s;
257 } 256 }
258 257
259 #middle { 258 #middle {
260 float:left; height: 100%; background-color: #F8F8F8; 259 float:left; height: 100%; background-color: #F8F8F8;
261 -webkit-transition: all 1s ease-in-out; 260 -webkit-transition: all 1s ease-in-out;
262 -moz-transition: all 1s ease-in-out; 261 -moz-transition: all 1s ease-in-out;
263 -o-transition: all 1s ease-in-out; 262 -o-transition: all 1s ease-in-out;
264 transition: all 1s ease-in-out; 263 transition: all .3s ease-in-out;
265 transition-property: width; 264 transition-property: width;
266 transition-duration: 1s, 1s;
267 } 265 }
268 266
269 #right { 267 #right {
270 float: right; background-color: #FFFFFF; 268 float: right; background-color: #FFFFFF;
271 -webkit-transition: all 1s ease-in-out; 269 -webkit-transition: all 1s ease-in-out;
272 -moz-transition: all 1s ease-in-out; 270 -moz-transition: all 1s ease-in-out;
273 -o-transition: all 1s ease-in-out; 271 -o-transition: all 1s ease-in-out;
274 transition: all 1s ease-in-out; 272 transition: all .3s ease-in-out;
275 transition-property: width; 273 transition-property: width;
276 transition-duration: 1s, 1s;
277 } 274 }
278 275
279 #disassembly-collapse { 276 #disassembly-collapse {
280 right: 0; 277 right: 0;
281 } 278 }
282 279
283 #source-collapse { 280 #source-collapse {
284 left: 0; 281 left: 0;
285 } 282 }
286 283
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 color: #888; 330 color: #888;
334 } 331 }
335 332
336 .prof-med { 333 .prof-med {
337 color: #080; 334 color: #080;
338 } 335 }
339 336
340 .prof-high { 337 .prof-high {
341 color: #800; 338 color: #800;
342 } 339 }
OLDNEW
« no previous file with comments | « no previous file | tools/turbolizer/turbo-visualizer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698