summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2024-04-29 18:21:31 +0200
committerPranam Lashkari <plashkari628@gmail.com>2024-04-29 21:54:14 +0100
commitec63d9c032e1fba80dcdf5db8d60df091f6e7476 (patch)
treee681d93431611bc8ac0f0059c2389168e11dcadf
parentfix(browser): Emit proper UI_PickLink post message (diff)
downloadonline-ec63d9c032e1fba80dcdf5db8d60df091f6e7476.tar.gz
online-ec63d9c032e1fba80dcdf5db8d60df091f6e7476.zip
css: fix button-box alignment
in 24.04 more elements are grid now, it seems to be a regression in button box: 1. enable macro execution in coolwsd.xml 2. open spreadsheet with macro Result: you see the dialog with buttons in 2 rows Expected: all buttons are in the same row it seems to be missing grid placement for left and right sections Signed-off-by: Szymon Kłos <szymon.klos@collabora.com> Change-Id: Ic1a3479114e4f832e852b9bdf3d39d2669ae69bb
-rw-r--r--browser/css/btns.css2
1 files changed, 2 insertions, 0 deletions
diff --git a/browser/css/btns.css b/browser/css/btns.css
index 773f232a62..f2483e4260 100644
--- a/browser/css/btns.css
+++ b/browser/css/btns.css
@@ -138,12 +138,14 @@ button.jsdialog img {
}
.jsdialog.ui-button-box-right {
+ grid-column: 2;
display: flex;
justify-self: end;
margin-inline-end: -5px;
}
.jsdialog.ui-button-box-left {
+ grid-column: 1;
display: flex;
justify-self: start;
margin-inline-start: -5px;