mirror of
https://github.com/nextcloud/passman.git
synced 2025-09-11 23:44:20 +08:00
Fix for wrong alignment in vaultlist
Signed-off-by: Felix Nüsse <Felix.nuesse@t-online.de>
This commit is contained in:
parent
9b32e46872
commit
0dba50d6b4
3 changed files with 9 additions and 3 deletions
|
@ -53,9 +53,16 @@
|
|||
}
|
||||
}
|
||||
|
||||
.vaultlist_sidebar_hidden{
|
||||
background-color: red;
|
||||
width: 100vw !important;
|
||||
margin-left: 0px !important;
|
||||
}
|
||||
#app-content {
|
||||
|
||||
margin-left: 300px;
|
||||
width: calc(100vw - 300px);
|
||||
|
||||
overflow-x: hidden;
|
||||
|
||||
//width: 100%;
|
||||
|
|
|
@ -37,7 +37,6 @@
|
|||
}
|
||||
.vault_wrapper{
|
||||
margin:0 auto auto auto;
|
||||
transform: translate(-150px);
|
||||
|
||||
max-width: 420px;
|
||||
@include border-radius(5px);
|
||||
|
|
|
@ -124,7 +124,7 @@ style('passman', 'app');
|
|||
<i class="fa fa-times fa-2x" alt="Close" ng-click="setHttpWarning(true);"></i>
|
||||
</div>
|
||||
|
||||
<div id="app-navigation" ng-show="selectedVault" ng-controller="MenuCtrl">
|
||||
<div id="app-navigation" ng-if="selectedVault" ng-controller="MenuCtrl" style="background-color: yellow;">
|
||||
<ul class="with-icon">
|
||||
<!--<li class="taginput">
|
||||
<a class="taginput">
|
||||
|
@ -185,7 +185,7 @@ style('passman', 'app');
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="app-content">
|
||||
<div id="app-content" ng-class="{'vaultlist_sidebar_hidden': !selectedVault}">
|
||||
<div id="app-content-wrapper">
|
||||
<div id="content" ng-view="">
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue