egroupware/jdots/print.css
Ralf Becker 6625ffdde4 * All apps: printing of lists improved a lot, asks now how many lines to print
r51437: Work in progress of printing nextmatches, still needs some prettying up & edge case testing
r51453: Bug fixes on nextmatch printing
 - fix loaded rows check
 - fix hidden etemplate check
r51454: Printing CSS improvements
r51588: Attempt to get nextmatch printing always on the page (landscape)
r51589: Attempt to get nextmatch printing always on the page (landscape) - put things back if they cancel at nextmatch dialog
r51612: disable footer for print
2015-02-06 13:36:25 +00:00

56 lines
1.1 KiB
CSS

/**
* Stylite: jdots template: CSS for printing
*
* @link http://www.stylite.de
* @package jdots
* @author Andreas Stöckel <as@stylite.de>
* @author Ralf Becker <rb@stylite.de>
* @author Nathan Gray <ng@stylite.de>
* @version $Id$
*/
/*@import url("../phpgwapi/templates/idots/print.css");*/
/**
* Changes for jDots
*/
@media print {
html, body {
width: auto !important;
height: auto !important;
}
#egw_fw_sidebar, #egw_fw_topmenu, .egw_fw_ui_tabs_header, #egw_fw_topmenu_slide,#egw_fw_print,#egw_fw_logout {
display: none;
width: 0px;
}
#egw_fw_main, #egw_fw_tabs {
margin: 0px !important;
float: none !important;
width: auto !important;
}
#egw_fw_basecontainer {
position: inherit;
width: auto;
}
.egw_fw_ui_tab_content {
position: relative;
float: none;
width: auto !important;
}
#egw_fw_main .egw_fw_ui_tab_content > div {
width: auto !important;
}
.egw_fw_ui_tab_content, .egw_fw_ui_tab_content div.egw_fw_content_browser_div {
height: auto !important;
overflow-y: hidden;
position: relative;
}
body {
background: white;
}
} /* @media print */