// cover some element-ui styles
|
|
.el-breadcrumb__inner,
|
.el-breadcrumb__inner a {
|
font-weight: 400 !important;
|
}
|
|
.el-upload {
|
input[type="file"] {
|
display: none !important;
|
}
|
}
|
|
.el-upload__input {
|
display: none;
|
}
|
|
|
// to fixed https://github.com/ElemeFE/element/issues/2461
|
.el-dialog {
|
transform: none;
|
left: 0;
|
position: relative;
|
margin: 0 auto;
|
}
|
|
// refine element ui upload
|
.upload-container {
|
.el-upload {
|
width: 100%;
|
|
.el-upload-dragger {
|
width: 100%;
|
height: 200px;
|
}
|
}
|
}
|
|
// dropdown
|
.el-dropdown-menu {
|
a {
|
display: block
|
}
|
}
|
|
// to fix el-date-picker css style
|
.el-range-separator {
|
box-sizing: content-box;
|
}
|
// ====上传商品展示图
|
.uplaod_img{
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
}
|
.uplaod_img>div{
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
}
|
.uplaod_img>div>.el-upload{
|
width: 82px !important;
|
height: 82px !important;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
.uplaod_img>div>.el-upload-list--picture-card{
|
display: flex;
|
justify-content: flex-start;
|
flex-wrap: wrap;
|
}
|
.uplaod_img>div>.el-upload-list--picture-card>.el-upload-list__item{
|
width: 82px !important;
|
height: 82px !important;
|
}
|
// ====上传商品轮播图
|
.product_img{
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
}
|
.product_img>div{
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
flex-wrap: wrap;
|
}
|
.product_img>div>.el-upload{
|
width: 150px !important;
|
height: 108.8px !important;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
.product_img>div>.el-upload-list--picture-card{
|
display: flex;
|
justify-content: flex-start;
|
flex-wrap: wrap;
|
}
|
.product_img>div>.el-upload-list--picture-card>.el-upload-list__item{
|
width: 150px !important;
|
height: 108.8px !important;
|
}
|
// ====上传商品详情图
|
.productdeta_img{
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
}
|
.productdeta_img>div{
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
flex-wrap: wrap;
|
}
|
.productdeta_img>div>.el-upload{
|
width: 125px !important;
|
height: 200px !important;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
.productdeta_img>div>.el-upload-list--picture-card{
|
display: flex;
|
justify-content: flex-start;
|
flex-wrap: wrap;
|
}
|
.productdeta_img>div>.el-upload-list--picture-card>.el-upload-list__item{
|
width: 125px !important;
|
height: 200px !important;
|
}
|
// .uplaod_img>.el-upload-list>.el-upload-list__item>div{
|
// width: 100% !important;
|
// height: 100% !important;
|
// }
|
// .uplaod_img>.el-upload-list>.el-upload-list__item>div>img{
|
// width: 100% !important;
|
// height: 100% !important;
|
// }
|