Simplify news header

This commit is contained in:
Christian Rocha 2020-12-01 16:56:29 -05:00
parent 1922bfaa68
commit fa6952ea88
4 changed files with 1 additions and 9 deletions

View File

@ -4,5 +4,4 @@ package ui
const (
pagerStashIcon = "🔒"
newsIcon = "⚡️"
)

View File

@ -4,5 +4,4 @@ package ui
const (
pagerStashIcon = "•"
newsIcon = ""
)

View File

@ -972,7 +972,7 @@ func (m stashModel) view() string {
if m.isFiltering() {
logoOrFilter = m.filterInput.View()
} else if m.docState == stashShowNewsDocs {
logoOrFilter += newsTitleStyle(" News ") + " " + newsIcon
logoOrFilter += normalFg(" News ")
}
var pagination string

View File

@ -41,12 +41,6 @@ var (
dullYellowFg = newFgStyle(common.NewColorPair("#9BA92F", "#6BCB94")) // renders light green on light backgrounds
redFg = newFgStyle(common.Red)
faintRedFg = newFgStyle(common.FaintRed)
newsTitleStyle = newStyle(
common.NewColorPair(common.Indigo.String(), common.Cream.String()),
common.NewColorPair(common.Cream.String(), common.Indigo.String()),
true,
)
)
// Returns a termenv style with foreground and background options.