Blame view

src/styles/collapse.scss 635 Bytes
1
/deep/.modifycollapse{
2
  border: none;
3

4
  .el-collapse-item {
5

6 7 8 9 10 11 12 13 14 15
    .el-collapse-item__header {
      margin-bottom: 10px;
      background: #F3F4F7;
      border: 1px solid #D9D9D9;
      border-radius: 4px;
      font-size: 16px;
      font-family: PingFangSC-Medium, PingFang SC;
      font-weight: 500;
      color: #333333;
      line-height: 18px;
16

17
    }
18

19 20 21 22 23 24 25 26
    .el-collapse-item__header::before {
      content: "";
      margin-left: 10px;
      margin-right: 10px;
      width: 4px;
      height: 18px;
      background: #2B7FF1;
    }
27

28 29 30 31 32 33 34 35
    .el-collapse-item__arrow {
      color: #979797;
      margin-left: 10px;
    }


  }
}