diff --git a/chrome/chromeFiles/content/scholar/bindings/noteeditor.xml b/chrome/chromeFiles/content/scholar/bindings/noteeditor.xml
index b50696702..2a0fe8fed 100644
--- a/chrome/chromeFiles/content/scholar/bindings/noteeditor.xml
+++ b/chrome/chromeFiles/content/scholar/bindings/noteeditor.xml
@@ -28,7 +28,7 @@
if(this.note.getSource())
this.item = Scholar.Items.get(this.note.getSource());
- this.id('noteField').setAttribute('value',this.note.getNote());
+ this.id('noteField').value = this.note.getNote();
this.id('links').item = this.note;
]]>
diff --git a/chrome/chromeFiles/content/scholar/overlay.js b/chrome/chromeFiles/content/scholar/overlay.js
index 47416371b..82bc07e25 100644
--- a/chrome/chromeFiles/content/scholar/overlay.js
+++ b/chrome/chromeFiles/content/scholar/overlay.js
@@ -255,6 +255,7 @@ var ScholarPane = new function()
//document.getElementById('scholar-search-options').getElementsByAttribute('checked','true')[0].label
document.getElementById('scholar-search-options').hidden = searchVal == "";
+ document.getElementById('tb-search-cancel').hidden = searchVal == "";
}
}
diff --git a/chrome/chromeFiles/content/scholar/overlay.xul b/chrome/chromeFiles/content/scholar/overlay.xul
index 77b8d6c5a..f7592d015 100644
--- a/chrome/chromeFiles/content/scholar/overlay.xul
+++ b/chrome/chromeFiles/content/scholar/overlay.xul
@@ -92,7 +92,9 @@
-
+
+
+
diff --git a/chrome/chromeFiles/skin/default/scholar/overlay.css b/chrome/chromeFiles/skin/default/scholar/overlay.css
index d9dff0cd7..472b6f570 100644
--- a/chrome/chromeFiles/skin/default/scholar/overlay.css
+++ b/chrome/chromeFiles/skin/default/scholar/overlay.css
@@ -133,6 +133,19 @@
#tb-search
{
width: 150px;
+ height: 24px;
+ margin: 0px;
+ margin-bottom: 2px;
+ padding: 0px;
+ vertical-align: middle;
+ font-size: 12px;
+}
+
+#tb-search-cancel
+{
+ margin: 0px;
+ padding: 0px;
+ cursor: pointer;
}
#scholar-view-item vbox