mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 21:25:55 +00:00
consistency: show author in multipanel headlines row
This commit is contained in:
@@ -227,6 +227,12 @@ body.ttrss_main .hl div.title {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main .hl span.author {
|
||||||
|
white-space: nowrap;
|
||||||
|
color: #555555;
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
body.ttrss_main .hl div.right {
|
body.ttrss_main .hl div.right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -236,6 +236,7 @@ body.ttrss_main {
|
|||||||
img {
|
img {
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left, .right {
|
.left, .right {
|
||||||
display : flex;
|
display : flex;
|
||||||
|
|
||||||
@@ -259,6 +260,13 @@ body.ttrss_main {
|
|||||||
text-overflow : ellipsis;
|
text-overflow : ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.author {
|
||||||
|
white-space : nowrap;
|
||||||
|
color : @default-text;
|
||||||
|
font-size : 11px;
|
||||||
|
font-weight : normal;
|
||||||
|
}
|
||||||
|
|
||||||
div.right {
|
div.right {
|
||||||
text-align : right;
|
text-align : right;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -347,7 +347,7 @@ define(["dojo/_base/declare"], function (declare) {
|
|||||||
<div onclick="return Headlines.click(event, ${hl.id})" class="title">
|
<div onclick="return Headlines.click(event, ${hl.id})" class="title">
|
||||||
<span data-article-id="${hl.id}" class="hl-content hlMenuAttach">
|
<span data-article-id="${hl.id}" class="hl-content hlMenuAttach">
|
||||||
<a class="title" href="${hl.link}">${hl.title} <span class="preview">${hl.content_preview}</span></a>
|
<a class="title" href="${hl.link}">${hl.title} <span class="preview">${hl.content_preview}</span></a>
|
||||||
<!-- <span class="author">${hl.author}</span> -->
|
<span class="author">${hl.author}</span>
|
||||||
<span class="HLLCTR-${hl.id}">${hl.labels}</span>
|
<span class="HLLCTR-${hl.id}">${hl.labels}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -227,6 +227,12 @@ body.ttrss_main .hl div.title {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main .hl span.author {
|
||||||
|
white-space: nowrap;
|
||||||
|
color: #cccccc;
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
body.ttrss_main .hl div.right {
|
body.ttrss_main .hl div.right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user