To me the darkrooms filmstrip is hard to decipher. The shading between inactive, selected and hovered is not easily discernable to me. I hacked up some CSS to help me visualize things better:
before
after - darkened background + lines only
after - selection with golden borders: helps discern selection and active even more
css for darkening the background:
/* Base: darken the filmstrip background and border of every filmstrip thumbnail */
#thumbtable-filmstrip #thumb-back {
background-color: shade(@thumbnail_bg_color, 0.7);
border-color: shade(@lighttable_bg_color, 0.75);
}
/* Restore the theme's group-indicator border color on the specific edge(s)
of thumbnails belonging to a duplicate/group, which the base border
color above would otherwise overwrite */
#thumbtable-filmstrip .dt_group_left #thumb-back { border-left-color: @group_indicator_color; }
#thumbtable-filmstrip .dt_group_top #thumb-back { border-top-color: @group_indicator_color; }
#thumbtable-filmstrip .dt_group_right #thumb-back { border-right-color: @group_indicator_color; }
#thumbtable-filmstrip .dt_group_bottom #thumb-back { border-bottom-color: @group_indicator_color;
}
css for the selection with borders
/* Selected, not hovered: keep the base background color */
#thumbtable-filmstrip #thumb-main:selected:not(:active):not(:hover) #thumb-back {
background-color: shade(@thumbnail_bg_color, 0.7);
}
/* Selected: gold border, regardless of active/hover state */
#thumbtable-filmstrip #thumb-main:selected #thumb-back {
border-color: #FFD700;
}
Note: This conceptualy interferes with the markings for grouped images, which receive a joint golden border. I am in fact not using the golden borders atm.
While fiddeling around with this I discovered an neat fact about the hovering I didn’t know: When the mouse is over the canvas the active image is in effect hovered, the filmstrip reflects this by brightening the active image.




