-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for Bug 1211210 in the ui where the tile list for builder images …
…don't clear correctly in some situations. Remove animation transition css from _core, import new _component-animations and scope rule to .show-hide class
- Loading branch information
Showing
7 changed files
with
926 additions
and
936 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// Component animations | ||
// -------------------------------------------------- | ||
.show-hide.fade { | ||
opacity: 0; | ||
.transition(opacity 0.2s ease 0s); | ||
&.in { | ||
opacity: 1; | ||
} | ||
} | ||
.collapse { | ||
display: none; | ||
&.in { | ||
display: block; | ||
} | ||
} | ||
.collapsing { | ||
position: relative; | ||
height: 0; | ||
overflow: hidden; | ||
.transition(height .10s ease); | ||
} |
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
Oops, something went wrong.