mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-29 21:26:58 +00:00
Added Twitter Bootstrap source
We're going to build a custom version
This commit is contained in:
20
cssbuild/twitter-bootstrap/less/component-animations.less
Executable file
20
cssbuild/twitter-bootstrap/less/component-animations.less
Executable file
@@ -0,0 +1,20 @@
|
||||
// COMPONENT ANIMATIONS
|
||||
// --------------------
|
||||
|
||||
.fade {
|
||||
opacity: 0;
|
||||
.transition(opacity .15s linear);
|
||||
&.in {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.collapse {
|
||||
position: relative;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
.transition(height .35s ease);
|
||||
&.in {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user