From 87ca7a09dc7bcb888f47b971c5eec26b7a9ca2de Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sat, 2 May 2020 20:43:34 +0200 Subject: [PATCH] Fix missing flag indication on collapsed thread in Larry and Elastic (#7366) --- CHANGELOG | 1 + skins/elastic/styles/widgets/lists.less | 6 ++++++ skins/larry/mail.css | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 09d1b3366..6f3badb03 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -22,6 +22,7 @@ CHANGELOG Roundcube Webmail - Fix bug in extracting required plugins from composer.json that led to spurious error in log (#7364) - Fix so the database setup description is compatible with MySQL 8 (#7340) - Markasjunk: Fix regression in jsevent driver (#7361) +- Fix missing flag indication on collapsed thread in Larry and Elastic (#7366) RELEASE 1.4.4 ------------- diff --git a/skins/elastic/styles/widgets/lists.less b/skins/elastic/styles/widgets/lists.less index 1e3c0e324..5b22017a3 100644 --- a/skins/elastic/styles/widgets/lists.less +++ b/skins/elastic/styles/widgets/lists.less @@ -727,6 +727,12 @@ table.fixedcopy { content: @fa-var-flag; } + tr.flaggedroot:not(:hover) span.unflagged:before { + &:extend(.font-icon-class); + content: @fa-var-flag; + color: @color-list-icon; + } + tr:hover span.unflagged:before { &:extend(.font-icon-class); .font-icon-regular(@fa-var-flag); diff --git a/skins/larry/mail.css b/skins/larry/mail.css index a98b0080b..b8fa60c40 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -401,7 +401,7 @@ table.messagelist.fixedcopy { } /* thread parent message with flagged children */ -.messagelist tbody tr.flaggedroot .flag span { +.messagelist tr.flaggedroot td.flag span.unflagged { background-position: -23px -1076px; }