@import '@teambit/base-ui.theme.colors/colors.module.scss';

.namespace {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  font-weight: bold;
  font-size: inherit;
  padding-right: 8px;
  font-size: var(--bit-p-xs);
  cursor: pointer;
  &:hover {
    background: var(--bit-bg-heavy, #f6f6f6);
  }

  .arrow {
    display: inline-block;
    line-height: inherit;
    transition: all 300ms;
    margin-right: 10px;
    color: var(--bit-text-color-light, #6c707c);
    &.collapsed {
      transform: rotate(-0.25turn);
    }
  }
}

.highlighted {
  color: var(--bit-accent-heavy, #5d4aec);
}

.left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 8px;
    line-height: 24px;
  }
}

.componentTree {
  overflow: hidden;
  transition: max-height 400ms ease-in-out;
  font-size: var(--bit-p-xs);
}
