@@ -, +, @@ --- koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js | 5 +++++ 1 file changed, 5 insertions(+) --- a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js +++ a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.fixFloat.js @@ -70,6 +70,11 @@ tbh.removeClass("floating"); } }); + + $(window).resize(function() { + var p = $(tbh).parents('div').first(); + $(tbh).width(p.width()-10); + }); } }; })(jQuery, window); --