diff --git a/css-site/style.css b/css-site/style.css
index 1d5ddd04..f0a9e030 100644
--- a/css-site/style.css
+++ b/css-site/style.css
@@ -214,10 +214,8 @@ section {
.recline-footer a {
color:#CCC;
}
-.recline-footer a.btn,
-.recline-footer a.btn:hover {
- padding: 0px;
- font-weight: bold;
+.recline-footer a.btn {
+ color: #333333;
}
.tutorials .well {
diff --git a/src/widget.queryeditor.js b/src/widget.queryeditor.js
index 353dabce..41ebf620 100644
--- a/src/widget.queryeditor.js
+++ b/src/widget.queryeditor.js
@@ -34,7 +34,7 @@ my.QueryEditor = Backbone.View.extend({
},
onFormSubmit: function(e) {
e.preventDefault();
- var query = this.$el.find('.text-query input').val();
+ var query = this.$el.find('.search-query').val();
this.model.set({q: query});
},
render: function() {