cat-in-136 / redmine_hearts

a redmine plugin which provides intra-Redmine Like/Fav reactions
https://www.redmine.org/plugins/redmine_hearts
GNU General Public License v2.0
33 stars 3 forks source link

Like button (/w count) are not displayed properly on the smart devices under Redmine 4 #21

Closed cat-in-136 closed 5 years ago

cat-in-136 commented 5 years ago

When display size small, "Like" button (/w count) are not displayed properly as follows:

like

"Like" and its count shall be surrounded with a gray border, but the border is not actually drawn. It is only an appearance problem. There is no problem about "Like" behaviour.

cat-in-136 commented 5 years ago

https://redmine.org/projects/redmine/repository/revisions/17678 changed the css rule in responsive.css:

--- responsive.css  (revision 17677)
+++ responsive.css  (revision 17678)
@@ -598,7 +598,8 @@
     white-space: normal;
   }

-  #content>.contextual a,
+  #content>.contextual>a,
+  #content>.contextual .drdn,
   p.buttons a {
     font-weight: bold;

"Like" button and its count are "#content>.contextual > span > a" in CSS path. Therefore, the border have gone away since redmine v4.x.