Theme Assets
This commit is contained in:
90
assets/vendor/jquery.rateit/rateit.nuspec
vendored
Normal file
90
assets/vendor/jquery.rateit/rateit.nuspec
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>jQuery.RateIt</id>
|
||||
<version>1.1.2</version>
|
||||
<title>jQuery.RateIt</title>
|
||||
<authors>Gidon Junge</authors>
|
||||
<owners>Gidon Junge</owners>
|
||||
<iconUrl>http://gjunge.github.io/rateit.js/assets/icon-nuget.png</iconUrl>
|
||||
<licenseUrl>https://github.com/gjunge/rateit.js/blob/master/LICENSE.md</licenseUrl>
|
||||
<projectUrl>https://github.com/gjunge/rateit.js</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>A rating plugin for jQuery.
|
||||
|
||||
Features: fast, progressive enhancement, touch support, customizable (just swap out the images, or change some CSS), unobtrusive javaScript (using HTML5 data-* attributes), RTL support, ARIA and Keyboard support (*new). Use as many stars as you'd like, and also any step size.
|
||||
|
||||
Check out the examples link on the project page for implementation and examples.</description>
|
||||
<summary>A rating plugin for jQuery.</summary>
|
||||
<releaseNotes>
|
||||
==== CHANGE LOG ====
|
||||
1.1.2 (03/28/2019)
|
||||
Bug Fix: #22 tabindex on readonly is not good for accessibility (Thanks to @MPolleke)
|
||||
Project: updated Gulp script, added this Change Log.
|
||||
|
||||
1.1.1
|
||||
Fix looks of icon font reset button.
|
||||
|
||||
1.1.0
|
||||
Feature: finally arrived - support for icon fonts! Now your RateIt controls can be any size you want!
|
||||
|
||||
1.0.25
|
||||
Feature: ability to set value source of SELECT backing field. Either by value (option[value], how it currently works), or by index (selectedIndex, new). Thanks to @maurojs10.
|
||||
Project: Added gulp task for minifying and sourcemapping.
|
||||
|
||||
1.0.23
|
||||
Move to GitHub.
|
||||
|
||||
1.0.22
|
||||
Bug fix: #1859 RateIt Stars disappear when clicking into another form field and pressing return
|
||||
|
||||
1.0.21
|
||||
Bug fix: #1828 Progressive enhancement (using select) displays incorrect amount of stars
|
||||
Bug fix: #1829 Use UNIX-style (LF-only) line endings
|
||||
|
||||
1.0.20
|
||||
Bug fix: #1817 Trigger change event on backingfield.
|
||||
|
||||
1.0.19
|
||||
Feature: #1801 Added cancellable beforereset and beforerated events.
|
||||
Misc: added example showcasing use of SVG instead of GIF image.
|
||||
|
||||
1.0.18
|
||||
Bug fix: #1747 Continuation...
|
||||
|
||||
1.0.17
|
||||
Bug fix: #1747 Initialization fail with data-rateit-value=0
|
||||
|
||||
1.0.16
|
||||
Bug fix: #1741 Using arrow keys after a rating changes rating.
|
||||
|
||||
1.0.15
|
||||
Bug fix: #1728 Compatibility with jQuery mobile
|
||||
|
||||
1.0.14
|
||||
Feature: #1712 Added a programmatic reset method which reverts to initial settings.
|
||||
Bug fix: #1711 On changing starheight/width some artifacts show up. (Thanks to JoeyBradshaw)
|
||||
|
||||
1.0.13
|
||||
Bug fix: #1648 Removed console.log
|
||||
|
||||
1.0.12
|
||||
Feature: ARIA support. Added basic ARIA support including keyboard navigation.
|
||||
Feature: Suggestion: use span instead of div.
|
||||
Bug fix: #1639 Firefox showing too many stars</releaseNotes>
|
||||
<copyright>https://github.com/gjunge/rateit.js/blob/master/LICENSE.md</copyright>
|
||||
<language>en-US</language>
|
||||
<tags>rating, jquery, unobtrusive, progressive enhancement, rateit</tags>
|
||||
<dependencies>
|
||||
<dependency id="jQuery" version="1.6.2" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="scripts\delete.gif" target="content\content\delete.gif" />
|
||||
<file src="scripts\rateit.css" target="content\content\rateit.css" />
|
||||
<file src="scripts\star.gif" target="content\content\star.gif" />
|
||||
<file src="scripts\jquery.rateit.js" target="content\scripts\jquery.rateit.js" />
|
||||
<file src="scripts\jquery.rateit.min.js" target="content\scripts\jquery.rateit.min.js" />
|
||||
<file src="scripts\jquery.rateit.min.js.map" target="content\scripts\jquery.rateit.min.js.map" />
|
||||
</files>
|
||||
</package>
|
||||
BIN
assets/vendor/jquery.rateit/scripts/delete.gif
vendored
Normal file
BIN
assets/vendor/jquery.rateit/scripts/delete.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 752 B |
5
assets/vendor/jquery.rateit/scripts/jquery.rateit.min.js
vendored
Normal file
5
assets/vendor/jquery.rateit/scripts/jquery.rateit.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
145
assets/vendor/jquery.rateit/scripts/rateit.css
vendored
Normal file
145
assets/vendor/jquery.rateit/scripts/rateit.css
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
.rateit {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-o-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
|
||||
.rateit .rateit-range {
|
||||
position: relative;
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
background: url(star.gif);
|
||||
height: 16px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.rateit .rateit-range * {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* for IE 6 */
|
||||
* html .rateit, * html .rateit .rateit-range {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* for IE 7 */
|
||||
* + html .rateit, * + html .rateit .rateit-range {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.rateit .rateit-hover, .rateit .rateit-selected {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.rateit .rateit-hover {
|
||||
background: url(star.gif) left -32px;
|
||||
color: rgb(239, 197, 41);
|
||||
}
|
||||
|
||||
.rateit .rateit-hover-rtl {
|
||||
background-position: right -32px;
|
||||
}
|
||||
|
||||
.rateit .rateit-selected {
|
||||
background: url(star.gif) left -16px;
|
||||
color: rgb(191,66,66);
|
||||
}
|
||||
|
||||
.rateit .rateit-selected-rtl {
|
||||
background-position: right -16px;
|
||||
}
|
||||
|
||||
.rateit .rateit-preset {
|
||||
background: url(star.gif) left -48px;
|
||||
color: rgb(239, 107, 34);
|
||||
}
|
||||
|
||||
.rateit .rateit-preset-rtl {
|
||||
background: url(star.gif) right -48px;
|
||||
}
|
||||
|
||||
.rateit button.rateit-reset {
|
||||
background: url(delete.gif) 0 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
float: left;
|
||||
outline: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.rateit .rateit-reset span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus {
|
||||
background-position: 0 -16px;
|
||||
}
|
||||
|
||||
|
||||
.rateit-font {
|
||||
font-size: 24px;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.rateit-font .rateit-range {
|
||||
background: none;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.rateit-font .rateit-empty {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.rateit-font .rateit-range > div, .rateit-font .rateit-range > span {
|
||||
background: none;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.rateit.rateit-font .rateit-reset {
|
||||
font-size: inherit;
|
||||
background: none;
|
||||
width: 0.6em;
|
||||
height: 0.6em;
|
||||
margin-top: 0.2em;
|
||||
background: gray;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.rateit.rateit-font .rateit-reset span {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
height: calc(50% - 0.045em);
|
||||
top: 0;
|
||||
position: absolute;
|
||||
border-bottom: 0.09em solid white;
|
||||
width: 72%;
|
||||
margin-left: 14%;
|
||||
}
|
||||
|
||||
|
||||
.rateit.rateit-font .rateit-reset:hover, .rateit.rateit-font button.rateit-reset:focus {
|
||||
background: #e6574b; /* Old browsers */
|
||||
background: radial-gradient(ellipse at center, #e6574b 55%,#f6836b 77%,#f9d3cc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
background-position: 0 0;
|
||||
}
|
||||
BIN
assets/vendor/jquery.rateit/scripts/star.gif
vendored
Normal file
BIN
assets/vendor/jquery.rateit/scripts/star.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
Reference in New Issue
Block a user