Blame view

src/styles/slxx/slxx.scss 1.43 KB
任超 committed
1 2 3 4 5 6 7 8 9 10
/deep/.el-form {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 130px);
}

/deep/.el-form-item__label {
  padding: 0;
}

11

任超 committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/deep/.el-radio {
  margin-right: 10px;
}

/deep/.el-select {
  width: 100%;
}

/deep/.el-form-item {
  margin-bottom: 8px;
}

.marginBot0 {
  margin-bottom: 0 !important;
}

.slxx {
  box-sizing: border-box;
}

.slxx_con {
  flex: 1;
  height: 100%;
  background-color: #ffffff;
  overflow-y: auto;
任超 committed
37 38
  box-sizing: border-box;
  padding-left: 5px;
任超 committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  overflow-x: hidden;
}

.submit_btn {
  height: 50px;
}

.slxx_title {
  border-bottom: 1px solid $borderColor;
  padding-left: 10px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
}
xiaomiao committed
56 57 58 59 60 61 62 63 64 65 66
.bdcqk {
  margin-top: 15px;
  position: relative;
  .count {
   color: blue!important;
    width: 874px;
  font-size: 14px;
  position: absolute;
  left:200px;
  top: -3px;
  height: 30px;
任超 committed
67

xiaomiao committed
68 69
}
}
任超 committed
70 71 72 73 74 75 76 77 78 79 80 81 82 83
.btn {
  text-align: center;
  padding-top: 10px;
  height: 36px;
  background-color: #ffffff;
  padding: 5px 0;
}

.textArea {
  /deep/.el-textarea__inner {
    min-height: 90px !important;
  }
}

84 85 86 87 88 89
.formMarginBot0 {
  /deep/.el-form-item {
   margin-bottom: 0;
 }
}

任超 committed
90 91
/deep/.el-form-item__label {
  padding-bottom: 0px;
xiaomiao committed
92 93 94 95 96 97
}
// 控制表单是否只读
.readonly{
  /deep/.el-form-item__content{
       pointer-events: none!important;
     }
xiaomiao committed
98 99 100 101

     /deep/.el-input .el-input__inner {
      background-color: #F5F7FA;
     }
xiaomiao committed
102
 }