Sha256: 87818c63bc845c542e6135a1111118ce64f615320496a8729de13480c6c4687d

Contents?: true

Size: 977 Bytes

Versions: 5

Compression:

Stored size: 977 Bytes

Contents

////
/// @group classic-player-controls
////

/// Base typography settings for player controls.
$classic-player-controls-typography: $player-controls-typography !default;

%player_controls {
  &-container {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    @include transition(opacity 0.1s, visibility 0.1s);
    @include standard-typography($classic-player-controls-typography);

    @include desktop {
      right: 0;
      bottom: 0;
      left: 0;
      height: 10%;
    }

    @include phone {
      bottom: 10%;
      left: 5%;
      max-width: 90%;

      .hint {
        display: block;
      }
    }

    @include phone_portrait {
      bottom: 50px;
    }

    &-idle {
      @include transition-duration(1.5s);
      @include transition-delay(1s);
      opacity: 0;
      visibility: hidden;
    }

    &-paused,
    &-unplayed,
    &-has_been_faded {
      // Unused, but have to be defined for @extend to work
      display: block;
    }
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pageflow-12.0.0.rc6 app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss
pageflow-12.0.0.rc5 app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss
pageflow-12.0.0.rc4 app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss
pageflow-12.0.0.rc3 app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss
pageflow-12.0.0.rc2 app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss