From 38fdb3febd69d3e13781fbe24b576b5c6207247a Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 10 May 2024 13:13:20 +0000 Subject: [PATCH] Bug 36827: Fix tab formatting This patch removes unwanted whitespace between the tabs and the tab content Test plan: 1) Enable the ERM module and navigate to the eUsage > Reports sections 2) Observe the whitespace between the tabs and the content 3) Apply patch and run yarn build 4) Hard refresh the page, the whitespace should be gone Signed-off-by: Paul Derscheid Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer (cherry picked from commit 11cdeb0889ecd4b2827690a6e7df45c912f2a9e1) Signed-off-by: Fridolin Somers --- .../js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue | 3 +++ .../prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue | 3 +++ 2 files changed, 6 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue index 28ffa721c7..eb4813aad4 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersShow.vue @@ -242,4 +242,7 @@ export default { .active { cursor: pointer; } +.toptabs { + margin-bottom: 0; +} diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue index a791c50611..56238ffec3 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsReportsHome.vue @@ -114,4 +114,7 @@ export default { .rows { float: none; } +.toptabs { + margin-bottom: 0; +} -- 2.20.1