Skip to content

Commit

Permalink
Merge pull request #20 from RaitoBezarius/raito/types-links
Browse files Browse the repository at this point in the history
  • Loading branch information
gebner committed Jun 3, 2020
2 parents 888e298 + c0f0504 commit cdec7f9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions style_js_frame.css
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,16 @@ code a:link, code a:visited, code a:active,
color: black;
}

/** Don't show underline on types, to prevent the ≤ vs < confusion. **/
.decl_type a:link, .structure_field a:link {
text-decoration: none;
}

/** Show it on hover though. **/
.decl_type a:hover, .structure_field a:hover {
text-decoration: underline;
}

code a:hover, .decl a:hover {
color: darkslategray;
}
Expand Down

0 comments on commit cdec7f9

Please sign in to comment.