Blame view

src/styles/slxx/slxx.scss 1.45 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
/deep/.el-radio {
  margin-right: 10px;
}

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

/deep/.el-form-item {
21
  margin-bottom: 3px;
任超 committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
}

.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
  overflow-x: hidden;
}

.submit_btn {
  height: 50px;
}

.slxx_title {
  border-bottom: 1px solid $borderColor;
  padding-left: 10px;
  padding-bottom: 5px;
50
  margin-bottom: 5px;
任超 committed
51 52 53 54 55
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
}
56

xiaomiao committed
57 58 59
.bdcqk {
  margin-top: 15px;
  position: relative;
60

xiaomiao committed
61
  .count {
62 63 64 65 66 67 68
    color: blue !important;
    width: 85%;
    font-size: 14px;
    position: absolute;
    left: 200px;
    top: -3px;
    height: 30px;
任超 committed
69

70
  }
xiaomiao committed
71
}
72

任超 committed
73 74 75 76 77 78 79 80 81 82 83 84 85
.btn {
  text-align: center;
  padding-top: 10px;
  height: 36px;
  padding: 5px 0;
}

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

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

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

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