Doc: Add margins to all anchors in a translated page

Google translate drops the space around the non-translatable
inline text. This should ensure that inline anchors have extra
margins.

Change-Id: I1c204a9a27d0a39256ef04aa3f03ba1b8433aa54
Done-with: Topi Reinio <topi.reinio@qt.io>
Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
This commit is contained in:
Venugopal Shivashankar 2022-12-07 15:20:40 +01:00
parent da754d5b65
commit 725b641d87

View File

@ -1569,3 +1569,9 @@ a.plink {
a.plink::before {
content:'\00B6'
}
/* Add margin for all anchor tags in a translated page */
html.translated-ltr .mainContent p a,
html.translated-rtl .mainContent p a {
margin:0 2px 0 2px;
}