Fix user drop down coloring
This commit is contained in:
parent
2469d063ed
commit
ce286e8b88
1 changed files with 22 additions and 0 deletions
|
@ -21,6 +21,16 @@ nav.navbar-default .navbar-nav>li>a {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
|
||||||
|
color: #BEE1FF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent !important;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.notification-view-element {
|
.notification-view-element {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
@ -1206,6 +1216,18 @@ i.toggle-icon:hover {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.landing-page .nav > li > a {
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.landing-page .nav > li > a:hover, .landing-page .nav > li > a:focus {
|
||||||
|
background: rgba(255, 255, 255, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.landing-page .nav .open>a, .landing-page .nav .open>a:hover, .landing-page .nav .open>a:focus {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
.landing {
|
.landing {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue