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

Side by Side Diff: Source/devtools/front_end/elements/animationTimeline.css

Issue 1159613003: Devtools Animations: Update timing information of related animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/elements/AnimationTimeline.js ('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 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .animation-node-row { 7 .animation-node-row {
8 width: 100%; 8 width: 100%;
9 display: flex; 9 display: flex;
10 border-bottom: 1px dashed #ccc; 10 border-bottom: 1px dashed #ccc;
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 } 277 }
278 278
279 .animation-node-description > div { 279 .animation-node-description > div {
280 position: absolute; 280 position: absolute;
281 top: 50%; 281 top: 50%;
282 transform: translateY(-50%); 282 transform: translateY(-50%);
283 max-height: 100%; 283 max-height: 100%;
284 } 284 }
285 285
286 .animation-node-row.animation-node-removed { 286 .animation-node-row.animation-node-removed {
287 background-color: #fff0f0; 287 background-color: rgba(255, 0, 0, 0.1);
288 } 288 }
289 289
290 svg.animation-ui g:first-child { 290 svg.animation-ui g:first-child {
291 opacity: 1; 291 opacity: 1;
292 } 292 }
293 293
294 g { 294 g {
295 opacity: 0.5; 295 opacity: 0.5;
296 } 296 }
297 297
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 opacity: 1.0; 348 opacity: 1.0;
349 transition-delay: 0s; 349 transition-delay: 0s;
350 } 350 }
351 351
352 .bezier-icon path { 352 .bezier-icon path {
353 stroke: white; 353 stroke: white;
354 stroke-width: 1.5; 354 stroke-width: 1.5;
355 stroke-linecap: square; 355 stroke-linecap: square;
356 fill: none; 356 fill: none;
357 } 357 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/AnimationTimeline.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698