Sha256: 661534314e24a05c103ec53d29806c0b9a4a4bf9680f355b05e2d49b67afd634

Contents?: true

Size: 1.1 KB

Versions: 10

Compression:

Stored size: 1.1 KB

Contents

/* special css file for media=print, to hide and change some elements */
/* this is additive to the style_template.css */

/***********************
change positions to absolute to avoid printing the title and table
of contents on every page. Remove the Quicklink toc on the right.
Make toc on the left floating on top of middle div.
************************/

html, body {
  height: initial;
  width: 115%;  /* fix for scaling done by split.js */
}

div.head {
  position: relative;
  margin-top: 50px;
  text-align: left;
}

.split.split-horizontal {
  float: unset;
}

div.lefttoc {
  position: relative;
  margin: -50px 10% 100px 10%;
  top: 100px;
  border: none;
  overflow: visible;
}

div.middle {
  position: relative;
  margin: 200px 0px 0 10px; /* top right bottom left */
  /* margin: x y   =  Xpx each - botten and top,   ypx each - left and right */
  overflow: visible;
}

/* quick links are not necessary for printing */
div.righttoc {
  display: none;
}

#pre_toggle_linewrap {
  display: none;
}

/* revert pre settings in case they have been toggled*/
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
xhtml_report_generator-4.0.3 resource/css/print.css
xhtml_report_generator-4.0.2 resource/css/print.css
xhtml_report_generator-4.0.1 resource/css/print.css
xhtml_report_generator-4.0.0 resource/css/print.css
xhtml_report_generator-3.1.2 lib/xhtml_report_generator/print_template.css
xhtml_report_generator-3.1.1 lib/xhtml_report_generator/print_template.css
xhtml_report_generator-3.1.0 lib/xhtml_report_generator/print_template.css
xhtml_report_generator-3.0.3 lib/xhtml_report_generator/print_template.css
xhtml_report_generator-3.0.2 lib/xhtml_report_generator/print_template.css
xhtml_report_generator-3.0.1 lib/xhtml_report_generator/print_template.css