|
| 1 | +.animation-node-row { |
| 2 | + border-bottom-color: $border; |
| 3 | +} |
| 4 | + |
| 5 | +.animation-node-description { |
| 6 | + border-bottom-color: $borderLight; |
| 7 | + background-color: $background; |
| 8 | +} |
| 9 | + |
| 10 | +circle.animation-keyframe-point { |
| 11 | + fill: $foreground; |
| 12 | +} |
| 13 | + |
| 14 | +.animation-name { |
| 15 | + color: $foreground; |
| 16 | +} |
| 17 | + |
| 18 | +.animation-timeline-toolbar-container { |
| 19 | + background-color: $contrast; |
| 20 | +} |
| 21 | + |
| 22 | +.animation-timeline-header { |
| 23 | + border-bottom-color: $borderLight; |
| 24 | +} |
| 25 | + |
| 26 | +.animation-timeline-header::after { |
| 27 | + background-color: $background; |
| 28 | + border-right-color: $border |
| 29 | +} |
| 30 | + |
| 31 | +.animation-timeline-buffer, |
| 32 | +.animation-timeline-buffer-hint { |
| 33 | + border-bottom-color: $border; |
| 34 | +} |
| 35 | + |
| 36 | +.animation-time-overlay { |
| 37 | + background-color: white; |
| 38 | +} |
| 39 | + |
| 40 | +.animation-scrubber { |
| 41 | + border-left-color: $accent1; |
| 42 | +} |
| 43 | + |
| 44 | +.animation-scrubber-line { |
| 45 | + background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 5px, $accent1 5px, $accent1 6px, rgba(255, 255, 255, 0) 6px); |
| 46 | +} |
| 47 | + |
| 48 | +.animation-scrubber-head { |
| 49 | + background-color: $accent1; |
| 50 | +} |
| 51 | + |
| 52 | +rect.animation-timeline-grid-line { |
| 53 | + fill: $accent2; |
| 54 | +} |
| 55 | + |
| 56 | +text.animation-timeline-grid-label { |
| 57 | + fill: $foreground; |
| 58 | +} |
| 59 | + |
| 60 | +.animation-node-row.animation-node-selected { |
| 61 | + background-color: $tree; |
| 62 | +} |
| 63 | + |
| 64 | +.animation-node-selected > .animation-node-description { |
| 65 | + background-color: $selBg; |
| 66 | +} |
| 67 | + |
| 68 | +.animation-buffer-preview { |
| 69 | + background-color: var(--toolbar-bg-color); |
| 70 | +} |
| 71 | + |
| 72 | +.animation-buffer-preview-animation { |
| 73 | + background-color: $second; |
| 74 | + border-right-color: $borderLight; |
| 75 | +} |
| 76 | + |
| 77 | +.animation-buffer-preview:not(.selected):hover { |
| 78 | + background-color: $highlight; |
| 79 | +} |
| 80 | + |
| 81 | +.animation-buffer-preview.selected { |
| 82 | + background-color: $selBg; |
| 83 | +} |
| 84 | + |
| 85 | +.animation-paused { |
| 86 | + background-color: rgba($highlight, 0.5); |
| 87 | +} |
| 88 | + |
| 89 | +.animation-paused::before, |
| 90 | +.animation-paused::after { |
| 91 | + background-color: $background; |
| 92 | + border-top-color: $border; |
| 93 | + border-right-color: $border; |
| 94 | + border-bottom-color: $border; |
| 95 | + border-left-color: $border; |
| 96 | +} |
| 97 | + |
| 98 | +.animation-buffer-preview.selected > svg > line { |
| 99 | + stroke: $selFg !important; |
| 100 | +} |
| 101 | + |
| 102 | +.animation-playback-rate-button { |
| 103 | + background-color: $background; |
| 104 | + border-top-color: $button; |
| 105 | + border-right-color: $button; |
| 106 | + border-bottom-color: $button; |
| 107 | + border-left-color: $button; |
| 108 | + color: $primary; |
| 109 | +} |
| 110 | + |
| 111 | +.animation-playback-rate-button:not(.selected):hover { |
| 112 | + background-color: $highlight; |
| 113 | +} |
| 114 | + |
| 115 | +.animation-playback-rate-button.selected { |
| 116 | + color: $selFg; |
| 117 | + background-color: $accent1; |
| 118 | +} |
| 119 | + |
| 120 | +.animation-playback-rate-button.selected:first-child { |
| 121 | + color: $selFg; |
| 122 | + background-color: $accent1; |
| 123 | +} |
| 124 | + |
| 125 | +.animation-remove-button:hover { |
| 126 | + background-color: $highlight; |
| 127 | +} |
0 commit comments