mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
22 lines
429 B
SCSS
22 lines
429 B
SCSS
@import "../../globals.md";
|
|
|
|
// Material Design Ripple Effect
|
|
// --------------------------------------------------
|
|
|
|
$ripple-background-color: rgba(0, 0, 0, 0.1) !default;
|
|
|
|
|
|
md-ripple {
|
|
position: absolute;
|
|
z-index: 0;
|
|
display: block;
|
|
border-radius: 50%;
|
|
|
|
background-color: ripple-background-color($ripple-background-color);
|
|
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
|
|
transform: scale(0.001) translateZ(0);
|
|
}
|