Dear all,
in the newest Version a MouseOverMenue was integrated.
For my usual workflow it bothers me quite a bit so I was searching were to disable it but could not find the option. Neither in the "settings" menue nor in the "config.inc.php"
Does anybody know where to disable this new MouseOverMenue?
Best, Arne
For this I use:
.listing-hover-menu { display:none !important; }
And the customizr extension.
On 16/06/2026 12:14, aschwab--- via Dev wrote:
Dear all,
in the newest Version a MouseOverMenue was integrated.
For my usual workflow it bothers me quite a bit so I was searching were to disable it but could not find the option. Neither in the "settings" menue nor in the "config.inc.php"
Does anybody know where to disable this new MouseOverMenue?
Best, Arne _______________________________________________ Dev mailing list -- dev@lists.roundcube.net To unsubscribe send an email to dev-leave@lists.roundcube.net
sorry for the dumb question but where should I enter the " .listing-hover-menu { display:none !important; } "
inside the config.inc.php usually every entry begins with $config , that is what confuses me.
Best, Arne
In config.inc.php add customizr
$config['plugins'] = array( 'example', 'customizr' );
and:
$config['custom_stylesheet'] = './skins/custom_stylez.css';
relative or full path
On 17/06/2026 10:25, aschwab--- via Dev wrote:
sorry for the dumb question but where should I enter the " .listing-hover-menu { display:none !important; } "
inside the config.inc.php usually every entry begins with $config , that is what confuses me.
Best, Arne _______________________________________________ Dev mailing list -- dev@lists.roundcube.net To unsubscribe send an email to dev-leave@lists.roundcube.net
I know how to integrate the plugins but thanks a lot for the clarification. I did not know where to but the CSS-code (see next post). Thanks!
On 17.06.2026 10:25, aschwab--- via Dev wrote:
sorry for the dumb question but where should I enter the " .listing-hover-menu { display:none !important; } "
inside the config.inc.php usually every entry begins with $config , that is what confuses me.
You're on the developers mailing list. A developer would know it's a css code. You don't put it in the config file.
There's been some work on making the menu optional, but it needs some time. We might backport this change to 1.7 at some point.
https://github.com/roundcube/roundcubemail/pull/10229
sorry for bothering you and thanks for pointing out that this will be made switchable!