Fix navlinks-parent color on small screens (#300)

* Fix navlinks-parent color on small screens

* CSS Color 0.2 alpha
This commit is contained in:
Jennings Zhang 2018-01-07 20:35:49 -05:00 committed by Dean Attali
parent 1bb53f44ff
commit 3cbba07b3d

View File

@ -227,7 +227,7 @@ img {
}
@media only screen and (max-width: 767px) {
.navbar-custom .nav .navlinks-container.show-children {
background-color: #eee;
background: rgba(0, 0, 0, 0.2);
}
.navbar-custom .nav .navlinks-container.show-children .navlinks-children {
display: block;
@ -238,7 +238,7 @@ img {
text-align: center;
}
.navbar-custom .nav .navlinks-container:hover {
background: rgba(0, 0, 0, 0.1);
background: rgba(0, 0, 0, 0.2);
}
.navbar-custom .nav .navlinks-container:hover .navlinks-children {
display: block;
@ -741,5 +741,5 @@ td.gutter {
}
.navbar-default button.navbar-toggle[aria-expanded="true"] {
background-color: rgba(0, 0, 0, .2);
background-color: rgba(0, 0, 0, 0.2);
}