From 579851a605250b4204cc863dbb2bb0daf97173d9 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@destailleur.fr> Date: Sun, 28 Jul 2013 17:07:27 +0200 Subject: [PATCH] Fix: for css "print" mode. --- htdocs/theme/eldy/style.css.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index a3e3670f828..255e13e87a2 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -497,6 +497,9 @@ else ?> div#tmenu_tooltip { +<?php if (GETPOST("optioncss") == 'print') { ?> + display:none; +<?php } else { ?> height: 40px; /* margin-bottom: 24px; */ padding-right: 100px; @@ -513,6 +516,7 @@ div#tmenu_tooltip { background-image: rgb(<?php echo $colorbackhmenu1; ?>); border-bottom: 1px solid #CCC; <?php } ?> +<?php } ?> } div.tmenudiv { @@ -907,6 +911,7 @@ div.login a:hover { text-decoration:underline; } div.login_block_user, div.login_block_other { clear: both; } +div.login_block_other { padding-top: 3px; } .login_block_elem { float: right; vertical-align: top; -- GitLab