mirror of
https://github.com/nextcloud/passman.git
synced 2025-09-29 16:24:23 +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 'share_credential';
|
||||||
@import 'settings';
|
@import 'settings';
|
||||||
|
|
||||||
#app-settings-content:not(.ng-hide) {
|
|
||||||
|
|
||||||
|
|
||||||
|
.hide-animation {
|
||||||
display: inherit !important;
|
display: inherit !important;
|
||||||
padding: 0;
|
transition: ease-in-out .5s;
|
||||||
transition: height 0.15s ease-out;
|
|
||||||
}
|
}
|
||||||
#app-settings-content.ng-hide{
|
.hide-animation.ng-hide {
|
||||||
//display: inherit !important;
|
opacity: 0;
|
||||||
height: 0;
|
|
||||||
padding: 0;
|
|
||||||
transition: height 0.15s ease-in;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.ui-dialog{
|
.ui-dialog{
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,7 +199,7 @@ style('passman', 'app');
|
||||||
>{{ 'settings' | translate }}
|
>{{ 'settings' | translate }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</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">
|
<div class="settings-container-label">
|
||||||
<input class="checkbox" id="navbarLegacyMode" type="checkbox" ng-model="legacyNavbar" ng-change="legacyNavbarChecked()">
|
<input class="checkbox" id="navbarLegacyMode" type="checkbox" ng-model="legacyNavbar" ng-change="legacyNavbarChecked()">
|
||||||
|
|
Loading…
Add table
Reference in a new issue