mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
fix(button): rtl fix for md ripple effect (#11842)
* fix(button): rtl fix for md ripple effect * add multi-dir mixin * Linting * remove the empty line and re place the comment * Linting...
This commit is contained in:
@ -470,7 +470,6 @@ $button-md-strong-font-weight: bold !default;
|
||||
// it's display none, and .md sets to display block.
|
||||
|
||||
.button-effect {
|
||||
@include position(0, null, null, 0);
|
||||
@include border-radius(50%);
|
||||
|
||||
position: absolute;
|
||||
@ -484,6 +483,13 @@ $button-md-strong-font-weight: bold !default;
|
||||
transition-timing-function: ease-in-out;
|
||||
|
||||
pointer-events: none;
|
||||
|
||||
@include multi-dir() {
|
||||
// scss-lint:disable PropertySpelling
|
||||
top: 0;
|
||||
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.md .button-effect {
|
||||
|
Reference in New Issue
Block a user