Koha/koha-tmpl/intranet-tmpl/prog/en/css/spinelabel.css
Kyle M Hall 6860310e96 Quick Spine Label Printer
This is a small tool for quickly printing spine labels using dedicated label printers.
It is located in the Tools page as Quick Spine Label Creator.
The system preference SpineLabelFormat defines which fields will be displayed.
The pref SpineLabelAutoPrint will make the print dialog pop up automatically.
The CSS file spinelabel.css controls all presentation for the labels.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2009-08-01 10:47:13 -04:00

27 lines
No EOL
430 B
CSS

body {
font-family: arial, geneva, sans-serif;
font-size: 12px;
margin: 0px 0px 0px 0px;
}
/* Line break after each field */
.field{
display: block;
}
/* Line break after each space in the itemcallnumber field */
#itemcallnumber .space {
display: block;
}
/* Put the copynumber on the bottom of the label */
#copynumber {
position: absolute;
top: 75px;
}
#print_button {
position: absolute;
top: 25px;
left: 500px;
}