@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/css/opac.css | 7 +++++++ .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/less/opac.less | 4 ++++ koha-tmpl/opac-tmpl/bootstrap/less/responsive.less | 3 +++ 4 files changed, 15 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/css/opac.css +++ a/koha-tmpl/opac-tmpl/bootstrap/css/opac.css @@ -744,6 +744,10 @@ fieldset.rows li.lradio label { width: auto; margin: 0 0 0 1em; } +fieldset.rows .hint { + display: block; + margin-left: 11em; +} fieldset.action { clear: both; float: none; @@ -2357,6 +2361,9 @@ a.reviewlink:visited { fieldset.rows ol { margin-left: 0; } + fieldset.rows .hint { + margin-left: 0; + } body { padding: 0; } --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt @@ -559,7 +559,7 @@ [% END %] [% IF ( category2 && !OpacAllowPublicListCreation ) %] - The library has disabled the ability for patrons to create new public lists. If you make your list private, you will not be able to make it public again. + The library has disabled the ability for patrons to create new public lists. If you make your list private, you will not be able to make it public again. [% END %] [% INCLUDE list_permissions %] --- a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less +++ a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less @@ -733,6 +733,10 @@ fieldset { } } } + .hint { + display: block; + margin-left : 11em; + } } &.action { clear : both; --- a/koha-tmpl/opac-tmpl/bootstrap/less/responsive.less +++ a/koha-tmpl/opac-tmpl/bootstrap/less/responsive.less @@ -81,6 +81,9 @@ ol { margin-left : 0; } + .hint { + margin-left: 0; + } } } body { --