mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 07:33:53 +08:00
22 lines
604 B
SCSS
22 lines
604 B
SCSS
// 覆盖 autofill 样式
|
|
input:-webkit-autofill,
|
|
input:-webkit-autofill:hover,
|
|
input:-webkit-autofill:focus,
|
|
textarea:-webkit-autofill,
|
|
textarea:-webkit-autofill:hover,
|
|
textarea:-webkit-autofill:focus,
|
|
select:-webkit-autofill,
|
|
select:-webkit-autofill:hover,
|
|
select:-webkit-autofill:focus {
|
|
-webkit-box-shadow: 0 0 0px 1000px transparent inset;
|
|
transition: background-color 5000s ease-in-out 0s;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.el-footer {
|
|
height: 35px !important; /* 使用 !important 确保覆盖默认样式 */
|
|
}
|
|
|
|
.el-icon-video-play, .el-icon-video-pause {
|
|
font-size: 18px !important;
|
|
} |