Browse Source

Fix missing flag indication on collapsed thread in Larry and Elastic (#7366)

pull/7370/head
Aleksander Machniak 5 years ago
parent
commit
87ca7a09dc
  1. 1
      CHANGELOG
  2. 6
      skins/elastic/styles/widgets/lists.less
  3. 2
      skins/larry/mail.css

1
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
-------------

6
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);

2
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;
}

Loading…
Cancel
Save