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:
Sina
2017-06-07 20:37:13 +04:30
committed by Brandy Carney
parent f0c6948ef8
commit bb966e5a31

View File

@ -470,7 +470,6 @@ $button-md-strong-font-weight: bold !default;
// it's display none, and .md sets to display block. // it's display none, and .md sets to display block.
.button-effect { .button-effect {
@include position(0, null, null, 0);
@include border-radius(50%); @include border-radius(50%);
position: absolute; position: absolute;
@ -484,6 +483,13 @@ $button-md-strong-font-weight: bold !default;
transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;
pointer-events: none; pointer-events: none;
@include multi-dir() {
// scss-lint:disable PropertySpelling
top: 0;
left: 0;
}
} }
.md .button-effect { .md .button-effect {