From 80795c3382fac191c15771b4fc2d9caf92d89e39 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 19 Oct 2022 13:07:01 +0000 Subject: [PATCH] Bug 31754: (follow-up) Correct alignment of buttons This patch corrects the alignment of the "Columns," "Export," and "Configure" buttons. The new design has them aligned to the right. --- koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss index b6d08839d5..6bbb978496 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -539,6 +539,15 @@ tbody { padding-bottom: 1em; } + div.dt-buttons { + display: flex; + flex-grow: 1; + + button:first-of-type { + margin-right: auto; + } + } + button, div, a { @@ -771,6 +780,7 @@ div { .table_controls { border-top: 1px solid #EEE; display: flex; + flex-grow: 1; margin-top: .5em; padding-top: .5em; } -- 2.20.1