www

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

commit 4f48210682719ab1e9f3f01e2c5e3851e75ea25e
parent cc93621678a827dcd00581d31b045caee2c8e729
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 14 Sep 2009 09:24:21 +0000

proper look for disabled "-" icon on new item


Diffstat:
Mchrome/content/zotero/bindings/itembox.xml | 2+-
Mchrome/skin/default/zotero/zotero.css | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml @@ -691,12 +691,12 @@ // Minus (-) button var removeButton = document.createElement('label'); removeButton.setAttribute("value","-"); + removeButton.setAttribute("class","zotero-clicky"); // If default first row, don't let user remove it if (defaultRow) { this.disableButton(removeButton); } else { - removeButton.setAttribute("class","zotero-clicky"); removeButton.setAttribute("onclick", "document.getBindingParent(this).removeCreator(" + this._creatorCount diff --git a/chrome/skin/default/zotero/zotero.css b/chrome/skin/default/zotero/zotero.css @@ -172,7 +172,7 @@ zoteromergepane { border: 0px !important; } -.zotero-clicky[value="+"][disabled=true] { +.zotero-clicky[value="+"][disabled=true], .zotero-clicky[value="-"][disabled=true] { opacity: .5; }