Skip to content
history.scss 1.54 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
page-history {
  .toolbar-ios ion-title {
    padding: 0;
    width: 80%;
  }
wangqinghua's avatar
wangqinghua committed

wangqinghua's avatar
wangqinghua committed
  span {
    margin-right: 5px;
  }

wangqinghua's avatar
wangqinghua committed
  .history {
    padding: 10px 10px 10px 30px;
  }

wangqinghua's avatar
wangqinghua committed
  .history::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 5px;
    width: 2px;
    height: 90%;
    background-color: #dddddd;
    z-index: 1;
    border-radius: 5px;
  }

wangqinghua's avatar
wangqinghua committed
  .history-item {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
wangqinghua's avatar
wangqinghua committed

    > div {
      margin-bottom: 5px;
    }
  }

  .audit-more {
    position: relative;
  }

  .history-item::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 5px;
    z-index: 2;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 2px solid #5991CA;
    background-color: #fff;
  }

  .audit-more::before {
    content: "";
    position: absolute;
    left: -18px;
    top: -4px;
    z-index: 2;
    border-top: 4px solid transparent;
    border-right: 8px solid #dddddd;
    border-bottom: 4px solid transparent;
  }

  .audit-more::after {
    content: "";
    position: absolute;
    left: -16px;
    top: -4px;
    z-index: 2;
    border-top: 4px solid transparent;
    border-right: 8px solid #ffffff;
    border-bottom: 4px solid transparent;
wangqinghua's avatar
wangqinghua committed
  }

  .history-item + .history-item {
    margin-top: 10px;
  }

  .left, .option-left {
    color: #999999;
  }

  .right {
    color: #4b90c8;
  }
wangqinghua's avatar
wangqinghua committed

  .audit-option {
    display: flex;

    .option-left {
      width: 65px;
    }

    .option-right {
      width: calc(100% - 60px);
    }
  }
wangqinghua's avatar
wangqinghua committed
}