mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 12:25:22 +02:00
Initial commit
This commit is contained in:
commit
bec8f53386
218 changed files with 55344 additions and 0 deletions
22
assets/less/component-animations.less
Executable file
22
assets/less/component-animations.less
Executable file
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue