From eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Mon, 23 Jul 2012 17:08:40 -0700 Subject: [PATCH 1/4] [ticket/11025] Make last topic titles in forum list Bold This small style tweak will make the truncated last topic titles shown in the forum list BOLD for better visual impact. PHPBB3-11025 --- phpBB/styles/prosilver/template/forumlist_body.html | 2 +- phpBB/styles/subsilver2/template/forumlist_body.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 723c2ffeda..9b10f33ae3 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -51,7 +51,7 @@ {UNAPPROVED_IMG} {L_LAST_POST} - {forumrow.LAST_POST_SUBJECT_TRUNCATED}
+ {forumrow.LAST_POST_SUBJECT_TRUNCATED}
{L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} {LAST_POST_IMG}
{forumrow.LAST_POST_TIME}{L_NO_POSTS}
  diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index b9a1102df0..95ed94070f 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -61,7 +61,7 @@ -

{forumrow.LAST_POST_SUBJECT_TRUNCATED}

+

{forumrow.LAST_POST_SUBJECT_TRUNCATED}

{UNAPPROVED_IMG} {forumrow.LAST_POST_TIME}

{forumrow.LAST_POSTER_FULL} From 8c337a260bf96d3d6f25973029579cc89abe67ae Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Mon, 23 Jul 2012 18:33:32 -0700 Subject: [PATCH 2/4] [ticket/11025] Replace with and/or class for semantic styling PHPBB3-11025 --- phpBB/styles/prosilver/template/forumlist_body.html | 2 +- phpBB/styles/prosilver/theme/links.css | 5 +++++ phpBB/styles/subsilver2/template/forumlist_body.html | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 9b10f33ae3..488658d806 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -51,7 +51,7 @@ {UNAPPROVED_IMG} {L_LAST_POST} - {forumrow.LAST_POST_SUBJECT_TRUNCATED}
+ {forumrow.LAST_POST_SUBJECT_TRUNCATED}
{L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} {LAST_POST_IMG}
{forumrow.LAST_POST_TIME}{L_NO_POSTS}
  diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 3cb6e928b5..886e2a13de 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -66,6 +66,11 @@ a.topictitle:hover { text-decoration: underline; } +a.lastsubject { + font-weight: bold; + text-decoration: none; +} + /* Post body links */ .postlink { text-decoration: none; diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index 95ed94070f..8e3c6b1f79 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -61,7 +61,7 @@ -

{forumrow.LAST_POST_SUBJECT_TRUNCATED}

+

{forumrow.LAST_POST_SUBJECT_TRUNCATED}

{UNAPPROVED_IMG} {forumrow.LAST_POST_TIME}

{forumrow.LAST_POSTER_FULL} From 4ff644890a9cf10abca784ffc8dc4b41a61aa79c Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Mon, 23 Jul 2012 18:43:28 -0700 Subject: [PATCH 3/4] [ticket/11025] Replace with and/or class for semantic styling in subsilver2 PHPBB3-11025 --- phpBB/styles/subsilver2/template/forumlist_body.html | 2 +- phpBB/styles/subsilver2/theme/stylesheet.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index 8e3c6b1f79..521eaf3c16 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -61,7 +61,7 @@ -

{forumrow.LAST_POST_SUBJECT_TRUNCATED}

+

{forumrow.LAST_POST_SUBJECT_TRUNCATED}

{UNAPPROVED_IMG} {forumrow.LAST_POST_TIME}

{forumrow.LAST_POSTER_FULL} diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css index 18d15a8d41..4bb9e6f9bf 100644 --- a/phpBB/styles/subsilver2/theme/stylesheet.css +++ b/phpBB/styles/subsilver2/theme/stylesheet.css @@ -422,6 +422,11 @@ a.topictitle:visited { text-decoration: none; } +a.lastsubject { + font-weight: bold; + text-decoration: none; +} + th a, th a:visited { color: #FFA34F !important; From edec4a492e20d71486574ab94b4141d2f355b6fd Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Mon, 23 Jul 2012 18:47:23 -0700 Subject: [PATCH 4/4] [ticket/11025] Add underline for hover to classes PHPBB3-11025 --- phpBB/styles/prosilver/theme/links.css | 4 ++++ phpBB/styles/subsilver2/theme/stylesheet.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 886e2a13de..66c3aed03e 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -71,6 +71,10 @@ a.lastsubject { text-decoration: none; } +a.lastsubject:hover { + text-decoration: underline; +} + /* Post body links */ .postlink { text-decoration: none; diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css index 4bb9e6f9bf..9e258ea778 100644 --- a/phpBB/styles/subsilver2/theme/stylesheet.css +++ b/phpBB/styles/subsilver2/theme/stylesheet.css @@ -427,6 +427,10 @@ a.lastsubject { text-decoration: none; } +a.lastsubject:hover { + text-decoration: underline; +} + th a, th a:visited { color: #FFA34F !important;