flashgrid-ext 1.0.3 → 1.0.4
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/README.md +3 -0
- data/lib/flashgrid/ext/version.rb +1 -1
- data/vendor/assets/javascripts/typeahead.js +1124 -0
- data/vendor/assets/javascripts/typeahead_search.js +645 -0
- data/vendor/assets/stylesheets/typeahead.css.scss +41 -0
- metadata +5 -2
@@ -0,0 +1,41 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Typeahead */
|
4
|
+
|
5
|
+
/* #Typeahead
|
6
|
+
================================================== */
|
7
|
+
.typeahead-wrapper { width: 100%; }
|
8
|
+
.typeahead-dropdown-menu {
|
9
|
+
background-clip: padding-box;
|
10
|
+
background-color: rgba(246,247,249,1);
|
11
|
+
border-radius: 3px;
|
12
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
|
13
|
+
color: rgba(71,74,84,1);
|
14
|
+
display: none;
|
15
|
+
float: left;
|
16
|
+
list-style: none;
|
17
|
+
margin: 2px 0 0;
|
18
|
+
min-width: 160px;
|
19
|
+
padding: 5px 0;
|
20
|
+
position: absolute;
|
21
|
+
top: 100%;
|
22
|
+
z-index: 1000;
|
23
|
+
}
|
24
|
+
.typeahead-suggestion {
|
25
|
+
clear: both;
|
26
|
+
color: rgba(71,74,84,1);
|
27
|
+
display: block;
|
28
|
+
font-size: 12px;
|
29
|
+
font-weight: bold;
|
30
|
+
line-height: 20px;
|
31
|
+
padding: 5px 15px;
|
32
|
+
text-decoration: none;
|
33
|
+
white-space: nowrap;
|
34
|
+
}
|
35
|
+
.typeahead-suggestion.typeahead-cursor { color: rgba(58,144,216,1); }
|
36
|
+
.typeahead-suggestion p {
|
37
|
+
font-size: 12px;
|
38
|
+
font-weight: bold;
|
39
|
+
line-height: 20px;
|
40
|
+
margin: 0;
|
41
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flashgrid-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -64,12 +64,15 @@ files:
|
|
64
64
|
- vendor/assets/javascripts/scrollspy.js
|
65
65
|
- vendor/assets/javascripts/sort.js
|
66
66
|
- vendor/assets/javascripts/time_ago.js
|
67
|
+
- vendor/assets/javascripts/typeahead.js
|
68
|
+
- vendor/assets/javascripts/typeahead_search.js
|
67
69
|
- vendor/assets/stylesheets/animate.css.scss
|
68
70
|
- vendor/assets/stylesheets/calendar.css.scss
|
69
71
|
- vendor/assets/stylesheets/carousel.css.scss
|
70
72
|
- vendor/assets/stylesheets/editor.css.scss
|
71
73
|
- vendor/assets/stylesheets/inline_editor.css.scss
|
72
74
|
- vendor/assets/stylesheets/sort.css.scss
|
75
|
+
- vendor/assets/stylesheets/typeahead.css.scss
|
73
76
|
homepage: http://flashgrid-ext.drexed.com
|
74
77
|
licenses:
|
75
78
|
- MIT
|