mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
Added simple theming system
This commit is contained in:
20
themes/default/less/component-animations.less
Executable file
20
themes/default/less/component-animations.less
Executable file
@@ -0,0 +1,20 @@
|
||||
// COMPONENT ANIMATIONS
|
||||
// --------------------
|
||||
|
||||
.fade {
|
||||
.opacity(0);
|
||||
.transition(opacity .15s linear);
|
||||
&.in {
|
||||
.opacity(100);
|
||||
}
|
||||
}
|
||||
|
||||
.collapse {
|
||||
position: relative;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
.transition(height .35s ease);
|
||||
&.in {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user