Koha/koha-tmpl/intranet-tmpl/prog/css/spinelabel.css
Owen Leonard efd4121941
Bug 23464: Update the process of quick spine label printing
This patch makes changes to the way quick spine label printing works,
either from the bibliographic details page or the Quick spine label
creator page.

To test, apply the patch and go to Tools -> Quick spine label creator.

 - Type or scan a barcode. Submitting the form should trigger a popup
   window with the spine label print page. The "print" button should
   be centered at the bottom of the window in a footer-like container.
   - If you have SpineLabelAutoPrint enabled, the print dialog should
     appear automatically.
   - After printing, the pop-up window should close and and focus should
     be returned to the barcode field.

Enable the SpineLabelShowPrintOnBibDetails system preference. View the
bibliographic details page for a record in the catalog.

 - In the holdings table, a "Spine label" column should appear as the
   second-to-last column. The column should contain "Print label"
   Bootstrap-style buttons.
 - Clicking a "Print label" button should trigger a pop-up window with
   the spine label print page. The behavior of the window should be the
   same as above.

Signed-off-by: Maryse Simard <maryse.simard@inlibro.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2019-09-09 11:26:55 +01:00

35 lines
No EOL
565 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;
}
#spinelabel {
}
#print_button {
bottom: 0;
padding: 1em;
position: absolute;
text-align: center;
width: 100%;
border-top: 1px solid #b9d8d9;
background-color: #e6f0f2;
}