- Fix iframe by just specifying a massive height for it (no, height: 100% doesn't work)
- Cancel should work as expected
This commit is contained in:
parent
6566ba1682
commit
c2db7b53b1
|
@ -629,6 +629,7 @@ var Zotero_QuickFormat = new function () {
|
||||||
this.onKeyPress = function(event) {
|
this.onKeyPress = function(event) {
|
||||||
var keyCode = event.keyCode;
|
var keyCode = event.keyCode;
|
||||||
if(keyCode === event.DOM_VK_ESCAPE) {
|
if(keyCode === event.DOM_VK_ESCAPE) {
|
||||||
|
io.citation.citationItems = [];
|
||||||
window.close();
|
window.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,6 +88,7 @@
|
||||||
|
|
||||||
#editor {
|
#editor {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
max-height: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.quick-format-title {
|
.quick-format-title {
|
||||||
|
@ -134,6 +135,10 @@
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#quick-format-iframe {
|
||||||
|
height: 9999px;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0 2px 0 2px;
|
margin: 0 2px 0 2px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user