98 lines
2.5 KiB
JavaScript
98 lines
2.5 KiB
JavaScript
import { styled } from '@mui/material/styles';
|
|
import Typography from '@mui/material/Typography';
|
|
import { chartsTooltipClasses } from "./chartsTooltipClasses.js";
|
|
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
export const ChartsTooltipPaper = styled('div', {
|
|
name: 'MuiChartsTooltip',
|
|
slot: 'Container',
|
|
overridesResolver: (props, styles) => styles.paper // FIXME: Inconsistent naming with slot
|
|
})(({
|
|
theme
|
|
}) => ({
|
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
|
color: (theme.vars || theme).palette.text.primary,
|
|
borderRadius: (theme.vars || theme).shape?.borderRadius,
|
|
border: `solid ${(theme.vars || theme).palette.divider} 1px`
|
|
}));
|
|
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
export const ChartsTooltipTable = styled('table', {
|
|
name: 'MuiChartsTooltip',
|
|
slot: 'Table'
|
|
})(({
|
|
theme
|
|
}) => ({
|
|
borderSpacing: 0,
|
|
[`& .${chartsTooltipClasses.markContainer}`]: {
|
|
display: 'inline-block',
|
|
width: `calc(20px + ${theme.spacing(1.5)})`,
|
|
verticalAlign: 'middle'
|
|
},
|
|
'& caption': {
|
|
borderBottom: `solid ${(theme.vars || theme).palette.divider} 1px`,
|
|
padding: theme.spacing(0.5, 1.5),
|
|
textAlign: 'start',
|
|
whiteSpace: 'nowrap',
|
|
'& span': {
|
|
marginRight: theme.spacing(1.5)
|
|
}
|
|
}
|
|
}));
|
|
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
export const ChartsTooltipRow = styled('tr', {
|
|
name: 'MuiChartsTooltip',
|
|
slot: 'Row'
|
|
})(({
|
|
theme
|
|
}) => ({
|
|
'tr:first-of-type& td': {
|
|
paddingTop: theme.spacing(0.5)
|
|
},
|
|
'tr:last-of-type& td': {
|
|
paddingBottom: theme.spacing(0.5)
|
|
}
|
|
}));
|
|
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
export const ChartsTooltipCell = styled(Typography, {
|
|
name: 'MuiChartsTooltip',
|
|
slot: 'Cell'
|
|
})(({
|
|
theme
|
|
}) => ({
|
|
verticalAlign: 'middle',
|
|
color: (theme.vars || theme).palette.text.secondary,
|
|
textAlign: 'start',
|
|
[`&.${chartsTooltipClasses.cell}`]: {
|
|
paddingLeft: theme.spacing(1),
|
|
paddingRight: theme.spacing(1)
|
|
},
|
|
[`&.${chartsTooltipClasses.labelCell}`]: {
|
|
whiteSpace: 'nowrap',
|
|
fontWeight: theme.typography.fontWeightRegular
|
|
},
|
|
[`&.${chartsTooltipClasses.valueCell}, &.${chartsTooltipClasses.axisValueCell}`]: {
|
|
color: (theme.vars || theme).palette.text.primary,
|
|
fontWeight: theme.typography.fontWeightMedium
|
|
},
|
|
[`&.${chartsTooltipClasses.valueCell}`]: {
|
|
paddingLeft: theme.spacing(1.5),
|
|
paddingRight: theme.spacing(1.5)
|
|
},
|
|
'td:first-of-type&, th:first-of-type&': {
|
|
paddingLeft: theme.spacing(1.5)
|
|
},
|
|
'td:last-of-type&, th:last-of-type&': {
|
|
paddingRight: theme.spacing(1.5)
|
|
}
|
|
})); |