element-ui.scss 597 Bytes
Newer Older
花裤衩's avatar
花裤衩 committed
1 2 3 4 5 6 7
// cover some element-ui styles

.el-breadcrumb__inner,
.el-breadcrumb__inner a {
  font-weight: 400 !important;
}

Pan's avatar
Pan committed
8 9 10 11 12 13 14 15 16 17
.el-upload {
  input[type="file"] {
    display: none !important;
  }
}

.el-upload__input {
  display: none;
}

花裤衩's avatar
花裤衩 committed
18 19

// to fixed https://github.com/ElemeFE/element/issues/2461
Pan's avatar
Pan committed
20 21 22 23 24 25 26
.el-dialog {
  transform: none;
  left: 0;
  position: relative;
  margin: 0 auto;
}

花裤衩's avatar
花裤衩 committed
27
// refine element ui upload
Pan's avatar
Pan committed
28 29 30
.upload-container {
  .el-upload {
    width: 100%;
Pan's avatar
Pan committed
31

Pan's avatar
Pan committed
32 33 34 35 36 37
    .el-upload-dragger {
      width: 100%;
      height: 200px;
    }
  }
}
花裤衩's avatar
花裤衩 committed
38 39 40 41 42 43 44

// dropdown
.el-dropdown-menu {
  a {
    display: block
  }
}