Skip to content

Commit

Permalink
Fix: Hide things in print view
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 19, 2011
1 parent 2d42ab0 commit 9f81bd2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions htdocs/theme/auguria/style.css.php
Expand Up @@ -435,6 +435,9 @@
<?php print $right; ?>: 5px;
top: 3px;
font-weight: bold;
<?php if (GETPOST("optioncss") == 'print') { ?>
display: none;
<?php } ?>
}

div.login_block table {
Expand Down
3 changes: 3 additions & 0 deletions htdocs/theme/eldy/style.css.php
Expand Up @@ -454,6 +454,9 @@
<?php print $right; ?>: 5px;
top: 3px;
font-weight: bold;
<?php if (GETPOST("optioncss") == 'print') { ?>
display: none;
<?php } ?>
}

div.login_block table {
Expand Down
6 changes: 6 additions & 0 deletions htdocs/theme/freelug/style.css.php
Expand Up @@ -350,6 +350,12 @@

/* Login */

div.login_block {
<?php if (GETPOST("optioncss") == 'print') { ?>
display: none;
<?php } ?>
}

div.login {
position: absolute;
<?php print $right; ?>: 30px;
Expand Down
6 changes: 6 additions & 0 deletions htdocs/theme/yellow/style.css.php
Expand Up @@ -329,6 +329,12 @@

/* Login */

div.login_block {
<?php if (GETPOST("optioncss") == 'print') { ?>
display: none;
<?php } ?>
}

div.login {
position: absolute;
<?php print $right; ?>: 30px;
Expand Down

0 comments on commit 9f81bd2

Please sign in to comment.