Merge pull request #831 from Nishikoh/stop-animation
Change 'Running' status to static
This commit is contained in:
@@ -54,7 +54,6 @@ const useStyles = makeStyles<BackstageTheme>((theme) => ({
|
||||
running: {
|
||||
'&::before': {
|
||||
backgroundColor: theme.palette.status.running,
|
||||
animation: '$blink 0.8s step-start 0s infinite',
|
||||
},
|
||||
},
|
||||
aborted: {
|
||||
@@ -62,11 +61,6 @@ const useStyles = makeStyles<BackstageTheme>((theme) => ({
|
||||
backgroundColor: theme.palette.status.aborted,
|
||||
},
|
||||
},
|
||||
'@keyframes blink': {
|
||||
'50%': {
|
||||
backgroundColor: theme.palette.status.background,
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
||||
export const StatusOK: FC<{}> = (props) => {
|
||||
|
||||
@@ -29,7 +29,6 @@ export const lightTheme = createTheme({
|
||||
running: '#2E77D0',
|
||||
pending: '#FFED51',
|
||||
aborted: '#757575',
|
||||
background: '#F8F8F8',
|
||||
},
|
||||
bursts: {
|
||||
fontColor: '#FEFEFE',
|
||||
@@ -70,7 +69,6 @@ export const darkTheme = createTheme({
|
||||
running: '#2E77D0',
|
||||
pending: '#FFED51',
|
||||
aborted: '#757575',
|
||||
background: '#F8F8F8',
|
||||
},
|
||||
bursts: {
|
||||
fontColor: '#FEFEFE',
|
||||
|
||||
@@ -28,7 +28,6 @@ type PaletteAdditions = {
|
||||
pending: string;
|
||||
running: string;
|
||||
aborted: string;
|
||||
background: string;
|
||||
};
|
||||
border: string;
|
||||
textContrast: string;
|
||||
|
||||
Reference in New Issue
Block a user