From e375511f2f1b9e8401985ea094503d8c32cee79d Mon Sep 17 00:00:00 2001 From: Mary Evans Date: Sun, 21 Oct 2012 01:24:01 +0100 Subject: [PATCH] MDL-31934 theme_base: Fix to add highlight colour to unread forum posts. --- theme/base/style/core.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/theme/base/style/core.css b/theme/base/style/core.css index 400abbb1a0d..7ad3a3be127 100644 --- a/theme/base/style/core.css +++ b/theme/base/style/core.css @@ -1025,3 +1025,15 @@ html[dir=rtl] #page-header {float: right;} html[dir=rtl] .formrow label.formlabel { float:right; } html[dir=rtl] .configphp {direction:ltr;text-align:left;} + +/* Forumpost unread +-------------------------*/ +#page-mod-forum-view .unread, +.forumpost.unread .row.header, +.path-course-view .unread, +span.unread { + background-color: #FFD; +} +.forumpost.unread .row.header { + border-bottom: 1px solid #DDD; +} \ No newline at end of file