mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-10-29 23:17:26 +03:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { css } from '@emotion/react';
|
|
import { Theme } from '../../themes/default.js';
|
|
import { Type } from '../Notification.js';
|
|
|
|
const getBackground = (theme: Theme, type: Type) => {
|
|
switch (type) {
|
|
case 'success':
|
|
return `background-color: ${theme.base0B};`;
|
|
case 'warning':
|
|
return `background-color: ${theme.base0A};`;
|
|
case 'error':
|
|
return `background-color: ${theme.base08};`;
|
|
default:
|
|
return `background-color: ${theme.base0D};`;
|
|
}
|
|
};
|
|
|
|
interface StyleProps {
|
|
type: Type;
|
|
}
|
|
|
|
export default ({ theme, type }: StyleProps & { theme: Theme }) => css`
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-shrink: 0;
|
|
box-sizing: border-box;
|
|
box-shadow: inset ${theme.base05} 0 0 1px;
|
|
font-size: 1.1em;
|
|
padding: 7px;
|
|
width: 100%;
|
|
color: ${theme.base01};
|
|
${getBackground(theme, type)}
|
|
|
|
& > svg:first-child {
|
|
font-size: 1.4em;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
& > span {
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 0.1em;
|
|
}
|
|
|
|
& > button {
|
|
cursor: pointer;
|
|
float: right;
|
|
font-size: 1.1em;
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
padding: 0.1em;
|
|
line-height: 0;
|
|
outline: none;
|
|
color: inherit;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
& > button:hover,
|
|
& > button:active {
|
|
opacity: 1;
|
|
}
|
|
|
|
& > button:focus {
|
|
border: 1px solid ${theme.base03};
|
|
}
|
|
`;
|