Sha256: b20fa48b461df3b069010abfbec73cfaa167dc8322b3fd0cf3ccdb0bbe5b82d3

Contents?: true

Size: 906 Bytes

Versions: 5

Compression:

Stored size: 906 Bytes

Contents

////
/// @group slim-player-controls
////

/// Base typograpy settings.
$slim-player-controls-typography: $player-controls-typography !default;

%player_controls {
  &-container,
  &-background {
    @include transition(opacity 0.2s linear, visibility 0.2s linear);
  }

  &-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    @include user-select(none);

    @include standard-typography($slim-player-controls-typography);
  }

  &-background::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 2;
    pointer-events: none;

    @include shadow-bottom;
  }

  &-container-idle,
  &-background-idle::after {
    @include transition-delay(1s);
    opacity: 0;
    visibility: hidden;
  }

  &-container-hover,
  &-background-hover::after {
    opacity: 1;
    visibility: visible;
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pageflow-0.11.4 app/assets/stylesheets/pageflow/themes/default/player_controls/slim/container.scss
pageflow-0.11.3 app/assets/stylesheets/pageflow/themes/default/player_controls/slim/container.scss
pageflow-0.11.2 app/assets/stylesheets/pageflow/themes/default/player_controls/slim/container.scss
pageflow-0.11.1 app/assets/stylesheets/pageflow/themes/default/player_controls/slim/container.scss
pageflow-0.11.0 app/assets/stylesheets/pageflow/themes/default/player_controls/slim/container.scss