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

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

Issue 967213002: Devtools Animations: Represent delay and end-delay on the animation timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Round values Created 5 years, 9 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
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 22 matching lines...) Expand all
33 path.animation-keyframe { 33 path.animation-keyframe {
34 fill-opacity: 0.3; 34 fill-opacity: 0.3;
35 } 35 }
36 36
37 line.animation-line { 37 line.animation-line {
38 stroke-width: 3; 38 stroke-width: 3;
39 stroke-linecap: round; 39 stroke-linecap: round;
40 fill: none; 40 fill: none;
41 } 41 }
42 42
43 line.animation-delay-line {
44 stroke-width: 2;
45 stroke-dasharray: 6, 4;
46 }
47
43 circle.animation-endpoint { 48 circle.animation-endpoint {
44 stroke-width: 3; 49 stroke-width: 3;
45 } 50 }
46 51
47 circle.animation-keyframe-point { 52 circle.animation-keyframe-point {
48 stroke-width: 3; 53 stroke-width: 3;
49 fill: white; 54 fill: white;
50 } 55 }
51 56
52 .animation-name { 57 .animation-name {
53 position: absolute; 58 position: absolute;
54 top: 15px; 59 top: 15px;
55 color: #777; 60 color: #333;
56 text-align: center; 61 text-align: center;
57 margin-left: -8px; 62 margin-left: -8px;
58 } 63 }
59 64
60 .animation-timeline-header { 65 .animation-timeline-header {
61 height: 44px; 66 height: 44px;
62 border-bottom: 1px solid #ccc; 67 border-bottom: 1px solid #ccc;
63 } 68 }
64 69
65 .animation-control-replay { 70 .animation-control-replay {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 background-color: #fff0f0; 195 background-color: #fff0f0;
191 } 196 }
192 197
193 svg.animation-ui g:first-child { 198 svg.animation-ui g:first-child {
194 opacity: 1; 199 opacity: 1;
195 } 200 }
196 201
197 .animation-tail-iterations { 202 .animation-tail-iterations {
198 opacity: 0.5; 203 opacity: 0.5;
199 } 204 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/BezierUI.js ('k') | Source/devtools/front_end/sdk/AnimationModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698