// Uses @include optional-at-root mixin

@mixin selection($current-selector: false) {
  @include optional-at-root('::-moz-selection') {
    @content;
  }

  @include optional-at-root('::-selection') {
    @content;
  }
}
