pad-demo/src/assets/css/all.scss
2022-09-05 13:52:57 +08:00

109 lines
1.9 KiB
SCSS

// 登录页input样式修改
// .login-input{
// .van-field__body{
// .van-field__control{
// line-height: .6rem;
// }
// }
// }
.van-cell:not(:last-child)::after{
border-bottom: 0 !important;
}
// 登录页记住密码字体颜色
.login-remPwd{
.van-checkbox__label{
color: #fff;
}
}
// 登录页输入框placeholder颜色
.login-box{
input::placeholder{
color:#f5f5f5;
}
}
// index页图标颜色
.index-blue{
color: #1989fa;
.van-grid-item__text{
color: #1989fa;
}
}
// tab宽度
.van-tab{
flex-basis: 20% !important;
-webkit-box-flex: 0 !important;
-webkit-flex: 0 0 20% !important;
flex: 0 0 20% !important;
padding: 0 !important;
}
// picker
.van-picker {
.van-picker-column__item{
.van-ellipsis {
height: 44px;
line-height: 44px;
font-size: .4rem;
}
}
.van-picker__toolbar {
.van-picker__cancel, .van-picker__title, .van-picker__confirm {
font-size: .4rem;
}
.van-ellipsis {
line-height: .88rem;
height: .88rem;
}
}
}
// 输入框
.van-field {
.van-field__body {
input, textarea {
font-size: .4rem;
color: #131415;
}
input::-webkit-input-placeholder {
font-size: .4rem;
}
input:-moz-placeholder {
font-size: .4rem;
}
input::-moz-placeholder {
font-size: .4rem;
}
input:-ms-input-placeholder {
font-size: .4rem;
}
}
}
.canInput {
.van-cell__value {
.van-field__body {
.van-field__control:disabled {
font-size: .4rem;
color: #131415;
-webkit-text-fill-color: #131415;
}
input::-webkit-input-placeholder {
-webkit-text-fill-color: #c8c9cc;
}
input:-moz-placeholder {
-webkit-text-fill-color: #c8c9cc;
}
input::-moz-placeholder {
-webkit-text-fill-color: #c8c9cc;
}
input:-ms-input-placeholder {
-webkit-text-fill-color: #c8c9cc;
}
}
}
}