.ivu-drawer-wrap.model-clipboard-drawer {

  >.ivu-drawer.ivu-drawer-right {

      >.ivu-drawer-content {

          >.ivu-drawer-body {

              >.model-clipboard-warp {
                  height: 100%;

                  >.model-clipboard-header {
                      height: 37px;
                      display: flex;
                      justify-content: space-between;
                      align-items: center;
                      padding: 3px 8px;
                      border-bottom: 1px solid var(--app-dividing-line-color-bright);

                      >.title {
                          font-size: 14px;
                          font-weight: 700;
                          color: var(--view-font-color);
                      }

                      >.actions {

                          >.ivu-btn {
                              margin-left: 8px;
                          }

                          >.ivu-btn.close {
                              background-color: transparent;
                              border-color: transparent;
                          }
                      }
                  }

                  >.model-clipboard-content {
                      height: calc(100% - 37px);
                      padding: 6px;
                      overflow-x: hidden;
                      overflow-y: auto;

                      >.el-timeline {

                          >.el-timeline-item {
                              padding-bottom: 10px;

                              >.el-timeline-item__wrapper {
                                  padding-left: 18px;
                              }
                          }
                      }
                  }
              }
          }
      }
  }
}