日期选择器
字体颜色+背景
::v-deep .el-input__inner {
background-color : transparent !important;
border-color : #0F90ED;
border-radius : 4px;
// box-shadow : 1px 1px 5px 1px RGB(128, 255, 255, 0.8) inset;
height : 30px;
color : #fff; //字体为白色
}1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
日期选中样式
.el-range-editor.is-active,
.el-range-editor.is-active:hover {
border-color: $menuHover;
}1
2
3
4
2
3
4
内部文字背景颜色
::v-deep .el-range-input {
background-color: transparent !important;
}1
2
3
2
3