1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/17155] Default to first unread post on topics

Also removed the unread post icon and instead opted for playing with font
weight and color for indication.

PHPBB3-17155
This commit is contained in:
Marc Alexander
2023-07-02 14:04:31 +02:00
parent 3e2d2d240a
commit 68fb6dcb57
7 changed files with 35 additions and 32 deletions

View File

@@ -220,8 +220,7 @@ a:hover .icon.icon-red, /* DEPRECATED 4.0 */
.c-topic-reported-icon,
.c-topic-unread-icon,
.c-warning-icon,
.c-unapproved-icon,
.unread {
.c-unapproved-icon {
color: #d41142;
}

View File

@@ -66,10 +66,10 @@ th a:hover {
/* Links for forum/topic lists */
a.forumtitle,
a.topictitle {
a.topictitle,
span.topictitle {
font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
font-size: 13px;
font-weight: bold;
text-decoration: none;
}
@@ -81,6 +81,10 @@ a.topictitle {
display: inline;
}
a.unread {
font-weight: bold;
}
a.topictitle:hover {
text-decoration: underline;
}