Koha/koha-tmpl/intranet-tmpl/prog/css/itemsearchform.css
Owen Leonard ef92ad31bf Bug 19348: Title column in item search is too narrow
This patch adds IDs to the item search results table header so that
columns can be targeted by CSS or JS. The CSS for the item search page
has been modified to give the title column a minimum width.

To test, apply the patch and clear your browser cache if necessary.
Perform an item search and confirm that the title column stays at a
reasonable width.

Signed-off-by: Dominic Pichette <dominic@inlibro.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2017-10-20 16:51:26 -03:00

48 lines
No EOL
633 B
CSS

.form-field {
margin: 5px 0;
}
.form-field > * {
vertical-align: middle;
}
.form-field-label {
display: inline-block;
text-align: right;
width: 10em;
}
.form-field-conjunction[disabled] {
visibility: hidden;
}
.form-field-radio > * {
vertical-align: middle;
}
.form-actions {
margin-top: 20px;
}
th.active {
padding-right: 21px;
background-repeat: no-repeat;
background-position: 100% 50%;
}
th.sort-asc {
background-image: url('../img/asc.gif');
}
th.sort-desc {
background-image: url('../img/desc.gif');
}
th select {
width: 100%;
font-weight: normal;
}
th#items_title {
min-width: 12em;
}