From 94c45ad5561cfc4ec3a9c56f0bdad5a48303db76 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 21 May 2019 15:04:33 +0000 Subject: [PATCH] Bug 22950: Markup error in OPAC recent comment template This patch makes minor corrections to the template for the OPAC's recent comments view. These corrections fix errors returned by the HTML validator. The patch moves some inline CSS into a class in the global OPAC CSS. Some minor reindentation has also been done, so use diff with the '-w' flag. To reproduce the problem you should have the 'reviewson' system preference turned on, and your system should have one or more approved comments. View the "Recent comments" page in the OPAC. Run the page through the W3C validation service: https://validator.w3.org. Either by pasting in the URL for the search results (if web accessible) or by viewing source, copying, and pasting into "Validate by Direct Input." This patch addresses one specific error: - "CSS: font-color: Property font-color doesn't exist." To test, apply the patch and rebuild the OPAC CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). Try again to reproduce the validation errors. Those errors should no longer be present. There should be no visible change to the page. Signed-off-by: Maryse Simard Signed-off-by: Katrin Fischer --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 5 +++ .../bootstrap/en/modules/opac-showreviews.tt | 41 ++++++++++++---------- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index e2c7ecd24c..29fc16c452 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2299,6 +2299,11 @@ input { background-color: rgba( 239, 254, 213, .4 ); } } + + .commenter { + color: #666; + font-size: 85%; + } } .commentline .avatar { diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-showreviews.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-showreviews.tt index e510e1aab4..d705bc4379 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-showreviews.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-showreviews.tt @@ -88,25 +88,28 @@ [% FILTER html_break %] [% review.review | html %] [% END %] - - [% IF review.your_comment %] - Added [% review.datereviewed | $KohaDates %] by you - [% ELSE %] - [% IF ( review.borrowernumber && ShowReviewer != "none" ) %] - Added [% review.datereviewed | $KohaDates %] by - [% SWITCH ShowReviewer %] - [% CASE 'full' %] - [% review.borrtitle | html %] [% review.firstname | html %] [% review.surname | html %] - [% CASE 'first' %] - [% review.firstname | html %] - [% CASE 'surname' %] - [% review.surname | html %] - [% CASE 'firstandinitial' %] - [% review.firstname | html %] [% review.surname|truncate(2,'.') | html %] - [% CASE 'username' %] - [% review.userid | html %] - [% END %] - [% END %][% END %]

+ + [% IF review.your_comment %] + Added [% review.datereviewed | $KohaDates %] by you + [% ELSE %] + [% IF ( review.borrowernumber && ShowReviewer != "none" ) %] + Added [% review.datereviewed | $KohaDates %] by + [% SWITCH ShowReviewer %] + [% CASE 'full' %] + [% review.borrtitle | html %] [% review.firstname | html %] [% review.surname | html %] + [% CASE 'first' %] + [% review.firstname | html %] + [% CASE 'surname' %] + [% review.surname | html %] + [% CASE 'firstandinitial' %] + [% review.firstname | html %] [% review.surname|truncate(2,'.') | html %] + [% CASE 'username' %] + [% review.userid | html %] + [% END %] + [% END %] + [% END %] + +

[% IF ( review.BiblioDefaultViewmarc ) %] -- 2.11.0