Fix giant integration doc prefs window
This commit is contained in:
parent
b21dbbace4
commit
10cef4c06f
2 changed files with 29 additions and 28 deletions
|
@ -45,7 +45,7 @@ var Zotero_File_Interface_Bibliography = new function() {
|
||||||
function init() {
|
function init() {
|
||||||
// Set font size from pref
|
// Set font size from pref
|
||||||
// Affects bibliography.xul and integrationDocPrefs.xul
|
// Affects bibliography.xul and integrationDocPrefs.xul
|
||||||
Zotero.setFontSize(document.documentElement);
|
Zotero.setFontSize(document.getElementById("zotero-bibliography-container"));
|
||||||
|
|
||||||
if(window.arguments && window.arguments.length) {
|
if(window.arguments && window.arguments.length) {
|
||||||
_io = window.arguments[0];
|
_io = window.arguments[0];
|
||||||
|
|
|
@ -42,33 +42,34 @@
|
||||||
|
|
||||||
<script src="../include.js"/>
|
<script src="../include.js"/>
|
||||||
<script src="../bibliography.js"/>
|
<script src="../bibliography.js"/>
|
||||||
|
<vbox id="zotero-bibliography-container">
|
||||||
<groupbox>
|
<groupbox>
|
||||||
<caption label="&zotero.bibliography.style.label;"/>
|
<caption label="&zotero.bibliography.style.label;"/>
|
||||||
<listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/>
|
<listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/>
|
||||||
</groupbox>
|
</groupbox>
|
||||||
|
|
||||||
<groupbox>
|
|
||||||
<caption label="&zotero.integration.prefs.displayAs.label;"/>
|
|
||||||
<radiogroup id="displayAs" orient="horizontal">
|
|
||||||
<radio id="footnotes" label="&zotero.integration.prefs.footnotes.label;" selected="true"/>
|
|
||||||
<radio id="endnotes" label="&zotero.integration.prefs.endnotes.label;"/>
|
|
||||||
</radiogroup>
|
|
||||||
</groupbox>
|
|
||||||
|
|
||||||
<groupbox>
|
|
||||||
<caption label="&zotero.integration.prefs.formatUsing.label;"/>
|
|
||||||
|
|
||||||
<radiogroup id="formatUsing" orient="vertical">
|
<groupbox>
|
||||||
<radio id="fields" selected="true"/>
|
<caption label="&zotero.integration.prefs.displayAs.label;"/>
|
||||||
<label class="radioDescription" id="fields-caption"/>
|
<radiogroup id="displayAs" orient="horizontal">
|
||||||
<label class="radioDescription" id="fields-file-format-notice"/>
|
<radio id="footnotes" label="&zotero.integration.prefs.footnotes.label;" selected="true"/>
|
||||||
<radio id="bookmarks" label="&zotero.integration.prefs.bookmarks.label;"/>
|
<radio id="endnotes" label="&zotero.integration.prefs.endnotes.label;"/>
|
||||||
<description class="radioDescription" id="bookmarks-caption" style="white-space: pre;">&zotero.integration.prefs.bookmarks.caption;</description>
|
</radiogroup>
|
||||||
<description class="radioDescription" id="bookmarks-file-format-notice"/>
|
</groupbox>
|
||||||
</radiogroup>
|
|
||||||
|
|
||||||
<checkbox id="storeReferences" label="&zotero.integration.prefs.storeReferences.label;"/>
|
<groupbox>
|
||||||
<description class="radioDescription">&zotero.integration.prefs.storeReferences.caption;</description>
|
<caption label="&zotero.integration.prefs.formatUsing.label;"/>
|
||||||
</groupbox>
|
|
||||||
|
<radiogroup id="formatUsing" orient="vertical">
|
||||||
|
<radio id="fields" selected="true"/>
|
||||||
|
<label class="radioDescription" id="fields-caption"/>
|
||||||
|
<label class="radioDescription" id="fields-file-format-notice"/>
|
||||||
|
<radio id="bookmarks" label="&zotero.integration.prefs.bookmarks.label;"/>
|
||||||
|
<description class="radioDescription" id="bookmarks-caption" style="white-space: pre;">&zotero.integration.prefs.bookmarks.caption;</description>
|
||||||
|
<description class="radioDescription" id="bookmarks-file-format-notice"/>
|
||||||
|
</radiogroup>
|
||||||
|
|
||||||
|
<checkbox id="storeReferences" label="&zotero.integration.prefs.storeReferences.label;"/>
|
||||||
|
<description class="radioDescription">&zotero.integration.prefs.storeReferences.caption;</description>
|
||||||
|
</groupbox>
|
||||||
|
</vbox>
|
||||||
</dialog>
|
</dialog>
|
Loading…
Reference in a new issue