www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 10cef4c06fdfca4d758996b3255711fa293534fc
parent b21dbbace4165de459af981c3bc67ae6d83cd1cc
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 13 Feb 2012 14:03:49 -0500

Fix giant integration doc prefs window

Diffstat:
Mchrome/content/zotero/bibliography.js | 2+-
Mchrome/content/zotero/integration/integrationDocPrefs.xul | 55++++++++++++++++++++++++++++---------------------------
2 files changed, 29 insertions(+), 28 deletions(-)

diff --git a/chrome/content/zotero/bibliography.js b/chrome/content/zotero/bibliography.js @@ -45,7 +45,7 @@ var Zotero_File_Interface_Bibliography = new function() { function init() { // Set font size from pref // Affects bibliography.xul and integrationDocPrefs.xul - Zotero.setFontSize(document.documentElement); + Zotero.setFontSize(document.getElementById("zotero-bibliography-container")); if(window.arguments && window.arguments.length) { _io = window.arguments[0]; diff --git a/chrome/content/zotero/integration/integrationDocPrefs.xul b/chrome/content/zotero/integration/integrationDocPrefs.xul @@ -42,33 +42,34 @@ <script src="../include.js"/> <script src="../bibliography.js"/> - - <groupbox> - <caption label="&zotero.bibliography.style.label;"/> - <listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/> - </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;"/> + <vbox id="zotero-bibliography-container"> + <groupbox> + <caption label="&zotero.bibliography.style.label;"/> + <listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/> + </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> + <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> - <checkbox id="storeReferences" label="&zotero.integration.prefs.storeReferences.label;"/> - <description class="radioDescription">&zotero.integration.prefs.storeReferences.caption;</description> - </groupbox> + <groupbox> + <caption label="&zotero.integration.prefs.formatUsing.label;"/> + + <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> \ No newline at end of file