Files @ bf46c82fe4a4
Branch filter:

Location: symposion_app/static/src/bootstrap/scss/mixins/_badge.scss

Joel Addison
Fix venueless token creation

Do not generate token or checkin if user does not have a ticket.
Clear existing token if user no longer has a ticket.
@mixin badge-variant($bg) {
  color: color-yiq($bg);
  background-color: $bg;

  @at-root a#{&} {
    @include hover-focus {
      color: color-yiq($bg);
      background-color: darken($bg, 10%);
    }

    &:focus,
    &.focus {
      outline: 0;
      box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
    }
  }
}