1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Improves flash notice SVG icons compatibility with rtl languages (#41952).

git-svn-id: https://svn.redmine.org/redmine/trunk@23564 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2025-03-26 21:20:57 +00:00
parent a531f805f8
commit 18e93c085b

View File

@ -241,16 +241,21 @@ input.autocomplete {
padding: 4px 30px 4px 4px;
}
div.flash.error, #errorExplanation {
background: url(/exclamation.png) right 8px top 50% no-repeat;
div.flash svg.icon-svg, #errorExplanation svg.icon-svg {
margin-right: -26px;
margin-left: 4px;
}
div.flash.notice {
background: url(/true.png) right 8px top 5px no-repeat;
div.flash.error:not(:has(svg)), #errorExplanation:not(:has(svg)) {
background: url(/exclamation.png) right 8px top 50% no-repeat #ffe3e3;
}
div.flash.warning, .conflict {
background: url(/warning.png) right 8px top 5px no-repeat;
div.flash.notice:not(:has(svg)) {
background: url(/true.png) right 8px top 5px no-repeat #dfffdf;
}
div.flash.warning:not(:has(svg)), .conflict {
background: url(/warning.png) right 8px top 5px no-repeat #F3EDD1;
text-align:right;
}