Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#3155: Replace register text with svg in 'HeaderMenu' #3158

Merged
merged 10 commits into from
Dec 19, 2017
Prev Previous commit
Next Next commit
#3155: implement 'header-font-color[-hover]' classes
  • Loading branch information
jeff1evesque committed Dec 19, 2017
commit c0cf6e420c0a2a423fc0b180c23fce874831cf6d
13 changes: 12 additions & 1 deletion src/scss/_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@

.dropdown-menu {
a {
color: $header-font-color;
background-color: transparent;
}

a:hover {
color: $header-font-color-hover;
text-decoration: none;
}
}
Expand All @@ -53,10 +55,16 @@
}

.menu-label {
color: $header-font-color;
position: relative;
text-decoration: none
top: -.55em;
}

.menu-label:hover {
color: $header-font-color-hover;
}

#basic-nav-dropdown {
color: $gray-1;
text-decoration: none;
Expand All @@ -71,8 +79,11 @@
padding: 0;
}
.nav-item {
padding-top: $gutter-1 / 4

a {
padding: 0;
padding-left: 0;
color: $header-font-color;
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ $red-1: #800000;
$red-2: #86181d;
$red-3: #ffdce0;
$lcol-width: 16rem;
$header-font-color: #ddd;
$header-font-color-hover: #fff;