Jonathan Druart
eddf09da53
Caused by
commmit 247dca3064
Bug 23013: Upgrade DataTables in the staff client
which removed
-tr.even.selected td {
- background-color: #D3D3D3;
-}
There was no more highlighting when trying to delete an imported quote, as there was before
(see screenshot from the manual https://gitlab.com/koha-community/koha-manual/-/blob/master/source/images/tools/qotd/selectfordelete.png)
It was, however, possible to delete imported quotes, you just don't see which ones you are deleting.
Test plan:
1) Create a CSV with two columns first the name, then the quote (I've attached a CSV that I've done for testing purposes)
2) Go to Tools > Edit quotes for the QOTD feature
3) Click 'Import quotes'
4) Click 'Browse' and choose the CSV created earlier
5) Click on the id of a couple of quotes. Notice those lintes are highlighted
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
43 lines
629 B
CSS
43 lines
629 B
CSS
#quotes_editor_wrapper {
|
|
position : relative;
|
|
top : 15px;
|
|
}
|
|
|
|
#footer {
|
|
position : relative;
|
|
top : 10px;
|
|
height : 25px;
|
|
}
|
|
|
|
#instructions li {
|
|
list-style-type : disc;
|
|
}
|
|
|
|
#instructions div {
|
|
margin-left : 10px;
|
|
}
|
|
|
|
#file_editor_inst {
|
|
visibility : hidden;
|
|
position : absolute;
|
|
}
|
|
|
|
#file_uploader {
|
|
visibility :visible;
|
|
position :relative;
|
|
}
|
|
|
|
#file_upload {
|
|
position : relative;
|
|
top : -1px;
|
|
margin-left : 10px;
|
|
}
|
|
|
|
#quotes_editor {
|
|
width : 100%;
|
|
}
|
|
|
|
tr.odd.selected td,
|
|
tr.even.selected td {
|
|
background-color: #D3D3D3;
|
|
}
|