Newer
Older
ProductionSysFront / src / styles / element-ui.scss
StephanieGitHub on 9 Mar 2020 970 bytes create base
//to reset element-ui default css
.el-upload {
  input[type="file"] {
    display: none !important;
  }
}

.el-upload__input {
  display: none;
}

//暂时性解决diolag 问题 https://github.com/ElemeFE/element/issues/2461
.el-dialog {
  transform: none;
  left: 0;
  position: relative;
  margin: 0 auto;
  .el-dialog__header {
    background-color:rgb(48, 65, 86);
    //background-color:rgb(47, 91, 114);
    .el-dialog__title{
      color:white;
      font-weight: bold;
    }
  }
}

//element ui upload
.upload-container {
  .el-upload {
    width: 100%;

    .el-upload-dragger {
      width: 100%;
      height: 200px;
    }
  }
}

// 表格行边距
.el-table td{
  padding: 7px 0px
}

//button mini边距
.el-button--mini{
  padding:5px 7px;
}
.el-button+.el-button {
  margin-left:3px;
}
.el-range-separator{
  width: 7% !important;
}
//高德地图info窗口
.amap-info-content{
  padding: 0px;
}
.amap-info-close{
  right: 10px !important;
  top: 15px;
}