Sha256: 31e6d4d15158bc21e4258b25d13913c7d882ece9a2cdc4bcf59982c1464595d7

Contents?: true

Size: 1.99 KB

Versions: 3

Compression:

Stored size: 1.99 KB

Contents

/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

@import "@material/animation/functions";
@import "@material/theme/mixins";
@import "./mixins";

/* postcss-bem-linter: define ripple-surface */

.mdc-ripple-surface {
  position: relative;
  outline: none;
  overflow: hidden;

  &[data-mdc-ripple-is-unbounded] {
    overflow: visible;
  }

  &::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: mdc-animation-exit(opacity, 120ms);
    border-radius: inherit;
    background: currentColor;
    content: "";
    opacity: 0;
  }

  &:focus::before {
    opacity: .12;
  }

  &:active::before {
    opacity: .18;
  }

  &.mdc-ripple-upgraded {
    @include mdc-ripple-base;
    @include mdc-ripple-bg((pseudo: "::before"));
    @include mdc-ripple-fg((pseudo: "::after"));
  }

  &--primary.mdc-ripple-upgraded {
    &::before,
    &::after {
      @include mdc-theme-prop(background-color, primary);
    }

    @include mdc-ripple-bg((pseudo: "::before", theme-style: primary, opacity: .14));
    @include mdc-ripple-fg((pseudo: "::after", theme-style: primary, opacity: .14));
  }

  &--accent.mdc-ripple-upgraded {
    &::before,
    &::after {
      @include mdc-theme-prop(background-color, primary);
    }

    @include mdc-ripple-bg((pseudo: "::before", theme-style: accent, opacity: .14));
    @include mdc-ripple-fg((pseudo: "::after", theme-style: accent, opacity: .14));
  }
}

/* postcss-bem-linter: end */

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
material_components_web-sass-0.3.0 vendor/assets/stylesheets/@material/ripple/mdc-ripple.scss
material_components_web-sass-0.2.0 vendor/assets/stylesheets/@material/ripple/mdc-ripple.scss
material_components_web-sass-0.1.1 vendor/assets/stylesheets/@material/ripple/mdc-ripple.scss