.flow-editor--node-endpoint {
  width: 16px;
  height: 16px;
  background-color: #c5d8ff;
  padding: 5px;
  transform: rotate(-45deg);
  visibility: hidden;

  &.relation-node-endpoint {
    background-color: #9CA3C1;

    &.endpoint--linkable,
    &.endpoint--highLight {
      background-color: rgba(130, 114, 236, 1);
    }
  }

  &.endpoint--linkable,
  &.endpoint--highLight {
    background-color: #3374ff;
  }

  .node-endpoint--inner-shape {
    top: 0;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}


.flow-editor--toolbar {
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 12px;

  .toolbar--group {
    display: flex;
    padding: 0 7px;
    align-items: center;
    height: 16px;
    border-right: 1px solid #ccc;

    &:last-child {
      border-right: none;
    }

    .toolbar--action {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;

      &.clickable {
        cursor: pointer;

        &:hover {
          background: #f2f6ff;
          border-radius: 2px;
        }
      }
    }
  }
}

.flow-editor--form-panel {
  flex-shrink: 0;
  flex-grow: 0;
  box-shadow: -1px 0 0 0 #e8e9ec;
  position: relative;

  .form-panel--content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    box-shadow: -1px 0 0 0 #e8e9ec;

    .form-panel--content--title {
      height: 49px;
      width: 100%;
      // overflow: hidden;
      // white-space: nowrap;
      // text-overflow: ellipsis;
      line-height: 49px;
      padding: 0 20px;
      font-size: 18px;
      font-weight: bold;
      box-shadow: inset 0 -1px 0 0 #e8e9ec;
    }

    .form-panel--content--content {
      padding: 20px;
      flex-grow: 1;
    }

    .form-panel--content--footer {
      display: flex;
      height: 52px;
      justify-content: center;
      width: 100%;
      align-items: center;
      box-shadow: inset 0 1px 0 0 #e8e9ec;
    }
  }


}