Added support for author display.

This commit is contained in:
kor 2018-08-14 03:29:24 +12:00
parent bdf70c1f9f
commit 820a2f9c74
2 changed files with 13 additions and 1 deletions

View File

@ -482,7 +482,7 @@ body {
}
/* LINK, NOTE, QUOTE, TERM, TAGS */
.note, .quote, .term, .tags, .prog {
.note, .quote, .term, .tags, .auth, .prog {
padding-top: var(--size-item-elem-padding);
color: var(--color-content-item-i);
font-size: var(--size-font-body);
@ -494,6 +494,7 @@ body {
.grid-item:hover .quote,
.grid-item:hover .term,
.grid-item:hover .tags,
.grid-item:hover .auth,
.grid-item:hover .prog {
color: var(--color-content-item-e);
}
@ -502,6 +503,7 @@ body {
.grid-item-image .grid-item-lower-content .quote,
.grid-item-image .grid-item-lower-content .term,
.grid-item-image .grid-item-lower-content .tags,
.grid-item-image .grid-item-lower-content .auth,
.grid-item-image .grid-item-lower-content .prog {
color: var(--color-content-image-t);
}

View File

@ -15,6 +15,7 @@ function View()
GRIDITEMIDBASE: 'item',
SHOWUPPER: true,
SHOWTITLE: true,
SHOWAUTH: true,
SHOWTYPE: true,
SHOWLINK: true,
SHOWLOWER: true,
@ -223,6 +224,15 @@ function View()
{
entry += `<div class="grid-item-lower-content">`;
// AUTHOR
if (SETTINGS.SHOWAUTH)
{
if (typeof value.AUTH !== 'undefined')
{
entry += `<div class="auth"><i class="fas fa-user textIcon"></i>${value.AUTH}</div>`;
}
}
// TAGS
if (SETTINGS.SHOWTAGS)
{