mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Add the ability to enable/disable UI animations. Fixes #1978
This commit is contained in:
committed by
Dave Page
parent
94e1e46201
commit
7805170783
41
web/pgadmin/static/css/alertify.noanimation.css
Normal file
41
web/pgadmin/static/css/alertify.noanimation.css
Normal file
@@ -0,0 +1,41 @@
|
||||
.alertify .ajs-dimmer,
|
||||
.alertify .ajs-modal,
|
||||
.alertify-notifier,
|
||||
.alertify-notifier .ajs-message.ajs-visible,
|
||||
.alertify-notifier .ajs-message,
|
||||
.alertify-notifier.ajs-center .ajs-message.ajs-visible,
|
||||
.alertify-notifier.ajs-center .ajs-message
|
||||
{
|
||||
-moz-transition: none;
|
||||
-webkit-transition: none;
|
||||
-o-transition: none;
|
||||
transition: none;
|
||||
-webkit-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.alertify.ajs-zoom.ajs-in:not(.ajs-hidden) .ajs-dialog {
|
||||
-webkit-animation-name: ajs-zoomIn;
|
||||
animation-name: ajs-zoomIn;
|
||||
}
|
||||
.alertify.ajs-zoom.ajs-out.ajs-hidden .ajs-dialog {
|
||||
-webkit-animation-name: ajs-zoomOut;
|
||||
animation-name: ajs-zoomOut;
|
||||
}
|
||||
|
||||
@-webkit-keyframes ajs-zoomIn {
|
||||
-webkit-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
@keyframes ajs-zoomIn {
|
||||
-webkit-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
@-webkit-keyframes ajs-zoomOut {
|
||||
-webkit-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
@keyframes ajs-zoomeOut {
|
||||
-webkit-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
Reference in New Issue
Block a user