-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a content block loading animation. (#1730)
* Adding a placeholder content block loading animation. * Fixing scss lint warning. * increasing the contrast on the dark mode loader * Implementing feedback. * Switching from SVGs to regular ole' divs and animating via CSS * Updating changelog. * Tidying up the gradient and animation. Thanks, Ryan. * CSS naming & variables file * Transforming the x position rather than animating the background position. * Fixing a className and some whitespace. * Adding tests for the component.
- Loading branch information
1 parent
01b01e7
commit 4bdad39
Showing
11 changed files
with
618 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react'; | ||
|
||
import { EuiLoadingContent } from '../../../../src/components/loading'; | ||
|
||
export default () => ( | ||
<div> | ||
<EuiLoadingContent lines={3} /> | ||
</div> | ||
); |
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.