CE-604 Update tooltip styles - wider, dark on light, left-align, box-shadow.

This commit is contained in:
2023-10-20 10:39:57 -05:00
parent b903e6bef9
commit 7101420124

View File

@ -24,7 +24,7 @@ import borders from "qqq/assets/theme/base/borders";
// Material Dashboard 2 PRO React TS Helper Functions // Material Dashboard 2 PRO React TS Helper Functions
import pxToRem from "qqq/assets/theme/functions/pxToRem"; import pxToRem from "qqq/assets/theme/functions/pxToRem";
const { black, light } = colors; const { black, light, white, dark } = colors;
const { size, fontWeightRegular } = typography; const { size, fontWeightRegular } = typography;
const { borderRadius } = borders; const { borderRadius } = borders;
@ -39,19 +39,20 @@ const tooltip: Types = {
styleOverrides: { styleOverrides: {
tooltip: { tooltip: {
maxWidth: pxToRem(200), maxWidth: pxToRem(300),
backgroundColor: black.main, backgroundColor: white.main,
color: light.main, color: dark.main,
fontSize: size.sm, fontSize: size.sm,
fontWeight: fontWeightRegular, fontWeight: fontWeightRegular,
textAlign: "center", textAlign: "left",
borderRadius: borderRadius.md, borderRadius: borderRadius.md,
opacity: 0.7, opacity: 0.7,
padding: `${pxToRem(5)} ${pxToRem(8)} ${pxToRem(4)}`, padding: "1rem",
boxShadow: "rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px"
}, },
arrow: { arrow: {
color: black.main, color: white.main,
}, },
}, },
}; };