Bug 29961: Make horizontal scroll bar always visible on acqui/z3950_search.pl
To test:
1. In Acquisitions make a basket and add something "From an external source"
2. Search for a title and click on the 'MARC' button, make sure the MARC prview is both tall and wide.
3. You will not see the horizontal scroll bar unless you scroll all the way to the bottom of the preview.
4. Apply patch.
5. Try steps 1 & 2 again, this time you should see the horizontal scroll bar as soon as the MARC prveiw loads.
Note: I put the CSS on multiple lines for better readability
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 98c5ecd0d5
)
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
This commit is contained in:
parent
7cc6606c97
commit
e79fe19e67
1 changed files with 27 additions and 1 deletions
|
@ -9,7 +9,33 @@
|
|||
[% USE Koha %]
|
||||
|
||||
<style>
|
||||
tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : transparent !important; } #dataPreview { width : 80%; } @media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }
|
||||
tr.selected {
|
||||
background-color : #FFFFCC;
|
||||
}
|
||||
|
||||
tr.selected td {
|
||||
background-color : transparent !important;
|
||||
}
|
||||
|
||||
#dataPreview {
|
||||
width : 90%;
|
||||
top: 5%;
|
||||
}
|
||||
|
||||
#dataPreview pre {
|
||||
overflow: unset;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
max-height: 380px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
#dataPreview {
|
||||
margin: 0;
|
||||
width : auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
|
Loading…
Reference in a new issue