| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |