first commit

This commit is contained in:
kicap1992
2024-05-07 19:49:43 +00:00
commit b2a992e15a
3124 changed files with 635045 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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.

View File

@ -0,0 +1,12 @@
jQuery.Flexdatalist
======
Flexdatalist is (another) jQuery autocomplete plugin with support for <code>&lt;datalist&gt;</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)

View File

@ -0,0 +1,8 @@
{
"name": "jquery-flexdatalist",
"version": "1.7.2",
"main": ["jquery.flexdatalist.js"],
"dependencies": {
"jquery": ">=1.7"
}
}

View 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;
}

File diff suppressed because it is too large Load Diff

View 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}

File diff suppressed because one or more lines are too long