rails-jquery-tokeninput 0.0.1
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 +15 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +65 -0
- data/Rakefile +1 -0
- data/app/assets/javascripts/jquery.tokeninput.js +1061 -0
- data/app/assets/javascripts/rails-jquery-tokeninput.js +10 -0
- data/lib/rails/jquery/tokeninput.rb +9 -0
- data/lib/rails/jquery/tokeninput/version.rb +7 -0
- data/rails-jquery-tokeninput.gemspec +20 -0
- data/vendor/assets/stylesheets/token-input-facebook.css +122 -0
- data/vendor/assets/stylesheets/token-input-mac.css +204 -0
- data/vendor/assets/stylesheets/token-input.css +127 -0
- metadata +59 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rails/jquery/tokeninput/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rails-jquery-tokeninput'
|
8
|
+
spec.version = Rails::Jquery::Tokeninput::VERSION
|
9
|
+
spec.authors = ['Evgeny Li']
|
10
|
+
spec.email = ['exaspark@gmail.com']
|
11
|
+
spec.description = %q{rails-jquery-tokeninput project integrates Tokeninput jQuery plugin which allows your users to select multiple items from a predefined list, using autocompletion as they type to find each item}
|
12
|
+
spec.summary = %q{Porting Tokeninput plugin}
|
13
|
+
spec.homepage = 'https://github.com/exAspArk/rails-jquery-tokeninput'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
end
|
@@ -0,0 +1,122 @@
|
|
1
|
+
/* Example tokeninput style #2: Facebook style */
|
2
|
+
ul.token-input-list-facebook {
|
3
|
+
overflow: hidden;
|
4
|
+
height: auto !important;
|
5
|
+
height: 1%;
|
6
|
+
width: 400px;
|
7
|
+
border: 1px solid #8496ba;
|
8
|
+
cursor: text;
|
9
|
+
font-size: 12px;
|
10
|
+
font-family: Verdana, sans-serif;
|
11
|
+
min-height: 1px;
|
12
|
+
z-index: 999;
|
13
|
+
margin: 0;
|
14
|
+
padding: 0;
|
15
|
+
background-color: #fff;
|
16
|
+
list-style-type: none;
|
17
|
+
clear: left;
|
18
|
+
}
|
19
|
+
|
20
|
+
ul.token-input-list-facebook li input {
|
21
|
+
border: 0;
|
22
|
+
width: 100px;
|
23
|
+
padding: 3px 8px;
|
24
|
+
background-color: white;
|
25
|
+
margin: 2px 0;
|
26
|
+
-webkit-appearance: caret;
|
27
|
+
}
|
28
|
+
|
29
|
+
li.token-input-token-facebook {
|
30
|
+
overflow: hidden;
|
31
|
+
height: auto !important;
|
32
|
+
height: 15px;
|
33
|
+
margin: 3px;
|
34
|
+
padding: 1px 3px;
|
35
|
+
background-color: #eff2f7;
|
36
|
+
color: #000;
|
37
|
+
cursor: default;
|
38
|
+
border: 1px solid #ccd5e4;
|
39
|
+
font-size: 11px;
|
40
|
+
border-radius: 5px;
|
41
|
+
-moz-border-radius: 5px;
|
42
|
+
-webkit-border-radius: 5px;
|
43
|
+
float: left;
|
44
|
+
white-space: nowrap;
|
45
|
+
}
|
46
|
+
|
47
|
+
li.token-input-token-facebook p {
|
48
|
+
display: inline;
|
49
|
+
padding: 0;
|
50
|
+
margin: 0;
|
51
|
+
}
|
52
|
+
|
53
|
+
li.token-input-token-facebook span {
|
54
|
+
color: #a6b3cf;
|
55
|
+
margin-left: 5px;
|
56
|
+
font-weight: bold;
|
57
|
+
cursor: pointer;
|
58
|
+
}
|
59
|
+
|
60
|
+
li.token-input-selected-token-facebook {
|
61
|
+
background-color: #5670a6;
|
62
|
+
border: 1px solid #3b5998;
|
63
|
+
color: #fff;
|
64
|
+
}
|
65
|
+
|
66
|
+
li.token-input-input-token-facebook {
|
67
|
+
float: left;
|
68
|
+
margin: 0;
|
69
|
+
padding: 0;
|
70
|
+
list-style-type: none;
|
71
|
+
}
|
72
|
+
|
73
|
+
div.token-input-dropdown-facebook {
|
74
|
+
position: absolute;
|
75
|
+
width: 400px;
|
76
|
+
background-color: #fff;
|
77
|
+
overflow: hidden;
|
78
|
+
border-left: 1px solid #ccc;
|
79
|
+
border-right: 1px solid #ccc;
|
80
|
+
border-bottom: 1px solid #ccc;
|
81
|
+
cursor: default;
|
82
|
+
font-size: 11px;
|
83
|
+
font-family: Verdana, sans-serif;
|
84
|
+
z-index: 1;
|
85
|
+
}
|
86
|
+
|
87
|
+
div.token-input-dropdown-facebook p {
|
88
|
+
margin: 0;
|
89
|
+
padding: 5px;
|
90
|
+
font-weight: bold;
|
91
|
+
color: #777;
|
92
|
+
}
|
93
|
+
|
94
|
+
div.token-input-dropdown-facebook ul {
|
95
|
+
margin: 0;
|
96
|
+
padding: 0;
|
97
|
+
}
|
98
|
+
|
99
|
+
div.token-input-dropdown-facebook ul li {
|
100
|
+
background-color: #fff;
|
101
|
+
padding: 3px;
|
102
|
+
margin: 0;
|
103
|
+
list-style-type: none;
|
104
|
+
}
|
105
|
+
|
106
|
+
div.token-input-dropdown-facebook ul li.token-input-dropdown-item-facebook {
|
107
|
+
background-color: #fff;
|
108
|
+
}
|
109
|
+
|
110
|
+
div.token-input-dropdown-facebook ul li.token-input-dropdown-item2-facebook {
|
111
|
+
background-color: #fff;
|
112
|
+
}
|
113
|
+
|
114
|
+
div.token-input-dropdown-facebook ul li em {
|
115
|
+
font-weight: bold;
|
116
|
+
font-style: normal;
|
117
|
+
}
|
118
|
+
|
119
|
+
div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
|
120
|
+
background-color: #3b5998;
|
121
|
+
color: #fff;
|
122
|
+
}
|
@@ -0,0 +1,204 @@
|
|
1
|
+
/* Example tokeninput style #2: Mac Style */
|
2
|
+
fieldset.token-input-mac {
|
3
|
+
position: relative;
|
4
|
+
padding: 0;
|
5
|
+
margin: 5px 0;
|
6
|
+
background: #fff;
|
7
|
+
width: 400px;
|
8
|
+
border: 1px solid #A4BDEC;
|
9
|
+
border-radius: 10px;
|
10
|
+
-moz-border-radius: 10px;
|
11
|
+
-webkit-border-radius: 10px;
|
12
|
+
}
|
13
|
+
|
14
|
+
fieldset.token-input-mac.token-input-dropdown-mac {
|
15
|
+
border-radius: 10px 10px 0 0;
|
16
|
+
-moz-border-radius: 10px 10px 0 0;
|
17
|
+
-webkit-border-radius: 10px 10px 0 0;
|
18
|
+
box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
|
19
|
+
-moz-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
|
20
|
+
-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
|
21
|
+
}
|
22
|
+
|
23
|
+
ul.token-input-list-mac {
|
24
|
+
overflow: hidden;
|
25
|
+
height: auto !important;
|
26
|
+
height: 1%;
|
27
|
+
cursor: text;
|
28
|
+
font-size: 12px;
|
29
|
+
font-family: Verdana, sans-serif;
|
30
|
+
min-height: 1px;
|
31
|
+
z-index: 999;
|
32
|
+
margin: 0;
|
33
|
+
padding: 3px;
|
34
|
+
background: transparent;
|
35
|
+
}
|
36
|
+
|
37
|
+
ul.token-input-list-mac.error {
|
38
|
+
border: 1px solid #C52020;
|
39
|
+
}
|
40
|
+
|
41
|
+
ul.token-input-list-mac li {
|
42
|
+
list-style-type: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
li.token-input-token-mac p {
|
46
|
+
display: inline;
|
47
|
+
padding: 0;
|
48
|
+
margin: 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
li.token-input-token-mac span {
|
52
|
+
color: #a6b3cf;
|
53
|
+
margin-left: 5px;
|
54
|
+
font-weight: bold;
|
55
|
+
cursor: pointer;
|
56
|
+
}
|
57
|
+
|
58
|
+
/* TOKENS */
|
59
|
+
|
60
|
+
li.token-input-token-mac {
|
61
|
+
font-family: "Lucida Grande", Arial, sans-serif;
|
62
|
+
font-size: 9pt;
|
63
|
+
line-height: 12pt;
|
64
|
+
overflow: hidden;
|
65
|
+
height: 16px;
|
66
|
+
margin: 3px;
|
67
|
+
padding: 0 10px;
|
68
|
+
background: none;
|
69
|
+
background-color: #dee7f8;
|
70
|
+
color: #000;
|
71
|
+
cursor: default;
|
72
|
+
border: 1px solid #a4bdec;
|
73
|
+
border-radius: 15px;
|
74
|
+
-moz-border-radius: 15px;
|
75
|
+
-webkit-border-radius: 15px;
|
76
|
+
float: left;
|
77
|
+
}
|
78
|
+
|
79
|
+
li.token-input-highlighted-token-mac {
|
80
|
+
background-color: #bbcef1;
|
81
|
+
border: 1px solid #598bec;
|
82
|
+
color: #000;
|
83
|
+
}
|
84
|
+
|
85
|
+
li.token-input-selected-token-mac {
|
86
|
+
background-color: #598bec;
|
87
|
+
border: 1px solid transparent;
|
88
|
+
color: #fff;
|
89
|
+
}
|
90
|
+
|
91
|
+
li.token-input-highlighted-token-mac span.token-input-delete-token-mac {
|
92
|
+
color: #000;
|
93
|
+
}
|
94
|
+
|
95
|
+
li.token-input-selected-token-mac span.token-input-delete-token-mac {
|
96
|
+
color: #fff;
|
97
|
+
}
|
98
|
+
|
99
|
+
li.token-input-input-token-mac {
|
100
|
+
border: none;
|
101
|
+
background: transparent;
|
102
|
+
float: left;
|
103
|
+
padding: 0;
|
104
|
+
margin: 0;
|
105
|
+
}
|
106
|
+
|
107
|
+
li.token-input-input-token-mac input {
|
108
|
+
border: 0;
|
109
|
+
width: 100px;
|
110
|
+
padding: 3px;
|
111
|
+
background-color: transparent;
|
112
|
+
margin: 0;
|
113
|
+
}
|
114
|
+
|
115
|
+
div.token-input-dropdown-mac {
|
116
|
+
position: absolute;
|
117
|
+
border: 1px solid #A4BDEC;
|
118
|
+
border-top: none;
|
119
|
+
left: -1px;
|
120
|
+
right: -1px;
|
121
|
+
background-color: #fff;
|
122
|
+
overflow: hidden;
|
123
|
+
cursor: default;
|
124
|
+
font-size: 10pt;
|
125
|
+
font-family: "Lucida Grande", Arial, sans-serif;
|
126
|
+
padding: 5px;
|
127
|
+
border-radius: 0 0 10px 10px;
|
128
|
+
-moz-border-radius: 0 0 10px 10px;
|
129
|
+
-webkit-border-radius: 0 0 10px 10px;
|
130
|
+
box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
|
131
|
+
-moz-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
|
132
|
+
-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
|
133
|
+
clip:rect(0px, 1000px, 1000px, -10px);
|
134
|
+
}
|
135
|
+
|
136
|
+
div.token-input-dropdown-mac p {
|
137
|
+
font-size: 8pt;
|
138
|
+
margin: 0;
|
139
|
+
padding: 0 5px;
|
140
|
+
font-style: italic;
|
141
|
+
color: #aaa;
|
142
|
+
}
|
143
|
+
|
144
|
+
div.token-input-dropdown-mac h3.token-input-dropdown-category-mac {
|
145
|
+
font-family: "Lucida Grande", Arial, sans-serif;
|
146
|
+
font-size: 10pt;
|
147
|
+
font-weight: bold;
|
148
|
+
border: none;
|
149
|
+
padding: 0 5px;
|
150
|
+
margin: 0;
|
151
|
+
}
|
152
|
+
|
153
|
+
div.token-input-dropdown-mac ul {
|
154
|
+
margin: 0;
|
155
|
+
padding: 0;
|
156
|
+
}
|
157
|
+
|
158
|
+
div.token-input-dropdown-mac ul li {
|
159
|
+
list-style-type: none;
|
160
|
+
cursor: pointer;
|
161
|
+
background: none;
|
162
|
+
background-color: #fff;
|
163
|
+
margin: 0;
|
164
|
+
padding: 0 0 0 25px;
|
165
|
+
}
|
166
|
+
|
167
|
+
div.token-input-dropdown-mac ul li.token-input-dropdown-item-mac {
|
168
|
+
background-color: #fff;
|
169
|
+
}
|
170
|
+
|
171
|
+
div.token-input-dropdown-mac ul li.token-input-dropdown-item-mac.odd {
|
172
|
+
background-color: #ECF4F9;
|
173
|
+
border-radius: 15px;
|
174
|
+
-moz-border-radius: 15px;
|
175
|
+
-webkit-border-radius: 15px;
|
176
|
+
}
|
177
|
+
|
178
|
+
div.token-input-dropdown-mac ul li.token-input-dropdown-item-mac span.token-input-dropdown-item-description-mac {
|
179
|
+
float: right;
|
180
|
+
font-size: 8pt;
|
181
|
+
font-style: italic;
|
182
|
+
padding: 0 10px 0 0;
|
183
|
+
color: #999;
|
184
|
+
}
|
185
|
+
|
186
|
+
div.token-input-dropdown-mac ul li strong {
|
187
|
+
font-weight: bold;
|
188
|
+
text-decoration: underline;
|
189
|
+
font-style: none;
|
190
|
+
}
|
191
|
+
|
192
|
+
div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac,
|
193
|
+
div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac.odd {
|
194
|
+
background-color: #598bec;
|
195
|
+
color: #fff;
|
196
|
+
border-radius: 15px;
|
197
|
+
-moz-border-radius: 15px;
|
198
|
+
-webkit-border-radius: 15px;
|
199
|
+
}
|
200
|
+
|
201
|
+
div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac span.token-input-dropdown-item-description-mac,
|
202
|
+
div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac.odd span.token-input-dropdown-item-description-mac {
|
203
|
+
color: #fff;
|
204
|
+
}
|
@@ -0,0 +1,127 @@
|
|
1
|
+
/* Example tokeninput style #1: Token vertical list*/
|
2
|
+
ul.token-input-list {
|
3
|
+
overflow: hidden;
|
4
|
+
height: auto !important;
|
5
|
+
height: 1%;
|
6
|
+
width: 400px;
|
7
|
+
border: 1px solid #999;
|
8
|
+
cursor: text;
|
9
|
+
font-size: 12px;
|
10
|
+
font-family: Verdana, sans-serif;
|
11
|
+
z-index: 999;
|
12
|
+
margin: 0;
|
13
|
+
padding: 0;
|
14
|
+
background-color: #fff;
|
15
|
+
list-style-type: none;
|
16
|
+
clear: left;
|
17
|
+
}
|
18
|
+
|
19
|
+
ul.token-input-list li {
|
20
|
+
list-style-type: none;
|
21
|
+
}
|
22
|
+
|
23
|
+
ul.token-input-list li input {
|
24
|
+
border: 0;
|
25
|
+
width: 350px;
|
26
|
+
padding: 3px 8px;
|
27
|
+
background-color: white;
|
28
|
+
-webkit-appearance: caret;
|
29
|
+
}
|
30
|
+
|
31
|
+
ul.token-input-disabled,
|
32
|
+
ul.token-input-disabled li input {
|
33
|
+
background-color: #E8E8E8;
|
34
|
+
}
|
35
|
+
|
36
|
+
ul.token-input-disabled li.token-input-token {
|
37
|
+
background-color: #D9E3CA;
|
38
|
+
color: #7D7D7D
|
39
|
+
}
|
40
|
+
|
41
|
+
ul.token-input-disabled li.token-input-token span {
|
42
|
+
color: #CFCFCF;
|
43
|
+
cursor: default;
|
44
|
+
}
|
45
|
+
|
46
|
+
li.token-input-token {
|
47
|
+
overflow: hidden;
|
48
|
+
height: auto !important;
|
49
|
+
height: 1%;
|
50
|
+
margin: 3px;
|
51
|
+
padding: 3px 5px;
|
52
|
+
background-color: #d0efa0;
|
53
|
+
color: #000;
|
54
|
+
font-weight: bold;
|
55
|
+
cursor: default;
|
56
|
+
display: block;
|
57
|
+
}
|
58
|
+
|
59
|
+
li.token-input-token p {
|
60
|
+
float: left;
|
61
|
+
padding: 0;
|
62
|
+
margin: 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
li.token-input-token span {
|
66
|
+
float: right;
|
67
|
+
color: #777;
|
68
|
+
cursor: pointer;
|
69
|
+
}
|
70
|
+
|
71
|
+
li.token-input-selected-token {
|
72
|
+
background-color: #08844e;
|
73
|
+
color: #fff;
|
74
|
+
}
|
75
|
+
|
76
|
+
li.token-input-selected-token span {
|
77
|
+
color: #bbb;
|
78
|
+
}
|
79
|
+
|
80
|
+
div.token-input-dropdown {
|
81
|
+
position: absolute;
|
82
|
+
width: 400px;
|
83
|
+
background-color: #fff;
|
84
|
+
overflow: hidden;
|
85
|
+
border-left: 1px solid #ccc;
|
86
|
+
border-right: 1px solid #ccc;
|
87
|
+
border-bottom: 1px solid #ccc;
|
88
|
+
cursor: default;
|
89
|
+
font-size: 12px;
|
90
|
+
font-family: Verdana, sans-serif;
|
91
|
+
z-index: 1;
|
92
|
+
}
|
93
|
+
|
94
|
+
div.token-input-dropdown p {
|
95
|
+
margin: 0;
|
96
|
+
padding: 5px;
|
97
|
+
font-weight: bold;
|
98
|
+
color: #777;
|
99
|
+
}
|
100
|
+
|
101
|
+
div.token-input-dropdown ul {
|
102
|
+
margin: 0;
|
103
|
+
padding: 0;
|
104
|
+
}
|
105
|
+
|
106
|
+
div.token-input-dropdown ul li {
|
107
|
+
background-color: #fff;
|
108
|
+
padding: 3px;
|
109
|
+
list-style-type: none;
|
110
|
+
}
|
111
|
+
|
112
|
+
div.token-input-dropdown ul li.token-input-dropdown-item {
|
113
|
+
background-color: #fafafa;
|
114
|
+
}
|
115
|
+
|
116
|
+
div.token-input-dropdown ul li.token-input-dropdown-item2 {
|
117
|
+
background-color: #fff;
|
118
|
+
}
|
119
|
+
|
120
|
+
div.token-input-dropdown ul li em {
|
121
|
+
font-weight: bold;
|
122
|
+
font-style: normal;
|
123
|
+
}
|
124
|
+
|
125
|
+
div.token-input-dropdown ul li.token-input-selected-dropdown-item {
|
126
|
+
background-color: #d0efa0;
|
127
|
+
}
|