From cd45465b0df7740accac3dbaf2ee1476607f4c05 Mon Sep 17 00:00:00 2001 From: Sol Villar Date: Thu, 5 Mar 2015 11:25:43 -0300 Subject: [PATCH] [#427] Fixed bug in search and style in footer. --- _layouts/default.html | 2 +- css-site/style.css | 6 ++---- src/widget.queryeditor.js | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index b1563e7d..9ed6a0fd 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -83,7 +83,7 @@
-

Use the Library »

+

Use the Library »

Recline.js is freely redistributable under the terms of the MIT license.

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() {