.control {
  @include transition-hover-active;
  @include transition-properties-common;
}

// Default feedback for hit areas
// NOTE: might be better not to set anything here since this might need a lot of overriding in many places
.control-enabled {
  @include pointer;

  // Prevent user select when double clicking or swiping etc.
  &.control-mouse-down {
    user-select: none;
  }

}
