diff --git a/Evergreen/MainWindow/Timeline/Cell/TimelineCellAppearance.swift b/Evergreen/MainWindow/Timeline/Cell/TimelineCellAppearance.swift
index a552efeee..d27ea9410 100644
--- a/Evergreen/MainWindow/Timeline/Cell/TimelineCellAppearance.swift
+++ b/Evergreen/MainWindow/Timeline/Cell/TimelineCellAppearance.swift
@@ -18,6 +18,7 @@ struct TimelineCellAppearance: Equatable {
let dateColor: NSColor
let dateMarginLeft: CGFloat
+ let dateMarginBottom: CGFloat
let dateFont: NSFont
let titleColor: NSColor
@@ -61,8 +62,9 @@ struct TimelineCellAppearance: Equatable {
self.feedNameFont = NSFont.systemFont(ofSize: smallItemFontSize)
self.dateColor = theme.color(forKey: "MainWindow.Timeline.cell.dateColor")
- self.dateFont = NSFont.systemFont(ofSize: smallItemFontSize)
+ self.dateFont = NSFont.systemFont(ofSize: smallItemFontSize, weight: NSFont.Weight.bold)
self.dateMarginLeft = theme.float(forKey: "MainWindow.Timeline.cell.dateMarginLeft")
+ self.dateMarginBottom = theme.float(forKey: "MainWindow.Timeline.cell.dateMarginBottom")
self.titleColor = theme.color(forKey: "MainWindow.Timeline.cell.titleColor")
self.titleFont = NSFont.systemFont(ofSize: largeItemFontSize, weight: NSFont.Weight.semibold)
diff --git a/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift b/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift
index f08c03bc8..81b9b3bdc 100644
--- a/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift
+++ b/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift
@@ -148,7 +148,7 @@ private extension TimelineCellLayout {
return NSZeroRect
}
- return rectOfLineBelow(textBoxRect, dateRect, appearance.titleBottomMargin, cellData.feedName, appearance.feedNameFont)
+ return rectOfLineBelow(textBoxRect, dateRect, appearance.dateMarginBottom, cellData.feedName, appearance.feedNameFont)
}
static func rectOfLineBelow(_ textBoxRect: NSRect, _ rectAbove: NSRect, _ topMargin: CGFloat, _ value: String, _ font: NSFont) -> NSRect {
diff --git a/Evergreen/Resources/DB5.plist b/Evergreen/Resources/DB5.plist
index 9372a1c1f..6b7b51c17 100644
--- a/Evergreen/Resources/DB5.plist
+++ b/Evergreen/Resources/DB5.plist
@@ -80,7 +80,7 @@
paddingRight
20
paddingTop
- 16
+ 14
paddingBottom
16
feedNameColor
@@ -92,9 +92,9 @@
dateMarginLeft
10
dateMarginBottom
- 2
+ 1
textColor
- aaaaaa
+ 999999
textOnlyColor
222222
titleColor