commit 755f2bf6f996db2f31f48e468d4dd8a0c64e7a23
parent eb93c421e59c02a75c3ea9ce2e1fed51d82bb19d
Author: Simon Kornblith <simon@simonster.com>
Date: Sun, 17 Feb 2013 16:44:35 -0500
Set reasonable min-width and min-height for Standalone
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/chrome/content/zotero/standalone/standalone.xul b/chrome/content/zotero/standalone/standalone.xul
@@ -46,7 +46,7 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
windowtype="navigator:browser"
title="&brandShortName;"
- width="900" height="500"
+ width="915" height="500"
persist="screenX screenY width height sizemode">
<script type="application/javascript" src="standalone.js"/>
<script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
diff --git a/chrome/skin/default/zotero/standalone.css b/chrome/skin/default/zotero/standalone.css
@@ -1,4 +1,9 @@
#zotero-tb-item-from-page, #zotero-tb-snapshot-from-page, #zotero-tb-link-from-page,
#zotero-tb-fullscreen, #zotero-fullscreen-close-separator, #zotero-close-button {
display: none;
+}
+
+#main-window {
+ min-width: 915px;
+ min-height: 300px;
}
\ No newline at end of file