如何更改TimePicker中的时钟颜色和Ok按钮字体颜色 – MUI React

huangapple go评论60阅读模式
英文:

How to change Clock Color and Ok button fontColor in TimePicker - MUI React

问题

我试图使用css className属性更改TimePicker中的Clock Color和Ok按钮fontColor等属性,但没有成功。有人知道如何使用sx或slotProps进行更改吗?

以下是您要更改的部分:

<TimePicker
          ampm={false}
          views={['hours', 'minutes', 'seconds']}
          sx={{
            backgroundColor: "#333335",
            font: "white",
            color: "#FFFF",
            textDecoration: "bold",
            input: {
              color: "#FFFF",
              fontSize: "1.4rem",
            },
              "& .MuiTimePicker-root": {
              backgroundColor: "#222223",
            },
            "& .MuiTimePicker-input": {
              color: "#FFFF",
              fontSize: "1.2rem",
            },
          }}
          slotProps={{
            popper: {
              sx: {
                "& .MuiList-root": {
                  backgroundColor: "#333335",
                },
                "& .MuiMenuItem-root": {
                  "&.Mui-selected": {
                    backgroundColor: "#04395E",
                    color: "white"
                  },
                  color: "white"
                },
                "& .MuiDialogActions-root": {
                  backgroundColor: "#333335",
                },
                "& .MuiSvgIcon-root": {
                  "&.MuiSvgIcon-fontSizeMedium": {
                    backgroundColor: "#04395E",
                    color: "white"
                  },
                  color: "white"
                },
              },
            },
          }}
          value={selectedTime}
          onChange={(newTime: any) => setSelectedTime(newTime)}
          timeSteps={{hours: 1, minutes: 1, seconds: 1}}
/>

这是您要更改颜色的元素的图片:
如何更改TimePicker中的时钟颜色和Ok按钮字体颜色 – MUI React

英文:

I'm trying to change some properties like Clock Color and Ok button fontColor in TimePicker using the css className properties, but with no success. Does anyone knows how to do change it using sx or slotProps?

<TimePicker
ampm={false}
views={['hours', 'minutes', 'seconds']}
sx={{
backgroundColor: "#333335",
font: "white",
color: "#FFFF",
textDecoration: "bold",
input: {
color: "#FFFF",
fontSize: "1.4rem",
},
"& .MuiTimePicker-root": {
backgroundColor: "#222223",
},
"& .MuiTimePicker-input": {
color: "#FFFF",
fontSize: "1.2rem",
},
}}
slotProps={{
popper: {
sx: {
"& .MuiList-root": {
backgroundColor: "#333335",
},
"& .MuiMenuItem-root": {
"&.Mui-selected": {
backgroundColor: "#04395E",
color: "white"
},
color: "white"
},
"& .MuiDialogActions-root": {
backgroundColor: "#333335",
},
"& .MuiSvgIcon-root": {
"&.MuiSvgIcon-fontSizeMedium": {
backgroundColor: "#04395E",
color: "white"
},
color: "white"
},
},
},
}}
value={selectedTime}
onChange={(newTime: any) => setSelectedTime(newTime)}
timeSteps={{hours: 1, minutes: 1, seconds: 1}}
/>

Here's a image showing the elements that I want to change the color
如何更改TimePicker中的时钟颜色和Ok按钮字体颜色 – MUI React

答案1

得分: 2

你可以将以下内容添加到 TimePickersx 属性中以更改时钟图标的颜色。

"& .MuiSvgIcon-root": {
  color: "white"
},

对于 OK 文本按钮,您可以在 poppersx 属性上使用以下内容。

"& .MuiDialogActions-root .MuiButton-text": {
  color: "white"
}
英文:

You can add the following to the sx property on the TimePicker to change the color of the clock icon.

"& .MuiSvgIcon-root": {
  color: "white"
},

and for the OK text button you can use the following on the sx property of the popper

"& .MuiDialogActions-root .MuiButton-text": {
  color: "white"
}

huangapple
  • 本文由 发表于 2023年7月31日 22:13:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/76804464.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定