Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add custom build warning #1451

Merged
merged 1 commit into from Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion animate.compat.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion animate.css
Expand Up @@ -5,7 +5,7 @@
* Version - 4.1.1
* Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
*
* Copyright (c) 2021 Animate.css
* Copyright (c) 2022 Animate.css
*/
:root {
--animate-duration: 1s;
Expand Down
2 changes: 1 addition & 1 deletion animate.min.css

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/animate.min.css

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions docs/index.html
Expand Up @@ -1208,9 +1208,11 @@ <h2>Migration from v3.x and under</h2>

<section class="docSection-custom-builds" id="custom-builds">
<h2>Custom Builds</h2>
<p>Animate.css is powered by npm, postcss + postcss-preset-env, which means you can create custom builds pretty easily, using future CSS today.</p>
<p class="warning">Custom builds are not possible from a node_modules folder as we don't ship the building tools in the npm module.</p>
<p>Animate.css is powered by npm, postcss + postcss-preset-env, which means you can create custom builds pretty easily, using future CSS with proper fallbacks.</p>
<p>First of all, you’ll need Node and all other dependencies:</p>
<pre><code class="language-shell">$ cd path/to/animate.css/
<pre><code class="language-shell">$ git clone https://github.com/animate-css/animate.css.git
$ cd animate.css
$ npm install
</code></pre>
<p>Next, run <code>npm start</code> to compile your custom build. Three files will be generated:</p>
Expand Down
36 changes: 23 additions & 13 deletions docs/style.css
Expand Up @@ -148,6 +148,16 @@ h5 {
text-decoration: none;
}

.warning {
padding: 1rem;

color: #000;
background: var(--c-background-dark);
border-radius: 0.25em;

font-style: italic;
}

blockquote {
border-left: 6px solid var(--c-secondary);
padding-left: 1rem;
Expand Down Expand Up @@ -283,7 +293,7 @@ blockquote {
justify-content: space-between;
}

.animation-item--title{
.animation-item--title {
width: 100%;
}

Expand Down Expand Up @@ -320,23 +330,23 @@ blockquote {
.copy-icon {
position: relative;
height: 10px;
border: 1px solid rgba(0, 0, 0, .3);
border: 1px solid rgba(0, 0, 0, 0.3);
align-self: center;
outline: none;
cursor: pointer;
background: none;
background: #F7D7B5;
background: #f7d7b5;
visibility: hidden;
}

.copy-icon::before{
.copy-icon::before {
content: '';
position: absolute;
right: -4px;
top: -4px;
width: 120%;
height: 120%;
border: 1px solid rgba(0, 0, 0, .3);
border: 1px solid rgba(0, 0, 0, 0.3);
z-index: -1;
}

Expand All @@ -345,7 +355,7 @@ blockquote {
}

.animation-item .copy-icon:hover,
.animation-item .copy-icon:hover::before{
.animation-item .copy-icon:hover::before {
border-color: black;
}

Expand Down Expand Up @@ -663,7 +673,7 @@ blockquote {
}

.moon-svg {
right: 5px;
right: 5px;
}

.sun-svg {
Expand All @@ -686,19 +696,19 @@ blockquote {

.dark .animation-list,
.dark .sidebar {
background: #15151D;
background: #15151d;
}

.dark .button.button-animations,
.dark .callout-hideList.button {
color: #e0e0e0;
border-color: rgba(255, 255, 255, .7);
border-color: rgba(255, 255, 255, 0.7);
outline: none;
}

.dark .copy-icon,
.dark .copy-icon:hover {
background: #15151D;
background: #15151d;
border-color: #e0e0e0;
}

Expand All @@ -714,16 +724,16 @@ blockquote {
.dark h2,
.dark h3,
.dark h4,
.dark a[title="Documentation"],
.dark a[title='Documentation'],
.dark pre * {
color: #e0e0e0;
}

.dark section {
border-color: rgba(255, 255, 255, .2);
border-color: rgba(255, 255, 255, 0.2);
}

.dark h1,
.dark a {
color: #4672fe;
}
}
7 changes: 5 additions & 2 deletions docsSource/sections/07-custom-builds.md
@@ -1,11 +1,14 @@
## Custom Builds

Animate.css is powered by npm, postcss + postcss-preset-env, which means you can create custom builds pretty easily, using future CSS today.
<p class="warning">Custom builds are not possible from a node_modules folder as we don't ship the building tools in the npm module.</p>

Animate.css is powered by npm, postcss + postcss-preset-env, which means you can create custom builds pretty easily, using future CSS with proper fallbacks.

First of all, you’ll need Node and all other dependencies:

```shell
$ cd path/to/animate.css/
$ git clone https://github.com/animate-css/animate.css.git
$ cd animate.css
$ npm install
```

Expand Down