// Text truncate
// Requires inline-block or block for proper styling

%text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


// Text mask
%text-mask {
  position: absolute;
  top: 0;
  z-index: $tabs-pagination-zindex;
  display: block;
  width: 59px;
  height: 100%;
  pointer-events: none;
  content: "";
}

