Commit c453e89d authored by chenshouchao's avatar chenshouchao

feat: 样式微调

parent 2206a379
...@@ -60,6 +60,9 @@ const theme = createTheme({ ...@@ -60,6 +60,9 @@ const theme = createTheme({
styleOverrides: { styleOverrides: {
root: { root: {
color: "rgba(209, 214, 222, 1)", color: "rgba(209, 214, 222, 1)",
"&.MuiCheckbox-indeterminate": {
color: "rgba(19, 112, 255, 1)",
},
"&.Mui-checked": { "&.Mui-checked": {
color: "rgba(19, 112, 255, 1)", color: "rgba(19, 112, 255, 1)",
}, },
......
...@@ -21,7 +21,7 @@ const theme = createTheme({ ...@@ -21,7 +21,7 @@ const theme = createTheme({
tooltip: { tooltip: {
backgroundColor: "rgba(7, 19, 38, .8)", backgroundColor: "rgba(7, 19, 38, .8)",
color: "#fff", color: "#fff",
padding: 0, padding: "8px 0",
}, },
arrow: { arrow: {
"&:before": { "&:before": {
...@@ -44,7 +44,7 @@ const MyTooltip = (props: IMyTooltipProps) => { ...@@ -44,7 +44,7 @@ const MyTooltip = (props: IMyTooltipProps) => {
style={{ style={{
maxHeight: "36vh", maxHeight: "36vh",
overflow: "overlay", overflow: "overlay",
padding: "8px 16px", padding: "0 16px",
}} }}
> >
{title} {title}
......
...@@ -11,7 +11,8 @@ ...@@ -11,7 +11,8 @@
margin: 0 16px 16px 0; margin: 0 16px 16px 0;
border: 1px solid rgba(235, 237, 240, 1); border: 1px solid rgba(235, 237, 240, 1);
border-radius: 4px; border-radius: 4px;
min-height: 275px; min-height: 339px;
max-height: 339px;
box-sizing: border-box; box-sizing: border-box;
position: relative; position: relative;
cursor: pointer; cursor: pointer;
...@@ -32,11 +33,11 @@ ...@@ -32,11 +33,11 @@
margin-bottom: 0; margin-bottom: 0;
} }
.datasetLiTop { .datasetLiTop {
height: 55%; height: 185px;
box-sizing: border-box; box-sizing: border-box;
} }
.datasetLiBottom { .datasetLiBottom {
height: 45%; height: 152px;
box-sizing: border-box; box-sizing: border-box;
background-color: RGBA(247, 248, 250, 1); background-color: RGBA(247, 248, 250, 1);
display: flex; display: flex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment