@ -0,0 +1,8 @@
|
|||||||
|
# 默认忽略的文件
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# 基于编辑器的 HTTP 客户端请求
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="PYTHON_MODULE" version="4">
|
||||||
|
<component name="Flask">
|
||||||
|
<option name="enabled" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="jdk" jdkName="Python 3.12 (pythonProject)" jdkType="Python SDK" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
<component name="TemplatesService">
|
||||||
|
<option name="TEMPLATE_CONFIGURATION" value="Jinja2" />
|
||||||
|
<option name="TEMPLATE_FOLDERS">
|
||||||
|
<list>
|
||||||
|
<option value="$MODULE_DIR$/../flaskProject\templates" />
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</module>
|
@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<settings>
|
||||||
|
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||||
|
<version value="1.0" />
|
||||||
|
</settings>
|
||||||
|
</component>
|
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Black">
|
||||||
|
<option name="sdkName" value="Python 3.12 (flaskProject)" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (pythonProject)" project-jdk-type="Python SDK" />
|
||||||
|
</project>
|
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/flaskProject.iml" filepath="$PROJECT_DIR$/.idea/flaskProject.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="PYTHON_MODULE" version="4">
|
||||||
|
<component name="Flask">
|
||||||
|
<option name="enabled" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
<component name="TemplatesService">
|
||||||
|
<option name="TEMPLATE_CONFIGURATION" value="Jinja2" />
|
||||||
|
<option name="TEMPLATE_FOLDERS">
|
||||||
|
<list>
|
||||||
|
<option value="$MODULE_DIR$/../xuexi\templates" />
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</module>
|
@ -0,0 +1,46 @@
|
|||||||
|
import pymysql
|
||||||
|
from flask import Flask ,render_template
|
||||||
|
import lxml
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def getDB():
|
||||||
|
'''连接数据库'''
|
||||||
|
db = pymysql.connect(host='localhost',user='root',password='shengji.',database='douban',)
|
||||||
|
return db
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/')
|
||||||
|
def home(): # put application's code here
|
||||||
|
return render_template('index.html')
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/movies')
|
||||||
|
@app.route('/movies/<int:page>')
|
||||||
|
def movies(page = 1):# put application's code here
|
||||||
|
db = getDB()
|
||||||
|
cursor = db.cursor()
|
||||||
|
#查询当前页面电影列表
|
||||||
|
sql = "select ranks,links,film_name,film_name_en,rating_num,rating_people,summary,director from movies limit {},{} ".format((page-1)*25,page*25)
|
||||||
|
cursor.execute(sql)
|
||||||
|
data = cursor.fetchall()
|
||||||
|
datalist = []
|
||||||
|
for item in data:
|
||||||
|
datalist.append(item)
|
||||||
|
#查询电影总数
|
||||||
|
sql1 = "select count(*) from movies"
|
||||||
|
cursor.execute(sql1)
|
||||||
|
total = cursor.fetchone()
|
||||||
|
|
||||||
|
cursor.close()
|
||||||
|
db.close()
|
||||||
|
return render_template("movies.html",page=page,movies = datalist,countnum = int(int(total[0])/25))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
app.run()
|
@ -0,0 +1,15 @@
|
|||||||
|
.container ul {
|
||||||
|
display: table;
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.container ul li {
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
.container ul li p {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.container ul li .question {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
@ -0,0 +1,697 @@
|
|||||||
|
html {
|
||||||
|
font-size: 16px;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
font-family: Roboto, Helvetica, Arial, sans-serif;
|
||||||
|
background-color: #4e657a;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
a:focus,
|
||||||
|
a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
button:focus {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
.navbar-brand {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.tm-site-icon {
|
||||||
|
color: #656565;
|
||||||
|
}
|
||||||
|
.tm-site-title {
|
||||||
|
display: inline-block;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.navbar {
|
||||||
|
height: 100px;
|
||||||
|
background-color: #567086;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.navbar .container {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.tm-logout-icon {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
.tm-mt-big {
|
||||||
|
margin-top: 57px;
|
||||||
|
}
|
||||||
|
.tm-mb-big {
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
.tm-mt-small {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
.tm-block-col {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.tm-block {
|
||||||
|
padding: 40px;
|
||||||
|
-webkit-box-shadow: 1px 1px 5px 0 #455c71;
|
||||||
|
-moz-box-shadow: 1px 1px 5px 0 #455c71;
|
||||||
|
box-shadow: 1px 1px 5px 0 #455c71;
|
||||||
|
min-height: 350px;
|
||||||
|
height: 100%;
|
||||||
|
max-height: 450px;
|
||||||
|
}
|
||||||
|
.tm-block-avatar,
|
||||||
|
.tm-block-settings {
|
||||||
|
max-height: none;
|
||||||
|
}
|
||||||
|
.tm-block-avatar {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.tm-block-h-auto {
|
||||||
|
min-height: 1px;
|
||||||
|
max-height: none;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.tm-block-scroll {
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
.tm-block-overflow {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.tm-block-title {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #fff;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.nav-link {
|
||||||
|
color: #fff;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
.nav-link > i {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-right: 0;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.dropdown-item,
|
||||||
|
.nav-link {
|
||||||
|
padding: 15px 20px;
|
||||||
|
}
|
||||||
|
.dropdown-menu {
|
||||||
|
font-size: 90%;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #567086;
|
||||||
|
border-radius: 0;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
min-width: auto;
|
||||||
|
}
|
||||||
|
.dropdown-item {
|
||||||
|
color: #fff;
|
||||||
|
padding: 15px 30px;
|
||||||
|
}
|
||||||
|
.navbar-nav .nav-link.active i {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.dropdown-item:focus,
|
||||||
|
.dropdown-item:hover {
|
||||||
|
background-color: #567086;
|
||||||
|
}
|
||||||
|
.navbar-nav a:hover,
|
||||||
|
.navbar-nav a:hover i {
|
||||||
|
color: #9dcbf3;
|
||||||
|
}
|
||||||
|
.nav-item {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.nav-item:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.dropdown-toggle::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.dropdown-menu {
|
||||||
|
margin-top: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.tm-content-row {
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-left: -20px;
|
||||||
|
margin-right: -20px;
|
||||||
|
}
|
||||||
|
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
|
||||||
|
.tm-col {
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-right: 20px;
|
||||||
|
margin-bottom: 50px;
|
||||||
|
}
|
||||||
|
.tm-col-big {
|
||||||
|
width: 39%;
|
||||||
|
}
|
||||||
|
.tm-col-small {
|
||||||
|
width: 21.95%;
|
||||||
|
}
|
||||||
|
.tm-gray-circle {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
background-color: #aaa;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
.tm-notification-items {
|
||||||
|
overflow-y: scroll;
|
||||||
|
height: 90%;
|
||||||
|
}
|
||||||
|
.tm-notification-item {
|
||||||
|
padding: 15px;
|
||||||
|
background-color: #4e657a;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 95%;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.tm-notification-item:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
.tm-notification-link {
|
||||||
|
color: #9dcbf3;
|
||||||
|
}
|
||||||
|
.tm-text-color-secondary {
|
||||||
|
color: #bdcbd8;
|
||||||
|
}
|
||||||
|
.tm-small {
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
.table {
|
||||||
|
background-color: #50697f;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 85%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
thead {
|
||||||
|
background-color: #486177;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.table thead th {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
.tm-status-circle {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
|
width: 5px;
|
||||||
|
height: 5px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-top: -3px;
|
||||||
|
}
|
||||||
|
.moving {
|
||||||
|
background-color: #9be64d;
|
||||||
|
box-shadow: 0 0 8px #9be64d, inset 0 0 8px #9be64d;
|
||||||
|
}
|
||||||
|
.pending {
|
||||||
|
background-color: #efc54b;
|
||||||
|
box-shadow: 0 0 8px #efc54b, inset 0 0 8px #efc54b;
|
||||||
|
}
|
||||||
|
.cancelled {
|
||||||
|
background-color: #da534f;
|
||||||
|
box-shadow: 0 0 8px #da534f, inset 0 0 8px #da534f;
|
||||||
|
}
|
||||||
|
.tm-avatar {
|
||||||
|
width: 345px;
|
||||||
|
}
|
||||||
|
.tm-avatar-container {
|
||||||
|
position: relative;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.tm-avatar-delete-link {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
margin-left: -25px;
|
||||||
|
margin-top: -25px;
|
||||||
|
z-index: 1000;
|
||||||
|
padding: 14px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: rgba(57, 78, 100, 0.7);
|
||||||
|
display: inline-block;
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
text-align: center;
|
||||||
|
display: none;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
.tm-avatar-container:hover .tm-avatar-delete-link {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.tm-col-avatar {
|
||||||
|
max-width: 425px;
|
||||||
|
width: 37%;
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
.tm-col-account-settings {
|
||||||
|
max-width: 822px;
|
||||||
|
width: 63%;
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
.form-control {
|
||||||
|
background-color: #54657d;
|
||||||
|
color: #fff;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.form-control:focus {
|
||||||
|
background-color: #60738e;
|
||||||
|
color: #fff;
|
||||||
|
border-color: transparent;
|
||||||
|
box-shadow: 0 0 0 0.1rem rgb(180, 206, 233, 0.5);
|
||||||
|
}
|
||||||
|
.form-group label {
|
||||||
|
color: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.tm-hide-sm {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.tm-list-group {
|
||||||
|
counter-reset: myOrderedListItemsCounter;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
.tm-list-group > li {
|
||||||
|
list-style-type: none;
|
||||||
|
position: relative;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
.tm-list-group > li:hover {
|
||||||
|
color: #0266c4;
|
||||||
|
}
|
||||||
|
.tm-list-group > li:before {
|
||||||
|
counter-increment: myOrderedListItemsCounter;
|
||||||
|
content: counter(myOrderedListItemsCounter) ".";
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
.tm-list {
|
||||||
|
padding-left: 30px;
|
||||||
|
}
|
||||||
|
.tm-list > li {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
.form-control {
|
||||||
|
padding: 19px 18px;
|
||||||
|
border-radius: 0;
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
.form-group {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 13px 28px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.btn-small {
|
||||||
|
padding: 10px 24px;
|
||||||
|
}
|
||||||
|
.btn-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #9dcbf3;
|
||||||
|
border: 2px solid #9dcbf3;
|
||||||
|
font-size: 90%;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.btn-primary:active,
|
||||||
|
.btn-primary:hover {
|
||||||
|
color: #9dcbf3;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 2px solid #9dcbf3;
|
||||||
|
}
|
||||||
|
.custom-file-input {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.custom-file-label {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.table td,
|
||||||
|
.table th {
|
||||||
|
border-top: 1px solid #415a70;
|
||||||
|
padding: 15px 25px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.tm-table-small td,
|
||||||
|
.tm-table-small th {
|
||||||
|
padding-left: 12px;
|
||||||
|
padding-right: 12px;
|
||||||
|
}
|
||||||
|
.table-hover tbody tr {
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
.table-hover tbody tr:hover {
|
||||||
|
color: #a0c0de;
|
||||||
|
}
|
||||||
|
.tm-bg-primary-dark {
|
||||||
|
background-color: #435c70;
|
||||||
|
}
|
||||||
|
.tm-bg-gray {
|
||||||
|
background-color: rgba(0, 0, 0, 0.05);
|
||||||
|
}
|
||||||
|
.tm-table-mt {
|
||||||
|
margin-top: 66px;
|
||||||
|
}
|
||||||
|
.page-item:first-child .page-link {
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
.page-item:last-child .page-link {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
|
.page-link {
|
||||||
|
padding: 12px 18px;
|
||||||
|
}
|
||||||
|
.page-link,
|
||||||
|
.page-link:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.page-item {
|
||||||
|
margin-right: 18px;
|
||||||
|
}
|
||||||
|
.page-item:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.page-item.active .page-link {
|
||||||
|
background-color: #e9ecef;
|
||||||
|
border-color: #dee2e6;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
input[type="checkbox"] {
|
||||||
|
cursor: pointer;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
background-color: #394e64;
|
||||||
|
background-position: center;
|
||||||
|
border-radius: 50%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
box-sizing: content-box;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
transition: all 0.1s linear;
|
||||||
|
}
|
||||||
|
input[type="checkbox"]:checked {
|
||||||
|
background: url(../img/check-mark.png) #394e64 center no-repeat;
|
||||||
|
}
|
||||||
|
input[type="checkbox"]:focus {
|
||||||
|
outline: 0 none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.tm-block-products {
|
||||||
|
min-height: 725px;
|
||||||
|
}
|
||||||
|
.tm-block-product-categories {
|
||||||
|
min-height: 650px;
|
||||||
|
}
|
||||||
|
.tm-product-table-container {
|
||||||
|
max-height: 465px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
.tm-product-table tr {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.tm-product-name {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.tm-product-delete-icon {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.tm-product-delete-link {
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #394e64;
|
||||||
|
display: inline-block;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.tm-product-delete-link:hover .tm-product-delete-icon {
|
||||||
|
color: #6d8ca6;
|
||||||
|
}
|
||||||
|
.custom-select {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
color: #acc6de;
|
||||||
|
height: 50px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
-ms-appearance: none;
|
||||||
|
-o-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
-webkit-border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
-ms-border-radius: 0;
|
||||||
|
-o-border-radius: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 15px;
|
||||||
|
background: url(../img/arrow-down.png) 98% no-repeat #50657b;
|
||||||
|
}
|
||||||
|
.custom-select:focus {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
.tm-trash-icon {
|
||||||
|
color: #6e6c6c;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.tm-trash-icon:hover {
|
||||||
|
color: #9f1321;
|
||||||
|
}
|
||||||
|
.tm-footer {
|
||||||
|
background-color: #567086;
|
||||||
|
padding-top: 30px;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
-webkit-box-shadow: 0 -3px 5px 0 rgba(69, 92, 113, 0.59);
|
||||||
|
-moz-box-shadow: 0 -3px 5px 0 rgba(69, 92, 113, 0.59);
|
||||||
|
box-shadow: 0 -3px 5px 0 rgba(69, 92, 113, 0.59);
|
||||||
|
}
|
||||||
|
.custom-select {
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.tm-product-img-dummy {
|
||||||
|
max-width: 100%;
|
||||||
|
height: 240px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #fff;
|
||||||
|
background: #aaa;
|
||||||
|
}
|
||||||
|
.tm-product-img-edit {
|
||||||
|
max-width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.tm-product-img-edit i {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.tm-product-img-edit:hover i {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.tm-upload-icon {
|
||||||
|
background: #455c71;
|
||||||
|
width: 55px;
|
||||||
|
height: 55px;
|
||||||
|
border-radius: 50%;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 15px;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
.tm-login-col {
|
||||||
|
max-width: 470px;
|
||||||
|
}
|
||||||
|
.navbar-toggler {
|
||||||
|
border-color: #708da8;
|
||||||
|
box-shadow: rgba(255, 255, 255, 0.1) 0 1px 1px 2px;
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 10px 15px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
.navbar-toggler:hover {
|
||||||
|
border-color: #9dcbf3;
|
||||||
|
color: #9dcbf3;
|
||||||
|
}
|
||||||
|
.tm-nav-icon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.navbar-toggler:hover .tm-nav-icon {
|
||||||
|
color: #9dcbf3;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: #394f62;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: #6d8da6;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #8ab5d6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tm-footer-link {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tm-footer-link:hover,
|
||||||
|
.tm-footer-link:focus {
|
||||||
|
color: #aacbea;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.navbar-expand-xl .navbar-nav .nav-link {
|
||||||
|
padding-left: 28px;
|
||||||
|
padding-right: 28px;
|
||||||
|
}
|
||||||
|
.navbar-collapse {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.navbar-expand-lg .navbar-nav .nav-link {
|
||||||
|
padding: 15px 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 1275px) and (min-width: 1200px) {
|
||||||
|
.nav-item {
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 1350px) {
|
||||||
|
.nav-item {
|
||||||
|
margin-right: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 1199px) {
|
||||||
|
.tm-col-big,
|
||||||
|
.tm-col-small {
|
||||||
|
width: 49.65%;
|
||||||
|
}
|
||||||
|
.navbar-collapse {
|
||||||
|
padding: 0;
|
||||||
|
box-shadow: rgba(255, 255, 255, 0.1) 0 1px 1px 1px;
|
||||||
|
position: absolute;
|
||||||
|
top: 72px;
|
||||||
|
right: 20px;
|
||||||
|
width: 200px;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
.dropdown-menu {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.nav-link {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #567086;
|
||||||
|
padding: 15px;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.nav-link > i {
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
.nav-item {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.tm-block-taller {
|
||||||
|
max-height: 520px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 1199.98px) {
|
||||||
|
.navbar-expand-xl > .container,
|
||||||
|
.navbar-expand-xl > .container-fluid {
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
.navbar-collapse {
|
||||||
|
right: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
.tm-col-big,
|
||||||
|
.tm-col-small {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 383px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.tm-block {
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.tm-col-account-settings,
|
||||||
|
.tm-col-avatar {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.tm-block-avatar {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.tm-avatar {
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
.tm-hide-sm {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 633px) {
|
||||||
|
.page-item {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.custom-select {
|
||||||
|
background-position: 96%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 574px) {
|
||||||
|
.navbar-collapse {
|
||||||
|
top: 47px;
|
||||||
|
}
|
||||||
|
.navbar {
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
.tm-site-title {
|
||||||
|
font-size: 1.4rem;
|
||||||
|
margin-left: 7px;
|
||||||
|
}
|
||||||
|
.tm-site-icon {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.tm-mt-big {
|
||||||
|
margin-top: 45px;
|
||||||
|
}
|
||||||
|
.tm-mb-big {
|
||||||
|
margin-bottom: 45px;
|
||||||
|
}
|
||||||
|
#barChart,
|
||||||
|
#lineChart {
|
||||||
|
max-height: 350px;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
Copyright jQuery Foundation and other contributors, https://jquery.org/
|
||||||
|
|
||||||
|
This software consists of voluntary contributions made by many
|
||||||
|
individuals. For exact contribution history, see the revision history
|
||||||
|
available at https://github.com/jquery/jquery-ui
|
||||||
|
|
||||||
|
The following license applies to all parts of this software except as
|
||||||
|
documented below:
|
||||||
|
|
||||||
|
====
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
====
|
||||||
|
|
||||||
|
Copyright and related rights for sample code are waived via CC0. Sample
|
||||||
|
code is defined as all source code contained within the demos directory.
|
||||||
|
|
||||||
|
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
||||||
|
|
||||||
|
====
|
||||||
|
|
||||||
|
All files located in the node_modules and external directories are
|
||||||
|
externally maintained libraries used by this software which have their
|
||||||
|
own licenses; we recommend you read them, as their terms may differ from
|
||||||
|
the terms above.
|
After Width: | Height: | Size: 336 B |
After Width: | Height: | Size: 341 B |
After Width: | Height: | Size: 332 B |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 333 B |
After Width: | Height: | Size: 292 B |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.4 KiB |
@ -0,0 +1,333 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="us">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>jQuery UI Example Page</title>
|
||||||
|
<link href="jquery-ui.css" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
body{
|
||||||
|
font-family: "Trebuchet MS", sans-serif;
|
||||||
|
margin: 50px;
|
||||||
|
}
|
||||||
|
.demoHeaders {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
#dialog-link {
|
||||||
|
padding: .4em 1em .4em 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#dialog-link span.ui-icon {
|
||||||
|
margin: 0 5px 0 0;
|
||||||
|
position: absolute;
|
||||||
|
left: .2em;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
#icons {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#icons li {
|
||||||
|
margin: 2px;
|
||||||
|
position: relative;
|
||||||
|
padding: 4px 0;
|
||||||
|
cursor: pointer;
|
||||||
|
float: left;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
#icons span.ui-icon {
|
||||||
|
float: left;
|
||||||
|
margin: 0 4px;
|
||||||
|
}
|
||||||
|
.fakewindowcontain .ui-widget-overlay {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>Welcome to jQuery UI!</h1>
|
||||||
|
|
||||||
|
<div class="ui-widget">
|
||||||
|
<p>This page demonstrates the widgets and theme you selected in Download Builder. Please make sure you are using them with a compatible jQuery version.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1>YOUR COMPONENTS:</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="demoHeaders">Framework Icons (content color preview)</h2>
|
||||||
|
<ul id="icons" class="ui-widget ui-helper-clearfix">
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-n"><span class="ui-icon ui-icon-caret-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-ne"><span class="ui-icon ui-icon-caret-1-ne"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-e"><span class="ui-icon ui-icon-caret-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-se"><span class="ui-icon ui-icon-caret-1-se"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-s"><span class="ui-icon ui-icon-caret-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-sw"><span class="ui-icon ui-icon-caret-1-sw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-w"><span class="ui-icon ui-icon-caret-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-1-nw"><span class="ui-icon ui-icon-caret-1-nw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-2-n-s"><span class="ui-icon ui-icon-caret-2-n-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-caret-2-e-w"><span class="ui-icon ui-icon-caret-2-e-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-n"><span class="ui-icon ui-icon-triangle-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-ne"><span class="ui-icon ui-icon-triangle-1-ne"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-e"><span class="ui-icon ui-icon-triangle-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-se"><span class="ui-icon ui-icon-triangle-1-se"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-s"><span class="ui-icon ui-icon-triangle-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-sw"><span class="ui-icon ui-icon-triangle-1-sw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-w"><span class="ui-icon ui-icon-triangle-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-1-nw"><span class="ui-icon ui-icon-triangle-1-nw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-2-n-s"><span class="ui-icon ui-icon-triangle-2-n-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-triangle-2-e-w"><span class="ui-icon ui-icon-triangle-2-e-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-n"><span class="ui-icon ui-icon-arrow-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-ne"><span class="ui-icon ui-icon-arrow-1-ne"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-e"><span class="ui-icon ui-icon-arrow-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-se"><span class="ui-icon ui-icon-arrow-1-se"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-s"><span class="ui-icon ui-icon-arrow-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-sw"><span class="ui-icon ui-icon-arrow-1-sw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-w"><span class="ui-icon ui-icon-arrow-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-1-nw"><span class="ui-icon ui-icon-arrow-1-nw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-n-s"><span class="ui-icon ui-icon-arrow-2-n-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-ne-sw"><span class="ui-icon ui-icon-arrow-2-ne-sw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-e-w"><span class="ui-icon ui-icon-arrow-2-e-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-2-se-nw"><span class="ui-icon ui-icon-arrow-2-se-nw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-n"><span class="ui-icon ui-icon-arrowstop-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-e"><span class="ui-icon ui-icon-arrowstop-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-s"><span class="ui-icon ui-icon-arrowstop-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowstop-1-w"><span class="ui-icon ui-icon-arrowstop-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-n"><span class="ui-icon ui-icon-arrowthick-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-ne"><span class="ui-icon ui-icon-arrowthick-1-ne"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-e"><span class="ui-icon ui-icon-arrowthick-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-se"><span class="ui-icon ui-icon-arrowthick-1-se"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-s"><span class="ui-icon ui-icon-arrowthick-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-sw"><span class="ui-icon ui-icon-arrowthick-1-sw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-w"><span class="ui-icon ui-icon-arrowthick-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-1-nw"><span class="ui-icon ui-icon-arrowthick-1-nw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-n-s"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-ne-sw"><span class="ui-icon ui-icon-arrowthick-2-ne-sw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-e-w"><span class="ui-icon ui-icon-arrowthick-2-e-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthick-2-se-nw"><span class="ui-icon ui-icon-arrowthick-2-se-nw"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-n"><span class="ui-icon ui-icon-arrowthickstop-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-e"><span class="ui-icon ui-icon-arrowthickstop-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-s"><span class="ui-icon ui-icon-arrowthickstop-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowthickstop-1-w"><span class="ui-icon ui-icon-arrowthickstop-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-w"><span class="ui-icon ui-icon-arrowreturnthick-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-n"><span class="ui-icon ui-icon-arrowreturnthick-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-e"><span class="ui-icon ui-icon-arrowreturnthick-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturnthick-1-s"><span class="ui-icon ui-icon-arrowreturnthick-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-w"><span class="ui-icon ui-icon-arrowreturn-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-n"><span class="ui-icon ui-icon-arrowreturn-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-e"><span class="ui-icon ui-icon-arrowreturn-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowreturn-1-s"><span class="ui-icon ui-icon-arrowreturn-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-w"><span class="ui-icon ui-icon-arrowrefresh-1-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-n"><span class="ui-icon ui-icon-arrowrefresh-1-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-e"><span class="ui-icon ui-icon-arrowrefresh-1-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrowrefresh-1-s"><span class="ui-icon ui-icon-arrowrefresh-1-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-4"><span class="ui-icon ui-icon-arrow-4"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-arrow-4-diag"><span class="ui-icon ui-icon-arrow-4-diag"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-extlink"><span class="ui-icon ui-icon-extlink"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-newwin"><span class="ui-icon ui-icon-newwin"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-refresh"><span class="ui-icon ui-icon-refresh"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-shuffle"><span class="ui-icon ui-icon-shuffle"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-transfer-e-w"><span class="ui-icon ui-icon-transfer-e-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-transferthick-e-w"><span class="ui-icon ui-icon-transferthick-e-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-folder-collapsed"><span class="ui-icon ui-icon-folder-collapsed"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-folder-open"><span class="ui-icon ui-icon-folder-open"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-document"><span class="ui-icon ui-icon-document"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-document-b"><span class="ui-icon ui-icon-document-b"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-note"><span class="ui-icon ui-icon-note"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-mail-closed"><span class="ui-icon ui-icon-mail-closed"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-mail-open"><span class="ui-icon ui-icon-mail-open"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-suitcase"><span class="ui-icon ui-icon-suitcase"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-comment"><span class="ui-icon ui-icon-comment"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-person"><span class="ui-icon ui-icon-person"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-print"><span class="ui-icon ui-icon-print"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-trash"><span class="ui-icon ui-icon-trash"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-locked"><span class="ui-icon ui-icon-locked"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-unlocked"><span class="ui-icon ui-icon-unlocked"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-bookmark"><span class="ui-icon ui-icon-bookmark"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-tag"><span class="ui-icon ui-icon-tag"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-home"><span class="ui-icon ui-icon-home"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-flag"><span class="ui-icon ui-icon-flag"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-calculator"><span class="ui-icon ui-icon-calculator"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-cart"><span class="ui-icon ui-icon-cart"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-pencil"><span class="ui-icon ui-icon-pencil"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-clock"><span class="ui-icon ui-icon-clock"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-disk"><span class="ui-icon ui-icon-disk"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-calendar"><span class="ui-icon ui-icon-calendar"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-zoomin"><span class="ui-icon ui-icon-zoomin"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-zoomout"><span class="ui-icon ui-icon-zoomout"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-search"><span class="ui-icon ui-icon-search"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-wrench"><span class="ui-icon ui-icon-wrench"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-gear"><span class="ui-icon ui-icon-gear"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-heart"><span class="ui-icon ui-icon-heart"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-star"><span class="ui-icon ui-icon-star"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-link"><span class="ui-icon ui-icon-link"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-cancel"><span class="ui-icon ui-icon-cancel"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-plus"><span class="ui-icon ui-icon-plus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-plusthick"><span class="ui-icon ui-icon-plusthick"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-minus"><span class="ui-icon ui-icon-minus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-minusthick"><span class="ui-icon ui-icon-minusthick"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-close"><span class="ui-icon ui-icon-close"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-closethick"><span class="ui-icon ui-icon-closethick"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-key"><span class="ui-icon ui-icon-key"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-lightbulb"><span class="ui-icon ui-icon-lightbulb"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-scissors"><span class="ui-icon ui-icon-scissors"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-clipboard"><span class="ui-icon ui-icon-clipboard"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-copy"><span class="ui-icon ui-icon-copy"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-contact"><span class="ui-icon ui-icon-contact"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-image"><span class="ui-icon ui-icon-image"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-video"><span class="ui-icon ui-icon-video"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-script"><span class="ui-icon ui-icon-script"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-alert"><span class="ui-icon ui-icon-alert"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-info"><span class="ui-icon ui-icon-info"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-notice"><span class="ui-icon ui-icon-notice"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-help"><span class="ui-icon ui-icon-help"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-check"><span class="ui-icon ui-icon-check"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-bullet"><span class="ui-icon ui-icon-bullet"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-radio-off"><span class="ui-icon ui-icon-radio-off"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-radio-on"><span class="ui-icon ui-icon-radio-on"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-pin-w"><span class="ui-icon ui-icon-pin-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-pin-s"><span class="ui-icon ui-icon-pin-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-play"><span class="ui-icon ui-icon-play"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-pause"><span class="ui-icon ui-icon-pause"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-seek-next"><span class="ui-icon ui-icon-seek-next"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-seek-prev"><span class="ui-icon ui-icon-seek-prev"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-seek-end"><span class="ui-icon ui-icon-seek-end"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-seek-first"><span class="ui-icon ui-icon-seek-first"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-stop"><span class="ui-icon ui-icon-stop"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-eject"><span class="ui-icon ui-icon-eject"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-volume-off"><span class="ui-icon ui-icon-volume-off"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-volume-on"><span class="ui-icon ui-icon-volume-on"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-power"><span class="ui-icon ui-icon-power"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-signal-diag"><span class="ui-icon ui-icon-signal-diag"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-signal"><span class="ui-icon ui-icon-signal"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-battery-0"><span class="ui-icon ui-icon-battery-0"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-battery-1"><span class="ui-icon ui-icon-battery-1"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-battery-2"><span class="ui-icon ui-icon-battery-2"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-battery-3"><span class="ui-icon ui-icon-battery-3"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-plus"><span class="ui-icon ui-icon-circle-plus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-minus"><span class="ui-icon ui-icon-circle-minus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-close"><span class="ui-icon ui-icon-circle-close"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-e"><span class="ui-icon ui-icon-circle-triangle-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-s"><span class="ui-icon ui-icon-circle-triangle-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-w"><span class="ui-icon ui-icon-circle-triangle-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-triangle-n"><span class="ui-icon ui-icon-circle-triangle-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-e"><span class="ui-icon ui-icon-circle-arrow-e"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-s"><span class="ui-icon ui-icon-circle-arrow-s"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-w"><span class="ui-icon ui-icon-circle-arrow-w"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-arrow-n"><span class="ui-icon ui-icon-circle-arrow-n"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-zoomin"><span class="ui-icon ui-icon-circle-zoomin"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-zoomout"><span class="ui-icon ui-icon-circle-zoomout"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circle-check"><span class="ui-icon ui-icon-circle-check"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circlesmall-plus"><span class="ui-icon ui-icon-circlesmall-plus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circlesmall-minus"><span class="ui-icon ui-icon-circlesmall-minus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-circlesmall-close"><span class="ui-icon ui-icon-circlesmall-close"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-squaresmall-plus"><span class="ui-icon ui-icon-squaresmall-plus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-squaresmall-minus"><span class="ui-icon ui-icon-squaresmall-minus"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-squaresmall-close"><span class="ui-icon ui-icon-squaresmall-close"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-grip-dotted-vertical"><span class="ui-icon ui-icon-grip-dotted-vertical"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-grip-dotted-horizontal"><span class="ui-icon ui-icon-grip-dotted-horizontal"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-grip-solid-vertical"><span class="ui-icon ui-icon-grip-solid-vertical"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-grip-solid-horizontal"><span class="ui-icon ui-icon-grip-solid-horizontal"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-gripsmall-diagonal-se"><span class="ui-icon ui-icon-gripsmall-diagonal-se"></span></li>
|
||||||
|
<li class="ui-state-default ui-corner-all" title=".ui-icon-grip-diagonal-se"><span class="ui-icon ui-icon-grip-diagonal-se"></span></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Datepicker -->
|
||||||
|
<h2 class="demoHeaders">Datepicker</h2>
|
||||||
|
<div id="datepicker"></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Highlight / Error -->
|
||||||
|
<h2 class="demoHeaders">Highlight / Error</h2>
|
||||||
|
<div class="ui-widget">
|
||||||
|
<div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;">
|
||||||
|
<p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
|
||||||
|
<strong>Hey!</strong> Sample ui-state-highlight style.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="ui-widget">
|
||||||
|
<div class="ui-state-error ui-corner-all" style="padding: 0 .7em;">
|
||||||
|
<p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span>
|
||||||
|
<strong>Alert:</strong> Sample ui-state-error style.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="external/jquery/jquery.js"></script>
|
||||||
|
<script src="jquery-ui.js"></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$( "#datepicker" ).datepicker({
|
||||||
|
inline: true
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Hover states on the static widgets
|
||||||
|
$( "#dialog-link, #icons li" ).hover(
|
||||||
|
function() {
|
||||||
|
$( this ).addClass( "ui-state-hover" );
|
||||||
|
},
|
||||||
|
function() {
|
||||||
|
$( this ).removeClass( "ui-state-hover" );
|
||||||
|
}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,697 @@
|
|||||||
|
/*! jQuery UI - v1.12.1 - 2018-08-28
|
||||||
|
* http://jqueryui.com
|
||||||
|
* Includes: core.css, datepicker.css, theme.css
|
||||||
|
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=redmond&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cd0a0a&fcError=cd0a0a&borderColorError=cd0a0a&bgImgOpacityError=95&bgTextureError=glass&bgColorError=fef1ec&iconColorHighlight=2e83ff&fcHighlight=363636&borderColorHighlight=fad42e&bgImgOpacityHighlight=55&bgTextureHighlight=flat&bgColorHighlight=fbec88&iconColorActive=f9bd01&fcActive=e17009&borderColorActive=79b7e7&bgImgOpacityActive=100&bgTextureActive=inset_hard&bgColorActive=f5f8f9&iconColorHover=217bc0&fcHover=1d5987&borderColorHover=79b7e7&bgImgOpacityHover=75&bgTextureHover=glass&bgColorHover=d0e5f5&iconColorDefault=6da8d5&fcDefault=2e6e9e&borderColorDefault=c5dbec&bgImgOpacityDefault=85&bgTextureDefault=glass&bgColorDefault=dfeffc&iconColorContent=469bdd&fcContent=222222&borderColorContent=a6c9e2&bgImgOpacityContent=100&bgTextureContent=inset_hard&bgColorContent=fcfdfd&iconColorHeader=d8e7f3&fcHeader=ffffff&borderColorHeader=4297d7&bgImgOpacityHeader=55&bgTextureHeader=gloss_wave&bgColorHeader=5c9ccc&cornerRadius=5px&fsDefault=1.1em&fwDefault=bold&ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif
|
||||||
|
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||||
|
|
||||||
|
/* Layout helpers
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-helper-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ui-helper-hidden-accessible {
|
||||||
|
border: 0;
|
||||||
|
clip: rect(0 0 0 0);
|
||||||
|
height: 1px;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0;
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
}
|
||||||
|
.ui-helper-reset {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
line-height: 1.3;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 100%;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.ui-helper-clearfix:before,
|
||||||
|
.ui-helper-clearfix:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
.ui-helper-clearfix:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
.ui-helper-zfix {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
filter:Alpha(Opacity=0); /* support: IE8 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-front {
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Interaction Cues
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-state-disabled {
|
||||||
|
cursor: default !important;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Icons
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-icon {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-top: -.25em;
|
||||||
|
position: relative;
|
||||||
|
text-indent: -99999px;
|
||||||
|
overflow: hidden;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-widget-icon-block {
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -8px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Misc visuals
|
||||||
|
----------------------------------*/
|
||||||
|
|
||||||
|
/* Overlays */
|
||||||
|
.ui-widget-overlay {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.ui-datepicker {
|
||||||
|
width: 17em;
|
||||||
|
padding: .2em .2em 0;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-header {
|
||||||
|
position: relative;
|
||||||
|
padding: .2em 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev,
|
||||||
|
.ui-datepicker .ui-datepicker-next {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
width: 1.8em;
|
||||||
|
height: 1.8em;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev-hover,
|
||||||
|
.ui-datepicker .ui-datepicker-next-hover {
|
||||||
|
top: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev {
|
||||||
|
left: 2px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-next {
|
||||||
|
right: 2px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev-hover {
|
||||||
|
left: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-next-hover {
|
||||||
|
right: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev span,
|
||||||
|
.ui-datepicker .ui-datepicker-next span {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -8px;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-title {
|
||||||
|
margin: 0 2.3em;
|
||||||
|
line-height: 1.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-title select {
|
||||||
|
font-size: 1em;
|
||||||
|
margin: 1px 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker select.ui-datepicker-month,
|
||||||
|
.ui-datepicker select.ui-datepicker-year {
|
||||||
|
width: 45%;
|
||||||
|
}
|
||||||
|
.ui-datepicker table {
|
||||||
|
width: 100%;
|
||||||
|
font-size: .9em;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 0 0 .4em;
|
||||||
|
}
|
||||||
|
.ui-datepicker th {
|
||||||
|
padding: .7em .3em;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker td {
|
||||||
|
border: 0;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker td span,
|
||||||
|
.ui-datepicker td a {
|
||||||
|
display: block;
|
||||||
|
padding: .2em;
|
||||||
|
text-align: right;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-buttonpane {
|
||||||
|
background-image: none;
|
||||||
|
margin: .7em 0 0 0;
|
||||||
|
padding: 0 .2em;
|
||||||
|
border-left: 0;
|
||||||
|
border-right: 0;
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-buttonpane button {
|
||||||
|
float: right;
|
||||||
|
margin: .5em .2em .4em;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: .2em .6em .3em .6em;
|
||||||
|
width: auto;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* with multiple calendars */
|
||||||
|
.ui-datepicker.ui-datepicker-multi {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group table {
|
||||||
|
width: 95%;
|
||||||
|
margin: 0 auto .4em;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi-2 .ui-datepicker-group {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi-3 .ui-datepicker-group {
|
||||||
|
width: 33.3%;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi-4 .ui-datepicker-group {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
||||||
|
border-left-width: 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
.ui-datepicker-row-break {
|
||||||
|
clear: both;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* RTL support */
|
||||||
|
.ui-datepicker-rtl {
|
||||||
|
direction: rtl;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-prev {
|
||||||
|
right: 2px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-next {
|
||||||
|
left: 2px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
||||||
|
right: 1px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
||||||
|
left: 1px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
||||||
|
clear: right;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-group {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
||||||
|
border-right-width: 0;
|
||||||
|
border-left-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Icons */
|
||||||
|
.ui-datepicker .ui-icon {
|
||||||
|
display: block;
|
||||||
|
text-indent: -99999px;
|
||||||
|
overflow: hidden;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
left: .5em;
|
||||||
|
top: .3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Component containers
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-widget {
|
||||||
|
font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
.ui-widget .ui-widget {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.ui-widget input,
|
||||||
|
.ui-widget select,
|
||||||
|
.ui-widget textarea,
|
||||||
|
.ui-widget button {
|
||||||
|
font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.ui-widget.ui-widget-content {
|
||||||
|
border: 1px solid #c5dbec;
|
||||||
|
}
|
||||||
|
.ui-widget-content {
|
||||||
|
border: 1px solid #a6c9e2;
|
||||||
|
background: #fcfdfd url("images/ui-bg_inset-hard_100_fcfdfd_1x100.png") 50% bottom repeat-x;
|
||||||
|
color: #222222;
|
||||||
|
}
|
||||||
|
.ui-widget-content a {
|
||||||
|
color: #222222;
|
||||||
|
}
|
||||||
|
.ui-widget-header {
|
||||||
|
border: 1px solid #4297d7;
|
||||||
|
background: #5c9ccc url("images/ui-bg_gloss-wave_55_5c9ccc_500x100.png") 50% 50% repeat-x;
|
||||||
|
color: #ffffff;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.ui-widget-header a {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Interaction states
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-state-default,
|
||||||
|
.ui-widget-content .ui-state-default,
|
||||||
|
.ui-widget-header .ui-state-default,
|
||||||
|
.ui-button,
|
||||||
|
|
||||||
|
/* We use html here because we need a greater specificity to make sure disabled
|
||||||
|
works properly when clicked or hovered */
|
||||||
|
html .ui-button.ui-state-disabled:hover,
|
||||||
|
html .ui-button.ui-state-disabled:active {
|
||||||
|
border: 1px solid #c5dbec;
|
||||||
|
background: #dfeffc url("images/ui-bg_glass_85_dfeffc_1x400.png") 50% 50% repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #2e6e9e;
|
||||||
|
}
|
||||||
|
.ui-state-default a,
|
||||||
|
.ui-state-default a:link,
|
||||||
|
.ui-state-default a:visited,
|
||||||
|
a.ui-button,
|
||||||
|
a:link.ui-button,
|
||||||
|
a:visited.ui-button,
|
||||||
|
.ui-button {
|
||||||
|
color: #2e6e9e;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.ui-state-hover,
|
||||||
|
.ui-widget-content .ui-state-hover,
|
||||||
|
.ui-widget-header .ui-state-hover,
|
||||||
|
.ui-state-focus,
|
||||||
|
.ui-widget-content .ui-state-focus,
|
||||||
|
.ui-widget-header .ui-state-focus,
|
||||||
|
.ui-button:hover,
|
||||||
|
.ui-button:focus {
|
||||||
|
border: 1px solid #79b7e7;
|
||||||
|
background: #d0e5f5 url("images/ui-bg_glass_75_d0e5f5_1x400.png") 50% 50% repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #1d5987;
|
||||||
|
}
|
||||||
|
.ui-state-hover a,
|
||||||
|
.ui-state-hover a:hover,
|
||||||
|
.ui-state-hover a:link,
|
||||||
|
.ui-state-hover a:visited,
|
||||||
|
.ui-state-focus a,
|
||||||
|
.ui-state-focus a:hover,
|
||||||
|
.ui-state-focus a:link,
|
||||||
|
.ui-state-focus a:visited,
|
||||||
|
a.ui-button:hover,
|
||||||
|
a.ui-button:focus {
|
||||||
|
color: #1d5987;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-visual-focus {
|
||||||
|
box-shadow: 0 0 3px 1px rgb(94, 158, 214);
|
||||||
|
}
|
||||||
|
.ui-state-active,
|
||||||
|
.ui-widget-content .ui-state-active,
|
||||||
|
.ui-widget-header .ui-state-active,
|
||||||
|
a.ui-button:active,
|
||||||
|
.ui-button:active,
|
||||||
|
.ui-button.ui-state-active:hover {
|
||||||
|
border: 1px solid #79b7e7;
|
||||||
|
background: #f5f8f9 url("images/ui-bg_inset-hard_100_f5f8f9_1x100.png") 50% 50% repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #e17009;
|
||||||
|
}
|
||||||
|
.ui-icon-background,
|
||||||
|
.ui-state-active .ui-icon-background {
|
||||||
|
border: #79b7e7;
|
||||||
|
background-color: #e17009;
|
||||||
|
}
|
||||||
|
.ui-state-active a,
|
||||||
|
.ui-state-active a:link,
|
||||||
|
.ui-state-active a:visited {
|
||||||
|
color: #e17009;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Interaction Cues
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-state-highlight,
|
||||||
|
.ui-widget-content .ui-state-highlight,
|
||||||
|
.ui-widget-header .ui-state-highlight {
|
||||||
|
border: 1px solid #fad42e;
|
||||||
|
background: #fbec88;
|
||||||
|
color: #363636;
|
||||||
|
}
|
||||||
|
.ui-state-checked {
|
||||||
|
border: 1px solid #fad42e;
|
||||||
|
background: #fbec88;
|
||||||
|
}
|
||||||
|
.ui-state-highlight a,
|
||||||
|
.ui-widget-content .ui-state-highlight a,
|
||||||
|
.ui-widget-header .ui-state-highlight a {
|
||||||
|
color: #363636;
|
||||||
|
}
|
||||||
|
.ui-state-error,
|
||||||
|
.ui-widget-content .ui-state-error,
|
||||||
|
.ui-widget-header .ui-state-error {
|
||||||
|
border: 1px solid #cd0a0a;
|
||||||
|
background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
||||||
|
color: #cd0a0a;
|
||||||
|
}
|
||||||
|
.ui-state-error a,
|
||||||
|
.ui-widget-content .ui-state-error a,
|
||||||
|
.ui-widget-header .ui-state-error a {
|
||||||
|
color: #cd0a0a;
|
||||||
|
}
|
||||||
|
.ui-state-error-text,
|
||||||
|
.ui-widget-content .ui-state-error-text,
|
||||||
|
.ui-widget-header .ui-state-error-text {
|
||||||
|
color: #cd0a0a;
|
||||||
|
}
|
||||||
|
.ui-priority-primary,
|
||||||
|
.ui-widget-content .ui-priority-primary,
|
||||||
|
.ui-widget-header .ui-priority-primary {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.ui-priority-secondary,
|
||||||
|
.ui-widget-content .ui-priority-secondary,
|
||||||
|
.ui-widget-header .ui-priority-secondary {
|
||||||
|
opacity: .7;
|
||||||
|
filter:Alpha(Opacity=70); /* support: IE8 */
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
.ui-state-disabled,
|
||||||
|
.ui-widget-content .ui-state-disabled,
|
||||||
|
.ui-widget-header .ui-state-disabled {
|
||||||
|
opacity: .35;
|
||||||
|
filter:Alpha(Opacity=35); /* support: IE8 */
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
.ui-state-disabled .ui-icon {
|
||||||
|
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Icons
|
||||||
|
----------------------------------*/
|
||||||
|
|
||||||
|
/* states and images */
|
||||||
|
.ui-icon {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
.ui-icon,
|
||||||
|
.ui-widget-content .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_469bdd_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-widget-header .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_d8e7f3_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-hover .ui-icon,
|
||||||
|
.ui-state-focus .ui-icon,
|
||||||
|
.ui-button:hover .ui-icon,
|
||||||
|
.ui-button:focus .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_217bc0_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-active .ui-icon,
|
||||||
|
.ui-button:active .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_f9bd01_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-highlight .ui-icon,
|
||||||
|
.ui-button .ui-state-highlight.ui-icon {
|
||||||
|
background-image: url("images/ui-icons_2e83ff_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-error .ui-icon,
|
||||||
|
.ui-state-error-text .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_cd0a0a_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-button .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_6da8d5_256x240.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* positioning */
|
||||||
|
.ui-icon-blank { background-position: 16px 16px; }
|
||||||
|
.ui-icon-caret-1-n { background-position: 0 0; }
|
||||||
|
.ui-icon-caret-1-ne { background-position: -16px 0; }
|
||||||
|
.ui-icon-caret-1-e { background-position: -32px 0; }
|
||||||
|
.ui-icon-caret-1-se { background-position: -48px 0; }
|
||||||
|
.ui-icon-caret-1-s { background-position: -65px 0; }
|
||||||
|
.ui-icon-caret-1-sw { background-position: -80px 0; }
|
||||||
|
.ui-icon-caret-1-w { background-position: -96px 0; }
|
||||||
|
.ui-icon-caret-1-nw { background-position: -112px 0; }
|
||||||
|
.ui-icon-caret-2-n-s { background-position: -128px 0; }
|
||||||
|
.ui-icon-caret-2-e-w { background-position: -144px 0; }
|
||||||
|
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
||||||
|
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
||||||
|
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
||||||
|
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
||||||
|
.ui-icon-triangle-1-s { background-position: -65px -16px; }
|
||||||
|
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
||||||
|
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
||||||
|
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
||||||
|
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
||||||
|
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
||||||
|
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
||||||
|
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
||||||
|
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
||||||
|
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
||||||
|
.ui-icon-arrow-1-s { background-position: -65px -32px; }
|
||||||
|
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
||||||
|
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
||||||
|
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
||||||
|
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
||||||
|
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
||||||
|
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
||||||
|
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
||||||
|
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
||||||
|
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
||||||
|
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
||||||
|
.ui-icon-extlink { background-position: -32px -80px; }
|
||||||
|
.ui-icon-newwin { background-position: -48px -80px; }
|
||||||
|
.ui-icon-refresh { background-position: -64px -80px; }
|
||||||
|
.ui-icon-shuffle { background-position: -80px -80px; }
|
||||||
|
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
||||||
|
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
||||||
|
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
||||||
|
.ui-icon-folder-open { background-position: -16px -96px; }
|
||||||
|
.ui-icon-document { background-position: -32px -96px; }
|
||||||
|
.ui-icon-document-b { background-position: -48px -96px; }
|
||||||
|
.ui-icon-note { background-position: -64px -96px; }
|
||||||
|
.ui-icon-mail-closed { background-position: -80px -96px; }
|
||||||
|
.ui-icon-mail-open { background-position: -96px -96px; }
|
||||||
|
.ui-icon-suitcase { background-position: -112px -96px; }
|
||||||
|
.ui-icon-comment { background-position: -128px -96px; }
|
||||||
|
.ui-icon-person { background-position: -144px -96px; }
|
||||||
|
.ui-icon-print { background-position: -160px -96px; }
|
||||||
|
.ui-icon-trash { background-position: -176px -96px; }
|
||||||
|
.ui-icon-locked { background-position: -192px -96px; }
|
||||||
|
.ui-icon-unlocked { background-position: -208px -96px; }
|
||||||
|
.ui-icon-bookmark { background-position: -224px -96px; }
|
||||||
|
.ui-icon-tag { background-position: -240px -96px; }
|
||||||
|
.ui-icon-home { background-position: 0 -112px; }
|
||||||
|
.ui-icon-flag { background-position: -16px -112px; }
|
||||||
|
.ui-icon-calendar { background-position: -32px -112px; }
|
||||||
|
.ui-icon-cart { background-position: -48px -112px; }
|
||||||
|
.ui-icon-pencil { background-position: -64px -112px; }
|
||||||
|
.ui-icon-clock { background-position: -80px -112px; }
|
||||||
|
.ui-icon-disk { background-position: -96px -112px; }
|
||||||
|
.ui-icon-calculator { background-position: -112px -112px; }
|
||||||
|
.ui-icon-zoomin { background-position: -128px -112px; }
|
||||||
|
.ui-icon-zoomout { background-position: -144px -112px; }
|
||||||
|
.ui-icon-search { background-position: -160px -112px; }
|
||||||
|
.ui-icon-wrench { background-position: -176px -112px; }
|
||||||
|
.ui-icon-gear { background-position: -192px -112px; }
|
||||||
|
.ui-icon-heart { background-position: -208px -112px; }
|
||||||
|
.ui-icon-star { background-position: -224px -112px; }
|
||||||
|
.ui-icon-link { background-position: -240px -112px; }
|
||||||
|
.ui-icon-cancel { background-position: 0 -128px; }
|
||||||
|
.ui-icon-plus { background-position: -16px -128px; }
|
||||||
|
.ui-icon-plusthick { background-position: -32px -128px; }
|
||||||
|
.ui-icon-minus { background-position: -48px -128px; }
|
||||||
|
.ui-icon-minusthick { background-position: -64px -128px; }
|
||||||
|
.ui-icon-close { background-position: -80px -128px; }
|
||||||
|
.ui-icon-closethick { background-position: -96px -128px; }
|
||||||
|
.ui-icon-key { background-position: -112px -128px; }
|
||||||
|
.ui-icon-lightbulb { background-position: -128px -128px; }
|
||||||
|
.ui-icon-scissors { background-position: -144px -128px; }
|
||||||
|
.ui-icon-clipboard { background-position: -160px -128px; }
|
||||||
|
.ui-icon-copy { background-position: -176px -128px; }
|
||||||
|
.ui-icon-contact { background-position: -192px -128px; }
|
||||||
|
.ui-icon-image { background-position: -208px -128px; }
|
||||||
|
.ui-icon-video { background-position: -224px -128px; }
|
||||||
|
.ui-icon-script { background-position: -240px -128px; }
|
||||||
|
.ui-icon-alert { background-position: 0 -144px; }
|
||||||
|
.ui-icon-info { background-position: -16px -144px; }
|
||||||
|
.ui-icon-notice { background-position: -32px -144px; }
|
||||||
|
.ui-icon-help { background-position: -48px -144px; }
|
||||||
|
.ui-icon-check { background-position: -64px -144px; }
|
||||||
|
.ui-icon-bullet { background-position: -80px -144px; }
|
||||||
|
.ui-icon-radio-on { background-position: -96px -144px; }
|
||||||
|
.ui-icon-radio-off { background-position: -112px -144px; }
|
||||||
|
.ui-icon-pin-w { background-position: -128px -144px; }
|
||||||
|
.ui-icon-pin-s { background-position: -144px -144px; }
|
||||||
|
.ui-icon-play { background-position: 0 -160px; }
|
||||||
|
.ui-icon-pause { background-position: -16px -160px; }
|
||||||
|
.ui-icon-seek-next { background-position: -32px -160px; }
|
||||||
|
.ui-icon-seek-prev { background-position: -48px -160px; }
|
||||||
|
.ui-icon-seek-end { background-position: -64px -160px; }
|
||||||
|
.ui-icon-seek-start { background-position: -80px -160px; }
|
||||||
|
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
||||||
|
.ui-icon-seek-first { background-position: -80px -160px; }
|
||||||
|
.ui-icon-stop { background-position: -96px -160px; }
|
||||||
|
.ui-icon-eject { background-position: -112px -160px; }
|
||||||
|
.ui-icon-volume-off { background-position: -128px -160px; }
|
||||||
|
.ui-icon-volume-on { background-position: -144px -160px; }
|
||||||
|
.ui-icon-power { background-position: 0 -176px; }
|
||||||
|
.ui-icon-signal-diag { background-position: -16px -176px; }
|
||||||
|
.ui-icon-signal { background-position: -32px -176px; }
|
||||||
|
.ui-icon-battery-0 { background-position: -48px -176px; }
|
||||||
|
.ui-icon-battery-1 { background-position: -64px -176px; }
|
||||||
|
.ui-icon-battery-2 { background-position: -80px -176px; }
|
||||||
|
.ui-icon-battery-3 { background-position: -96px -176px; }
|
||||||
|
.ui-icon-circle-plus { background-position: 0 -192px; }
|
||||||
|
.ui-icon-circle-minus { background-position: -16px -192px; }
|
||||||
|
.ui-icon-circle-close { background-position: -32px -192px; }
|
||||||
|
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
||||||
|
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
||||||
|
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
||||||
|
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
||||||
|
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
||||||
|
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
||||||
|
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
||||||
|
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
||||||
|
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
||||||
|
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
||||||
|
.ui-icon-circle-check { background-position: -208px -192px; }
|
||||||
|
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
||||||
|
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
||||||
|
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
||||||
|
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
||||||
|
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
||||||
|
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
||||||
|
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
||||||
|
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
||||||
|
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
||||||
|
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
||||||
|
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
||||||
|
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* Misc visuals
|
||||||
|
----------------------------------*/
|
||||||
|
|
||||||
|
/* Corner radius */
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-top,
|
||||||
|
.ui-corner-left,
|
||||||
|
.ui-corner-tl {
|
||||||
|
border-top-left-radius: 5px;
|
||||||
|
}
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-top,
|
||||||
|
.ui-corner-right,
|
||||||
|
.ui-corner-tr {
|
||||||
|
border-top-right-radius: 5px;
|
||||||
|
}
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-bottom,
|
||||||
|
.ui-corner-left,
|
||||||
|
.ui-corner-bl {
|
||||||
|
border-bottom-left-radius: 5px;
|
||||||
|
}
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-bottom,
|
||||||
|
.ui-corner-right,
|
||||||
|
.ui-corner-br {
|
||||||
|
border-bottom-right-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overlays */
|
||||||
|
.ui-widget-overlay {
|
||||||
|
background: #aaaaaa;
|
||||||
|
opacity: .3;
|
||||||
|
filter: Alpha(Opacity=30); /* support: IE8 */
|
||||||
|
}
|
||||||
|
.ui-widget-shadow {
|
||||||
|
-webkit-box-shadow: -8px -8px 8px #aaaaaa;
|
||||||
|
box-shadow: -8px -8px 8px #aaaaaa;
|
||||||
|
}
|
@ -0,0 +1,271 @@
|
|||||||
|
/*!
|
||||||
|
* jQuery UI CSS Framework 1.12.1
|
||||||
|
* http://jqueryui.com
|
||||||
|
*
|
||||||
|
* Copyright jQuery Foundation and other contributors
|
||||||
|
* Released under the MIT license.
|
||||||
|
* http://jquery.org/license
|
||||||
|
*
|
||||||
|
* http://api.jqueryui.com/category/theming/
|
||||||
|
*/
|
||||||
|
/* Layout helpers
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-helper-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ui-helper-hidden-accessible {
|
||||||
|
border: 0;
|
||||||
|
clip: rect(0 0 0 0);
|
||||||
|
height: 1px;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0;
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
}
|
||||||
|
.ui-helper-reset {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
line-height: 1.3;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 100%;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.ui-helper-clearfix:before,
|
||||||
|
.ui-helper-clearfix:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
.ui-helper-clearfix:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
.ui-helper-zfix {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
filter:Alpha(Opacity=0); /* support: IE8 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-front {
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Interaction Cues
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-state-disabled {
|
||||||
|
cursor: default !important;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Icons
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-icon {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-top: -.25em;
|
||||||
|
position: relative;
|
||||||
|
text-indent: -99999px;
|
||||||
|
overflow: hidden;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-widget-icon-block {
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -8px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Misc visuals
|
||||||
|
----------------------------------*/
|
||||||
|
|
||||||
|
/* Overlays */
|
||||||
|
.ui-widget-overlay {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.ui-datepicker {
|
||||||
|
width: 17em;
|
||||||
|
padding: .2em .2em 0;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-header {
|
||||||
|
position: relative;
|
||||||
|
padding: .2em 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev,
|
||||||
|
.ui-datepicker .ui-datepicker-next {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
width: 1.8em;
|
||||||
|
height: 1.8em;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev-hover,
|
||||||
|
.ui-datepicker .ui-datepicker-next-hover {
|
||||||
|
top: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev {
|
||||||
|
left: 2px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-next {
|
||||||
|
right: 2px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev-hover {
|
||||||
|
left: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-next-hover {
|
||||||
|
right: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-prev span,
|
||||||
|
.ui-datepicker .ui-datepicker-next span {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -8px;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-title {
|
||||||
|
margin: 0 2.3em;
|
||||||
|
line-height: 1.8em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-title select {
|
||||||
|
font-size: 1em;
|
||||||
|
margin: 1px 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker select.ui-datepicker-month,
|
||||||
|
.ui-datepicker select.ui-datepicker-year {
|
||||||
|
width: 45%;
|
||||||
|
}
|
||||||
|
.ui-datepicker table {
|
||||||
|
width: 100%;
|
||||||
|
font-size: .9em;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 0 0 .4em;
|
||||||
|
}
|
||||||
|
.ui-datepicker th {
|
||||||
|
padding: .7em .3em;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker td {
|
||||||
|
border: 0;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
.ui-datepicker td span,
|
||||||
|
.ui-datepicker td a {
|
||||||
|
display: block;
|
||||||
|
padding: .2em;
|
||||||
|
text-align: right;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-buttonpane {
|
||||||
|
background-image: none;
|
||||||
|
margin: .7em 0 0 0;
|
||||||
|
padding: 0 .2em;
|
||||||
|
border-left: 0;
|
||||||
|
border-right: 0;
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-buttonpane button {
|
||||||
|
float: right;
|
||||||
|
margin: .5em .2em .4em;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: .2em .6em .3em .6em;
|
||||||
|
width: auto;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* with multiple calendars */
|
||||||
|
.ui-datepicker.ui-datepicker-multi {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group table {
|
||||||
|
width: 95%;
|
||||||
|
margin: 0 auto .4em;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi-2 .ui-datepicker-group {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi-3 .ui-datepicker-group {
|
||||||
|
width: 33.3%;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi-4 .ui-datepicker-group {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
||||||
|
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
||||||
|
border-left-width: 0;
|
||||||
|
}
|
||||||
|
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
.ui-datepicker-row-break {
|
||||||
|
clear: both;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* RTL support */
|
||||||
|
.ui-datepicker-rtl {
|
||||||
|
direction: rtl;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-prev {
|
||||||
|
right: 2px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-next {
|
||||||
|
left: 2px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
||||||
|
right: 1px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
||||||
|
left: 1px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
||||||
|
clear: right;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-group {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
||||||
|
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
||||||
|
border-right-width: 0;
|
||||||
|
border-left-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Icons */
|
||||||
|
.ui-datepicker .ui-icon {
|
||||||
|
display: block;
|
||||||
|
text-indent: -99999px;
|
||||||
|
overflow: hidden;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
left: .5em;
|
||||||
|
top: .3em;
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
/*! jQuery UI - v1.12.1 - 2018-08-28
|
||||||
|
* http://jqueryui.com
|
||||||
|
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||||
|
|
||||||
|
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}
|
@ -0,0 +1,443 @@
|
|||||||
|
/*!
|
||||||
|
* jQuery UI CSS Framework 1.12.1
|
||||||
|
* http://jqueryui.com
|
||||||
|
*
|
||||||
|
* Copyright jQuery Foundation and other contributors
|
||||||
|
* Released under the MIT license.
|
||||||
|
* http://jquery.org/license
|
||||||
|
*
|
||||||
|
* http://api.jqueryui.com/category/theming/
|
||||||
|
*
|
||||||
|
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=redmond&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cd0a0a&fcError=cd0a0a&borderColorError=cd0a0a&bgImgOpacityError=95&bgTextureError=glass&bgColorError=fef1ec&iconColorHighlight=2e83ff&fcHighlight=363636&borderColorHighlight=fad42e&bgImgOpacityHighlight=55&bgTextureHighlight=flat&bgColorHighlight=fbec88&iconColorActive=f9bd01&fcActive=e17009&borderColorActive=79b7e7&bgImgOpacityActive=100&bgTextureActive=inset_hard&bgColorActive=f5f8f9&iconColorHover=217bc0&fcHover=1d5987&borderColorHover=79b7e7&bgImgOpacityHover=75&bgTextureHover=glass&bgColorHover=d0e5f5&iconColorDefault=6da8d5&fcDefault=2e6e9e&borderColorDefault=c5dbec&bgImgOpacityDefault=85&bgTextureDefault=glass&bgColorDefault=dfeffc&iconColorContent=469bdd&fcContent=222222&borderColorContent=a6c9e2&bgImgOpacityContent=100&bgTextureContent=inset_hard&bgColorContent=fcfdfd&iconColorHeader=d8e7f3&fcHeader=ffffff&borderColorHeader=4297d7&bgImgOpacityHeader=55&bgTextureHeader=gloss_wave&bgColorHeader=5c9ccc&cornerRadius=5px&fsDefault=1.1em&fwDefault=bold&ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* Component containers
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-widget {
|
||||||
|
font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
.ui-widget .ui-widget {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.ui-widget input,
|
||||||
|
.ui-widget select,
|
||||||
|
.ui-widget textarea,
|
||||||
|
.ui-widget button {
|
||||||
|
font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
.ui-widget.ui-widget-content {
|
||||||
|
border: 1px solid #c5dbec;
|
||||||
|
}
|
||||||
|
.ui-widget-content {
|
||||||
|
border: 1px solid #a6c9e2;
|
||||||
|
background: #fcfdfd url("images/ui-bg_inset-hard_100_fcfdfd_1x100.png") 50% bottom repeat-x;
|
||||||
|
color: #222222;
|
||||||
|
}
|
||||||
|
.ui-widget-content a {
|
||||||
|
color: #222222;
|
||||||
|
}
|
||||||
|
.ui-widget-header {
|
||||||
|
border: 1px solid #4297d7;
|
||||||
|
background: #5c9ccc url("images/ui-bg_gloss-wave_55_5c9ccc_500x100.png") 50% 50% repeat-x;
|
||||||
|
color: #ffffff;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.ui-widget-header a {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Interaction states
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-state-default,
|
||||||
|
.ui-widget-content .ui-state-default,
|
||||||
|
.ui-widget-header .ui-state-default,
|
||||||
|
.ui-button,
|
||||||
|
|
||||||
|
/* We use html here because we need a greater specificity to make sure disabled
|
||||||
|
works properly when clicked or hovered */
|
||||||
|
html .ui-button.ui-state-disabled:hover,
|
||||||
|
html .ui-button.ui-state-disabled:active {
|
||||||
|
border: 1px solid #c5dbec;
|
||||||
|
background: #dfeffc url("images/ui-bg_glass_85_dfeffc_1x400.png") 50% 50% repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #2e6e9e;
|
||||||
|
}
|
||||||
|
.ui-state-default a,
|
||||||
|
.ui-state-default a:link,
|
||||||
|
.ui-state-default a:visited,
|
||||||
|
a.ui-button,
|
||||||
|
a:link.ui-button,
|
||||||
|
a:visited.ui-button,
|
||||||
|
.ui-button {
|
||||||
|
color: #2e6e9e;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.ui-state-hover,
|
||||||
|
.ui-widget-content .ui-state-hover,
|
||||||
|
.ui-widget-header .ui-state-hover,
|
||||||
|
.ui-state-focus,
|
||||||
|
.ui-widget-content .ui-state-focus,
|
||||||
|
.ui-widget-header .ui-state-focus,
|
||||||
|
.ui-button:hover,
|
||||||
|
.ui-button:focus {
|
||||||
|
border: 1px solid #79b7e7;
|
||||||
|
background: #d0e5f5 url("images/ui-bg_glass_75_d0e5f5_1x400.png") 50% 50% repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #1d5987;
|
||||||
|
}
|
||||||
|
.ui-state-hover a,
|
||||||
|
.ui-state-hover a:hover,
|
||||||
|
.ui-state-hover a:link,
|
||||||
|
.ui-state-hover a:visited,
|
||||||
|
.ui-state-focus a,
|
||||||
|
.ui-state-focus a:hover,
|
||||||
|
.ui-state-focus a:link,
|
||||||
|
.ui-state-focus a:visited,
|
||||||
|
a.ui-button:hover,
|
||||||
|
a.ui-button:focus {
|
||||||
|
color: #1d5987;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-visual-focus {
|
||||||
|
box-shadow: 0 0 3px 1px rgb(94, 158, 214);
|
||||||
|
}
|
||||||
|
.ui-state-active,
|
||||||
|
.ui-widget-content .ui-state-active,
|
||||||
|
.ui-widget-header .ui-state-active,
|
||||||
|
a.ui-button:active,
|
||||||
|
.ui-button:active,
|
||||||
|
.ui-button.ui-state-active:hover {
|
||||||
|
border: 1px solid #79b7e7;
|
||||||
|
background: #f5f8f9 url("images/ui-bg_inset-hard_100_f5f8f9_1x100.png") 50% 50% repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #e17009;
|
||||||
|
}
|
||||||
|
.ui-icon-background,
|
||||||
|
.ui-state-active .ui-icon-background {
|
||||||
|
border: #79b7e7;
|
||||||
|
background-color: #e17009;
|
||||||
|
}
|
||||||
|
.ui-state-active a,
|
||||||
|
.ui-state-active a:link,
|
||||||
|
.ui-state-active a:visited {
|
||||||
|
color: #e17009;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Interaction Cues
|
||||||
|
----------------------------------*/
|
||||||
|
.ui-state-highlight,
|
||||||
|
.ui-widget-content .ui-state-highlight,
|
||||||
|
.ui-widget-header .ui-state-highlight {
|
||||||
|
border: 1px solid #fad42e;
|
||||||
|
background: #fbec88;
|
||||||
|
color: #363636;
|
||||||
|
}
|
||||||
|
.ui-state-checked {
|
||||||
|
border: 1px solid #fad42e;
|
||||||
|
background: #fbec88;
|
||||||
|
}
|
||||||
|
.ui-state-highlight a,
|
||||||
|
.ui-widget-content .ui-state-highlight a,
|
||||||
|
.ui-widget-header .ui-state-highlight a {
|
||||||
|
color: #363636;
|
||||||
|
}
|
||||||
|
.ui-state-error,
|
||||||
|
.ui-widget-content .ui-state-error,
|
||||||
|
.ui-widget-header .ui-state-error {
|
||||||
|
border: 1px solid #cd0a0a;
|
||||||
|
background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
||||||
|
color: #cd0a0a;
|
||||||
|
}
|
||||||
|
.ui-state-error a,
|
||||||
|
.ui-widget-content .ui-state-error a,
|
||||||
|
.ui-widget-header .ui-state-error a {
|
||||||
|
color: #cd0a0a;
|
||||||
|
}
|
||||||
|
.ui-state-error-text,
|
||||||
|
.ui-widget-content .ui-state-error-text,
|
||||||
|
.ui-widget-header .ui-state-error-text {
|
||||||
|
color: #cd0a0a;
|
||||||
|
}
|
||||||
|
.ui-priority-primary,
|
||||||
|
.ui-widget-content .ui-priority-primary,
|
||||||
|
.ui-widget-header .ui-priority-primary {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.ui-priority-secondary,
|
||||||
|
.ui-widget-content .ui-priority-secondary,
|
||||||
|
.ui-widget-header .ui-priority-secondary {
|
||||||
|
opacity: .7;
|
||||||
|
filter:Alpha(Opacity=70); /* support: IE8 */
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
.ui-state-disabled,
|
||||||
|
.ui-widget-content .ui-state-disabled,
|
||||||
|
.ui-widget-header .ui-state-disabled {
|
||||||
|
opacity: .35;
|
||||||
|
filter:Alpha(Opacity=35); /* support: IE8 */
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
.ui-state-disabled .ui-icon {
|
||||||
|
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Icons
|
||||||
|
----------------------------------*/
|
||||||
|
|
||||||
|
/* states and images */
|
||||||
|
.ui-icon {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
.ui-icon,
|
||||||
|
.ui-widget-content .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_469bdd_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-widget-header .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_d8e7f3_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-hover .ui-icon,
|
||||||
|
.ui-state-focus .ui-icon,
|
||||||
|
.ui-button:hover .ui-icon,
|
||||||
|
.ui-button:focus .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_217bc0_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-active .ui-icon,
|
||||||
|
.ui-button:active .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_f9bd01_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-highlight .ui-icon,
|
||||||
|
.ui-button .ui-state-highlight.ui-icon {
|
||||||
|
background-image: url("images/ui-icons_2e83ff_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-state-error .ui-icon,
|
||||||
|
.ui-state-error-text .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_cd0a0a_256x240.png");
|
||||||
|
}
|
||||||
|
.ui-button .ui-icon {
|
||||||
|
background-image: url("images/ui-icons_6da8d5_256x240.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* positioning */
|
||||||
|
.ui-icon-blank { background-position: 16px 16px; }
|
||||||
|
.ui-icon-caret-1-n { background-position: 0 0; }
|
||||||
|
.ui-icon-caret-1-ne { background-position: -16px 0; }
|
||||||
|
.ui-icon-caret-1-e { background-position: -32px 0; }
|
||||||
|
.ui-icon-caret-1-se { background-position: -48px 0; }
|
||||||
|
.ui-icon-caret-1-s { background-position: -65px 0; }
|
||||||
|
.ui-icon-caret-1-sw { background-position: -80px 0; }
|
||||||
|
.ui-icon-caret-1-w { background-position: -96px 0; }
|
||||||
|
.ui-icon-caret-1-nw { background-position: -112px 0; }
|
||||||
|
.ui-icon-caret-2-n-s { background-position: -128px 0; }
|
||||||
|
.ui-icon-caret-2-e-w { background-position: -144px 0; }
|
||||||
|
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
||||||
|
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
||||||
|
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
||||||
|
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
||||||
|
.ui-icon-triangle-1-s { background-position: -65px -16px; }
|
||||||
|
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
||||||
|
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
||||||
|
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
||||||
|
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
||||||
|
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
||||||
|
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
||||||
|
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
||||||
|
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
||||||
|
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
||||||
|
.ui-icon-arrow-1-s { background-position: -65px -32px; }
|
||||||
|
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
||||||
|
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
||||||
|
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
||||||
|
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
||||||
|
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
||||||
|
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
||||||
|
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
||||||
|
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
||||||
|
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
||||||
|
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
||||||
|
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
||||||
|
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
||||||
|
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
||||||
|
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
||||||
|
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
||||||
|
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
||||||
|
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
||||||
|
.ui-icon-extlink { background-position: -32px -80px; }
|
||||||
|
.ui-icon-newwin { background-position: -48px -80px; }
|
||||||
|
.ui-icon-refresh { background-position: -64px -80px; }
|
||||||
|
.ui-icon-shuffle { background-position: -80px -80px; }
|
||||||
|
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
||||||
|
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
||||||
|
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
||||||
|
.ui-icon-folder-open { background-position: -16px -96px; }
|
||||||
|
.ui-icon-document { background-position: -32px -96px; }
|
||||||
|
.ui-icon-document-b { background-position: -48px -96px; }
|
||||||
|
.ui-icon-note { background-position: -64px -96px; }
|
||||||
|
.ui-icon-mail-closed { background-position: -80px -96px; }
|
||||||
|
.ui-icon-mail-open { background-position: -96px -96px; }
|
||||||
|
.ui-icon-suitcase { background-position: -112px -96px; }
|
||||||
|
.ui-icon-comment { background-position: -128px -96px; }
|
||||||
|
.ui-icon-person { background-position: -144px -96px; }
|
||||||
|
.ui-icon-print { background-position: -160px -96px; }
|
||||||
|
.ui-icon-trash { background-position: -176px -96px; }
|
||||||
|
.ui-icon-locked { background-position: -192px -96px; }
|
||||||
|
.ui-icon-unlocked { background-position: -208px -96px; }
|
||||||
|
.ui-icon-bookmark { background-position: -224px -96px; }
|
||||||
|
.ui-icon-tag { background-position: -240px -96px; }
|
||||||
|
.ui-icon-home { background-position: 0 -112px; }
|
||||||
|
.ui-icon-flag { background-position: -16px -112px; }
|
||||||
|
.ui-icon-calendar { background-position: -32px -112px; }
|
||||||
|
.ui-icon-cart { background-position: -48px -112px; }
|
||||||
|
.ui-icon-pencil { background-position: -64px -112px; }
|
||||||
|
.ui-icon-clock { background-position: -80px -112px; }
|
||||||
|
.ui-icon-disk { background-position: -96px -112px; }
|
||||||
|
.ui-icon-calculator { background-position: -112px -112px; }
|
||||||
|
.ui-icon-zoomin { background-position: -128px -112px; }
|
||||||
|
.ui-icon-zoomout { background-position: -144px -112px; }
|
||||||
|
.ui-icon-search { background-position: -160px -112px; }
|
||||||
|
.ui-icon-wrench { background-position: -176px -112px; }
|
||||||
|
.ui-icon-gear { background-position: -192px -112px; }
|
||||||
|
.ui-icon-heart { background-position: -208px -112px; }
|
||||||
|
.ui-icon-star { background-position: -224px -112px; }
|
||||||
|
.ui-icon-link { background-position: -240px -112px; }
|
||||||
|
.ui-icon-cancel { background-position: 0 -128px; }
|
||||||
|
.ui-icon-plus { background-position: -16px -128px; }
|
||||||
|
.ui-icon-plusthick { background-position: -32px -128px; }
|
||||||
|
.ui-icon-minus { background-position: -48px -128px; }
|
||||||
|
.ui-icon-minusthick { background-position: -64px -128px; }
|
||||||
|
.ui-icon-close { background-position: -80px -128px; }
|
||||||
|
.ui-icon-closethick { background-position: -96px -128px; }
|
||||||
|
.ui-icon-key { background-position: -112px -128px; }
|
||||||
|
.ui-icon-lightbulb { background-position: -128px -128px; }
|
||||||
|
.ui-icon-scissors { background-position: -144px -128px; }
|
||||||
|
.ui-icon-clipboard { background-position: -160px -128px; }
|
||||||
|
.ui-icon-copy { background-position: -176px -128px; }
|
||||||
|
.ui-icon-contact { background-position: -192px -128px; }
|
||||||
|
.ui-icon-image { background-position: -208px -128px; }
|
||||||
|
.ui-icon-video { background-position: -224px -128px; }
|
||||||
|
.ui-icon-script { background-position: -240px -128px; }
|
||||||
|
.ui-icon-alert { background-position: 0 -144px; }
|
||||||
|
.ui-icon-info { background-position: -16px -144px; }
|
||||||
|
.ui-icon-notice { background-position: -32px -144px; }
|
||||||
|
.ui-icon-help { background-position: -48px -144px; }
|
||||||
|
.ui-icon-check { background-position: -64px -144px; }
|
||||||
|
.ui-icon-bullet { background-position: -80px -144px; }
|
||||||
|
.ui-icon-radio-on { background-position: -96px -144px; }
|
||||||
|
.ui-icon-radio-off { background-position: -112px -144px; }
|
||||||
|
.ui-icon-pin-w { background-position: -128px -144px; }
|
||||||
|
.ui-icon-pin-s { background-position: -144px -144px; }
|
||||||
|
.ui-icon-play { background-position: 0 -160px; }
|
||||||
|
.ui-icon-pause { background-position: -16px -160px; }
|
||||||
|
.ui-icon-seek-next { background-position: -32px -160px; }
|
||||||
|
.ui-icon-seek-prev { background-position: -48px -160px; }
|
||||||
|
.ui-icon-seek-end { background-position: -64px -160px; }
|
||||||
|
.ui-icon-seek-start { background-position: -80px -160px; }
|
||||||
|
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
||||||
|
.ui-icon-seek-first { background-position: -80px -160px; }
|
||||||
|
.ui-icon-stop { background-position: -96px -160px; }
|
||||||
|
.ui-icon-eject { background-position: -112px -160px; }
|
||||||
|
.ui-icon-volume-off { background-position: -128px -160px; }
|
||||||
|
.ui-icon-volume-on { background-position: -144px -160px; }
|
||||||
|
.ui-icon-power { background-position: 0 -176px; }
|
||||||
|
.ui-icon-signal-diag { background-position: -16px -176px; }
|
||||||
|
.ui-icon-signal { background-position: -32px -176px; }
|
||||||
|
.ui-icon-battery-0 { background-position: -48px -176px; }
|
||||||
|
.ui-icon-battery-1 { background-position: -64px -176px; }
|
||||||
|
.ui-icon-battery-2 { background-position: -80px -176px; }
|
||||||
|
.ui-icon-battery-3 { background-position: -96px -176px; }
|
||||||
|
.ui-icon-circle-plus { background-position: 0 -192px; }
|
||||||
|
.ui-icon-circle-minus { background-position: -16px -192px; }
|
||||||
|
.ui-icon-circle-close { background-position: -32px -192px; }
|
||||||
|
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
||||||
|
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
||||||
|
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
||||||
|
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
||||||
|
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
||||||
|
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
||||||
|
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
||||||
|
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
||||||
|
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
||||||
|
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
||||||
|
.ui-icon-circle-check { background-position: -208px -192px; }
|
||||||
|
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
||||||
|
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
||||||
|
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
||||||
|
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
||||||
|
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
||||||
|
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
||||||
|
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
||||||
|
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
||||||
|
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
||||||
|
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
||||||
|
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
||||||
|
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
||||||
|
|
||||||
|
|
||||||
|
/* Misc visuals
|
||||||
|
----------------------------------*/
|
||||||
|
|
||||||
|
/* Corner radius */
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-top,
|
||||||
|
.ui-corner-left,
|
||||||
|
.ui-corner-tl {
|
||||||
|
border-top-left-radius: 5px;
|
||||||
|
}
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-top,
|
||||||
|
.ui-corner-right,
|
||||||
|
.ui-corner-tr {
|
||||||
|
border-top-right-radius: 5px;
|
||||||
|
}
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-bottom,
|
||||||
|
.ui-corner-left,
|
||||||
|
.ui-corner-bl {
|
||||||
|
border-bottom-left-radius: 5px;
|
||||||
|
}
|
||||||
|
.ui-corner-all,
|
||||||
|
.ui-corner-bottom,
|
||||||
|
.ui-corner-right,
|
||||||
|
.ui-corner-br {
|
||||||
|
border-bottom-right-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overlays */
|
||||||
|
.ui-widget-overlay {
|
||||||
|
background: #aaaaaa;
|
||||||
|
opacity: .3;
|
||||||
|
filter: Alpha(Opacity=30); /* support: IE8 */
|
||||||
|
}
|
||||||
|
.ui-widget-shadow {
|
||||||
|
-webkit-box-shadow: -8px -8px 8px #aaaaaa;
|
||||||
|
box-shadow: -8px -8px 8px #aaaaaa;
|
||||||
|
}
|
@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"name": "jquery-ui",
|
||||||
|
"title": "jQuery UI",
|
||||||
|
"description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.",
|
||||||
|
"version": "1.12.1",
|
||||||
|
"homepage": "http://jqueryui.com",
|
||||||
|
"author": {
|
||||||
|
"name": "jQuery Foundation and other contributors",
|
||||||
|
"url": "https://github.com/jquery/jquery-ui/blob/1.12.1/AUTHORS.txt"
|
||||||
|
},
|
||||||
|
"main": "ui/widget.js",
|
||||||
|
"maintainers": [
|
||||||
|
{
|
||||||
|
"name": "Scott González",
|
||||||
|
"email": "scott.gonzalez@gmail.com",
|
||||||
|
"url": "http://scottgonzalez.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Jörn Zaefferer",
|
||||||
|
"email": "joern.zaefferer@gmail.com",
|
||||||
|
"url": "http://bassistance.de"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mike Sherov",
|
||||||
|
"email": "mike.sherov@gmail.com",
|
||||||
|
"url": "http://mike.sherov.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TJ VanToll",
|
||||||
|
"email": "tj.vantoll@gmail.com",
|
||||||
|
"url": "http://tjvantoll.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Felix Nagel",
|
||||||
|
"email": "info@felixnagel.com",
|
||||||
|
"url": "http://www.felixnagel.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Alex Schmitz",
|
||||||
|
"email": "arschmitz@gmail.com",
|
||||||
|
"url": "https://github.com/arschmitz"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git://github.com/jquery/jquery-ui.git"
|
||||||
|
},
|
||||||
|
"bugs": "https://bugs.jqueryui.com/",
|
||||||
|
"license": "MIT",
|
||||||
|
"scripts": {
|
||||||
|
"test": "grunt"
|
||||||
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {
|
||||||
|
"commitplease": "2.3.0",
|
||||||
|
"grunt": "0.4.5",
|
||||||
|
"grunt-bowercopy": "1.2.4",
|
||||||
|
"grunt-cli": "0.1.13",
|
||||||
|
"grunt-compare-size": "0.4.0",
|
||||||
|
"grunt-contrib-concat": "0.5.1",
|
||||||
|
"grunt-contrib-csslint": "0.5.0",
|
||||||
|
"grunt-contrib-jshint": "0.12.0",
|
||||||
|
"grunt-contrib-qunit": "1.0.1",
|
||||||
|
"grunt-contrib-requirejs": "0.4.4",
|
||||||
|
"grunt-contrib-uglify": "0.11.1",
|
||||||
|
"grunt-git-authors": "3.1.0",
|
||||||
|
"grunt-html": "6.0.0",
|
||||||
|
"grunt-jscs": "2.1.0",
|
||||||
|
"load-grunt-tasks": "3.4.0",
|
||||||
|
"rimraf": "2.5.1",
|
||||||
|
"testswarm": "1.1.0"
|
||||||
|
},
|
||||||
|
"keywords": []
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
function animate(obj, target, callback) {
|
||||||
|
clearInterval(obj.timer);
|
||||||
|
obj.timer = setInterval(function() {
|
||||||
|
// 步长值写到定时器里面
|
||||||
|
// 步长值为整数,不要出现小数的问题
|
||||||
|
var step = (target - obj.offsetLeft) / 10;
|
||||||
|
step = step > 0 ? Math.ceil(step) : Math.floor(step);
|
||||||
|
if (obj.offsetLeft == target) {
|
||||||
|
clearInterval(obj.timer);
|
||||||
|
if (callback) {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
obj.style.left = obj.offsetLeft + step + 'px';
|
||||||
|
}, 30);
|
||||||
|
}
|
@ -0,0 +1,85 @@
|
|||||||
|
window.addEventListener('load', function() {
|
||||||
|
var prev = document.querySelector('.prev');
|
||||||
|
var next = document.querySelector('.next');
|
||||||
|
var lunbo = document.querySelector('.lunbo');
|
||||||
|
var lunboWidth = lunbo.offsetWidth;
|
||||||
|
lunbo.addEventListener('mouseenter', function() {
|
||||||
|
prev.style.display = 'block';
|
||||||
|
next.style.display = 'block';
|
||||||
|
clearInterval(timer);
|
||||||
|
timer = null;
|
||||||
|
});
|
||||||
|
lunbo.addEventListener('mouseleave', function() {
|
||||||
|
prev.style.display = 'none';
|
||||||
|
next.style.display = 'none';
|
||||||
|
timer = setInterval(function() {
|
||||||
|
next.click();
|
||||||
|
}, 2000);
|
||||||
|
});
|
||||||
|
var bone = document.querySelector('.bone');
|
||||||
|
var ol = document.querySelector('ol');
|
||||||
|
for (var i = 0; i < bone.children.length; i++) {
|
||||||
|
var li = document.createElement('li');
|
||||||
|
li.setAttribute('index', i);
|
||||||
|
ol.appendChild(li);
|
||||||
|
li.addEventListener('click', function() {
|
||||||
|
for (var i = 0; i < ol.children.length; i++) {
|
||||||
|
ol.children[i].className = '';
|
||||||
|
}
|
||||||
|
this.className = 'current';
|
||||||
|
var index = this.getAttribute('index');
|
||||||
|
num = index;
|
||||||
|
circle = index;
|
||||||
|
animate(bone, -index * lunboWidth);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
ol.children[0].className = 'current';
|
||||||
|
var num = 0;
|
||||||
|
var circle = 0;
|
||||||
|
var flag = true;
|
||||||
|
next.addEventListener('click', function() {
|
||||||
|
if (flag) {
|
||||||
|
flag = false;
|
||||||
|
if (num == bone.children.length - 1) {
|
||||||
|
bone.style.left = 0;
|
||||||
|
num = -1;
|
||||||
|
}
|
||||||
|
num++;
|
||||||
|
animate(bone, -num * lunboWidth, function() {
|
||||||
|
flag = true;
|
||||||
|
});
|
||||||
|
circle++;
|
||||||
|
if (circle == ol.children.length) {
|
||||||
|
circle = 0;
|
||||||
|
}
|
||||||
|
for (var i = 0; i < ol.children.length; i++) {
|
||||||
|
ol.children[i].className = '';
|
||||||
|
}
|
||||||
|
ol.children[circle].className = 'current';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
prev.addEventListener('click', function() {
|
||||||
|
if (flag) {
|
||||||
|
flag = false;
|
||||||
|
if (num == 0) {
|
||||||
|
num = bone.children.length;
|
||||||
|
bone.style.left = num * lunboWidth + 'px';
|
||||||
|
}
|
||||||
|
num--;
|
||||||
|
animate(bone, -num * lunboWidth, function() {
|
||||||
|
flag = true;
|
||||||
|
});
|
||||||
|
circle--;
|
||||||
|
if (circle < 0) {
|
||||||
|
circle = ol.children.length - 1;
|
||||||
|
}
|
||||||
|
for (var i = 0; i < ol.children.length; i++) {
|
||||||
|
ol.children[i].className = '';
|
||||||
|
}
|
||||||
|
ol.children[circle].className = 'current';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
var timer = setInterval(function() {
|
||||||
|
next.click();
|
||||||
|
}, 2000);
|
||||||
|
});
|
@ -0,0 +1,171 @@
|
|||||||
|
/**
|
||||||
|
* Template Name: Mamba - v2.0.1
|
||||||
|
* Template URL: https://bootstrapmade.com/mamba-one-page-bootstrap-template-free/
|
||||||
|
* Author: BootstrapMade.com
|
||||||
|
* License: https://bootstrapmade.com/license/
|
||||||
|
*/
|
||||||
|
!(function($) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
// Toggle .header-scrolled class to #header when page is scrolled
|
||||||
|
$(window).scroll(function() {
|
||||||
|
if ($(this).scrollTop() > 100) {
|
||||||
|
$('#header').addClass('header-scrolled');
|
||||||
|
} else {
|
||||||
|
$('#header').removeClass('header-scrolled');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if ($(window).scrollTop() > 100) {
|
||||||
|
$('#header').addClass('header-scrolled');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stick the header at top on scroll
|
||||||
|
$("#header").sticky({
|
||||||
|
topSpacing: 0,
|
||||||
|
zIndex: '50'
|
||||||
|
});
|
||||||
|
|
||||||
|
// Smooth scroll for the navigation menu and links with .scrollto classes
|
||||||
|
$(document).on('click', '.nav-menu a, .mobile-nav a, .scrollto', function(e) {
|
||||||
|
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
|
||||||
|
e.preventDefault();
|
||||||
|
var target = $(this.hash);
|
||||||
|
if (target.length) {
|
||||||
|
|
||||||
|
var scrollto = target.offset().top;
|
||||||
|
var scrolled = 2;
|
||||||
|
|
||||||
|
if ($('#header-sticky-wrapper').length) {
|
||||||
|
scrollto -= $('#header-sticky-wrapper').outerHeight() - scrolled;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($(this).attr("href") == '#header') {
|
||||||
|
scrollto = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
$('html, body').animate({
|
||||||
|
scrollTop: scrollto
|
||||||
|
}, 1500, 'easeInOutExpo');
|
||||||
|
|
||||||
|
if ($(this).parents('.nav-menu, .mobile-nav').length) {
|
||||||
|
$('.nav-menu .active, .mobile-nav .active').removeClass('active');
|
||||||
|
$(this).closest('li').addClass('active');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('body').hasClass('mobile-nav-active')) {
|
||||||
|
$('body').removeClass('mobile-nav-active');
|
||||||
|
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
|
||||||
|
$('.mobile-nav-overly').fadeOut();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Mobile Navigation
|
||||||
|
if ($('.nav-menu').length) {
|
||||||
|
var $mobile_nav = $('.nav-menu').clone().prop({
|
||||||
|
class: 'mobile-nav d-lg-none'
|
||||||
|
});
|
||||||
|
$('body').append($mobile_nav);
|
||||||
|
$('body').prepend('<button type="button" class="mobile-nav-toggle d-lg-none"><i class="icofont-navigation-menu"></i></button>');
|
||||||
|
$('body').append('<div class="mobile-nav-overly"></div>');
|
||||||
|
|
||||||
|
$(document).on('click', '.mobile-nav-toggle', function(e) {
|
||||||
|
$('body').toggleClass('mobile-nav-active');
|
||||||
|
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
|
||||||
|
$('.mobile-nav-overly').toggle();
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).on('click', '.mobile-nav .drop-down > a', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$(this).next().slideToggle(300);
|
||||||
|
$(this).parent().toggleClass('active');
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).click(function(e) {
|
||||||
|
var container = $(".mobile-nav, .mobile-nav-toggle");
|
||||||
|
if (!container.is(e.target) && container.has(e.target).length === 0) {
|
||||||
|
if ($('body').hasClass('mobile-nav-active')) {
|
||||||
|
$('body').removeClass('mobile-nav-active');
|
||||||
|
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
|
||||||
|
$('.mobile-nav-overly').fadeOut();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else if ($(".mobile-nav, .mobile-nav-toggle").length) {
|
||||||
|
$(".mobile-nav, .mobile-nav-toggle").hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Intro carousel
|
||||||
|
var heroCarousel = $("#heroCarousel");
|
||||||
|
var heroCarouselIndicators = $("#hero-carousel-indicators");
|
||||||
|
heroCarousel.find(".carousel-inner").children(".carousel-item").each(function(index) {
|
||||||
|
(index === 0) ?
|
||||||
|
heroCarouselIndicators.append("<li data-target='#heroCarousel' data-slide-to='" + index + "' class='active'></li>"):
|
||||||
|
heroCarouselIndicators.append("<li data-target='#heroCarousel' data-slide-to='" + index + "'></li>");
|
||||||
|
});
|
||||||
|
|
||||||
|
heroCarousel.on('slid.bs.carousel', function(e) {
|
||||||
|
$(this).find('h2').addClass('animated fadeInDown');
|
||||||
|
$(this).find('p').addClass('animated fadeInUp');
|
||||||
|
$(this).find('.btn-get-started').addClass('animated fadeInUp');
|
||||||
|
});
|
||||||
|
|
||||||
|
// Back to top button
|
||||||
|
$(window).scroll(function() {
|
||||||
|
if ($(this).scrollTop() > 100) {
|
||||||
|
$('.back-to-top').fadeIn('slow');
|
||||||
|
} else {
|
||||||
|
$('.back-to-top').fadeOut('slow');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.back-to-top').click(function() {
|
||||||
|
$('html, body').animate({
|
||||||
|
scrollTop: 0
|
||||||
|
}, 1500, 'easeInOutExpo');
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Initiate the venobox plugin
|
||||||
|
$(window).on('load', function() {
|
||||||
|
$('.venobox').venobox();
|
||||||
|
});
|
||||||
|
|
||||||
|
// jQuery counterUp
|
||||||
|
$('[data-toggle="counter-up"]').counterUp({
|
||||||
|
delay: 10,
|
||||||
|
time: 1000
|
||||||
|
});
|
||||||
|
|
||||||
|
// Porfolio isotope and filter
|
||||||
|
$(window).on('load', function() {
|
||||||
|
var portfolioIsotope = $('.portfolio-container').isotope({
|
||||||
|
itemSelector: '.portfolio-item',
|
||||||
|
layoutMode: 'fitRows'
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#portfolio-flters li').on('click', function() {
|
||||||
|
$("#portfolio-flters li").removeClass('filter-active');
|
||||||
|
$(this).addClass('filter-active');
|
||||||
|
|
||||||
|
portfolioIsotope.isotope({
|
||||||
|
filter: $(this).data('filter')
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Initiate venobox (lightbox feature used in portofilo)
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('.venobox').venobox();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Initi AOS
|
||||||
|
AOS.init({
|
||||||
|
duration: 1000,
|
||||||
|
easing: "ease-in-out-back"
|
||||||
|
});
|
||||||
|
|
||||||
|
})(jQuery);
|
@ -0,0 +1,192 @@
|
|||||||
|
const width_threshold = 480;
|
||||||
|
|
||||||
|
function drawLineChart() {
|
||||||
|
if ($("#lineChart").length) {
|
||||||
|
ctxLine = document.getElementById("lineChart").getContext("2d");
|
||||||
|
optionsLine = {
|
||||||
|
scales: {
|
||||||
|
yAxes: [
|
||||||
|
{
|
||||||
|
scaleLabel: {
|
||||||
|
display: true,
|
||||||
|
labelString: "Hits"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Set aspect ratio based on window width
|
||||||
|
optionsLine.maintainAspectRatio =
|
||||||
|
$(window).width() < width_threshold ? false : true;
|
||||||
|
|
||||||
|
configLine = {
|
||||||
|
type: "line",
|
||||||
|
data: {
|
||||||
|
labels: [
|
||||||
|
"January",
|
||||||
|
"February",
|
||||||
|
"March",
|
||||||
|
"April",
|
||||||
|
"May",
|
||||||
|
"June",
|
||||||
|
"July"
|
||||||
|
],
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
label: "Latest Hits",
|
||||||
|
data: [88, 68, 79, 57, 50, 55, 70],
|
||||||
|
fill: false,
|
||||||
|
borderColor: "rgb(75, 192, 192)",
|
||||||
|
cubicInterpolationMode: "monotone",
|
||||||
|
pointRadius: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Popular Hits",
|
||||||
|
data: [33, 45, 37, 21, 55, 74, 69],
|
||||||
|
fill: false,
|
||||||
|
borderColor: "rgba(255,99,132,1)",
|
||||||
|
cubicInterpolationMode: "monotone",
|
||||||
|
pointRadius: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Featured",
|
||||||
|
data: [44, 19, 38, 46, 85, 66, 79],
|
||||||
|
fill: false,
|
||||||
|
borderColor: "rgba(153, 102, 255, 1)",
|
||||||
|
cubicInterpolationMode: "monotone",
|
||||||
|
pointRadius: 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
options: optionsLine
|
||||||
|
};
|
||||||
|
|
||||||
|
lineChart = new Chart(ctxLine, configLine);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawBarChart() {
|
||||||
|
if ($("#barChart").length) {
|
||||||
|
ctxBar = document.getElementById("barChart").getContext("2d");
|
||||||
|
|
||||||
|
optionsBar = {
|
||||||
|
responsive: true,
|
||||||
|
scales: {
|
||||||
|
yAxes: [
|
||||||
|
{
|
||||||
|
barPercentage: 0.2,
|
||||||
|
ticks: {
|
||||||
|
beginAtZero: true
|
||||||
|
},
|
||||||
|
scaleLabel: {
|
||||||
|
display: true,
|
||||||
|
labelString: "Hits"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
optionsBar.maintainAspectRatio =
|
||||||
|
$(window).width() < width_threshold ? false : true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* COLOR CODES
|
||||||
|
* Red: #F7604D
|
||||||
|
* Aqua: #4ED6B8
|
||||||
|
* Green: #A8D582
|
||||||
|
* Yellow: #D7D768
|
||||||
|
* Purple: #9D66CC
|
||||||
|
* Orange: #DB9C3F
|
||||||
|
* Blue: #3889FC
|
||||||
|
*/
|
||||||
|
|
||||||
|
configBar = {
|
||||||
|
type: "horizontalBar",
|
||||||
|
data: {
|
||||||
|
labels: ["Red", "Aqua", "Green", "Yellow", "Purple", "Orange", "Blue"],
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
label: "# of Hits",
|
||||||
|
data: [33, 40, 28, 49, 58, 38, 44],
|
||||||
|
backgroundColor: [
|
||||||
|
"#F7604D",
|
||||||
|
"#4ED6B8",
|
||||||
|
"#A8D582",
|
||||||
|
"#D7D768",
|
||||||
|
"#9D66CC",
|
||||||
|
"#DB9C3F",
|
||||||
|
"#3889FC"
|
||||||
|
],
|
||||||
|
borderWidth: 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
options: optionsBar
|
||||||
|
};
|
||||||
|
|
||||||
|
barChart = new Chart(ctxBar, configBar);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawPieChart() {
|
||||||
|
if ($("#pieChart").length) {
|
||||||
|
var chartHeight = 300;
|
||||||
|
|
||||||
|
$("#pieChartContainer").css("height", chartHeight + "px");
|
||||||
|
|
||||||
|
ctxPie = document.getElementById("pieChart").getContext("2d");
|
||||||
|
|
||||||
|
optionsPie = {
|
||||||
|
responsive: true,
|
||||||
|
maintainAspectRatio: false,
|
||||||
|
layout: {
|
||||||
|
padding: {
|
||||||
|
left: 10,
|
||||||
|
right: 10,
|
||||||
|
top: 10,
|
||||||
|
bottom: 10
|
||||||
|
}
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
position: "top"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
configPie = {
|
||||||
|
type: "pie",
|
||||||
|
data: {
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
data: [18.24, 6.5, 9.15],
|
||||||
|
backgroundColor: ["#F7604D", "#4ED6B8", "#A8D582"],
|
||||||
|
label: "Storage"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
labels: [
|
||||||
|
"Used Storage (18.240GB)",
|
||||||
|
"System Storage (6.500GB)",
|
||||||
|
"Available Storage (9.150GB)"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
options: optionsPie
|
||||||
|
};
|
||||||
|
|
||||||
|
pieChart = new Chart(ctxPie, configPie);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateLineChart() {
|
||||||
|
if (lineChart) {
|
||||||
|
lineChart.options = optionsLine;
|
||||||
|
lineChart.update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateBarChart() {
|
||||||
|
if (barChart) {
|
||||||
|
barChart.options = optionsBar;
|
||||||
|
barChart.update();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,327 @@
|
|||||||
|
/*!
|
||||||
|
* Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)
|
||||||
|
* Copyright 2011-2019 The Bootstrap Authors
|
||||||
|
* Copyright 2011-2019 Twitter, Inc.
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||||
|
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||||
|
*/
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-family: sans-serif;
|
||||||
|
line-height: 1.15;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #212529;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
[tabindex="-1"]:focus:not(:focus-visible) {
|
||||||
|
outline: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
box-sizing: content-box;
|
||||||
|
height: 0;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
abbr[title],
|
||||||
|
abbr[data-original-title] {
|
||||||
|
text-decoration: underline;
|
||||||
|
-webkit-text-decoration: underline dotted;
|
||||||
|
text-decoration: underline dotted;
|
||||||
|
cursor: help;
|
||||||
|
border-bottom: 0;
|
||||||
|
-webkit-text-decoration-skip-ink: none;
|
||||||
|
text-decoration-skip-ink: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
address {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-style: normal;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul,
|
||||||
|
dl {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol ol,
|
||||||
|
ul ul,
|
||||||
|
ol ul,
|
||||||
|
ul ol {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub,
|
||||||
|
sup {
|
||||||
|
position: relative;
|
||||||
|
font-size: 75%;
|
||||||
|
line-height: 0;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub {
|
||||||
|
bottom: -.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
top: -.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #007bff;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #0056b3;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]) {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]):hover {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre,
|
||||||
|
code,
|
||||||
|
kbd,
|
||||||
|
samp {
|
||||||
|
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
vertical-align: middle;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
overflow: hidden;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
caption {
|
||||||
|
padding-top: 0.75rem;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
color: #6c757d;
|
||||||
|
text-align: left;
|
||||||
|
caption-side: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus {
|
||||||
|
outline: 1px dotted;
|
||||||
|
outline: 5px auto -webkit-focus-ring-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
button,
|
||||||
|
select,
|
||||||
|
optgroup,
|
||||||
|
textarea {
|
||||||
|
margin: 0;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
input {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
select {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
word-wrap: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
[type="button"],
|
||||||
|
[type="reset"],
|
||||||
|
[type="submit"] {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:not(:disabled),
|
||||||
|
[type="button"]:not(:disabled),
|
||||||
|
[type="reset"]:not(:disabled),
|
||||||
|
[type="submit"]:not(:disabled) {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
button::-moz-focus-inner,
|
||||||
|
[type="button"]::-moz-focus-inner,
|
||||||
|
[type="reset"]::-moz-focus-inner,
|
||||||
|
[type="submit"]::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="radio"],
|
||||||
|
input[type="checkbox"] {
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="date"],
|
||||||
|
input[type="time"],
|
||||||
|
input[type="datetime-local"],
|
||||||
|
input[type="month"] {
|
||||||
|
-webkit-appearance: listbox;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
overflow: auto;
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
min-width: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: inherit;
|
||||||
|
color: inherit;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
progress {
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="number"]::-webkit-inner-spin-button,
|
||||||
|
[type="number"]::-webkit-outer-spin-button {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="search"] {
|
||||||
|
outline-offset: -2px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="search"]::-webkit-search-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-file-upload-button {
|
||||||
|
font: inherit;
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
output {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
summary {
|
||||||
|
display: list-item;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
template {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[hidden] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
@ -0,0 +1,8 @@
|
|||||||
|
/*!
|
||||||
|
* Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)
|
||||||
|
* Copyright 2011-2019 The Bootstrap Authors
|
||||||
|
* Copyright 2011-2019 Twitter, Inc.
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||||
|
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||||
|
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
||||||
|
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
@ -0,0 +1,386 @@
|
|||||||
|
@-webkit-keyframes spin
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: rotate(0);
|
||||||
|
transform: rotate(0);
|
||||||
|
}
|
||||||
|
100%
|
||||||
|
{
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes spin
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: rotate(0);
|
||||||
|
transform: rotate(0);
|
||||||
|
}
|
||||||
|
100%
|
||||||
|
{
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes burst
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
90%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale(1.5);
|
||||||
|
transform: scale(1.5);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes burst
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
90%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale(1.5);
|
||||||
|
transform: scale(1.5);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes flashing
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
45%
|
||||||
|
{
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
90%
|
||||||
|
{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes flashing
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
45%
|
||||||
|
{
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
90%
|
||||||
|
{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes fade-left
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(0);
|
||||||
|
transform: translateX(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(-20px);
|
||||||
|
transform: translateX(-20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes fade-left
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(0);
|
||||||
|
transform: translateX(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(-20px);
|
||||||
|
transform: translateX(-20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes fade-right
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(0);
|
||||||
|
transform: translateX(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(20px);
|
||||||
|
transform: translateX(20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes fade-right
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(0);
|
||||||
|
transform: translateX(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateX(20px);
|
||||||
|
transform: translateX(20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes fade-up
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(0);
|
||||||
|
transform: translateY(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(-20px);
|
||||||
|
transform: translateY(-20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes fade-up
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(0);
|
||||||
|
transform: translateY(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(-20px);
|
||||||
|
transform: translateY(-20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes fade-down
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(0);
|
||||||
|
transform: translateY(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(20px);
|
||||||
|
transform: translateY(20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes fade-down
|
||||||
|
{
|
||||||
|
0%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(0);
|
||||||
|
transform: translateY(0);
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
75%
|
||||||
|
{
|
||||||
|
-webkit-transform: translateY(20px);
|
||||||
|
transform: translateY(20px);
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes tada
|
||||||
|
{
|
||||||
|
from
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1);
|
||||||
|
transform: scale3d(1, 1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
10%,
|
||||||
|
20%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||||
|
transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
30%,
|
||||||
|
50%,
|
||||||
|
70%,
|
||||||
|
90%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||||
|
transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
40%,
|
||||||
|
60%,
|
||||||
|
80%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
|
||||||
|
transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
to
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1);
|
||||||
|
transform: scale3d(1, 1, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes tada
|
||||||
|
{
|
||||||
|
from
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1);
|
||||||
|
transform: scale3d(1, 1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
10%,
|
||||||
|
20%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||||
|
transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
30%,
|
||||||
|
50%,
|
||||||
|
70%,
|
||||||
|
90%
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||||
|
transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
40%,
|
||||||
|
60%,
|
||||||
|
80%
|
||||||
|
{
|
||||||
|
-webkit-transform: rotate3d(0, 0, 1, -10deg);
|
||||||
|
transform: rotate3d(0, 0, 1, -10deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
to
|
||||||
|
{
|
||||||
|
-webkit-transform: scale3d(1, 1, 1);
|
||||||
|
transform: scale3d(1, 1, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bx-spin
|
||||||
|
{
|
||||||
|
-webkit-animation: spin 2s linear infinite;
|
||||||
|
animation: spin 2s linear infinite;
|
||||||
|
}
|
||||||
|
.bx-spin-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: spin 2s linear infinite;
|
||||||
|
animation: spin 2s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bx-tada
|
||||||
|
{
|
||||||
|
-webkit-animation: tada 1.5s ease infinite;
|
||||||
|
animation: tada 1.5s ease infinite;
|
||||||
|
}
|
||||||
|
.bx-tada-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: tada 1.5s ease infinite;
|
||||||
|
animation: tada 1.5s ease infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bx-flashing
|
||||||
|
{
|
||||||
|
-webkit-animation: flashing 1.5s infinite linear;
|
||||||
|
animation: flashing 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-flashing-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: flashing 1.5s infinite linear;
|
||||||
|
animation: flashing 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bx-burst
|
||||||
|
{
|
||||||
|
-webkit-animation: burst 1.5s infinite linear;
|
||||||
|
animation: burst 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-burst-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: burst 1.5s infinite linear;
|
||||||
|
animation: burst 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-up
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-up 1.5s infinite linear;
|
||||||
|
animation: fade-up 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-up-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-up 1.5s infinite linear;
|
||||||
|
animation: fade-up 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-down
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-down 1.5s infinite linear;
|
||||||
|
animation: fade-down 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-down-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-down 1.5s infinite linear;
|
||||||
|
animation: fade-down 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-left
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-left 1.5s infinite linear;
|
||||||
|
animation: fade-left 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-left-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-left 1.5s infinite linear;
|
||||||
|
animation: fade-left 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-right
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-right 1.5s infinite linear;
|
||||||
|
animation: fade-right 1.5s infinite linear;
|
||||||
|
}
|
||||||
|
.bx-fade-right-hover:hover
|
||||||
|
{
|
||||||
|
-webkit-animation: fade-right 1.5s infinite linear;
|
||||||
|
animation: fade-right 1.5s infinite linear;
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
.bx-rotate-90
|
||||||
|
{
|
||||||
|
transform: rotate(90deg);
|
||||||
|
|
||||||
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
|
||||||
|
}
|
||||||
|
.bx-rotate-180
|
||||||
|
{
|
||||||
|
transform: rotate(180deg);
|
||||||
|
|
||||||
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
|
||||||
|
}
|
||||||
|
.bx-rotate-270
|
||||||
|
{
|
||||||
|
transform: rotate(270deg);
|
||||||
|
|
||||||
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
|
||||||
|
}
|
||||||
|
.bx-flip-horizontal
|
||||||
|
{
|
||||||
|
transform: scaleX(-1);
|
||||||
|
|
||||||
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
|
||||||
|
}
|
||||||
|
.bx-flip-vertical
|
||||||
|
{
|
||||||
|
transform: scaleY(-1);
|
||||||
|
|
||||||
|
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
|
||||||
|
}
|
After Width: | Height: | Size: 797 KiB |
@ -0,0 +1,11 @@
|
|||||||
|
/*!
|
||||||
|
* jquery.counterup.js 2.1.0
|
||||||
|
*
|
||||||
|
* Copyright 2013, Benjamin Intal http://gambit.ph @bfintal
|
||||||
|
* Released under the GPL v2 License
|
||||||
|
*
|
||||||
|
* Amended by Jeremy Paris, Ciro Mattia Gonano and others
|
||||||
|
*
|
||||||
|
* Date: Feb 24, 2017
|
||||||
|
*/
|
||||||
|
(function($){"use strict";$.fn.counterUp=function(options){var settings=$.extend({time:400,delay:10,offset:100,beginAt:0,formatter:false,context:"window",callback:function(){}},options),s;return this.each(function(){var $this=$(this),counter={time:$(this).data("counterup-time")||settings.time,delay:$(this).data("counterup-delay")||settings.delay,offset:$(this).data("counterup-offset")||settings.offset,beginAt:$(this).data("counterup-beginat")||settings.beginAt,context:$(this).data("counterup-context")||settings.context};var counterUpper=function(){var nums=[];var divisions=counter.time/counter.delay;var num=$(this).attr("data-num")?$(this).attr("data-num"):$this.text();var isComma=/[0-9]+,[0-9]+/.test(num);num=num.replace(/,/g,"");var decimalPlaces=(num.split(".")[1]||[]).length;if(counter.beginAt>num)counter.beginAt=num;var isTime=/[0-9]+:[0-9]+:[0-9]+/.test(num);if(isTime){var times=num.split(":"),m=1;s=0;while(times.length>0){s+=m*parseInt(times.pop(),10);m*=60}}for(var i=divisions;i>=counter.beginAt/num*divisions;i--){var newNum=parseFloat(num/divisions*i).toFixed(decimalPlaces);if(isTime){newNum=parseInt(s/divisions*i);var hours=parseInt(newNum/3600)%24;var minutes=parseInt(newNum/60)%60;var seconds=parseInt(newNum%60,10);newNum=(hours<10?"0"+hours:hours)+":"+(minutes<10?"0"+minutes:minutes)+":"+(seconds<10?"0"+seconds:seconds)}if(isComma){while(/(\d+)(\d{3})/.test(newNum.toString())){newNum=newNum.toString().replace(/(\d+)(\d{3})/,"$1"+","+"$2")}}if(settings.formatter){newNum=settings.formatter.call(this,newNum)}nums.unshift(newNum)}$this.data("counterup-nums",nums);$this.text(counter.beginAt);var f=function(){if(!$this.data("counterup-nums")){settings.callback.call(this);return}$this.html($this.data("counterup-nums").shift());if($this.data("counterup-nums").length){setTimeout($this.data("counterup-func"),counter.delay)}else{$this.data("counterup-nums",null);$this.data("counterup-func",null);settings.callback.call(this)}};$this.data("counterup-func",f);setTimeout($this.data("counterup-func"),counter.delay)};$this.waypoint(function(direction){counterUpper();this.destroy()},{offset:counter.offset+"%",context:counter.context})})}})(jQuery);
|
@ -0,0 +1,274 @@
|
|||||||
|
// Sticky Plugin v1.0.4 for jQuery
|
||||||
|
// =============
|
||||||
|
// Author: Anthony Garand
|
||||||
|
// Improvements by German M. Bravo (Kronuz) and Ruud Kamphuis (ruudk)
|
||||||
|
// Improvements by Leonardo C. Daronco (daronco)
|
||||||
|
// Created: 02/14/2011
|
||||||
|
// Date: 07/20/2015
|
||||||
|
// Website: http://stickyjs.com/
|
||||||
|
// Description: Makes an element on the page stick on the screen as you scroll
|
||||||
|
// It will only set the 'top' and 'position' of your element, you
|
||||||
|
// might need to adjust the width in some cases.
|
||||||
|
|
||||||
|
(function (factory) {
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
// AMD. Register as an anonymous module.
|
||||||
|
define(['jquery'], factory);
|
||||||
|
} else if (typeof module === 'object' && module.exports) {
|
||||||
|
// Node/CommonJS
|
||||||
|
module.exports = factory(require('jquery'));
|
||||||
|
} else {
|
||||||
|
// Browser globals
|
||||||
|
factory(jQuery);
|
||||||
|
}
|
||||||
|
}(function ($) {
|
||||||
|
var slice = Array.prototype.slice; // save ref to original slice()
|
||||||
|
var splice = Array.prototype.splice; // save ref to original slice()
|
||||||
|
|
||||||
|
var defaults = {
|
||||||
|
topSpacing: 0,
|
||||||
|
bottomSpacing: 0,
|
||||||
|
className: 'is-sticky',
|
||||||
|
wrapperClassName: 'sticky-wrapper',
|
||||||
|
center: false,
|
||||||
|
getWidthFrom: '',
|
||||||
|
widthFromWrapper: true, // works only when .getWidthFrom is empty
|
||||||
|
responsiveWidth: false,
|
||||||
|
zIndex: 'auto'
|
||||||
|
},
|
||||||
|
$window = $(window),
|
||||||
|
$document = $(document),
|
||||||
|
sticked = [],
|
||||||
|
windowHeight = $window.height(),
|
||||||
|
scroller = function() {
|
||||||
|
var scrollTop = $window.scrollTop(),
|
||||||
|
documentHeight = $document.height(),
|
||||||
|
dwh = documentHeight - windowHeight,
|
||||||
|
extra = (scrollTop > dwh) ? dwh - scrollTop : 0;
|
||||||
|
|
||||||
|
for (var i = 0, l = sticked.length; i < l; i++) {
|
||||||
|
var s = sticked[i],
|
||||||
|
elementTop = s.stickyWrapper.offset().top,
|
||||||
|
etse = elementTop - s.topSpacing - extra;
|
||||||
|
|
||||||
|
//update height in case of dynamic content
|
||||||
|
s.stickyWrapper.css('height', s.stickyElement.outerHeight());
|
||||||
|
|
||||||
|
if (scrollTop <= etse) {
|
||||||
|
if (s.currentTop !== null) {
|
||||||
|
s.stickyElement
|
||||||
|
.css({
|
||||||
|
'width': '',
|
||||||
|
'position': '',
|
||||||
|
'top': '',
|
||||||
|
'z-index': ''
|
||||||
|
});
|
||||||
|
s.stickyElement.parent().removeClass(s.className);
|
||||||
|
s.stickyElement.trigger('sticky-end', [s]);
|
||||||
|
s.currentTop = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
var newTop = documentHeight - s.stickyElement.outerHeight()
|
||||||
|
- s.topSpacing - s.bottomSpacing - scrollTop - extra;
|
||||||
|
if (newTop < 0) {
|
||||||
|
newTop = newTop + s.topSpacing;
|
||||||
|
} else {
|
||||||
|
newTop = s.topSpacing;
|
||||||
|
}
|
||||||
|
if (s.currentTop !== newTop) {
|
||||||
|
var newWidth;
|
||||||
|
if (s.getWidthFrom) {
|
||||||
|
newWidth = $(s.getWidthFrom).width() || null;
|
||||||
|
} else if (s.widthFromWrapper) {
|
||||||
|
newWidth = s.stickyWrapper.width();
|
||||||
|
}
|
||||||
|
if (newWidth == null) {
|
||||||
|
newWidth = s.stickyElement.width();
|
||||||
|
}
|
||||||
|
s.stickyElement
|
||||||
|
.css('width', newWidth)
|
||||||
|
.css('position', 'fixed')
|
||||||
|
.css('top', newTop)
|
||||||
|
.css('z-index', s.zIndex);
|
||||||
|
|
||||||
|
s.stickyElement.parent().addClass(s.className);
|
||||||
|
|
||||||
|
if (s.currentTop === null) {
|
||||||
|
s.stickyElement.trigger('sticky-start', [s]);
|
||||||
|
} else {
|
||||||
|
// sticky is started but it have to be repositioned
|
||||||
|
s.stickyElement.trigger('sticky-update', [s]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s.currentTop === s.topSpacing && s.currentTop > newTop || s.currentTop === null && newTop < s.topSpacing) {
|
||||||
|
// just reached bottom || just started to stick but bottom is already reached
|
||||||
|
s.stickyElement.trigger('sticky-bottom-reached', [s]);
|
||||||
|
} else if(s.currentTop !== null && newTop === s.topSpacing && s.currentTop < newTop) {
|
||||||
|
// sticky is started && sticked at topSpacing && overflowing from top just finished
|
||||||
|
s.stickyElement.trigger('sticky-bottom-unreached', [s]);
|
||||||
|
}
|
||||||
|
|
||||||
|
s.currentTop = newTop;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if sticky has reached end of container and stop sticking
|
||||||
|
var stickyWrapperContainer = s.stickyWrapper.parent();
|
||||||
|
var unstick = (s.stickyElement.offset().top + s.stickyElement.outerHeight() >= stickyWrapperContainer.offset().top + stickyWrapperContainer.outerHeight()) && (s.stickyElement.offset().top <= s.topSpacing);
|
||||||
|
|
||||||
|
if( unstick ) {
|
||||||
|
s.stickyElement
|
||||||
|
.css('position', 'absolute')
|
||||||
|
.css('top', '')
|
||||||
|
.css('bottom', 0)
|
||||||
|
.css('z-index', '');
|
||||||
|
} else {
|
||||||
|
s.stickyElement
|
||||||
|
.css('position', 'fixed')
|
||||||
|
.css('top', newTop)
|
||||||
|
.css('bottom', '')
|
||||||
|
.css('z-index', s.zIndex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
resizer = function() {
|
||||||
|
windowHeight = $window.height();
|
||||||
|
|
||||||
|
for (var i = 0, l = sticked.length; i < l; i++) {
|
||||||
|
var s = sticked[i];
|
||||||
|
var newWidth = null;
|
||||||
|
if (s.getWidthFrom) {
|
||||||
|
if (s.responsiveWidth) {
|
||||||
|
newWidth = $(s.getWidthFrom).width();
|
||||||
|
}
|
||||||
|
} else if(s.widthFromWrapper) {
|
||||||
|
newWidth = s.stickyWrapper.width();
|
||||||
|
}
|
||||||
|
if (newWidth != null) {
|
||||||
|
s.stickyElement.css('width', newWidth);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods = {
|
||||||
|
init: function(options) {
|
||||||
|
var o = $.extend({}, defaults, options);
|
||||||
|
return this.each(function() {
|
||||||
|
var stickyElement = $(this);
|
||||||
|
|
||||||
|
var stickyId = stickyElement.attr('id');
|
||||||
|
var wrapperId = stickyId ? stickyId + '-' + defaults.wrapperClassName : defaults.wrapperClassName;
|
||||||
|
var wrapper = $('<div></div>')
|
||||||
|
.attr('id', wrapperId)
|
||||||
|
.addClass(o.wrapperClassName);
|
||||||
|
|
||||||
|
stickyElement.wrapAll(wrapper);
|
||||||
|
|
||||||
|
var stickyWrapper = stickyElement.parent();
|
||||||
|
|
||||||
|
if (o.center) {
|
||||||
|
stickyWrapper.css({width:stickyElement.outerWidth(),marginLeft:"auto",marginRight:"auto"});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stickyElement.css("float") === "right") {
|
||||||
|
stickyElement.css({"float":"none"}).parent().css({"float":"right"});
|
||||||
|
}
|
||||||
|
|
||||||
|
o.stickyElement = stickyElement;
|
||||||
|
o.stickyWrapper = stickyWrapper;
|
||||||
|
o.currentTop = null;
|
||||||
|
|
||||||
|
sticked.push(o);
|
||||||
|
|
||||||
|
methods.setWrapperHeight(this);
|
||||||
|
methods.setupChangeListeners(this);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
setWrapperHeight: function(stickyElement) {
|
||||||
|
var element = $(stickyElement);
|
||||||
|
var stickyWrapper = element.parent();
|
||||||
|
if (stickyWrapper) {
|
||||||
|
stickyWrapper.css('height', element.outerHeight());
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
setupChangeListeners: function(stickyElement) {
|
||||||
|
if (window.MutationObserver) {
|
||||||
|
var mutationObserver = new window.MutationObserver(function(mutations) {
|
||||||
|
if (mutations[0].addedNodes.length || mutations[0].removedNodes.length) {
|
||||||
|
methods.setWrapperHeight(stickyElement);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
mutationObserver.observe(stickyElement, {subtree: true, childList: true});
|
||||||
|
} else {
|
||||||
|
stickyElement.addEventListener('DOMNodeInserted', function() {
|
||||||
|
methods.setWrapperHeight(stickyElement);
|
||||||
|
}, false);
|
||||||
|
stickyElement.addEventListener('DOMNodeRemoved', function() {
|
||||||
|
methods.setWrapperHeight(stickyElement);
|
||||||
|
}, false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
update: scroller,
|
||||||
|
unstick: function(options) {
|
||||||
|
return this.each(function() {
|
||||||
|
var that = this;
|
||||||
|
var unstickyElement = $(that);
|
||||||
|
|
||||||
|
var removeIdx = -1;
|
||||||
|
var i = sticked.length;
|
||||||
|
while (i-- > 0) {
|
||||||
|
if (sticked[i].stickyElement.get(0) === that) {
|
||||||
|
splice.call(sticked,i,1);
|
||||||
|
removeIdx = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(removeIdx !== -1) {
|
||||||
|
unstickyElement.unwrap();
|
||||||
|
unstickyElement
|
||||||
|
.css({
|
||||||
|
'width': '',
|
||||||
|
'position': '',
|
||||||
|
'top': '',
|
||||||
|
'float': '',
|
||||||
|
'z-index': ''
|
||||||
|
})
|
||||||
|
;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// should be more efficient than using $window.scroll(scroller) and $window.resize(resizer):
|
||||||
|
if (window.addEventListener) {
|
||||||
|
window.addEventListener('scroll', scroller, false);
|
||||||
|
window.addEventListener('resize', resizer, false);
|
||||||
|
} else if (window.attachEvent) {
|
||||||
|
window.attachEvent('onscroll', scroller);
|
||||||
|
window.attachEvent('onresize', resizer);
|
||||||
|
}
|
||||||
|
|
||||||
|
$.fn.sticky = function(method) {
|
||||||
|
if (methods[method]) {
|
||||||
|
return methods[method].apply(this, slice.call(arguments, 1));
|
||||||
|
} else if (typeof method === 'object' || !method ) {
|
||||||
|
return methods.init.apply( this, arguments );
|
||||||
|
} else {
|
||||||
|
$.error('Method ' + method + ' does not exist on jQuery.sticky');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.fn.unstick = function(method) {
|
||||||
|
if (methods[method]) {
|
||||||
|
return methods[method].apply(this, slice.call(arguments, 1));
|
||||||
|
} else if (typeof method === 'object' || !method ) {
|
||||||
|
return methods.unstick.apply( this, arguments );
|
||||||
|
} else {
|
||||||
|
$.error('Method ' + method + ' does not exist on jQuery.sticky');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
$(function() {
|
||||||
|
setTimeout(scroller, 0);
|
||||||
|
});
|
||||||
|
}));
|
@ -0,0 +1 @@
|
|||||||
|
(function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],function($){return factory($)})}else if(typeof module==="object"&&typeof module.exports==="object"){exports=factory(require("jquery"))}else{factory(jQuery)}})(function($){$.easing.jswing=$.easing.swing;var pow=Math.pow,sqrt=Math.sqrt,sin=Math.sin,cos=Math.cos,PI=Math.PI,c1=1.70158,c2=c1*1.525,c3=c1+1,c4=2*PI/3,c5=2*PI/4.5;function bounceOut(x){var n1=7.5625,d1=2.75;if(x<1/d1){return n1*x*x}else if(x<2/d1){return n1*(x-=1.5/d1)*x+.75}else if(x<2.5/d1){return n1*(x-=2.25/d1)*x+.9375}else{return n1*(x-=2.625/d1)*x+.984375}}$.extend($.easing,{def:"easeOutQuad",swing:function(x){return $.easing[$.easing.def](x)},easeInQuad:function(x){return x*x},easeOutQuad:function(x){return 1-(1-x)*(1-x)},easeInOutQuad:function(x){return x<.5?2*x*x:1-pow(-2*x+2,2)/2},easeInCubic:function(x){return x*x*x},easeOutCubic:function(x){return 1-pow(1-x,3)},easeInOutCubic:function(x){return x<.5?4*x*x*x:1-pow(-2*x+2,3)/2},easeInQuart:function(x){return x*x*x*x},easeOutQuart:function(x){return 1-pow(1-x,4)},easeInOutQuart:function(x){return x<.5?8*x*x*x*x:1-pow(-2*x+2,4)/2},easeInQuint:function(x){return x*x*x*x*x},easeOutQuint:function(x){return 1-pow(1-x,5)},easeInOutQuint:function(x){return x<.5?16*x*x*x*x*x:1-pow(-2*x+2,5)/2},easeInSine:function(x){return 1-cos(x*PI/2)},easeOutSine:function(x){return sin(x*PI/2)},easeInOutSine:function(x){return-(cos(PI*x)-1)/2},easeInExpo:function(x){return x===0?0:pow(2,10*x-10)},easeOutExpo:function(x){return x===1?1:1-pow(2,-10*x)},easeInOutExpo:function(x){return x===0?0:x===1?1:x<.5?pow(2,20*x-10)/2:(2-pow(2,-20*x+10))/2},easeInCirc:function(x){return 1-sqrt(1-pow(x,2))},easeOutCirc:function(x){return sqrt(1-pow(x-1,2))},easeInOutCirc:function(x){return x<.5?(1-sqrt(1-pow(2*x,2)))/2:(sqrt(1-pow(-2*x+2,2))+1)/2},easeInElastic:function(x){return x===0?0:x===1?1:-pow(2,10*x-10)*sin((x*10-10.75)*c4)},easeOutElastic:function(x){return x===0?0:x===1?1:pow(2,-10*x)*sin((x*10-.75)*c4)+1},easeInOutElastic:function(x){return x===0?0:x===1?1:x<.5?-(pow(2,20*x-10)*sin((20*x-11.125)*c5))/2:pow(2,-20*x+10)*sin((20*x-11.125)*c5)/2+1},easeInBack:function(x){return c3*x*x*x-c1*x*x},easeOutBack:function(x){return 1+c3*pow(x-1,3)+c1*pow(x-1,2)},easeInOutBack:function(x){return x<.5?pow(2*x,2)*((c2+1)*2*x-c2)/2:(pow(2*x-2,2)*((c2+1)*(x*2-2)+c2)+2)/2},easeInBounce:function(x){return 1-bounceOut(1-x)},easeOutBounce:bounceOut,easeInOutBounce:function(x){return x<.5?(1-bounceOut(1-2*x))/2:(1+bounceOut(2*x-1))/2}})});
|
@ -0,0 +1,763 @@
|
|||||||
|
/*
|
||||||
|
* VenoBox - jQuery Plugin
|
||||||
|
* version: 1.8.6
|
||||||
|
* @requires jQuery >= 1.7.0
|
||||||
|
*
|
||||||
|
* Examples at http://veno.es/venobox/
|
||||||
|
* License: MIT License
|
||||||
|
* License URI: https://github.com/nicolafranchini/VenoBox/blob/master/LICENSE
|
||||||
|
* Copyright 2013-2019 Nicola Franchini - @nicolafranchini
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* global jQuery */
|
||||||
|
|
||||||
|
(function($){
|
||||||
|
"use strict";
|
||||||
|
var autoplay, bgcolor, blocknum, blocktitle, border, core, container, content, dest, extraCss,
|
||||||
|
framewidth, frameheight, gallItems, infinigall, items, keyNavigationDisabled, margine, numeratio,
|
||||||
|
overlayColor, overlay, title, thisgall, thenext, theprev, nextok, prevok, preloader, $preloader, navigation,
|
||||||
|
obj, gallIndex, startouch, vbheader, images, startY, startX, endY, endX, diff, diffX, diffY, threshold;
|
||||||
|
|
||||||
|
$.fn.extend({
|
||||||
|
//plugin name - venobox
|
||||||
|
venobox: function(options) {
|
||||||
|
var plugin = this;
|
||||||
|
// default options
|
||||||
|
var defaults = {
|
||||||
|
arrowsColor : '#B6B6B6',
|
||||||
|
autoplay : false, // same as data-autoplay - thanks @codibit
|
||||||
|
bgcolor: '#fff',
|
||||||
|
border: '0',
|
||||||
|
closeBackground : '#161617',
|
||||||
|
closeColor : "#d2d2d2",
|
||||||
|
framewidth: '',
|
||||||
|
frameheight: '',
|
||||||
|
gallItems: false,
|
||||||
|
infinigall: false,
|
||||||
|
htmlClose : '×',
|
||||||
|
htmlNext : '<span>Next</span>',
|
||||||
|
htmlPrev : '<span>Prev</span>',
|
||||||
|
numeratio: false,
|
||||||
|
numerationBackground : '#161617',
|
||||||
|
numerationColor : '#d2d2d2',
|
||||||
|
numerationPosition : 'top', // 'top' || 'bottom'
|
||||||
|
overlayClose: true, // disable overlay click-close - thanx @martybalandis
|
||||||
|
overlayColor : 'rgba(23,23,23,0.85)',
|
||||||
|
spinner : 'double-bounce', // available: 'rotating-plane' | 'double-bounce' | 'wave' | 'wandering-cubes' | 'spinner-pulse' | 'chasing-dots' | 'three-bounce' | 'circle' | 'cube-grid' | 'fading-circle' | 'folding-cube'
|
||||||
|
spinColor : '#d2d2d2',
|
||||||
|
titleattr: 'title', // specific attribute to get a title (e.g. [data-title]) - thanx @mendezcode
|
||||||
|
titleBackground: '#161617',
|
||||||
|
titleColor: '#d2d2d2',
|
||||||
|
titlePosition : 'top', // 'top' || 'bottom'
|
||||||
|
cb_pre_open: function(){ return true; }, // Callbacks - thanx @garyee
|
||||||
|
cb_post_open: function(){},
|
||||||
|
cb_pre_close: function(){ return true; },
|
||||||
|
cb_post_close: function(){},
|
||||||
|
cb_post_resize: function(){},
|
||||||
|
cb_after_nav: function(){},
|
||||||
|
cb_content_loaded: function(){},
|
||||||
|
cb_init: function(){}
|
||||||
|
};
|
||||||
|
|
||||||
|
var option = $.extend(defaults, options);
|
||||||
|
|
||||||
|
// callback plugin initialization
|
||||||
|
option.cb_init(plugin);
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
|
||||||
|
obj = $(this);
|
||||||
|
|
||||||
|
// Prevent double initialization - thanx @matthistuff
|
||||||
|
if (obj.data('venobox')) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// method to be used outside the plugin
|
||||||
|
plugin.VBclose = function() {
|
||||||
|
closeVbox();
|
||||||
|
};
|
||||||
|
obj.addClass('vbox-item');
|
||||||
|
obj.data('framewidth', option.framewidth);
|
||||||
|
obj.data('frameheight', option.frameheight);
|
||||||
|
obj.data('border', option.border);
|
||||||
|
obj.data('bgcolor', option.bgcolor);
|
||||||
|
obj.data('numeratio', option.numeratio);
|
||||||
|
obj.data('gallItems', option.gallItems);
|
||||||
|
obj.data('infinigall', option.infinigall);
|
||||||
|
obj.data('overlaycolor', option.overlayColor);
|
||||||
|
obj.data('titleattr', option.titleattr);
|
||||||
|
|
||||||
|
obj.data('venobox', true);
|
||||||
|
|
||||||
|
obj.on('click', function(e){
|
||||||
|
|
||||||
|
e.preventDefault();
|
||||||
|
obj = $(this);
|
||||||
|
|
||||||
|
// callback plugin initialization
|
||||||
|
var cb_pre_open = option.cb_pre_open(obj);
|
||||||
|
|
||||||
|
if (cb_pre_open === false) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// methods to be used outside the plugin
|
||||||
|
plugin.VBnext = function() {
|
||||||
|
navigateGall(thenext);
|
||||||
|
};
|
||||||
|
plugin.VBprev = function() {
|
||||||
|
navigateGall(theprev);
|
||||||
|
};
|
||||||
|
|
||||||
|
overlayColor = obj.data('overlay') || obj.data('overlaycolor');
|
||||||
|
|
||||||
|
framewidth = obj.data('framewidth');
|
||||||
|
frameheight = obj.data('frameheight');
|
||||||
|
// set data-autoplay="true" for vimeo and youtube videos - thanx @zehfernandes
|
||||||
|
autoplay = obj.data('autoplay') || option.autoplay;
|
||||||
|
border = obj.data('border');
|
||||||
|
bgcolor = obj.data('bgcolor');
|
||||||
|
nextok = false;
|
||||||
|
prevok = false;
|
||||||
|
keyNavigationDisabled = false;
|
||||||
|
|
||||||
|
// set a different url to be loaded using data-href="" - thanx @pixeline
|
||||||
|
dest = obj.data('href') || obj.attr('href');
|
||||||
|
extraCss = obj.data( 'css' ) || '';
|
||||||
|
title = obj.attr(obj.data('titleattr')) || '';
|
||||||
|
|
||||||
|
preloader = '<div class="vbox-preloader">';
|
||||||
|
|
||||||
|
switch (option.spinner) {
|
||||||
|
|
||||||
|
case 'rotating-plane':
|
||||||
|
preloader += '<div class="sk-rotating-plane"></div>';
|
||||||
|
break;
|
||||||
|
case 'double-bounce':
|
||||||
|
preloader += '<div class="sk-double-bounce">'+
|
||||||
|
'<div class="sk-child sk-double-bounce1"></div>'+
|
||||||
|
'<div class="sk-child sk-double-bounce2"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'wave':
|
||||||
|
preloader += '<div class="sk-wave">'+
|
||||||
|
'<div class="sk-rect sk-rect1"></div>'+
|
||||||
|
'<div class="sk-rect sk-rect2"></div>'+
|
||||||
|
'<div class="sk-rect sk-rect3"></div>'+
|
||||||
|
'<div class="sk-rect sk-rect4"></div>'+
|
||||||
|
'<div class="sk-rect sk-rect5"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'wandering-cubes':
|
||||||
|
preloader += '<div class="sk-wandering-cubes">'+
|
||||||
|
'<div class="sk-cube sk-cube1"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube2"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'spinner-pulse':
|
||||||
|
preloader += '<div class="sk-spinner sk-spinner-pulse"></div>';
|
||||||
|
break;
|
||||||
|
case 'chasing-dots':
|
||||||
|
preloader += '<div class="sk-chasing-dots">'+
|
||||||
|
'<div class="sk-child sk-dot1"></div>'+
|
||||||
|
'<div class="sk-child sk-dot2"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'three-bounce':
|
||||||
|
preloader += '<div class="sk-three-bounce">'+
|
||||||
|
'<div class="sk-child sk-bounce1"></div>'+
|
||||||
|
'<div class="sk-child sk-bounce2"></div>'+
|
||||||
|
'<div class="sk-child sk-bounce3"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'circle':
|
||||||
|
preloader += '<div class="sk-circle">'+
|
||||||
|
'<div class="sk-circle1 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle2 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle3 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle4 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle5 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle6 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle7 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle8 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle9 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle10 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle11 sk-child"></div>'+
|
||||||
|
'<div class="sk-circle12 sk-child"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'cube-grid':
|
||||||
|
preloader += '<div class="sk-cube-grid">'+
|
||||||
|
'<div class="sk-cube sk-cube1"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube2"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube3"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube4"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube5"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube6"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube7"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube8"></div>'+
|
||||||
|
'<div class="sk-cube sk-cube9"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'fading-circle':
|
||||||
|
preloader += '<div class="sk-fading-circle">'+
|
||||||
|
'<div class="sk-circle1 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle2 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle3 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle4 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle5 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle6 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle7 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle8 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle9 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle10 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle11 sk-circle"></div>'+
|
||||||
|
'<div class="sk-circle12 sk-circle"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
case 'folding-cube':
|
||||||
|
preloader += '<div class="sk-folding-cube">'+
|
||||||
|
'<div class="sk-cube1 sk-cube"></div>'+
|
||||||
|
'<div class="sk-cube2 sk-cube"></div>'+
|
||||||
|
'<div class="sk-cube4 sk-cube"></div>'+
|
||||||
|
'<div class="sk-cube3 sk-cube"></div>'+
|
||||||
|
'</div>';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
preloader += '</div>';
|
||||||
|
|
||||||
|
navigation = '<a class="vbox-next">' + option.htmlNext + '</a><a class="vbox-prev">' + option.htmlPrev + '</a>';
|
||||||
|
vbheader = '<div class="vbox-title"></div><div class="vbox-num">0/0</div><div class="vbox-close">' + option.htmlClose + '</div>';
|
||||||
|
|
||||||
|
core = '<div class="vbox-overlay ' + extraCss + '" style="background:'+ overlayColor +'">'+
|
||||||
|
preloader + '<div class="vbox-container"><div class="vbox-content"></div></div>' + vbheader + navigation + '</div>';
|
||||||
|
|
||||||
|
$('body').append(core).addClass('vbox-open');
|
||||||
|
|
||||||
|
$('.vbox-preloader div:not(.sk-circle) .sk-child, .vbox-preloader .sk-rotating-plane, .vbox-preloader .sk-rect, .vbox-preloader div:not(.sk-folding-cube) .sk-cube, .vbox-preloader .sk-spinner-pulse').css('background-color', option.spinColor);
|
||||||
|
|
||||||
|
overlay = $('.vbox-overlay');
|
||||||
|
container = $('.vbox-container');
|
||||||
|
content = $('.vbox-content');
|
||||||
|
blocknum = $('.vbox-num');
|
||||||
|
blocktitle = $('.vbox-title');
|
||||||
|
$preloader = $('.vbox-preloader');
|
||||||
|
|
||||||
|
$preloader.show();
|
||||||
|
|
||||||
|
blocktitle.css(option.titlePosition, '-1px');
|
||||||
|
blocktitle.css({
|
||||||
|
'color' : option.titleColor,
|
||||||
|
'background-color' : option.titleBackground
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.vbox-close').css({
|
||||||
|
'color' : option.closeColor,
|
||||||
|
'background-color' : option.closeBackground
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.vbox-num').css(option.numerationPosition, '-1px');
|
||||||
|
$('.vbox-num').css({
|
||||||
|
'color' : option.numerationColor,
|
||||||
|
'background-color' : option.numerationBackground
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.vbox-next span, .vbox-prev span').css({
|
||||||
|
'border-top-color' : option.arrowsColor,
|
||||||
|
'border-right-color' : option.arrowsColor
|
||||||
|
});
|
||||||
|
|
||||||
|
content.html('');
|
||||||
|
content.css('opacity', '0');
|
||||||
|
overlay.css('opacity', '0');
|
||||||
|
|
||||||
|
checknav();
|
||||||
|
|
||||||
|
// fade in overlay
|
||||||
|
overlay.animate({opacity:1}, 250, function(){
|
||||||
|
|
||||||
|
if (obj.data('vbtype') == 'iframe') {
|
||||||
|
loadIframe();
|
||||||
|
} else if (obj.data('vbtype') == 'inline') {
|
||||||
|
loadInline();
|
||||||
|
} else if (obj.data('vbtype') == 'ajax') {
|
||||||
|
loadAjax();
|
||||||
|
} else if (obj.data('vbtype') == 'video') {
|
||||||
|
loadVid(autoplay);
|
||||||
|
} else {
|
||||||
|
content.html('<img src="'+dest+'">');
|
||||||
|
preloadFirst();
|
||||||
|
}
|
||||||
|
option.cb_post_open(obj, gallIndex, thenext, theprev);
|
||||||
|
});
|
||||||
|
|
||||||
|
/* -------- KEYBOARD ACTIONS -------- */
|
||||||
|
$('body').keydown(keyboardHandler);
|
||||||
|
|
||||||
|
/* -------- PREVGALL -------- */
|
||||||
|
$('.vbox-prev').on('click', function(){
|
||||||
|
navigateGall(theprev);
|
||||||
|
});
|
||||||
|
/* -------- NEXTGALL -------- */
|
||||||
|
$('.vbox-next').on('click', function(){
|
||||||
|
navigateGall(thenext);
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
|
||||||
|
}); // click
|
||||||
|
|
||||||
|
/* -------- CHECK NEXT / PREV -------- */
|
||||||
|
function checknav(){
|
||||||
|
|
||||||
|
thisgall = obj.data('gall');
|
||||||
|
numeratio = obj.data('numeratio');
|
||||||
|
gallItems = obj.data('gallItems');
|
||||||
|
infinigall = obj.data('infinigall');
|
||||||
|
|
||||||
|
if (gallItems) {
|
||||||
|
items = gallItems;
|
||||||
|
} else {
|
||||||
|
items = $('.vbox-item[data-gall="' + thisgall + '"]');
|
||||||
|
}
|
||||||
|
|
||||||
|
thenext = items.eq( items.index(obj) + 1 );
|
||||||
|
theprev = items.eq( items.index(obj) - 1 );
|
||||||
|
|
||||||
|
if (!thenext.length && infinigall === true) {
|
||||||
|
thenext = items.eq(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// update gall numeration
|
||||||
|
if (items.length >= 1) {
|
||||||
|
gallIndex = items.index(obj)+1;
|
||||||
|
blocknum.html(gallIndex + ' / ' + items.length);
|
||||||
|
} else {
|
||||||
|
gallIndex = 1;
|
||||||
|
}
|
||||||
|
if (numeratio === true) {
|
||||||
|
blocknum.show();
|
||||||
|
} else {
|
||||||
|
blocknum.hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
// update title
|
||||||
|
if (title !== '') {
|
||||||
|
blocktitle.show();
|
||||||
|
} else {
|
||||||
|
blocktitle.hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
// update navigation arrows
|
||||||
|
if (!thenext.length && infinigall !== true) {
|
||||||
|
$('.vbox-next').css('display', 'none');
|
||||||
|
nextok = false;
|
||||||
|
} else {
|
||||||
|
$('.vbox-next').css('display', 'block');
|
||||||
|
nextok = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (items.index(obj) > 0 || infinigall === true) {
|
||||||
|
$('.vbox-prev').css('display', 'block');
|
||||||
|
prevok = true;
|
||||||
|
} else {
|
||||||
|
$('.vbox-prev').css('display', 'none');
|
||||||
|
prevok = false;
|
||||||
|
}
|
||||||
|
// activate swipe
|
||||||
|
if (prevok === true || nextok === true) {
|
||||||
|
content.on(TouchMouseEvent.DOWN, onDownEvent);
|
||||||
|
content.on(TouchMouseEvent.MOVE, onMoveEvent);
|
||||||
|
content.on(TouchMouseEvent.UP, onUpEvent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- gallery navigation -------- */
|
||||||
|
function navigateGall(destination) {
|
||||||
|
|
||||||
|
if (destination.length < 1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (keyNavigationDisabled) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
keyNavigationDisabled = true;
|
||||||
|
|
||||||
|
overlayColor = destination.data('overlay') || destination.data('overlaycolor');
|
||||||
|
|
||||||
|
framewidth = destination.data('framewidth');
|
||||||
|
frameheight = destination.data('frameheight');
|
||||||
|
border = destination.data('border');
|
||||||
|
bgcolor = destination.data('bgcolor');
|
||||||
|
dest = destination.data('href') || destination.attr('href');
|
||||||
|
|
||||||
|
autoplay = destination.data('autoplay');
|
||||||
|
|
||||||
|
title = (destination.data('titleattr') && destination.attr(destination.data('titleattr'))) || '';
|
||||||
|
|
||||||
|
// swipe out item
|
||||||
|
if (destination === theprev) {
|
||||||
|
content.addClass('vbox-animated').addClass('swipe-right');
|
||||||
|
}
|
||||||
|
if (destination === thenext) {
|
||||||
|
content.addClass('vbox-animated').addClass('swipe-left');
|
||||||
|
}
|
||||||
|
|
||||||
|
$preloader.show();
|
||||||
|
|
||||||
|
content.animate({
|
||||||
|
opacity : 0,
|
||||||
|
}, 500, function(){
|
||||||
|
|
||||||
|
overlay.css('background',overlayColor);
|
||||||
|
|
||||||
|
content
|
||||||
|
.removeClass('vbox-animated')
|
||||||
|
.removeClass('swipe-left')
|
||||||
|
.removeClass('swipe-right')
|
||||||
|
.css({'margin-left': 0,'margin-right': 0});
|
||||||
|
|
||||||
|
if (destination.data('vbtype') == 'iframe') {
|
||||||
|
loadIframe();
|
||||||
|
} else if (destination.data('vbtype') == 'inline') {
|
||||||
|
loadInline();
|
||||||
|
} else if (destination.data('vbtype') == 'ajax') {
|
||||||
|
loadAjax();
|
||||||
|
} else if (destination.data('vbtype') == 'video') {
|
||||||
|
loadVid(autoplay);
|
||||||
|
} else {
|
||||||
|
content.html('<img src="'+dest+'">');
|
||||||
|
preloadFirst();
|
||||||
|
}
|
||||||
|
obj = destination;
|
||||||
|
checknav();
|
||||||
|
keyNavigationDisabled = false;
|
||||||
|
option.cb_after_nav(obj, gallIndex, thenext, theprev);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- KEYBOARD HANDLER -------- */
|
||||||
|
function keyboardHandler(e) {
|
||||||
|
if (e.keyCode === 27) { // esc
|
||||||
|
closeVbox();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.keyCode == 37 && prevok === true) { // left
|
||||||
|
navigateGall(theprev);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.keyCode == 39 && nextok === true) { // right
|
||||||
|
navigateGall(thenext);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- CLOSE VBOX -------- */
|
||||||
|
function closeVbox(){
|
||||||
|
|
||||||
|
var cb_pre_close = option.cb_pre_close(obj, gallIndex, thenext, theprev);
|
||||||
|
|
||||||
|
if (cb_pre_close === false) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$('body').off('keydown', keyboardHandler).removeClass('vbox-open');
|
||||||
|
|
||||||
|
obj.focus();
|
||||||
|
|
||||||
|
overlay.animate({opacity:0}, 500, function(){
|
||||||
|
overlay.remove();
|
||||||
|
keyNavigationDisabled = false;
|
||||||
|
option.cb_post_close();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- CLOSE CLICK -------- */
|
||||||
|
var closeclickclass = '.vbox-overlay';
|
||||||
|
if(!option.overlayClose){
|
||||||
|
closeclickclass = '.vbox-close'; // close only on X
|
||||||
|
}
|
||||||
|
|
||||||
|
$('body').on('click touchstart', closeclickclass, function(e){
|
||||||
|
if ($(e.target).is('.vbox-overlay') ||
|
||||||
|
$(e.target).is('.vbox-content') ||
|
||||||
|
$(e.target).is('.vbox-close') ||
|
||||||
|
$(e.target).is('.vbox-preloader') ||
|
||||||
|
$(e.target).is('.vbox-container')
|
||||||
|
) {
|
||||||
|
closeVbox();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
startX = 0;
|
||||||
|
endX = 0;
|
||||||
|
|
||||||
|
diff = 0;
|
||||||
|
threshold = 50;
|
||||||
|
startouch = false;
|
||||||
|
|
||||||
|
function onDownEvent(e){
|
||||||
|
content.addClass('vbox-animated');
|
||||||
|
startY = endY = e.pageY;
|
||||||
|
startX = endX = e.pageX;
|
||||||
|
startouch = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onMoveEvent(e){
|
||||||
|
if (startouch === true) {
|
||||||
|
endX = e.pageX;
|
||||||
|
endY = e.pageY;
|
||||||
|
|
||||||
|
diffX = endX - startX;
|
||||||
|
diffY = endY - startY;
|
||||||
|
|
||||||
|
var absdiffX = Math.abs(diffX);
|
||||||
|
var absdiffY = Math.abs(diffY);
|
||||||
|
|
||||||
|
if ((absdiffX > absdiffY) && (absdiffX <= 100)) {
|
||||||
|
e.preventDefault();
|
||||||
|
content.css('margin-left', diffX);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function onUpEvent(e){
|
||||||
|
if (startouch === true) {
|
||||||
|
startouch = false;
|
||||||
|
var subject = obj;
|
||||||
|
var change = false;
|
||||||
|
diff = endX - startX;
|
||||||
|
|
||||||
|
if (diff < 0 && nextok === true) {
|
||||||
|
subject = thenext;
|
||||||
|
change = true;
|
||||||
|
}
|
||||||
|
if (diff > 0 && prevok === true) {
|
||||||
|
subject = theprev;
|
||||||
|
change = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Math.abs(diff) >= threshold && change === true) {
|
||||||
|
navigateGall(subject);
|
||||||
|
} else {
|
||||||
|
content.css({'margin-left': 0,'margin-right': 0});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* == GLOBAL DECLERATIONS == */
|
||||||
|
var TouchMouseEvent = {
|
||||||
|
DOWN: "touchmousedown",
|
||||||
|
UP: "touchmouseup",
|
||||||
|
MOVE: "touchmousemove"
|
||||||
|
};
|
||||||
|
|
||||||
|
/* == EVENT LISTENERS == */
|
||||||
|
var onMouseEvent = function(event) {
|
||||||
|
var type;
|
||||||
|
switch (event.type) {
|
||||||
|
case "mousedown": type = TouchMouseEvent.DOWN; break;
|
||||||
|
case "mouseup": type = TouchMouseEvent.UP; break;
|
||||||
|
case "mouseout": type = TouchMouseEvent.UP; break;
|
||||||
|
case "mousemove": type = TouchMouseEvent.MOVE; break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var touchMouseEvent = normalizeEvent(type, event, event.pageX, event.pageY);
|
||||||
|
$(event.target).trigger(touchMouseEvent);
|
||||||
|
};
|
||||||
|
|
||||||
|
var onTouchEvent = function(event) {
|
||||||
|
var type;
|
||||||
|
switch (event.type) {
|
||||||
|
case "touchstart": type = TouchMouseEvent.DOWN; break;
|
||||||
|
case "touchend": type = TouchMouseEvent.UP; break;
|
||||||
|
case "touchmove": type = TouchMouseEvent.MOVE; break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var touch = event.originalEvent.touches[0];
|
||||||
|
var touchMouseEvent;
|
||||||
|
|
||||||
|
if (type == TouchMouseEvent.UP) {
|
||||||
|
touchMouseEvent = normalizeEvent(type, event, null, null);
|
||||||
|
} else {
|
||||||
|
touchMouseEvent = normalizeEvent(type, event, touch.pageX, touch.pageY);
|
||||||
|
}
|
||||||
|
$(event.target).trigger(touchMouseEvent);
|
||||||
|
};
|
||||||
|
|
||||||
|
/* == NORMALIZE == */
|
||||||
|
var normalizeEvent = function(type, original, x, y) {
|
||||||
|
return $.Event(type, {
|
||||||
|
pageX: x,
|
||||||
|
pageY: y,
|
||||||
|
originalEvent: original
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/* == LISTEN TO ORIGINAL EVENT == */
|
||||||
|
if ("ontouchstart" in window) {
|
||||||
|
$(document).on("touchstart", onTouchEvent);
|
||||||
|
$(document).on("touchmove", onTouchEvent);
|
||||||
|
$(document).on("touchend", onTouchEvent);
|
||||||
|
} else {
|
||||||
|
$(document).on("mousedown", onMouseEvent);
|
||||||
|
$(document).on("mouseup", onMouseEvent);
|
||||||
|
$(document).on("mouseout", onMouseEvent);
|
||||||
|
$(document).on("mousemove", onMouseEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- LOAD AJAX -------- */
|
||||||
|
function loadAjax(){
|
||||||
|
$.ajax({
|
||||||
|
url: dest,
|
||||||
|
cache: false
|
||||||
|
}).done(function( msg ) {
|
||||||
|
content.html('<div class="vbox-inline">'+ msg +'</div>');
|
||||||
|
preloadFirst();
|
||||||
|
|
||||||
|
}).fail(function() {
|
||||||
|
content.html('<div class="vbox-inline"><p>Error retrieving contents, please retry</div>');
|
||||||
|
updateoverlay();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- LOAD IFRAME -------- */
|
||||||
|
function loadIframe(){
|
||||||
|
content.html('<iframe class="venoframe" src="'+dest+'"></iframe>');
|
||||||
|
// $('.venoframe').load(function(){ // valid only for iFrames in same domain
|
||||||
|
updateoverlay();
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- LOAD VIDEOs -------- */
|
||||||
|
function loadVid(autoplay){
|
||||||
|
|
||||||
|
var player;
|
||||||
|
var videoObj = parseVideo(dest);
|
||||||
|
|
||||||
|
// set rel=0 to hide related videos at the end of YT + optional autoplay
|
||||||
|
var stringAutoplay = autoplay ? "?rel=0&autoplay=1" : "?rel=0";
|
||||||
|
var queryvars = stringAutoplay + getUrlParameter(dest);
|
||||||
|
|
||||||
|
if (videoObj.type == 'vimeo') {
|
||||||
|
player = 'https://player.vimeo.com/video/';
|
||||||
|
} else if (videoObj.type == 'youtube') {
|
||||||
|
player = 'https://www.youtube.com/embed/';
|
||||||
|
}
|
||||||
|
content.html('<iframe class="venoframe vbvid" webkitallowfullscreen mozallowfullscreen allowfullscreen allow="autoplay" frameborder="0" src="'+player+videoObj.id+queryvars+'"></iframe>');
|
||||||
|
updateoverlay();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse Youtube or Vimeo videos and get host & ID
|
||||||
|
*/
|
||||||
|
function parseVideo (url) {
|
||||||
|
url.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/);
|
||||||
|
var type;
|
||||||
|
if (RegExp.$3.indexOf('youtu') > -1) {
|
||||||
|
type = 'youtube';
|
||||||
|
} else if (RegExp.$3.indexOf('vimeo') > -1) {
|
||||||
|
type = 'vimeo';
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
type: type,
|
||||||
|
id: RegExp.$6
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get additional video url parameters
|
||||||
|
*/
|
||||||
|
function getUrlParameter(name) {
|
||||||
|
var result = '';
|
||||||
|
var sPageURL = decodeURIComponent(name);
|
||||||
|
var firstsplit = sPageURL.split('?');
|
||||||
|
|
||||||
|
if (firstsplit[1] !== undefined) {
|
||||||
|
var sURLVariables = firstsplit[1].split('&');
|
||||||
|
var sParameterName;
|
||||||
|
var i;
|
||||||
|
for (i = 0; i < sURLVariables.length; i++) {
|
||||||
|
sParameterName = sURLVariables[i].split('=');
|
||||||
|
result = result + '&'+ sParameterName[0]+'='+ sParameterName[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return encodeURI(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- LOAD INLINE -------- */
|
||||||
|
function loadInline(){
|
||||||
|
content.html('<div class="vbox-inline">'+$(dest).html()+'</div>');
|
||||||
|
updateoverlay();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- PRELOAD IMAGE -------- */
|
||||||
|
function preloadFirst(){
|
||||||
|
images = content.find('img');
|
||||||
|
|
||||||
|
if (images.length) {
|
||||||
|
images.each(function(){
|
||||||
|
$(this).one('load', function() {
|
||||||
|
updateoverlay();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
updateoverlay();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- FADE-IN THE NEW CONTENT -------- */
|
||||||
|
function updateoverlay(){
|
||||||
|
|
||||||
|
blocktitle.html(title);
|
||||||
|
|
||||||
|
content.find(">:first-child").addClass('vbox-figlio').css({
|
||||||
|
'width': framewidth,
|
||||||
|
'height': frameheight,
|
||||||
|
'padding': border,
|
||||||
|
'background': bgcolor
|
||||||
|
});
|
||||||
|
|
||||||
|
$('img.vbox-figlio').on('dragstart', function(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
updateOL();
|
||||||
|
|
||||||
|
content.animate({
|
||||||
|
'opacity': '1'
|
||||||
|
},'slow', function(){
|
||||||
|
$preloader.hide();
|
||||||
|
});
|
||||||
|
option.cb_content_loaded(obj, gallIndex, thenext, theprev);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------- CENTER FRAME -------- */
|
||||||
|
function updateOL(){
|
||||||
|
|
||||||
|
var sonH = content.outerHeight();
|
||||||
|
var finH = $(window).height();
|
||||||
|
|
||||||
|
if (sonH + 60 < finH) {
|
||||||
|
margine = (finH - sonH)/2;
|
||||||
|
} else {
|
||||||
|
margine = '30px';
|
||||||
|
}
|
||||||
|
content.css('margin-top', margine);
|
||||||
|
content.css('margin-bottom', margine);
|
||||||
|
option.cb_post_resize();
|
||||||
|
}
|
||||||
|
|
||||||
|
$(window).resize(function(){
|
||||||
|
if($('.vbox-content').length){
|
||||||
|
setTimeout(updateOL(), 800);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}); // each
|
||||||
|
} // venobox
|
||||||
|
}); // extend
|
||||||
|
})(jQuery);
|
After Width: | Height: | Size: 614 KiB |