Skip to content
Snippets Groups Projects
Commit d4d69e41 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Right to left support

parent abff284a
No related branches found
No related tags found
No related merge requests found
......@@ -447,7 +447,7 @@ td.showDragHandle {
float: none;
vertical-align: top;
}
#id-<?php echo $right; ?> {
#id-right { /* This must stay id-right ant not be replaced with echo $right */
width: 100%;
}
......@@ -480,7 +480,7 @@ div.fichehalfright {
<?php if (empty($conf->dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?>
}
div.ficheaddleft {
<?php if (empty($conf->dol_optimize_smallscreen)) { print "padding-left: 16px;\n"; }
<?php if (empty($conf->dol_optimize_smallscreen)) { print "padding-".$left.": 16px;\n"; }
else print "margin-top: 10px;\n"; ?>
}
.containercenter {
......@@ -513,7 +513,7 @@ div#tmenu_tooltip {
display:none;
<?php } else { ?>
height: <?php print ($heightmenu2+1); ?>px;
padding-right: 100px;
padding-<?php echo $right; ?>: 100px;
background: <?php echo $colorbackvmenu; ?>;
box-shadow: 0 0 6px rgba(0, 0, 0, .4) !important;
<?php if ($usecss3) { ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment