@mixin extlist-row {
  overflow: visible;
}

@mixin extlist-column {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  word-break: break-all;

  &:hover {
    .prio-trigger {
      visibility: visible;
    }
  }

  .cmf-row-wrap {
    position: relative;
    display: flex;
    align-items: center;

    .cmf-row-field {
      max-height: 50px;

      &.is-editing {
        position: absolute;
        z-index: 10000;

        max-height: none;
        padding: 5px;

        background: var(--color-gray-fff);
        border: 1px solid black;
        border-radius: 5px;
      }
    }
  }
}

@mixin animation-hide {
  .menu:hover .animation-hide {
    animation: show-caption 0.01s 0.01s 1;
    animation-fill-mode: both;
    animation-delay: 0.5s;
  }

  .animation-hide {
    opacity: 0;
  }
}
