element-ui.scss 1006 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
  }
}
45 46 47 48 49

// to fix el-date-picker css style
.el-range-separator {
  box-sizing: content-box;
}
renhanxue's avatar
renhanxue committed
50 51 52 53

.el-pagination {
  margin-top: 20px;
}
yanzhongrong's avatar
yanzhongrong committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

.el-tree {
  background: rgba(249, 249, 249, 0.39);
}
.el-tree-node__content {
  height: 40px;
}
.el-tree-node__expand-icon {
  color: rgba(0, 98, 255, 0.39);
}

// button 
.el-button--primary {
  color: #fff;
  background: rgba(11, 65, 177);
  opacity: 1;
  border-radius: 4px;
}