Skip to content

Commit

Permalink
Fix run button style
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jun 2, 2018
1 parent 2954cb5 commit 7585632
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/librustdoc/html/static/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,8 @@ a {
content: '\2002\00a7\2002';
}

.docblock a:not(.srclink):hover, .docblock-short a:not(.srclink):hover, .stability a {
.docblock a:not(.srclink):not(.test-arrow):hover,
.docblock-short a:not(.srclink):not(.test-arrow):hover, .stability a {
text-decoration: underline;
}

Expand Down
3 changes: 2 additions & 1 deletion src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ a {
color: #ddd;
}

.docblock a:not(.srclink), .docblock-short a:not(.srclink), .stability a {
.docblock a:not(.srclink):not(.test-arrow), .docblock-short a:not(.srclink):not(.test-arrow),
.stability a {
color: #D2991D;
}

Expand Down
3 changes: 2 additions & 1 deletion src/librustdoc/html/static/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ a {
color: #000;
}

.docblock a:not(.srclink), .docblock-short a:not(.srclink), .stability a {
.docblock a:not(.srclink):not(.test-arrow), .docblock-short a:not(.srclink):not(.test-arrow),
.stability a {
color: #3873AD;
}

Expand Down

0 comments on commit 7585632

Please sign in to comment.