From d3558efd93e728b82005dd7ddde389cf0c11b2bf Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Fri, 2 Sep 2022 12:01:34 +0200 Subject: [PATCH] Bug 30952: Fix lists display on patron detail page Issue #15 --- .../prog/css/src/staff-global.scss | 50 +++++++++++++++++++ 1 file changed, 50 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 78e4b3263e..4a43ec0a4e 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1192,6 +1192,56 @@ div { } } + &.rows { + clear: left; + float: left; + margin: 0; + padding: 0; + width: 100%; + + + div { + &.rows { + margin-top: .6em; + } + } + + li { + border-bottom: 1px solid #EEE; + clear: left; + float: left; + list-style-type: none; + padding: .275em; + width: 100%; + } + + ol { + list-style-type: none; + padding: .5em 1em 0 0; + + li { + li { + border-bottom: 0; + } + } + } + + p { + margin-left: 10em; + } + + span { + &.label { + float: left; + font-weight: bold; + margin-right: 1em; + padding-top: 0; + text-align: left; + width: 9em; + white-space: normal; + } + } + } + &.pages { margin: .5em 0; -- 2.30.2