From d775b72bc52587d5e3802ea32ea633904873023c Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Tue, 27 Sep 2022 11:27:27 +0200 Subject: [PATCH] Bug 30952: Harmonize tables style - 2 pixels border below and above - No border above or below table cells (in thead, tbody and tfoot) - No border around tables Issue #22 --- .../intranet-tmpl/prog/css/src/_tables.scss | 17 +++++++++++++---- .../en/includes/messaging-preference-form.inc | 4 ++++ .../prog/en/modules/catalogue/results.tt | 4 ++++ 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss index 86becf8730..d7cea5bb78 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -1,7 +1,13 @@ table { border-collapse: collapse; - border-top: 1px solid $table-border-color; + thead { + border-bottom: 2px solid $table-border-color; + } + + tfoot { + border-top: 2px solid $table-border-color; + } .btn-group { white-space: nowrap; @@ -70,14 +76,18 @@ table { &.dataTable { border-collapse: collapse; - border: none; margin-top: .5em; margin-bottom: .5em; + &.no-footer { + border: none; + } + tfoot { td, th { padding: .5em; + border-top: none; } } @@ -85,6 +95,7 @@ table { th, td { padding: .5em; + border-bottom: none; } tr { @@ -115,8 +126,6 @@ table { } tbody { - border-top: 2px solid $table-border-color; - td { padding: .5em; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc index 1fe1d67696..accdad7c19 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc @@ -4,6 +4,7 @@ + [% IF Koha.Preference('SMSSendDriver') %][% END %] @@ -12,6 +13,8 @@ + + [% FOREACH messaging_preference IN messaging_preferences %] [% NEXT IF !Koha.Preference( 'ILLModule' ) && messaging_preference.message_name.match('^Ill_') %] [% NEXT IF messaging_preference.Auto_Renewals && Koha.Preference('AutoRenewalNotices') != 'preferences' %] @@ -236,4 +239,5 @@ [% END %] +
Days in advanceSMSDigests only
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt index 939257ef9c..6f0181ae40 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt @@ -440,6 +440,7 @@ + [% IF ( AmazonCoverImages || LocalCoverImages || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] @@ -447,8 +448,10 @@ + [% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] + [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] [% IF ( AmazonCoverImages || LocalCoverImages || IntranetCoce || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] @@ -681,6 +684,7 @@ [% END # /FOREACH SEARCH_RESULT %] +
 Results Location
-- 2.30.2