/**Variable**/

.vhb-grid {
  position: relative;
  &.is--loading {
    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 99;
      user-select: none;
      background-color: $vhb-loading-background-color;
    }
    & > .vhb-table {
      .vhb-loading {
        background-color: transparent;
      }
    }
  }
  &.is--maximize {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.5em 1em;
    background-color: $vhb-grid-maximize-background-color;
  }
  .vhb-body--row {
    &.row--pending {
      color: $vhb-table-validate-error-color;
      text-decoration: line-through;
      cursor: no-drop;
      .vhb-body--column {
        position: relative;
        &:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 0;
          width: 100%;
          height: 0;
          border-bottom: 1px solid $vhb-table-validate-error-color;
          z-index: 1;
        }
      }
    }
  }
  .vhb-grid--form-wrapper,
  .vhb-grid--top-wrapper,
  .vhb-grid--bottom-wrapper  {
    position: relative;
  }
}

.vhb-grid {
  font-size: $vhb-font-size;
  &.size--medium {
    font-size: $vhb-font-size-medium;
  }
  &.size--small {
    font-size: $vhb-font-size-small;
  }
  &.size--mini {
    font-size: $vhb-font-size-mini;
  }
}
