Add shadow and transition
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
ace4a6b364
commit
277dc7051e
@ -1,11 +1,13 @@
|
||||
<div *ngIf="user">
|
||||
<div (click)="toggle($event)" class="rounded-circle menu-button" [title]="user.name">
|
||||
<span>{{getLetter()}}</span>
|
||||
<div [ngClass]="{'hidden':!showMenu}" class="card">
|
||||
<div class="menu hidden" [ngClass]="{'hidden':!showMenu}">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="username">{{user.name}}</div>
|
||||
<div><a href="#" (click)="logout($event)" i18n>logout</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -14,12 +14,20 @@ div.menu-button > span {
|
||||
color:white;
|
||||
}
|
||||
|
||||
.card {
|
||||
.menu {
|
||||
max-height: 100vh;
|
||||
transition: max-height 0.2s;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 0 20px rgba(0,0,0,.3);
|
||||
position: absolute;
|
||||
top: 3rem;
|
||||
right:0;
|
||||
}
|
||||
|
||||
.card {
|
||||
padding:0.5rem;
|
||||
min-width: 10rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.username {
|
||||
@ -34,5 +42,5 @@ div.menu-button > span {
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
max-height: 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user