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

fix(frontend): Improve low constrast of code blocks and links #2491

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion static/sass/_base.scss
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@ $darkerblue: #1e2933;
$link-color: $blue;
$link-hover: $darkerblue;

$code-green: #11a611;
$code-green: #0c7d0c;
$default-border-color: $grey-lighter; /* Set a generic border color here to keep them consistent */


6 changes: 6 additions & 0 deletions static/sass/style.scss
Original file line number Diff line number Diff line change
@@ -66,6 +66,12 @@ a, a:active, a:visited, a:hover, a:visited:hover {
text-decoration: none;
}

table tr td {
a, a:active, a:visited, a:hover, a:visited:hover {
color: darken($link-color, 2%);
}
}

a:hover, a:focus { color: $link-hover; }

/*modernizr*/ .touch a[href^="tel:"] { border-bottom: 1px dotted $default-color; }