1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Reaction buttons are positioned incorrectly in RTL text direction (#43510).

Patch by Go MAEDA (user:maeda).


git-svn-id: https://svn.redmine.org/redmine/trunk@24159 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2025-11-23 01:45:22 +00:00
parent f268f0cc17
commit cdc8bc5ec5

View File

@ -2072,7 +2072,7 @@ span[role="img"].avatar.s50 {
text-decoration: none;
}
.reaction-button .icon-label {
margin-left: 3px;
margin-inline-start: 3px;
margin-bottom: -1px;
font-weight: bold;
}
@ -2089,21 +2089,21 @@ span[role="img"].avatar.s50 {
color: var(--oc-gray-6);
}
div.issue.details .reaction {
float: right;
float: inline-end;
font-size: 0.9em;
margin-top: 0.5em;
margin-left: 10px;
clear: right;
margin-inline-start: 10px;
clear: inline-end;
}
div.message .reaction {
float: right;
float: inline-end;
font-size: 0.9em;
margin-left: 10px;
margin-inline-start: 10px;
}
div.news .reaction {
float: right;
float: inline-end;
font-size: 0.9em;
margin-left: 10px;
margin-inline-start: 10px;
}
/* Custom JQuery styles */