index.less 1.22 KB
Newer Older
1
.configContent {
2
  height: 500px;
3
  display: flex;
4

5
  .leftTree {
6
    width: 180px;
7
    height: 100%;
8
    margin-right: 10px;
9 10
    overflow-y: scroll;
  }
11 12

  .rightContent {
13 14
    .title {
      width: 100%;
15 16 17
      background-color: #E6F3FF;
      color: #1890FF;
      font-size: 14px;
18
      padding: 5px 10px;
19
      border: 1px solid #EEF6FE;
20 21
    }

22 23 24
    .textAreaBox {
      // height: 400px;
      // overflow-y: scroll;
25 26 27 28 29 30 31 32 33 34 35 36
      position: relative;

      .insertFn {
        position: absolute;
        bottom: 10px;
        right: 10px;
        border: 1px solid #1890FF;
        padding: 2px 15px;
        border-radius: 5px;
        z-index: 1;
        cursor: pointer;
      }
37

38 39 40 41 42 43
      textArea {
        // min-height: 200px;
        max-height: 360px !important;
        min-height: 360px !important;
        border: 1px solid transparent;
        background-color: #F0F2F6;
44 45
      }
    }
46 47

    .tipBox {
48 49 50
      padding-top: 12px;
      padding-left: 25px;

51 52 53 54 55
      li {
        list-style: disc;
        color: #AEAEAE;
      }

56 57 58 59 60
      em {
        font-style: normal;
        color: #1890FF;
      }

61 62 63 64 65 66 67 68 69 70
      i {
        font-style: normal;
        color: red;
      }

      p {
        margin-bottom: 0;
        color: #AEAEAE;
      }
    }
71
  }
72
}