/**Variable**/

/*快捷菜单*/
.vxe-table--ctxmenu-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: $vxe-zindex + 1000;
  font-size: 12px;
  background-color: #404352;
  border: 1px solid $vxe-table-popup-border-color;
  box-shadow: 2px 2px 4px -2px rgba(0,0,0,.2);
  border-radius: 3px;
  padding: 0 1px;
  user-select: none;
  color: $vxe-white-color;
  font-family: $vxe-font-family;
  &.show {
    display: block;
  }
  ul {
    border-bottom: #2B2B2B 1px solid;

    &:last-child {
      border-bottom: none;
    }
  }

  .vxe-ctxmenu--option-wrapper {
    margin: 1px 0;
    padding: 0;
    list-style-type: none;


    //border-bottom: 1px solid #E8EAED;
    li {
      position: relative;
      //margin: 1px 0;
      border: 1px solid transparent;
      cursor: pointer;

      //&:last-child {
      //  border: 0;
      //}
      &.link--active {
        color: #2B2B2B;
        background-color: #2B2B2B;
        border-color:#C5C5C5;
        cursor: pointer;
      }
      &.link--disabled {
        cursor: not-allowed;
        .vxe-ctxmenu--link {
          color: #999999;
        }
        &.link--active {
          border-color: #404352;
          background-color: #404352;
          //&:hover {
          //  background-color: inherit;
          //}
        }
      }
    }
    .vxe-ctxmenu--link {
      display: block;
      padding: 0 30px;
      min-width: 100px;
      max-width: 180px;
      line-height: 26px;
      color: $vxe-white-color;
      .vxe-ctxmenu--link-prefix,
      .vxe-ctxmenu--link-suffix {
        position: absolute;
        top: 5px;
        margin-right: 5px;
        font-size: 16px;
      }
      .vxe-ctxmenu--link-prefix {
        left: 12px;
      }
      .vxe-ctxmenu--link-suffix {
        right: 5px;
        &.suffix--haschild {
          top: 8px;
          &:before {
            position: absolute;
            content: "";
            border: 4px solid transparent;
            border-left-color: #727272;
          }
        }
      }
      .vxe-ctxmenu--link-content {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }
    .vxe-table--ctxmenu-clild-wrapper {
      padding: 1px;
      .vxe-ctxmenu--link {
        max-width: 180px;
        padding: 0 20px 0 30px;
      }
    }
  }
}
.vxe-table--ctxmenu-clild-wrapper {
  @extend .vxe-table--ctxmenu-wrapper, .vxe-ctxmenu--option-wrapper;
  display: none;
  z-index: $vxe-zindex + 1100;
  top: -3px;
  left: 102%;
  &.show {
    display: block;
  }
}