mirror of
https://github.com/nextcloud/passman.git
synced 2025-09-26 14:54:49 +08:00
Fixed animation on settingsmenu
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
da88114962
commit
c0aef3aebf
2 changed files with 10 additions and 9 deletions
|
@ -32,17 +32,18 @@
|
|||
@import 'share_credential';
|
||||
@import 'settings';
|
||||
|
||||
#app-settings-content:not(.ng-hide) {
|
||||
|
||||
|
||||
|
||||
.hide-animation {
|
||||
display: inherit !important;
|
||||
padding: 0;
|
||||
transition: height 0.15s ease-out;
|
||||
transition: ease-in-out .5s;
|
||||
}
|
||||
#app-settings-content.ng-hide{
|
||||
//display: inherit !important;
|
||||
height: 0;
|
||||
padding: 0;
|
||||
transition: height 0.15s ease-in;
|
||||
.hide-animation.ng-hide {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
|
||||
.ui-dialog{
|
||||
z-index: 9999;
|
||||
}
|
||||
|
|
|
@ -199,7 +199,7 @@ style('passman', 'app');
|
|||
>{{ 'settings' | translate }}
|
||||
</button>
|
||||
</div>
|
||||
<div id="app-settings-content" ng-show="settingsShown">
|
||||
<div id="app-settings-content" class="hide-animation" ng-hide="!settingsShown">
|
||||
|
||||
<div class="settings-container-label">
|
||||
<input class="checkbox" id="navbarLegacyMode" type="checkbox" ng-model="legacyNavbar" ng-change="legacyNavbarChecked()">
|
||||
|
|
Loading…
Add table
Reference in a new issue