From d4f870b9ac2ee1fde8427e14a974d5e4cdb4503f Mon Sep 17 00:00:00 2001 From: Bernardo Gonzalez Kriegel Date: Tue, 5 May 2015 13:51:18 -0300 Subject: [PATCH] Bug 11057: Bootstrap theme: Don't hide language chooser below the fold This patch removes one attribute from one class on opac.less Generated css files show language changer all the time To test: 1) Update and translate for a anguage of your choice 2) Enable lang on OPAC, also allow opaclanguagesdisplay 3) Go to OPAC, note language changer 'hidden', scroll to view 4) Apply the patch 5) Check you have node.js and lessc (nodejs and node-less packeages) 6) Compile and replace new opac.css lessc --compress koha-tmpl/opac-tmpl/bootstrap/less/opac.less > koha-tmpl/opac-tmpl/bootstrap/css/opac.css 7) Reload OPAC, check language changer is visible without scrolling. 8) Check Advanced search, Authority search, Tag cloud, Login page, etc Language changer must be visible without scroll I do not provide a new opac.css Hope Owen could take a look --- koha-tmpl/opac-tmpl/bootstrap/less/opac.less | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less b/koha-tmpl/opac-tmpl/bootstrap/less/opac.less index 7c79c7d..7cc538e 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less +++ b/koha-tmpl/opac-tmpl/bootstrap/less/opac.less @@ -407,7 +407,6 @@ td { .navbar-fixed-bottom.navbar-static-bottom { margin-top : .5em; - position: static; } #changelanguage .nav > .active > p { -- 1.7.9.5