From ad46baf7f7fc5b4614da8d7820b4ca95ee4e55e8 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 12 Oct 2018 14:23:49 +0000 Subject: [PATCH] Bug 21434: (follow-up) Switch two-column templates to Bootstrap grid: Tools part 2 This follow-up corrects CSS which was dependent on YUI-specific markup context. To test, apply the patch, regenerate the staff client CSS, go to Tools -> Calendar. - Click any date on the calendar - In the entry form the checkbox and radio button options should be styled correctly. --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index 8fc9058..d2904a1 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -928,6 +928,13 @@ fieldset { margin-left: 1em; width: auto; } + + &.radio, + &.checkbox { + label { + display: inline; + } + } } ol, @@ -4259,6 +4266,15 @@ span { } } +#tools_holidays { + .radio, + .checkbox { + label { + margin-left: 0; + } + } +} + @media (min-width: 200px) { .navbar-nav > li { float: left; -- 2.1.4