mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-02-03 04:17:44 +01:00
Move Sepia theme to correct location and clean up the header links
This commit is contained in:
parent
de956f9473
commit
3fdb4a94ae
@ -2613,6 +2613,7 @@
|
|||||||
844B5B681FEA20DF00C7C76A /* SidebarKeyboardShortcuts.plist */,
|
844B5B681FEA20DF00C7C76A /* SidebarKeyboardShortcuts.plist */,
|
||||||
845479871FEB77C000AD8B59 /* TimelineKeyboardShortcuts.plist */,
|
845479871FEB77C000AD8B59 /* TimelineKeyboardShortcuts.plist */,
|
||||||
5127B237222B4849006D641D /* DetailKeyboardShortcuts.plist */,
|
5127B237222B4849006D641D /* DetailKeyboardShortcuts.plist */,
|
||||||
|
5112434F26EE6291002601D2 /* Sepia.nnwtheme */,
|
||||||
);
|
);
|
||||||
path = Resources;
|
path = Resources;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -3705,7 +3706,6 @@
|
|||||||
84C9FC9C2262A1A900D921D6 /* Info.plist */,
|
84C9FC9C2262A1A900D921D6 /* Info.plist */,
|
||||||
84BB0F812333426400DED65E /* NetNewsWire.entitlements */,
|
84BB0F812333426400DED65E /* NetNewsWire.entitlements */,
|
||||||
51F805ED24284C1C0022C792 /* NetNewsWire-dev.entitlements */,
|
51F805ED24284C1C0022C792 /* NetNewsWire-dev.entitlements */,
|
||||||
5112434F26EE6291002601D2 /* Sepia.nnwtheme */,
|
|
||||||
);
|
);
|
||||||
path = Resources;
|
path = Resources;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
@ -10,10 +10,6 @@ body {
|
|||||||
color: #704214;
|
color: #704214;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
@ -51,7 +47,6 @@ a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
body a, body a:visited {
|
body a, body a:visited {
|
||||||
text-decoration: underline;
|
|
||||||
color: var(--secondary-accent-color);
|
color: var(--secondary-accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,10 +72,15 @@ body > .systemMessage {
|
|||||||
color: var(--system-message-color);
|
color: var(--system-message-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.feedlink a:link, .feedlink a:visited {
|
.headerContainer a:link, .headerContainer a:visited {
|
||||||
|
text-decoration: none;
|
||||||
color: var(--feedlink-color);
|
color: var(--feedlink-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.headerContainer a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.avatar img {
|
.avatar img {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
@ -98,28 +98,43 @@ body > .systemMessage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.articleTitle a:link, .articleTitle a:visited {
|
.articleTitle a:link, .articleTitle a:visited {
|
||||||
|
text-decoration: none;
|
||||||
color: var(--article-title-color);
|
color: var(--article-title-color);
|
||||||
margin-top: 26px;
|
margin-top: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.articleTitle a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.articleDateline {
|
.articleDateline {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.articleDateline a:link, .articleDateline a:visited {
|
.articleDateline a:link, .articleDateline a:visited {
|
||||||
|
text-decoration: none;
|
||||||
color: var(--article-date-color);
|
color: var(--article-date-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.articleDateline a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.articleDatelineTitle {
|
.articleDatelineTitle {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.articleDatelineTitle a:link, .articleDatelineTitle a:visited {
|
.articleDatelineTitle a:link, .articleDatelineTitle a:visited {
|
||||||
|
text-decoration: none;
|
||||||
color: var(--article-title-color);
|
color: var(--article-title-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.articleDatelineTitle a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.externalLink {
|
.externalLink {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
@ -129,6 +144,14 @@ body > .systemMessage {
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.externalLink a:link, .externalLink a:visited {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.externalLink a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.articleBody {
|
.articleBody {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
line-height: 1.6em;
|
line-height: 1.6em;
|
Loading…
x
Reference in New Issue
Block a user