element-ui.scss 1.24 KB
// cover some element-ui styles
@import url("//unpkg.com/element-ui@2.10.1/lib/theme-chalk/index.css");
.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
  }
}
// fix date-picker ui bug in filter-item
.el-range-editor.el-input__inner {
  display: inline-flex !important;
}

.el-table thead {
  color: #515a6e !important;
  font-weight: 500;
}
.el-table th{
  white-space: nowrap !important;
  overflow: hidden !important;
  background-color: #f8f8f9 !important;
}
.el-table{
  color: #515A6E !important;
}
.el-table thead{
  color: #1F2D3D !important;
}

.el-form-item__label{
  font-size: 12px !important;
  color: #515a6e !important;
  vertical-align:middle;
}
label{
  font-weight:500 !important;
  font-size: 14px !important;
  cursor: default !important;
}