Finish picking detail web view colors. Fix #403.

This commit is contained in:
Brent Simmons 2018-08-28 21:32:11 -07:00
parent 5ecba521ef
commit 9957e98e0b
1 changed files with 21 additions and 5 deletions

View File

@ -34,6 +34,16 @@ body.light a, body.light a:link, body.light a:visited {
body.light .headerTable {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.light .header {
color: rgba(0, 0, 0, 0.3);
}
body.light .header a:link, body.light .header a:visited {
color: rgba(0, 0, 0, 0.3);
}
body.light .articleDateline, body.light .articleDateLine.a:link, body.light .articleDateline a:visited {
color: rgba(0, 0, 0, 0.3);
}
/* Dark mode */
body.dark {
@ -47,12 +57,19 @@ body.dark .headerTable {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header a:link, .header a:visited {
color: rgba(0, 0, 0, 0.3);
body.dark .header a:link, body.dark .header a:visited {
color: #4490e2;
}
.header {
color: rgba(0, 0, 0, 0.3);
body.dark .header {
color: #d2d2d2;
}
body.dark .articleDateline {
color: #d2d2d2;
}
body.dark .articleDateline, body.dark .articleDateLine.a:link, body.dark .articleDateline a:visited {
color: #d2d2d2;
}
.feedlink a:link, .feedlink a:visited {
color: rgba(0, 0, 0, 0.6);
}
@ -74,7 +91,6 @@ body.dark .headerTable {
}
.articleDateline {
color: rgba(0, 0, 0, 0.3);
margin-bottom: 25px;
font-weight: bold;
}