From 26d5fb1b5513de5f52c710c3e44297b01dfc5502 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 24ade6fab..b089de57a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,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 a8966f978..fabbb8a64 100644 --- a/skins/elastic/styles/widgets/lists.less +++ b/skins/elastic/styles/widgets/lists.less @@ -721,6 +721,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; }