Feature #22017 ยป stylesheet_6739_4211.diff
typo3/stylesheet.css (working copy) | ||
---|---|---|
}
|
||
/* Print layout
|
||
"overflow: hidden" must be changed to "overflow: visible" to print the full page/frame content
|
||
"position: absolute" must be changed to "position: static" for "div#typo3-docbody" to print
|
||
the full page/frame content at the extension manager.
|
||
*/
|
||
@media print {
|
||
html,
|
||
body#typo3-alt-doc-php,
|
||
body#typo3-db-list-php,
|
||
body#typo3-mod-web-perm-index-php,
|
||
body#typo3-mod-web-info-index-php,
|
||
body#typo3-mod-web-func-index-php,
|
||
body#typo3-mod-user-ws-index-php,
|
||
body#typo3-mod-user-ws-workspaceforms-php,
|
||
body#typo3-mod-php,
|
||
body#typo3-mod-tools-em-index-php,
|
||
body#typo3-pagetree,
|
||
body#typo3-db-new-php,
|
||
body#typo3-move-el-php,
|
||
body#typo3-show-rechis-php,
|
||
body#ext-cms-layout-db-layout-php,
|
||
body#ext-tstemplate-ts-index-php,
|
||
body#ext-version-cm1-index-php,
|
||
body#ext-setup-mod-index-php,
|
||
body#ext-tsconfig-help-mod1-index-php,
|
||
body#ext-lowlevel-dbint-index-php,
|
||
body#ext-lowlevel-config-index-php,
|
||
body#ext-cms-layout-db-new-content-el-php {
|
||
overflow: visible;
|
||
}
|
||
div#typo3-docbody {
|
||
overflow: visible;
|
||
position: static;
|
||
height: auto;
|
||
}
|
||
}
|
||
/* Visual debugging: */
|