recoll does not respect color scheme of KDE

Bug #1096215 reported by deric
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
recoll (Ubuntu)
New
Undecided
Unassigned

Bug Description

In search result the display style does not respect color scheme of desktop environment (tested on KDE 4.9)

Recoll 1.17.3 + Xapian 1.2.12

as a workaround something like this could be used as result's page header (for darker color scheme):

<style type="text/css">
body {
    color: rgb(255, 255, 255);
    background-color: rgb(81, 81, 81);
}
</style>

<script type="text/javascript">
function altRows() {
    var rows = document.getElementsByClassName("rclresult");
    for (i = 0; i < rows.length; i++) {
        if (i % 2 == 0) {
            rows[i].style.backgroundColor = "#373737";
        }
    }
}

window.onload = function() {
    altRows();
}
</script>

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.