Skip to content

Commit

Permalink
Fix: Right to left support
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 25, 2014
1 parent a822bc0 commit e8e8879
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htdocs/theme/eldy/style.css.php
Expand Up @@ -444,7 +444,7 @@
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%;
}

Expand Down Expand Up @@ -477,7 +477,7 @@
<?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 {
Expand Down Expand Up @@ -510,7 +510,7 @@
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) { ?>
Expand Down

0 comments on commit e8e8879

Please sign in to comment.