Locate manager: Fix button spacing (#3807)

This commit is contained in:
Abe Jellinek 2024-07-26 16:29:10 -04:00 committed by Dan Stillman
parent 1573d251e0
commit 9d8845b961
3 changed files with 8 additions and 1 deletions

View file

@ -59,7 +59,7 @@
<separator class="thin"/>
<hbox align="center">
<hbox id="button-bar" align="center">
<hbox pack="start" flex="1">
<button label="Toggle" onclick="toggleLocateEngines()" flex="1"/>
<button id="locateManager-restoreDefaults" label="&zotero.preferences.locate.restoreDefaults;" oncommand="restoreDefaultLocateEngines()" flex="1"/>

View file

@ -38,6 +38,7 @@
@import "components/import-wizard";
@import "components/item-tree";
@import "components/listheader";
@import "components/locateManager";
@import "components/longTagFixer";
@import "components/mainWindow";
@import "components/menu";

View file

@ -0,0 +1,6 @@
#zotero-locate-manager-prefs {
#button-bar, #button-bar > hbox {
display: flex;
gap: 6px;
}
}