Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/amo/components/SectionLinks/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

.SectionLinks-link,
.SectionLinks-link:link {
color: transparentize($white, 0.5);
color: $header-text-not-active-color;
margin: 0 15px;
padding: 0 0 2px;
text-decoration: none;
Expand All @@ -25,7 +25,7 @@

&:focus,
&:hover {
border-bottom: 3px solid transparentize($white, 0.5);
border-bottom: 3px solid $header-text-not-active-color;
}

&:active {
Expand Down
2 changes: 2 additions & 0 deletions src/ui/components/SearchInput/style.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import "~core/css/inc/mixins";
@import "~ui/components/Icon/vars";
@import "~ui/css/vars";

$input-height: 48px;
$icon-margin-start: 24px;
Expand Down Expand Up @@ -47,6 +48,7 @@ $icon-margin-end: 12px;
// Include the start margin on the end so that icon and text is centred together.
@include padding-end($icon-margin-start);

color: $header-text-not-active-color;
display: inline-block;
height: $input-height;
line-height: $input-height;
Expand Down
1 change: 1 addition & 0 deletions src/ui/css/vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ $type-black: $black;
$link-color: #0d96ff;

$header-accent-color: $link-color;
$header-text-not-active-color: transparentize($white, 0.5);

// Fonts
$font-size-s: 12px;
Expand Down