first commit
This commit is contained in:
BIN
assets/plugin/flexdatalist/._LICENSE
Executable file
BIN
assets/plugin/flexdatalist/._LICENSE
Executable file
Binary file not shown.
BIN
assets/plugin/flexdatalist/._README.md
Executable file
BIN
assets/plugin/flexdatalist/._README.md
Executable file
Binary file not shown.
BIN
assets/plugin/flexdatalist/._bower.json
Executable file
BIN
assets/plugin/flexdatalist/._bower.json
Executable file
Binary file not shown.
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.css
Executable file
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.css
Executable file
Binary file not shown.
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.js
Executable file
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.js
Executable file
Binary file not shown.
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.min.css
vendored
Executable file
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.min.css
vendored
Executable file
Binary file not shown.
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.min.js
vendored
Executable file
BIN
assets/plugin/flexdatalist/._jquery.flexdatalist.min.js
vendored
Executable file
Binary file not shown.
20
assets/plugin/flexdatalist/LICENSE
Executable file
20
assets/plugin/flexdatalist/LICENSE
Executable file
@ -0,0 +1,20 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sérgio Dinis Lopes
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
12
assets/plugin/flexdatalist/README.md
Executable file
12
assets/plugin/flexdatalist/README.md
Executable file
@ -0,0 +1,12 @@
|
||||
jQuery.Flexdatalist
|
||||
======
|
||||
|
||||
Flexdatalist is (another) jQuery autocomplete plugin with support for <code><datalist></code>. Check the documentation page to see the plugin in action.
|
||||
|
||||
## Demo & Documentation ##
|
||||
|
||||
Check out the [examples and documentation](http://projects.sergiodinislopes.pt/flexdatalist/) page.
|
||||
|
||||
### License
|
||||
Flexdatalist is licensed under the [MIT license](http://opensource.org/licenses/MIT).
|
||||
Copyright (c) 2016 [Sérgio Dinis Lopes](http://github.com/sergiodlopes)
|
8
assets/plugin/flexdatalist/bower.json
Executable file
8
assets/plugin/flexdatalist/bower.json
Executable file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "jquery-flexdatalist",
|
||||
"version": "1.7.2",
|
||||
"main": ["jquery.flexdatalist.js"],
|
||||
"dependencies": {
|
||||
"jquery": ">=1.7"
|
||||
}
|
||||
}
|
114
assets/plugin/flexdatalist/jquery.flexdatalist.css
Executable file
114
assets/plugin/flexdatalist/jquery.flexdatalist.css
Executable file
@ -0,0 +1,114 @@
|
||||
.flexdatalist-results {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
border: 1px solid #444;
|
||||
border-top: none;
|
||||
background: #fff;
|
||||
z-index: 100000;
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||||
color: #333;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.flexdatalist-results li {
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 0 15px;
|
||||
font-size: 14px;
|
||||
line-height: 35px;
|
||||
}
|
||||
.flexdatalist-results li span.highlight {
|
||||
font-weight: 700;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.flexdatalist-results li.active {
|
||||
background: #2B82C9;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Grouped items
|
||||
*/
|
||||
.flexdatalist-results li.group {
|
||||
background: #F3F3F4;
|
||||
color: #666;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.flexdatalist-results li .group-name {
|
||||
font-weight: 700;
|
||||
}
|
||||
.flexdatalist-results li .group-item-count {
|
||||
font-size: 85%;
|
||||
color: #777;
|
||||
display: inline-block;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Multiple items
|
||||
*/
|
||||
.flexdatalist-multiple:before {
|
||||
content: '';
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
.flexdatalist-multiple {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0 0 0 10px;
|
||||
list-style: none;
|
||||
text-align: left;
|
||||
cursor: text;
|
||||
}
|
||||
.flexdatalist-multiple:after {
|
||||
content: '';
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
.flexdatalist-multiple li {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin: 5px 5px 5px 0;
|
||||
float: left;
|
||||
}
|
||||
.flexdatalist-multiple li.input-container,
|
||||
.flexdatalist-multiple li.input-container input {
|
||||
border: none;
|
||||
width: 280px;
|
||||
height: auto;
|
||||
padding: 0;
|
||||
line-height: 25px;
|
||||
}
|
||||
.flexdatalist-multiple li.value {
|
||||
display: inline-block;
|
||||
padding: 2px 25px 2px 5px;
|
||||
background: #efefef;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.flexdatalist-multiple li.toggle {
|
||||
cursor: pointer;
|
||||
transition: opacity ease-in-out 300ms;
|
||||
}
|
||||
.flexdatalist-multiple li.toggle.disabled {
|
||||
text-decoration: line-through;
|
||||
opacity: 0.80;
|
||||
}
|
||||
|
||||
.flexdatalist-multiple li.value span.fdl-remove {
|
||||
font-weight: 700;
|
||||
padding: 0 5px;
|
||||
font-size: 20px;
|
||||
line-height: 25px;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
opacity: 0.70;
|
||||
}
|
||||
.flexdatalist-multiple li.value span.fdl-remove:hover {
|
||||
opacity: 1;
|
||||
}
|
1142
assets/plugin/flexdatalist/jquery.flexdatalist.js
Executable file
1142
assets/plugin/flexdatalist/jquery.flexdatalist.js
Executable file
File diff suppressed because it is too large
Load Diff
1
assets/plugin/flexdatalist/jquery.flexdatalist.min.css
vendored
Executable file
1
assets/plugin/flexdatalist/jquery.flexdatalist.min.css
vendored
Executable file
@ -0,0 +1 @@
|
||||
.flexdatalist-results{position:absolute;top:0;left:0;border:1px solid #444;border-top:none;background:#fff;z-index:100000;max-height:300px;overflow-y:auto;box-shadow:0 4px 5px rgba(0,0,0,.15);color:#333;list-style:none;margin:0;padding:0}.flexdatalist-results li{border-bottom:1px solid #ccc;padding:0 15px;font-size:14px;line-height:35px}.flexdatalist-results li span.highlight{font-weight:700;text-decoration:underline}.flexdatalist-results li.active{background:#2B82C9;color:#fff;cursor:pointer}.flexdatalist-results li.group{background:#F3F3F4;color:#666;padding:0 8px}.flexdatalist-results li .group-name{font-weight:700}.flexdatalist-results li .group-item-count{font-size:85%;color:#777;display:inline-block;padding-left:10px}.flexdatalist-multiple:after,.flexdatalist-multiple:before{content:'';display:block;clear:both}.flexdatalist-multiple{width:100%;margin:0;padding:0 0 0 10px;list-style:none;text-align:left;cursor:text}.flexdatalist-multiple li{display:inline-block;position:relative;margin:5px 5px 5px 0;float:left}.flexdatalist-multiple li.input-container,.flexdatalist-multiple li.input-container input{border:none;width:280px;height:auto;padding:0;line-height:25px}.flexdatalist-multiple li.value{display:inline-block;padding:2px 25px 2px 5px;background:#efefef;border-radius:3px}.flexdatalist-multiple li.toggle{cursor:pointer;transition:opacity ease-in-out .3s}.flexdatalist-multiple li.toggle.disabled{text-decoration:line-through;opacity:.8}.flexdatalist-multiple li.value span.fdl-remove{font-weight:700;padding:0 5px;font-size:20px;line-height:25px;cursor:pointer;position:absolute;top:0;right:0;opacity:.7}.flexdatalist-multiple li.value span.fdl-remove:hover{opacity:1}
|
1
assets/plugin/flexdatalist/jquery.flexdatalist.min.js
vendored
Executable file
1
assets/plugin/flexdatalist/jquery.flexdatalist.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user