@import "../../mixins.scss";
@import "../../variables.scss";

.node {
  margin-left: 0;
  position: relative;
  display: block;
  text-decoration: none;
  color: $text-color;

  .node {
    margin-left: 20px;
  }

  &:last-child {
    padding-bottom: 10px;
  }

  &__arrow {
    //left: 7px;
    //position: absolute;
  }

  &__name {
    //flex: 0 0 30%;
  }

  &__unknown {
    color: $text-muted-color;
  }

  &__marks {
    display: block;
    float: right;
    white-space: nowrap;
  }

  &__mark {
    padding-left: 4px;
    padding-right: 4px;
    opacity: 0;

    &_shown {
      opacity: 1;
    }
  }

  &__order {
    min-width: 16px;
    font-size: 12px;
    color: $text-muted-color;
    text-align: center;
  }

  &__anchor {
    @include status-text();
    display: flex;
  }

  &__stats {
    display: block;
    float: right;
    white-space: nowrap;
  }

  &__title {
    overflow: hidden;
    line-height: 1.2em;
    padding: 5px $gap-size 6px 16px;
    gap: 0 4px;
    flex: 1;
    display: flex;
    cursor: pointer;
    border-top: 1px solid #eceff1;
    position: relative;
    align-items: center;

    .node__leaf & {
      padding: 7px $gap-size 7px 18px;
    }

    &_active {
      background-color: $selected-color;

      &::before {
        background-color: $selected-color;
      }
    }

    &:hover {
      background-color: $hover-color;

      &::before {
        background-color: $hover-color;
      }
    }
  }

  &__time {
    padding: 5px;
  }

  &__parameters {
    padding: 0 2px;
    color: $text-muted-color;
    min-width: 2ch;
    font-size: smaller;

    &_separator:last-child {
      display: none;
    }
  }

  &__children {
    display: none;

    .node__expanded > & {
      display: block;
    }
  }

  &:focus {
    outline: 0;
  }
}

[dir="rtl"] .attachment-row.attachment-row_selected > .attachment-row__arrow > .fa-angle-right {
  transform: rotate(180deg);
}

[dir="rtl"] .step_expanded > .step__title > .step__arrow {
  transform: rotate(90deg);
}

[dir="rtl"] .node__expanded > .node__title > .node__arrow {
  transform: rotate(90deg);
}

[dir="ltr"] .node__expanded > .node__title > .node__arrow {
  transform: rotate(90deg);
}
