Skip to content

Commit 73961df

Browse files
fix css problem on underlining links
1 parent a2fba4c commit 73961df

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

docs/static/css/main.css

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/css/theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/main.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ blockquote {
143143
a {
144144
color: var(--color-fg);
145145
--ul-color: var(--color-link);
146-
text-decoration: solid var(--ul-color) underline;
146+
/* text-decoration: solid var(--ul-color) underline; */
147+
/* for some reason underline doesn't work in Safari ?!? */
148+
border-bottom: 1px solid var(--ul-color);
147149
}
148150

149151
a:visited {
@@ -335,4 +337,4 @@ del {
335337
::selection {
336338
color: black;
337339
background-color: #ff07;
338-
}
340+
}

static/css/theme.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
--theme-3-darker: darkorange;
1616
--theme-4: #808;
1717
--theme-4-darker: #a3a;
18-
--color-heading: var(--theme-1);
18+
--color-heading: var(--theme-1-lightest);
1919
--color-link: var(--theme-2);
2020
--color-link-visited: var(--theme-1);
2121
--color-open-tab: var(--theme-3);

0 commit comments

Comments
 (0)