fx115: Fix wizards
* Fix wrong window dimensions * Fix missing buttons in import wizard * Fix tiny items selector in RTF Scan Wizard
This commit is contained in:
parent
8bf8bfe804
commit
7bf0aa4958
9 changed files with 16 additions and 7 deletions
|
@ -390,7 +390,7 @@ var Zotero_File_Interface = new function() {
|
|||
args.wrappedJSObject = args;
|
||||
|
||||
Services.ww.openWindow(null, "chrome://zotero/content/import/importWizard.xhtml",
|
||||
"importFile", "chrome,dialog=yes,centerscreen,width=600,height=400,modal", args);
|
||||
"importFile", "chrome,dialog=yes,centerscreen,modal", args);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
Services.scriptloader.loadSubScript("chrome://zotero/content/import/importWizard.js", this);
|
||||
</script>
|
||||
|
||||
<wizard id="import-wizard" class="import-wizard" width="600" height="400">
|
||||
<wizard id="import-wizard" class="import-wizard">
|
||||
<wizardpage pageid="page-start" data-header-label-id="import-where-from">
|
||||
<radiogroup id="import-source-group" align="start">
|
||||
<radio value="file" data-l10n-id="import-source-file" />
|
||||
|
|
|
@ -47,7 +47,6 @@
|
|||
<wizard
|
||||
id="publications-dialog-wizard"
|
||||
class="publications-dialog-wizard"
|
||||
width="600" height="550"
|
||||
>
|
||||
<wizardpage pageid="intro" data-l10n-id="publications-intro-page">
|
||||
<p class="description" data-l10n-id="publications-intro" />
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
Services.scriptloader.loadSubScript("chrome://zotero/content/customElements.js", this);
|
||||
</script>
|
||||
|
||||
<wizard id="rtfscan-wizard" class="rtfscan-wizard" width="700" height="550" data-l10n-id="rtfScan-wizard">
|
||||
<wizard id="rtfscan-wizard" class="rtfscan-wizard" data-l10n-id="rtfScan-wizard">
|
||||
<wizardpage pageid="page-start" data-l10n-id="rtfScan-intro-page">
|
||||
<div>
|
||||
<span class="page-start-1" data-l10n-id="rtfScan-introPage-description" />
|
||||
|
|
|
@ -38,10 +38,7 @@
|
|||
xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
onload="doLoad();"
|
||||
onunload="doUnload();"
|
||||
width="600"
|
||||
height="450"
|
||||
persist="screenX screenY width height"
|
||||
style="display: flex"
|
||||
class="zotero-dialog"
|
||||
>
|
||||
<dialog
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
.import-wizard {
|
||||
min-width: 600px;
|
||||
min-height: 400px;
|
||||
font-size: 12px;
|
||||
|
||||
radiogroup {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
.publications-dialog-wizard {
|
||||
min-width: 600px;
|
||||
min-height: 550px;
|
||||
font-size: 12px;
|
||||
|
||||
div {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
.rtfscan-wizard {
|
||||
min-width: 700px;
|
||||
min-height: 550px;
|
||||
|
||||
wizardpage {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#zotero-select-items-dialog {
|
||||
display: flex;
|
||||
min-width: 600px;
|
||||
min-height: 450px;
|
||||
}
|
||||
|
||||
#select-items-dialog {
|
||||
padding: 2em;
|
||||
|
||||
|
|
Loading…
Reference in a new issue