Custom header disconnection dropdown-item style.

This commit is contained in:
2019-01-30 22:00:14 +01:00
parent 005440bff5
commit b403e53a23
2 changed files with 6 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
<links> <links>
<div class="navbar-nav ml-auto nav-flex-icons"> <div class="navbar-nav ml-auto nav-flex-icons">
<!-- <app-search-bar></app-search-bar> --> <!-- <app-search-bar></app-search-bar> -->
</div> </div>
<ul class="navbar-nav ml-auto nav-flex-icons" style="margin-left: 0 !important;"> <ul class="navbar-nav ml-auto nav-flex-icons" style="margin-left: 0 !important;">
<li class="nav-item" *ngIf="!isAuthenticated()"> <li class="nav-item" *ngIf="!isAuthenticated()">
<a routerLink="/login" class="nav-link waves-light" mdbRippleRadius> <a routerLink="/login" class="nav-link waves-light" mdbRippleRadius>

View File

@@ -70,7 +70,7 @@
display: none; /* Hidden by default */ display: none; /* Hidden by default */
width: 100%; /* Full width (cover the whole page) */ width: 100%; /* Full width (cover the whole page) */
height: 100%; /* Full height (cover the whole page) */ height: 100%; /* Full height (cover the whole page) */
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
@@ -85,3 +85,7 @@
overflow: hidden; overflow: hidden;
transition: max-height 0.2s ease-out; transition: max-height 0.2s ease-out;
} }
.dropdown-item.danger-color-dark:hover {
background-color: #ff4444 !important;
}