Set reasonable min-width and min-height for Standalone

This commit is contained in:
Simon Kornblith 2013-02-17 16:44:35 -05:00
parent eb93c421e5
commit 755f2bf6f9
2 changed files with 6 additions and 1 deletions

View file

@ -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"/>

View file

@ -2,3 +2,8 @@
#zotero-tb-fullscreen, #zotero-fullscreen-close-separator, #zotero-close-button {
display: none;
}
#main-window {
min-width: 915px;
min-height: 300px;
}