|
|
@ -503,6 +503,25 @@ gk-card p { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@property --pulse-scale { |
|
|
|
initial-value: 1.06; |
|
|
|
inherits: false; |
|
|
|
syntax: '<number>'; |
|
|
|
} |
|
|
|
|
|
|
|
@keyframes pulse { |
|
|
|
0%, |
|
|
|
2%, |
|
|
|
98%, |
|
|
|
100% { |
|
|
|
transform: scale(1); |
|
|
|
} |
|
|
|
1%, |
|
|
|
99% { |
|
|
|
transform: scale(var(--pulse-scale)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.toolbar { |
|
|
|
fill: var(--vscode-menu-background); |
|
|
|
|
|
|
@ -510,6 +529,13 @@ gk-card p { |
|
|
|
fill: var(--vscode-icon-foreground); |
|
|
|
|
|
|
|
&__annotations { |
|
|
|
&:not(.inactive) { |
|
|
|
--pulse-scale: 1.06; |
|
|
|
transform-origin: center center; |
|
|
|
animation: pulse 8s ease-in-out 4s; |
|
|
|
animation-iteration-count: infinite; |
|
|
|
} |
|
|
|
|
|
|
|
path:first-child { |
|
|
|
fill: #f05133; |
|
|
|
stroke: none; |
|
|
@ -533,6 +559,13 @@ gk-card p { |
|
|
|
} |
|
|
|
|
|
|
|
&__revision { |
|
|
|
--pulse-scale: 1.12; |
|
|
|
transform-origin: center left; |
|
|
|
animation: pulse 8s ease-in-out 6s; |
|
|
|
animation-iteration-count: infinite; |
|
|
|
} |
|
|
|
|
|
|
|
&__revision-bg { |
|
|
|
body[data-feature-revision='off'] & { |
|
|
|
fill: none; |
|
|
|
|
|
|
|