.gantt-line {
  position: relative;

  height: 32px;
  padding: 0;

  line-height: 32px;

  border-bottom: solid 1px #d9dfe2;

  &.is-clickable {
    cursor: cell;
  }

  &.is-background {
    background: url('../assets/checker32.png');
  }

  .gantt-block {
    position: absolute;
    z-index: 2;
    top: 6px;
    left: 0;

    width: 128px;
    height: 20px;

    border-radius: 2px;

    &:hover {
      cursor: pointer;
      border: solid 2px #fff;
    }

    .handle-start,
    .handle-end {
      position: absolute;
      top: 0;

      display: block;

      width: 20px;
      height: 20px;
      margin-left: -10px;

      &:hover {
        cursor: col-resize;
      }
    }

    .handle-start {
      left: 0;
    }
    .handle-end {
      left: 100%;
    }

    &.selected {
      pointer-events: none;
      opacity: 0.5;
      border: solid 2px #c5c5c5;
    }

    &.hidden {
      display: none;
    }
  }
}
