virgo 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/virgo/common/_public_nav.haml +12 -12
- data/lib/virgo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3983f57a6b7b03f2e69b991ada47b4165a131fa7
|
|
4
|
+
data.tar.gz: 541c67bfee8b4376aac2e01de681f4b2da865220
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59e02800c1cb001b6fef7aa772e1b4f5349bfbdcdac8f5c26e60c14b76b4b647b611880b75f8cf44cbe2a8a9a5755cb36faa708c20b2f0a5f4359b6e416fa339
|
|
7
|
+
data.tar.gz: 3ae79429b9b07d9e85a1980c9357c269aec1d20762259c130d4784e7f7189b54ff5831cf4a618176e93b06ed9748b717ac2ffa7533b3fd20820b32eda42736a3
|
|
@@ -41,18 +41,18 @@
|
|
|
41
41
|
= link_to "#", class: 'navbar-search-link js-expand-search-form' do
|
|
42
42
|
%i.fa.fa-search
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
44
|
+
.search-form-container.js-search-form
|
|
45
|
+
.search-form-wrapper
|
|
46
|
+
= form_tag virgo.search_index_path, method: :post, class: 'search-form form-inline pull-left' do
|
|
47
|
+
= text_field_tag 'post_search[term]', "", class: 'form-control search-form-input'
|
|
48
|
+
= submit_tag "Search", class: 'btn block-link search-form-submit'
|
|
49
|
+
|
|
50
|
+
- if filter_params[:term].present?
|
|
51
|
+
- url = filter_params[:post_type] == 'page' ? virgo.admin_posts_path(post_type: 'page') : filter_params
|
|
52
|
+
= link_to nil, href: url, class: 'clear-link' do
|
|
53
|
+
%i.fa.fa-times-circle-o
|
|
54
|
+
clear search
|
|
55
|
+
%i.fa.fa-times.js-collapse-search-form.collapse-search-form.search-form-icon
|
|
56
56
|
|
|
57
57
|
.clear
|
|
58
58
|
|
data/lib/virgo/version.rb
CHANGED