Skip to content

Commit 2227307

Browse files
authored
Merge pull request jupyter#558 from jupyter/orange-hyperlinks
Orange hyperlinks
2 parents 11ea98d + 6517639 commit 2227307

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

_sass/bootstrap/_index.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
@import "normalize"; // Baseline the site across browsers
1818
@import "basics"; // Basic layout tools
19-
@import "hyperlinks"; // <a> tags
2019
@import "images"; // <img> tags
2120
@import "sr"; // Screen reader adaptations
2221
@import "headlines"; // <h1>, <h2>, etc. tags

_sass/bootstrap/_hyperlinks.scss renamed to _sass/components/_hyperlinks.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
@import "settings/colors";
2+
13
a {
2-
color: #337ab7;
4+
color: $orange;
35
text-decoration: none;
46
}
57
a:hover,
68
a:focus {
7-
color: #23527c;
9+
opacity: 0.8;
810
text-decoration: underline;
911
}
1012
a:focus {

assets/css/main.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
@import "about";
1010
@import "gallery";
1111
@import "syntax";
12+
@import "components/hyperlinks";
1213
@import "components/footer";
1314
@import "components/jumbotron";
14-
@import "components/jupyterhub";
15+
@import "components/jupyterhub";

0 commit comments

Comments
 (0)