74 lines
1.5 KiB
CSS
74 lines
1.5 KiB
CSS
/**
|
|
* @file
|
|
* Print styling.
|
|
*/
|
|
|
|
|
|
/*
|
|
* Global styles.
|
|
*/
|
|
body.print-body .form-control {
|
|
border: 0;
|
|
box-shadow: none;
|
|
background-color: #fff;
|
|
padding-left: 0;
|
|
}
|
|
body.print-body select {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
text-indent: 1px;
|
|
text-overflow: '';
|
|
}
|
|
body.print-body select::-ms-expand {
|
|
display: none;
|
|
}
|
|
body.print-body button.form-submit {
|
|
display: none !important;
|
|
}
|
|
body.print-body div[class^="section-"] {
|
|
page-break-before: always;
|
|
}
|
|
|
|
/*
|
|
* Collapsible fieldsets.
|
|
*/
|
|
html.js body.print-body fieldset {
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0 0 .5em;
|
|
}
|
|
html.js body.print-body fieldset.collapsed * {
|
|
display: initial;
|
|
}
|
|
html.js body.print-body fieldset.collapsed legend {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
* "GeSHi Filter" module.
|
|
*/
|
|
body.print-body div.geshifilter pre {
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
/* "SuiteDesk" options, icons and menu block */
|
|
body.print-body div.stormlinks,
|
|
/* "SuiteDesk" list & filter */
|
|
body.print-body a.tabledrag-handle .handle,
|
|
body.print-body table tr > .storm_list_operations,
|
|
/* "SuiteDesk Project tasks" section */
|
|
body.print-body #stormgantt,
|
|
/* "Watcher" link in projects, tasks and tickets */
|
|
body.print-body .watcher_node,
|
|
/* External links image */
|
|
body.print-body span.ext,
|
|
/* Links in task and ticket comments */
|
|
body.print-body #comments .new,
|
|
body.print-body #comments .links {
|
|
display: none;
|
|
}
|
|
/* Number of task and ticket comments */
|
|
body.print-body .tt-comment h3.title {
|
|
color: #fff;
|
|
}
|