Koha/koha-tmpl/intranet-tmpl/prog/css/reports.css
Owen Leonard 414ab9b166
Bug 23197: Add more batch operation options to SQL report results
This patch extends the feature which allows the user to send item
numbers from a page of report results to batch item modification. For
biblionumbers: Batch record modification, batch record deletion, and
add to list are now available. For item numbers: batch item deletion is
added.

A new menu button is added for these options at the top of report
results, removing the button from the item number column header.
Corresponding CSS has been removed.

To test, apply the patch and create a report which includes both
biblionumber and itemnumber columns in the results.

 - Run the report and confirm that a new "Batch operations" button
   appears at the top of the results. Test each option:
   - Batch record modification
   - Batch record deletion
   - Add to list
   - Batch item modification
   - Batch item deletion

In each case the correct set of parameters should be passed to the batch
operations. Test with reports which return only biblionumbers, only
itemnumbers, and neither.

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-07-15 11:28:06 +01:00

98 lines
No EOL
1.3 KiB
CSS

#sql {
height: 9em;
width: 90%;
}
#update_sql .modal-dialog {
width: 80%;
}
#sql_output {
border: 1px solid #ddd;
margin-bottom: .5em;
padding: .5em;
}
ins {
background-color: #e6ffe6;
}
del {
background-color: #ffe6e6;
}
#col1,
#col2 {
float: left;
width: 45%;
}
#col1 ins,
#col2 del {
display: none;
}
.show_sql {
font-family: monospace;
}
.filter {
background-color: #EBF3FF;
border-radius: 5px;
display: inline-block;
font-size: 85%;
margin: 3px;
padding: 0 1em;
white-space: nowrap;
}
.filter span,
.filter a {
padding: .5em 0;
}
.filter span {
border-right: 1px solid #A4BEDD;
display: inline-block;
margin-right: .5em;
padding-right: .5em;
}
.clear_filter {
display: inline-block;
font-weight: bold;
margin-left: .5em;
padding-left: 1em;
}
.clear_filter i {
color: #C00;
}
fieldset.rows label,
fieldset.rows span.label {
width: 12em;
}
fieldset.rows .column_config_row {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
fieldset.rows .chart-column-conf {
padding: .7em;
width: auto;
}
fieldset.rows .chart-column-conf label {
display: block;
float: none;
margin: .4em 0;
text-align: left;
width: auto;
}
#makechart select {
max-width: 12em;
}