diff --git a/chrome/content/zotero/elements/itemBox.js b/chrome/content/zotero/elements/itemBox.js index 31d49a069b..8471d4cc92 100644 --- a/chrome/content/zotero/elements/itemBox.js +++ b/chrome/content/zotero/elements/itemBox.js @@ -1004,7 +1004,7 @@ // If not editable or only 1 creator row, hide grippy if (!this.editable || this.item.numCreators() < 2) { - grippy.style.visibility = 'hidden'; + grippy.classList.add("single-creator-grippy"); grippy.setAttribute('disabled', true); } diff --git a/scss/elements/_itemBox.scss b/scss/elements/_itemBox.scss index 0c040e57b1..b47d62b3e9 100644 --- a/scss/elements/_itemBox.scss +++ b/scss/elements/_itemBox.scss @@ -69,6 +69,11 @@ item-box { padding: 0 !important; } + // Do not display grippy if there is only one creator + .meta-label > .single-creator-grippy { + visibility: hidden !important; + } + textarea { font: inherit; resize: none;