Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG1
-rw-r--r--skins/elastic/styles/widgets/lists.less6
-rw-r--r--skins/larry/mail.css2
3 files changed, 8 insertions, 1 deletions
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;
}