-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): rtl support for Collapse and Loading
- Loading branch information
1 parent
700b5f1
commit a80c4c5
Showing
10 changed files
with
141 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#{$collapse-prefix}[dir=rtl] { | ||
#{$collapse-prefix}-panel-title { | ||
padding: $collapse-title-padding-tb $collapse-icon-margin-r + $collapse-icon-margin-l + $collapse-icon-size $collapse-title-padding-tb 0; | ||
} | ||
|
||
#{$collapse-prefix}-panel-icon { | ||
left: inherit; | ||
right: $collapse-icon-margin-l; | ||
|
||
@include icon-size($collapse-icon-size, 0, 0, rotate($collapse-icon-rotation-collapsed-rtl)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#{$loading-prefix}-fusion-reactor[dir=rtl] { | ||
@include animation-name(nextVectorRouteRTL); | ||
} | ||
|
||
@include keyframes(nextVectorRouteRTL) { | ||
0% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 0)); | ||
} | ||
5% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 1)); | ||
} | ||
25% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 1)); | ||
} | ||
30% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 2)); | ||
} | ||
50% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 2)); | ||
} | ||
55% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 3)); | ||
} | ||
75% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 3)); | ||
} | ||
80% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 4)); | ||
} | ||
100% { | ||
@include transform(rotate($loading-fusion-vector-rotation-step-rtl * 4)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters