@ -0,0 +1,251 @@ |
|||
.checkbox { |
|||
padding-left: 20px; |
|||
} |
|||
.checkbox label { |
|||
display: inline-block; |
|||
vertical-align: middle; |
|||
position: relative; |
|||
padding-left: 5px; |
|||
} |
|||
.checkbox label::before { |
|||
content: ""; |
|||
display: inline-block; |
|||
position: absolute; |
|||
width: 17px; |
|||
height: 17px; |
|||
left: 0; |
|||
margin-left: -20px; |
|||
border: 1px solid #cccccc; |
|||
border-radius: 3px; |
|||
background-color: #fff; |
|||
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; |
|||
-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; |
|||
transition: border 0.15s ease-in-out, color 0.15s ease-in-out; |
|||
} |
|||
.checkbox label::after { |
|||
display: inline-block; |
|||
position: absolute; |
|||
width: 16px; |
|||
height: 16px; |
|||
left: 0; |
|||
top: 0; |
|||
margin-left: -20px; |
|||
padding-left: 3px; |
|||
padding-top: 1px; |
|||
font-size: 11px; |
|||
color: #555555; |
|||
} |
|||
.checkbox input[type="checkbox"], |
|||
.checkbox input[type="radio"] { |
|||
opacity: 0; |
|||
z-index: 1; |
|||
} |
|||
.checkbox input[type="checkbox"]:focus + label::before, |
|||
.checkbox input[type="radio"]:focus + label::before { |
|||
outline: thin dotted; |
|||
outline: 5px auto -webkit-focus-ring-color; |
|||
outline-offset: -2px; |
|||
} |
|||
.checkbox input[type="checkbox"]:checked + label::after, |
|||
.checkbox input[type="radio"]:checked + label::after { |
|||
font-family: "FontAwesome"; |
|||
content: "\f00c"; |
|||
} |
|||
.checkbox input[type="checkbox"]:disabled + label, |
|||
.checkbox input[type="radio"]:disabled + label { |
|||
opacity: 0.65; |
|||
} |
|||
.checkbox input[type="checkbox"]:disabled + label::before, |
|||
.checkbox input[type="radio"]:disabled + label::before { |
|||
background-color: #eeeeee; |
|||
cursor: not-allowed; |
|||
} |
|||
.checkbox.checkbox-circle label::before { |
|||
border-radius: 50%; |
|||
} |
|||
.checkbox.checkbox-inline { |
|||
margin-top: 0; |
|||
} |
|||
|
|||
.checkbox-primary input[type="checkbox"]:checked + label::before, |
|||
.checkbox-primary input[type="radio"]:checked + label::before { |
|||
background-color: #337ab7; |
|||
border-color: #337ab7; |
|||
} |
|||
.checkbox-primary input[type="checkbox"]:checked + label::after, |
|||
.checkbox-primary input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-danger input[type="checkbox"]:checked + label::before, |
|||
.checkbox-danger input[type="radio"]:checked + label::before { |
|||
background-color: #d9534f; |
|||
border-color: #d9534f; |
|||
} |
|||
.checkbox-danger input[type="checkbox"]:checked + label::after, |
|||
.checkbox-danger input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-info input[type="checkbox"]:checked + label::before, |
|||
.checkbox-info input[type="radio"]:checked + label::before { |
|||
background-color: #5bc0de; |
|||
border-color: #5bc0de; |
|||
} |
|||
.checkbox-info input[type="checkbox"]:checked + label::after, |
|||
.checkbox-info input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-warning input[type="checkbox"]:checked + label::before, |
|||
.checkbox-warning input[type="radio"]:checked + label::before { |
|||
background-color: #f0ad4e; |
|||
border-color: #f0ad4e; |
|||
} |
|||
.checkbox-warning input[type="checkbox"]:checked + label::after, |
|||
.checkbox-warning input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.checkbox-success input[type="checkbox"]:checked + label::before, |
|||
.checkbox-success input[type="radio"]:checked + label::before { |
|||
background-color: #5cb85c; |
|||
border-color: #5cb85c; |
|||
} |
|||
.checkbox-success input[type="checkbox"]:checked + label::after, |
|||
.checkbox-success input[type="radio"]:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
|
|||
.radio { |
|||
padding-left: 20px; |
|||
} |
|||
.radio label { |
|||
display: inline-block; |
|||
vertical-align: middle; |
|||
position: relative; |
|||
padding-left: 5px; |
|||
} |
|||
.radio label::before { |
|||
content: ""; |
|||
display: inline-block; |
|||
position: absolute; |
|||
width: 17px; |
|||
height: 17px; |
|||
left: 0; |
|||
margin-left: -20px; |
|||
border: 1px solid #cccccc; |
|||
border-radius: 50%; |
|||
background-color: #fff; |
|||
-webkit-transition: border 0.15s ease-in-out; |
|||
-o-transition: border 0.15s ease-in-out; |
|||
transition: border 0.15s ease-in-out; |
|||
} |
|||
.radio label::after { |
|||
display: inline-block; |
|||
position: absolute; |
|||
content: " "; |
|||
width: 11px; |
|||
height: 11px; |
|||
left: 3px; |
|||
top: 3px; |
|||
margin-left: -20px; |
|||
border-radius: 50%; |
|||
background-color: #555555; |
|||
-webkit-transform: scale(0, 0); |
|||
-ms-transform: scale(0, 0); |
|||
-o-transform: scale(0, 0); |
|||
transform: scale(0, 0); |
|||
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); |
|||
} |
|||
.radio input[type="radio"] { |
|||
opacity: 0; |
|||
z-index: 1; |
|||
} |
|||
.radio input[type="radio"]:focus + label::before { |
|||
outline: thin dotted; |
|||
outline: 5px auto -webkit-focus-ring-color; |
|||
outline-offset: -2px; |
|||
} |
|||
.radio input[type="radio"]:checked + label::after { |
|||
-webkit-transform: scale(1, 1); |
|||
-ms-transform: scale(1, 1); |
|||
-o-transform: scale(1, 1); |
|||
transform: scale(1, 1); |
|||
} |
|||
.radio input[type="radio"]:disabled + label { |
|||
opacity: 0.65; |
|||
} |
|||
.radio input[type="radio"]:disabled + label::before { |
|||
cursor: not-allowed; |
|||
} |
|||
.radio.radio-inline { |
|||
margin-top: 0; |
|||
} |
|||
|
|||
.radio-primary input[type="radio"] + label::after { |
|||
background-color: #337ab7; |
|||
} |
|||
.radio-primary input[type="radio"]:checked + label::before { |
|||
border-color: #337ab7; |
|||
} |
|||
.radio-primary input[type="radio"]:checked + label::after { |
|||
background-color: #337ab7; |
|||
} |
|||
|
|||
.radio-danger input[type="radio"] + label::after { |
|||
background-color: #d9534f; |
|||
} |
|||
.radio-danger input[type="radio"]:checked + label::before { |
|||
border-color: #d9534f; |
|||
} |
|||
.radio-danger input[type="radio"]:checked + label::after { |
|||
background-color: #d9534f; |
|||
} |
|||
|
|||
.radio-info input[type="radio"] + label::after { |
|||
background-color: #5bc0de; |
|||
} |
|||
.radio-info input[type="radio"]:checked + label::before { |
|||
border-color: #5bc0de; |
|||
} |
|||
.radio-info input[type="radio"]:checked + label::after { |
|||
background-color: #5bc0de; |
|||
} |
|||
|
|||
.radio-warning input[type="radio"] + label::after { |
|||
background-color: #f0ad4e; |
|||
} |
|||
.radio-warning input[type="radio"]:checked + label::before { |
|||
border-color: #f0ad4e; |
|||
} |
|||
.radio-warning input[type="radio"]:checked + label::after { |
|||
background-color: #f0ad4e; |
|||
} |
|||
|
|||
.radio-success input[type="radio"] + label::after { |
|||
background-color: #5cb85c; |
|||
} |
|||
.radio-success input[type="radio"]:checked + label::before { |
|||
border-color: #5cb85c; |
|||
} |
|||
.radio-success input[type="radio"]:checked + label::after { |
|||
background-color: #5cb85c; |
|||
} |
|||
|
|||
input[type="checkbox"].styled:checked + label:after, |
|||
input[type="radio"].styled:checked + label:after { |
|||
font-family: 'FontAwesome'; |
|||
content: "\f00c"; |
|||
} |
|||
input[type="checkbox"] .styled:checked + label::before, |
|||
input[type="radio"] .styled:checked + label::before { |
|||
color: #fff; |
|||
} |
|||
input[type="checkbox"] .styled:checked + label::after, |
|||
input[type="radio"] .styled:checked + label::after { |
|||
color: #fff; |
|||
} |
|||
@ -0,0 +1,519 @@ |
|||
/*! |
|||
* jquery-confirm v2.5.0 (http://craftpip.github.io/jquery-confirm/) |
|||
* Author: boniface pereira |
|||
* Website: www.craftpip.com |
|||
* Contact: hey@craftpip.com |
|||
* |
|||
* Copyright 2013-2016 jquery-confirm |
|||
* Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE) |
|||
*/ |
|||
@-webkit-keyframes jconfirm-rotate { |
|||
from { |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
to { |
|||
-webkit-transform: rotate(360deg); |
|||
transform: rotate(360deg); |
|||
} |
|||
} |
|||
@keyframes jconfirm-rotate { |
|||
from { |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
to { |
|||
-webkit-transform: rotate(360deg); |
|||
transform: rotate(360deg); |
|||
} |
|||
} |
|||
body.jconfirm-noscroll { |
|||
overflow: hidden !important; |
|||
} |
|||
.jconfirm { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
right: 0; |
|||
bottom: 0; |
|||
z-index: 99999999; |
|||
font-family: inherit; |
|||
overflow: hidden; |
|||
} |
|||
.jconfirm .jconfirm-bg { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
right: 0; |
|||
bottom: 0; |
|||
opacity: 0; |
|||
-webkit-transition: all .4s; |
|||
transition: all .4s; |
|||
} |
|||
.jconfirm .jconfirm-bg.seen { |
|||
opacity: 1; |
|||
} |
|||
.jconfirm .jconfirm-scrollpane { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
right: 0; |
|||
bottom: 0; |
|||
overflow-y: auto; |
|||
-webkit-perspective: 500px; |
|||
perspective: 500px; |
|||
-webkit-perspective-origin: center; |
|||
perspective-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box { |
|||
background: white; |
|||
border-radius: 4px; |
|||
position: relative; |
|||
outline: none; |
|||
padding: 15px 15px 0; |
|||
} |
|||
.jconfirm .jconfirm-box div.closeIcon { |
|||
height: 20px; |
|||
width: 20px; |
|||
position: absolute; |
|||
top: 5px; |
|||
right: 5px; |
|||
cursor: pointer; |
|||
opacity: .6; |
|||
text-align: center; |
|||
-webkit-transition: opacity 0.1s ease-in; |
|||
transition: opacity 0.1s ease-in; |
|||
display: none; |
|||
font-size: 27px; |
|||
line-height: 14px; |
|||
} |
|||
.jconfirm .jconfirm-box div.closeIcon .fa { |
|||
font-size: 16px; |
|||
} |
|||
.jconfirm .jconfirm-box div.closeIcon .glyphicon { |
|||
font-size: 16px; |
|||
} |
|||
.jconfirm .jconfirm-box div.closeIcon .zmdi { |
|||
font-size: 16px; |
|||
} |
|||
.jconfirm .jconfirm-box div.closeIcon:hover { |
|||
opacity: 1; |
|||
} |
|||
.jconfirm .jconfirm-box div.title-c { |
|||
display: block; |
|||
font-size: 22px; |
|||
line-height: 20px; |
|||
} |
|||
.jconfirm .jconfirm-box div.title-c .icon-c { |
|||
font-size: inherit; |
|||
padding-bottom: 15px; |
|||
display: inline-block; |
|||
margin-right: 8px; |
|||
vertical-align: middle; |
|||
} |
|||
.jconfirm .jconfirm-box div.title-c .icon-c i { |
|||
vertical-align: middle; |
|||
} |
|||
.jconfirm .jconfirm-box div.title-c .icon-c:empty { |
|||
display: none; |
|||
} |
|||
.jconfirm .jconfirm-box div.title-c .title { |
|||
font-size: inherit; |
|||
font-family: inherit; |
|||
display: inline-block; |
|||
vertical-align: middle; |
|||
padding-bottom: 15px; |
|||
} |
|||
.jconfirm .jconfirm-box div.title-c .title:empty { |
|||
display: none; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane { |
|||
margin-bottom: 15px; |
|||
height: auto; |
|||
-webkit-transition: height 0.4s ease-in; |
|||
transition: height 0.4s ease-in; |
|||
display: inline-block; |
|||
width: 100%; |
|||
position: relative; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane .content { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
-webkit-transition: all 0.2s ease-in; |
|||
transition: all 0.2s ease-in; |
|||
right: 0; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane .content img { |
|||
width: 100%; |
|||
height: auto; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane .content:empty { |
|||
display: none; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane .content:empty.loading { |
|||
height: 40px; |
|||
position: relative; |
|||
opacity: 0.6; |
|||
display: block; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane .content:empty.loading:before { |
|||
content: ''; |
|||
height: 20px; |
|||
width: 20px; |
|||
border: solid 2px transparent; |
|||
position: absolute; |
|||
left: 50%; |
|||
margin-left: -10px; |
|||
border-radius: 50%; |
|||
-webkit-animation: jconfirm-rotate 1s infinite linear; |
|||
animation: jconfirm-rotate 1s infinite linear; |
|||
border-bottom-color: #aaa; |
|||
top: 50%; |
|||
margin-top: -10px; |
|||
} |
|||
.jconfirm .jconfirm-box div.content-pane .content:empty.loading:after { |
|||
content: ''; |
|||
position: absolute; |
|||
left: 50%; |
|||
margin-left: -15px; |
|||
} |
|||
.jconfirm .jconfirm-box .buttons { |
|||
padding-bottom: 15px; |
|||
} |
|||
.jconfirm .jconfirm-box .buttons button + button { |
|||
margin-left: 5px; |
|||
} |
|||
.jconfirm .jquery-clear { |
|||
clear: both; |
|||
} |
|||
.jconfirm.rtl { |
|||
direction: rtl; |
|||
} |
|||
.jconfirm.rtl div.closeIcon { |
|||
left: 12px; |
|||
right: auto; |
|||
} |
|||
.jconfirm.jconfirm-white .jconfirm-bg { |
|||
background-color: rgba(0, 0, 0, 0.2); |
|||
} |
|||
.jconfirm.jconfirm-white .jconfirm-box { |
|||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); |
|||
border-radius: 5px; |
|||
} |
|||
.jconfirm.jconfirm-white .jconfirm-box .buttons { |
|||
float: right; |
|||
} |
|||
.jconfirm.jconfirm-white .jconfirm-box .buttons button { |
|||
border: none; |
|||
background-image: none; |
|||
text-transform: uppercase; |
|||
font-size: 14px; |
|||
font-weight: bold; |
|||
text-shadow: none; |
|||
-webkit-transition: background .1s; |
|||
transition: background .1s; |
|||
color: white; |
|||
} |
|||
.jconfirm.jconfirm-white .jconfirm-box .buttons button.btn-default { |
|||
box-shadow: none; |
|||
color: #333; |
|||
} |
|||
.jconfirm.jconfirm-white .jconfirm-box .buttons button.btn-default:hover { |
|||
background: #ddd; |
|||
} |
|||
.jconfirm.jconfirm-black .jconfirm-bg { |
|||
background-color: rgba(0, 0, 0, 0.5); |
|||
} |
|||
.jconfirm.jconfirm-black .jconfirm-box { |
|||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); |
|||
background: #444; |
|||
border-radius: 5px; |
|||
color: white; |
|||
} |
|||
.jconfirm.jconfirm-black .jconfirm-box .buttons { |
|||
float: right; |
|||
} |
|||
.jconfirm.jconfirm-black .jconfirm-box .buttons button { |
|||
border: none; |
|||
background-image: none; |
|||
text-transform: uppercase; |
|||
font-size: 14px; |
|||
font-weight: bold; |
|||
text-shadow: none; |
|||
-webkit-transition: background .1s; |
|||
transition: background .1s; |
|||
color: white; |
|||
} |
|||
.jconfirm.jconfirm-black .jconfirm-box .buttons button.btn-default { |
|||
box-shadow: none; |
|||
color: #fff; |
|||
background: none; |
|||
} |
|||
.jconfirm.jconfirm-black .jconfirm-box .buttons button.btn-default:hover { |
|||
background: #666; |
|||
} |
|||
.jconfirm .jconfirm-box.hilight { |
|||
-webkit-animation: hilight 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; |
|||
animation: hilight 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; |
|||
-webkit-transform: translate3d(0, 0, 0); |
|||
transform: translate3d(0, 0, 0); |
|||
} |
|||
@-webkit-keyframes hilight { |
|||
10%, |
|||
90% { |
|||
-webkit-transform: translate3d(-2px, 0, 0); |
|||
transform: translate3d(-2px, 0, 0); |
|||
} |
|||
20%, |
|||
80% { |
|||
-webkit-transform: translate3d(4px, 0, 0); |
|||
transform: translate3d(4px, 0, 0); |
|||
} |
|||
30%, |
|||
50%, |
|||
70% { |
|||
-webkit-transform: translate3d(-8px, 0, 0); |
|||
transform: translate3d(-8px, 0, 0); |
|||
} |
|||
40%, |
|||
60% { |
|||
-webkit-transform: translate3d(8px, 0, 0); |
|||
transform: translate3d(8px, 0, 0); |
|||
} |
|||
} |
|||
@keyframes hilight { |
|||
10%, |
|||
90% { |
|||
-webkit-transform: translate3d(-2px, 0, 0); |
|||
transform: translate3d(-2px, 0, 0); |
|||
} |
|||
20%, |
|||
80% { |
|||
-webkit-transform: translate3d(4px, 0, 0); |
|||
transform: translate3d(4px, 0, 0); |
|||
} |
|||
30%, |
|||
50%, |
|||
70% { |
|||
-webkit-transform: translate3d(-8px, 0, 0); |
|||
transform: translate3d(-8px, 0, 0); |
|||
} |
|||
40%, |
|||
60% { |
|||
-webkit-transform: translate3d(8px, 0, 0); |
|||
transform: translate3d(8px, 0, 0); |
|||
} |
|||
} |
|||
/*Transition rules*/ |
|||
.jconfirm { |
|||
-webkit-perspective: 400px; |
|||
perspective: 400px; |
|||
} |
|||
.jconfirm .jconfirm-box { |
|||
opacity: 1; |
|||
-webkit-transition-property: -webkit-transform, opacity, box-shadow; |
|||
transition-property: transform, opacity, box-shadow; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-top, |
|||
.jconfirm .jconfirm-box.anim-left, |
|||
.jconfirm .jconfirm-box.anim-right, |
|||
.jconfirm .jconfirm-box.anim-bottom, |
|||
.jconfirm .jconfirm-box.anim-opacity, |
|||
.jconfirm .jconfirm-box.anim-zoom, |
|||
.jconfirm .jconfirm-box.anim-scale, |
|||
.jconfirm .jconfirm-box.anim-none, |
|||
.jconfirm .jconfirm-box.anim-rotate, |
|||
.jconfirm .jconfirm-box.anim-rotatex, |
|||
.jconfirm .jconfirm-box.anim-rotatey, |
|||
.jconfirm .jconfirm-box.anim-scaley, |
|||
.jconfirm .jconfirm-box.anim-scalex { |
|||
opacity: 0; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-rotate { |
|||
-webkit-transform: rotate(90deg); |
|||
-ms-transform: rotate(90deg); |
|||
transform: rotate(90deg); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-rotatex { |
|||
-webkit-transform: rotateX(90deg); |
|||
transform: rotateX(90deg); |
|||
-webkit-transform-origin: center; |
|||
-ms-transform-origin: center; |
|||
transform-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-rotatexr { |
|||
-webkit-transform: rotateX(-90deg); |
|||
transform: rotateX(-90deg); |
|||
-webkit-transform-origin: center; |
|||
-ms-transform-origin: center; |
|||
transform-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-rotatey { |
|||
-webkit-transform: rotatey(90deg); |
|||
-ms-transform: rotatey(90deg); |
|||
transform: rotatey(90deg); |
|||
-webkit-transform-origin: center; |
|||
-ms-transform-origin: center; |
|||
transform-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-rotateyr { |
|||
-webkit-transform: rotatey(-90deg); |
|||
-ms-transform: rotatey(-90deg); |
|||
transform: rotatey(-90deg); |
|||
-webkit-transform-origin: center; |
|||
-ms-transform-origin: center; |
|||
transform-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-scaley { |
|||
-webkit-transform: scaley(1.5); |
|||
-ms-transform: scaley(1.5); |
|||
transform: scaley(1.5); |
|||
-webkit-transform-origin: center; |
|||
-ms-transform-origin: center; |
|||
transform-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-scalex { |
|||
-webkit-transform: scalex(1.5); |
|||
-ms-transform: scalex(1.5); |
|||
transform: scalex(1.5); |
|||
-webkit-transform-origin: center; |
|||
-ms-transform-origin: center; |
|||
transform-origin: center; |
|||
} |
|||
.jconfirm .jconfirm-box.anim-top { |
|||
-webkit-transform: translate(0px, -100px); |
|||
-ms-transform: translate(0px, -100px); |
|||
transform: translate(0px, -100px); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-left { |
|||
-webkit-transform: translate(-100px, 0px); |
|||
-ms-transform: translate(-100px, 0px); |
|||
transform: translate(-100px, 0px); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-right { |
|||
-webkit-transform: translate(100px, 0px); |
|||
-ms-transform: translate(100px, 0px); |
|||
transform: translate(100px, 0px); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-bottom { |
|||
-webkit-transform: translate(0px, 100px); |
|||
-ms-transform: translate(0px, 100px); |
|||
transform: translate(0px, 100px); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-zoom { |
|||
-webkit-transform: scale(1.2); |
|||
-ms-transform: scale(1.2); |
|||
transform: scale(1.2); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-scale { |
|||
-webkit-transform: scale(0.5); |
|||
-ms-transform: scale(0.5); |
|||
transform: scale(0.5); |
|||
} |
|||
.jconfirm .jconfirm-box.anim-none { |
|||
display: none; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-bg { |
|||
background-color: rgba(54, 70, 93, 0.95); |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box { |
|||
background-color: transparent; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box div.closeIcon { |
|||
color: white; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box div.title-c { |
|||
text-align: center; |
|||
color: white; |
|||
font-size: 28px; |
|||
font-weight: normal; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box div.title-c > * { |
|||
padding-bottom: 25px; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box div.content-pane { |
|||
margin-bottom: 25px; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box div.content { |
|||
text-align: center; |
|||
color: white; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box .buttons { |
|||
text-align: center; |
|||
} |
|||
.jconfirm.jconfirm-supervan .jconfirm-box .buttons button { |
|||
font-size: 16px; |
|||
border-radius: 2px; |
|||
background: #303f53; |
|||
text-shadow: none; |
|||
border: none; |
|||
color: white; |
|||
padding: 10px; |
|||
min-width: 100px; |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-bg { |
|||
background-color: rgba(0, 0, 0, 0.67); |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-box { |
|||
background-color: white; |
|||
box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12); |
|||
padding: 30px 25px 10px 25px; |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-box div.closeIcon { |
|||
color: rgba(0, 0, 0, 0.87); |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-box div.title-c { |
|||
color: rgba(0, 0, 0, 0.87); |
|||
font-size: 22px; |
|||
font-weight: bold; |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-box div.content { |
|||
text-align: left; |
|||
color: rgba(0, 0, 0, 0.87); |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-box .buttons { |
|||
text-align: right; |
|||
} |
|||
.jconfirm.jconfirm-material .jconfirm-box .buttons button { |
|||
text-transform: uppercase; |
|||
font-weight: 500; |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-bg { |
|||
background-color: rgba(0, 0, 0, 0.21); |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-box { |
|||
background-color: white; |
|||
box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2); |
|||
border: solid 1px rgba(0, 0, 0, 0.4); |
|||
padding: 15px 0 0; |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-box div.closeIcon { |
|||
color: rgba(0, 0, 0, 0.87); |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-box div.title-c { |
|||
color: rgba(0, 0, 0, 0.87); |
|||
font-size: 22px; |
|||
font-weight: bold; |
|||
padding-left: 15px; |
|||
padding-right: 15px; |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-box div.content { |
|||
text-align: left; |
|||
color: rgba(0, 0, 0, 0.87); |
|||
padding: 0px 15px; |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-box .buttons { |
|||
text-align: right; |
|||
padding: 0px 0 0px; |
|||
margin: -5px 0 0px; |
|||
border-top: solid 1px #ddd; |
|||
overflow: hidden; |
|||
border-radius: 0 0 4px 4px; |
|||
} |
|||
.jconfirm.jconfirm-bootstrap .jconfirm-box .buttons button { |
|||
font-weight: 500; |
|||
border-radius: 0px; |
|||
margin: 0; |
|||
border-left: solid 1px #ddd; |
|||
} |
|||
@ -0,0 +1,596 @@ |
|||
/*! |
|||
* jquery-confirm v2.5.0 (http://craftpip.github.io/jquery-confirm/)
|
|||
* Author: Boniface Pereira |
|||
* Website: www.craftpip.com |
|||
* Contact: hey@craftpip.com |
|||
* |
|||
* Copyright 2013-2015 jquery-confirm |
|||
* Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
|
|||
*/ |
|||
|
|||
if (typeof jQuery === 'undefined') { |
|||
throw new Error('jquery-confirm requires jQuery'); |
|||
} |
|||
|
|||
var jconfirm, Jconfirm; |
|||
(function ($) { |
|||
"use strict"; |
|||
$.fn.confirm = function (options, option2) { |
|||
if (typeof options === 'undefined') options = {}; |
|||
if (typeof options === 'string') |
|||
options = { |
|||
content: options, |
|||
title: (option2) ? option2 : false |
|||
}; |
|||
/* |
|||
* Alias of $.confirm to emulate native confirm() |
|||
*/ |
|||
$(this).each(function () { |
|||
var $this = $(this); |
|||
$this.on('click', function (e) { |
|||
e.preventDefault(); |
|||
var jcOption = $.extend({}, options); |
|||
if ($this.attr('data-title')) |
|||
jcOption['title'] = $this.attr('data-title'); |
|||
if ($this.attr('data-content')) |
|||
jcOption['content'] = $this.attr('data-content'); |
|||
|
|||
jcOption['$target'] = $this; |
|||
if ($this.attr('href') && !options['confirm']) |
|||
jcOption['confirm'] = function () { |
|||
location.href = $this.attr('href'); |
|||
}; |
|||
$.confirm(jcOption); |
|||
}); |
|||
}); |
|||
return $(this); |
|||
}; |
|||
$.confirm = function (options, option2) { |
|||
if (typeof options === 'undefined') options = {}; |
|||
if (typeof options === 'string') |
|||
options = { |
|||
content: options, |
|||
title: (option2) ? option2 : false |
|||
}; |
|||
/* |
|||
* Alias of jconfirm |
|||
*/ |
|||
return jconfirm(options); |
|||
}; |
|||
$.alert = function (options, option2) { |
|||
if (typeof options === 'undefined') options = {}; |
|||
if (typeof options === 'string') |
|||
options = { |
|||
content: options, |
|||
title: (option2) ? option2 : false |
|||
}; |
|||
/* |
|||
* Alias of jconfirm |
|||
*/ |
|||
options.cancelButton = false; |
|||
return jconfirm(options); |
|||
}; |
|||
$.dialog = function (options, option2) { |
|||
if (typeof options === 'undefined') options = {}; |
|||
if (typeof options === 'string') |
|||
options = { |
|||
content: options, |
|||
title: (option2) ? option2 : false |
|||
}; |
|||
/* |
|||
* Alias of jconfirm |
|||
*/ |
|||
options.cancelButton = false; |
|||
options.confirmButton = false; |
|||
options.confirmKeys = [13]; |
|||
return jconfirm(options); |
|||
}; |
|||
jconfirm = function (options) { |
|||
if (typeof options === 'undefined') options = {}; |
|||
/* |
|||
* initial function for calling. |
|||
*/ |
|||
if (jconfirm.defaults) { |
|||
/* |
|||
* Merge global defaults with plugin defaults |
|||
*/ |
|||
$.extend(jconfirm.pluginDefaults, jconfirm.defaults); |
|||
} |
|||
/* |
|||
* merge options with plugin defaults. |
|||
*/ |
|||
var options = $.extend({}, jconfirm.pluginDefaults, options); |
|||
return new Jconfirm(options); |
|||
}; |
|||
Jconfirm = function (options) { |
|||
/* |
|||
* constructor function Jconfirm, |
|||
* options = user options. |
|||
*/ |
|||
$.extend(this, options); |
|||
this._init(); |
|||
}; |
|||
Jconfirm.prototype = { |
|||
_init: function () { |
|||
var that = this; |
|||
this._rand = Math.round(Math.random() * 99999); |
|||
this._buildHTML(); |
|||
this._bindEvents(); |
|||
setTimeout(function () { |
|||
that.open(); |
|||
that._watchContent(); |
|||
}, 0); |
|||
}, |
|||
_buildHTML: function () { |
|||
var that = this; |
|||
/* |
|||
* Prefixing animations. |
|||
*/ |
|||
this.animation = 'anim-' + this.animation.toLowerCase(); |
|||
this.closeAnimation = 'anim-' + this.closeAnimation.toLowerCase(); |
|||
this.theme = 'jconfirm-' + this.theme.toLowerCase(); |
|||
if (this.animation == 'anim-none') |
|||
this.animationSpeed = 0; |
|||
|
|||
this._lastFocused = $('body').find(':focus'); |
|||
|
|||
/* |
|||
* Append html. |
|||
*/ |
|||
this.$el = $(this.template).appendTo(this.container).addClass(this.theme); |
|||
this.$el.find('.jconfirm-box-container').addClass(this.columnClass); |
|||
this.$el.find('.jconfirm-bg').css(this._getCSS(this.animationSpeed, 1)); |
|||
|
|||
this.$b = this.$el.find('.jconfirm-box').css(this._getCSS(this.animationSpeed, this.animationBounce)).addClass(this.animation); |
|||
this.$body = this.$b; // alias
|
|||
|
|||
/* |
|||
* Add rtl class if rtl option has selected |
|||
*/ |
|||
if (this.rtl) |
|||
this.$el.addClass("rtl"); |
|||
|
|||
this._contentReady = $.Deferred(); |
|||
this._modalReady = $.Deferred(); |
|||
|
|||
/* |
|||
* Setup title contents |
|||
*/ |
|||
this.$title = this.$el.find('.title'); |
|||
this.contentDiv = this.$el.find('div.content'); |
|||
this.$content = this.contentDiv; // alias
|
|||
this.$contentPane = this.$el.find('.content-pane'); |
|||
this.$icon = this.$el.find('.icon-c'); |
|||
this.$closeIcon = this.$el.find('.closeIcon'); |
|||
this.$contentPane.css(this._getCSS(this.animationSpeed, 1)); |
|||
this.setTitle(); |
|||
this.setIcon(); |
|||
this._setButtons(); |
|||
|
|||
if (this.closeIconClass) |
|||
this.$closeIcon.html('<i class="' + this.closeIconClass + '"></i>'); |
|||
|
|||
that._contentHash = this._hash(that.$content.html()); |
|||
$.when(this._contentReady, this._modalReady).then(function () { |
|||
console.log('ready'); |
|||
that.setContent(); |
|||
that.setTitle(); |
|||
that.setIcon(); |
|||
}); |
|||
|
|||
this._getContent(); |
|||
this._imagesLoaded(); |
|||
|
|||
if (this.autoClose) |
|||
this._startCountDown(); |
|||
}, |
|||
_unwatchContent: function () { |
|||
clearInterval(this._timer); |
|||
}, |
|||
_hash: function () { |
|||
return btoa((encodeURIComponent(this.$content.html()))); |
|||
}, |
|||
_watchContent: function () { |
|||
var that = this; |
|||
this._timer = setInterval(function () { |
|||
var now = that._hash(that.$content.html()); |
|||
if (that._contentHash != now) { |
|||
that._contentHash = now; |
|||
that.setDialogCenter(); |
|||
that._imagesLoaded(); |
|||
} |
|||
}, this.watchInterval); |
|||
}, |
|||
_bindEvents: function () { |
|||
var that = this; |
|||
var boxClicked = false; |
|||
|
|||
this.$el.find('.jconfirm-scrollpane').click(function (e) { |
|||
// ignore propagated clicks
|
|||
if (!boxClicked) { |
|||
// background clicked
|
|||
if (that.backgroundDismiss) { |
|||
that.cancel(); |
|||
that.close(); |
|||
} else { |
|||
that.$b.addClass('hilight'); |
|||
setTimeout(function () { |
|||
that.$b.removeClass('hilight'); |
|||
}, 800); |
|||
} |
|||
} |
|||
boxClicked = false; |
|||
}); |
|||
|
|||
this.$el.find('.jconfirm-box').click(function (e) { |
|||
boxClicked = true; |
|||
}); |
|||
|
|||
if (this.$confirmButton) { |
|||
this.$confirmButton.click(function (e) { |
|||
e.preventDefault(); |
|||
var r = that.confirm(that.$b); |
|||
that._stopCountDown(); |
|||
that.onAction('confirm'); |
|||
if (typeof r === 'undefined' || r) |
|||
that.close(); |
|||
}); |
|||
} |
|||
if (this.$cancelButton) { |
|||
this.$cancelButton.click(function (e) { |
|||
e.preventDefault(); |
|||
var r = that.cancel(that.$b); |
|||
that._stopCountDown(); |
|||
that.onAction('cancel'); |
|||
|
|||
if (typeof r === 'undefined' || r) |
|||
that.close(); |
|||
}); |
|||
} |
|||
if (this.$closeButton) { |
|||
this.$closeButton.click(function (e) { |
|||
e.preventDefault(); |
|||
that._stopCountDown(); |
|||
that.cancel(); |
|||
that.onAction('close'); |
|||
that.close(); |
|||
}); |
|||
} |
|||
if (this.keyboardEnabled) { |
|||
setTimeout(function () { |
|||
$(window).on('keyup.' + this._rand, function (e) { |
|||
that.reactOnKey(e); |
|||
}); |
|||
}, 500); |
|||
} |
|||
|
|||
$(window).on('resize.' + this._rand, function () { |
|||
that.setDialogCenter(true); |
|||
}); |
|||
}, |
|||
_getCSS: function (speed, bounce) { |
|||
return { |
|||
'-webkit-transition-duration': speed / 1000 + 's', |
|||
'transition-duration': speed / 1000 + 's', |
|||
'-webkit-transition-timing-function': 'cubic-bezier(.36,1.1,.2, ' + bounce + ')', |
|||
'transition-timing-function': 'cubic-bezier(.36,1.1,.2, ' + bounce + ')' |
|||
}; |
|||
}, |
|||
_imagesLoaded: function () { |
|||
var that = this; |
|||
$.each(this.$content.find('img:not(.loaded)'), function (i, a) { |
|||
var interval = setInterval(function () { |
|||
var h = $(a).css('height'); |
|||
console.log(h); |
|||
if (h !== '0px') { |
|||
$(a).addClass('loaded'); |
|||
that.setDialogCenter(); |
|||
clearInterval(interval); |
|||
} |
|||
}, 40); |
|||
}) |
|||
}, |
|||
_setButtons: function () { |
|||
/* |
|||
* Settings up buttons |
|||
*/ |
|||
this.$btnc = this.$el.find('.buttons'); |
|||
if (this.confirmButton && $.trim(this.confirmButton) !== '') { |
|||
this.$confirmButton = $('<button type="button" class="btn">' + this.confirmButton + '</button>').appendTo(this.$btnc).addClass(this.confirmButtonClass); |
|||
} |
|||
if (this.cancelButton && $.trim(this.cancelButton) !== '') { |
|||
this.$cancelButton = $('<button type="button" class="btn">' + this.cancelButton + '</button>').appendTo(this.$btnc).addClass(this.cancelButtonClass); |
|||
} |
|||
if (!this.confirmButton && !this.cancelButton) { |
|||
this.$btnc.hide(); |
|||
} |
|||
if (!this.confirmButton && !this.cancelButton && this.closeIcon === null) { |
|||
this.$closeButton = this.$b.find('.closeIcon').show(); |
|||
} |
|||
if (this.closeIcon === true) { |
|||
this.$closeButton = this.$b.find('.closeIcon').show(); |
|||
} |
|||
}, |
|||
setTitle: function (string) { |
|||
this.title = (typeof string !== 'undefined') ? string : this.title; |
|||
this.$title.html(this.title || ''); |
|||
}, |
|||
setIcon: function (iconClass) { |
|||
this.title = (typeof string !== 'undefined') ? iconClass : this.title; |
|||
this.$icon.html(this.icon ? '<i class="' + this.icon + '"></i>' : ''); |
|||
}, |
|||
setContent: function (string) { |
|||
// only set the content on the modal.
|
|||
var that = this; |
|||
this.content = (typeof string == 'undefined') ? this.content : string; |
|||
|
|||
if (this.content == '') { |
|||
this.$content.html(this.content); |
|||
this.$contentPane.hide(); |
|||
} else { |
|||
this.$content.html(this.content); |
|||
this.$contentPane.show(); |
|||
} |
|||
if (this.$content.hasClass('loading')) { |
|||
this.$content.removeClass('loading');// it was loading via ajax.
|
|||
this.$btnc.find('button').prop('disabled', false); |
|||
} |
|||
}, |
|||
_getContent: function (string) { |
|||
// get content from remote & stuff.
|
|||
var that = this; |
|||
string = (string) ? string : this.content; |
|||
this._isAjax = false; |
|||
/* |
|||
* Set content. |
|||
*/ |
|||
if (!this.content) { // if the content is falsy
|
|||
this.content = ''; |
|||
this.setContent(this.content); |
|||
this._contentReady.reject(); |
|||
} else if (typeof this.content === 'string') { |
|||
if (this.content.substr(0, 4).toLowerCase() === 'url:') { |
|||
this._isAjax = true; |
|||
this.$content.addClass('loading'); |
|||
this.$btnc.find('button').prop('disabled', true); |
|||
var url = this.content.substring(4, this.content.length); |
|||
$.get(url).done(function (html) { |
|||
that.content = html; |
|||
that._contentReady.resolve(); |
|||
}).always(function (data, status, xhr) { |
|||
if (typeof that.contentLoaded === 'function') |
|||
that.contentLoaded(data, status, xhr); |
|||
}); |
|||
} else { |
|||
this.setContent(this.content); |
|||
this._contentReady.reject(); |
|||
} |
|||
} else if (typeof this.content === 'function') { |
|||
this.$content.addClass('loading'); |
|||
this.$btnc.find('button').attr('disabled', 'disabled'); |
|||
var promise = this.content(this); |
|||
if (typeof promise !== 'object') { |
|||
console.error('The content function must return jquery promise.'); |
|||
} else if (typeof promise.always !== 'function') { |
|||
console.error('The object returned is not a jquery promise.'); |
|||
} else { |
|||
this._isAjax = true; |
|||
promise.always(function (data, status) { |
|||
that._contentReady.resolve(); |
|||
}); |
|||
} |
|||
} else { |
|||
console.error('Invalid option for property content, passed: ' + typeof this.content); |
|||
} |
|||
this.setDialogCenter(); |
|||
}, |
|||
_stopCountDown: function () { |
|||
clearInterval(this.timerInterval); |
|||
if (this.$cd) |
|||
this.$cd.remove(); |
|||
}, |
|||
_startCountDown: function () { |
|||
var opt = this.autoClose.split('|'); |
|||
if (/cancel/.test(opt[0]) && this.type === 'alert') { |
|||
return false; |
|||
} else if (/confirm|cancel/.test(opt[0])) { |
|||
this.$cd = $('<span class="countdown">').appendTo(this['$' + opt[0] + 'Button']); |
|||
var that = this; |
|||
that.$cd.parent().click(); |
|||
var time = opt[1] / 1000; |
|||
this.timerInterval = setInterval(function () { |
|||
that.$cd.html(' (' + (time -= 1) + ')'); |
|||
if (time === 0) { |
|||
that.$cd.html(''); |
|||
that.$cd.parent().trigger('click'); |
|||
clearInterval(that.timerInterval); |
|||
} |
|||
}, 1000); |
|||
} else { |
|||
console.error('Invalid option ' + opt[0] + ', must be confirm/cancel'); |
|||
} |
|||
}, |
|||
reactOnKey: function key(e) { |
|||
|
|||
/* |
|||
* prevent keyup event if the dialog is not last! |
|||
*/ |
|||
var a = $('.jconfirm'); |
|||
if (a.eq(a.length - 1)[0] !== this.$el[0]) |
|||
return false; |
|||
|
|||
var key = e.which; |
|||
// Do not react if Enter/Space is pressed on input elements
|
|||
if (this.contentDiv.find(':input').is(':focus') && /13|32/.test(key)) |
|||
return false; |
|||
|
|||
if ($.inArray(key, this.cancelKeys) !== -1) { |
|||
/* |
|||
* Cancel key pressed. |
|||
*/ |
|||
if (this.$cancelButton) { |
|||
this.$cancelButton.click(); |
|||
} else { |
|||
this.close(); |
|||
} |
|||
} |
|||
if ($.inArray(key, this.confirmKeys) !== -1) { |
|||
/* |
|||
* Confirm key pressed. |
|||
*/ |
|||
if (this.$confirmButton) { |
|||
this.$confirmButton.click(); |
|||
} |
|||
} |
|||
}, |
|||
setDialogCenter: function () { |
|||
if (this.$contentPane.css('display') == 'none') { |
|||
var contentHeight = 0; |
|||
var paneHeight = 0; |
|||
} else { |
|||
var contentHeight = this.$content.outerHeight(); |
|||
var paneHeight = this.$contentPane.height(); |
|||
if (paneHeight == 0) |
|||
paneHeight = contentHeight; |
|||
|
|||
} |
|||
var off = 100; |
|||
var w = this.$content.outerWidth(); |
|||
|
|||
//var s = '-clip-path: inset(0px 0px '+contentHeight+'px 0px);' +
|
|||
// 'clip-path: inset(0px 0px '+contentHeight+'px 0px)';
|
|||
|
|||
this.$content.css({ |
|||
'clip': 'rect(0px ' + (off + w) + 'px ' + contentHeight + 'px -' + off + 'px)' |
|||
}); |
|||
|
|||
this.$contentPane.css({ |
|||
'height': contentHeight |
|||
}); |
|||
|
|||
var windowHeight = $(window).height(); |
|||
var boxHeight = this.$b.outerHeight() - paneHeight + contentHeight; |
|||
var topMargin = (windowHeight - boxHeight) / 2; |
|||
var minMargin = 100; |
|||
if (boxHeight > (windowHeight - minMargin)) { |
|||
var style = { |
|||
'margin-top': minMargin / 2, |
|||
'margin-bottom': minMargin / 2 |
|||
} |
|||
} else { |
|||
var style = { |
|||
'margin-top': topMargin |
|||
} |
|||
} |
|||
this.$b.css(style); |
|||
}, |
|||
close: function () { |
|||
var that = this; |
|||
|
|||
if (this.isClosed()) |
|||
return false; |
|||
|
|||
if (typeof this.onClose === 'function') |
|||
this.onClose(); |
|||
|
|||
this._unwatchContent(); |
|||
that._lastFocused.focus(); |
|||
|
|||
//this.observer.disconnect();
|
|||
/* |
|||
unbind the window resize & keyup event. |
|||
*/ |
|||
$(window).unbind('resize.' + this._rand); |
|||
if (this.keyboardEnabled) |
|||
$(window).unbind('keyup.' + this._rand); |
|||
|
|||
that.$el.find('.jconfirm-bg').removeClass('seen'); |
|||
this.$b.addClass(this.closeAnimation); |
|||
var closeTimer = (this.closeAnimation == 'anim-none') ? 0 : this.animationSpeed; |
|||
setTimeout(function () { |
|||
that.$el.remove(); |
|||
}, closeTimer * 25 / 100); |
|||
|
|||
jconfirm.record.closed += 1; |
|||
jconfirm.record.currentlyOpen -= 1; |
|||
|
|||
return true; |
|||
}, |
|||
open: function () { |
|||
var that = this; |
|||
if (this.isClosed()) |
|||
return false; |
|||
|
|||
that.$el.find('.jconfirm-bg').addClass('seen'); |
|||
this.$b.removeClass(this.animation); |
|||
this.$b.find('input[autofocus]:visible:first').focus(); |
|||
jconfirm.record.opened += 1; |
|||
jconfirm.record.currentlyOpen += 1; |
|||
if (typeof this.onOpen === 'function') |
|||
this.onOpen(); |
|||
|
|||
var jcr = 'jconfirm-box' + this._rand; |
|||
this.$b.attr('aria-labelledby', jcr).attr('tabindex', -1).focus(); |
|||
if (this.$title) |
|||
this.$title.attr('id', jcr); else if (this.$content) |
|||
this.$content.attr('id', jcr); |
|||
|
|||
setTimeout(function () { |
|||
that.$b.css({ |
|||
'transition-property': that.$b.css('transition-property') + ', margin' |
|||
}); |
|||
that._modalReady.resolve(); |
|||
}, this.animationSpeed); |
|||
|
|||
return true; |
|||
}, |
|||
isClosed: function () { |
|||
return this.$el.css('display') === ''; |
|||
} |
|||
}; |
|||
|
|||
jconfirm.pluginDefaults = { |
|||
template: '<div class="jconfirm"><div class="jconfirm-bg"></div><div class="jconfirm-scrollpane"><div class="container"><div class="row"><div class="jconfirm-box-container"><div class="jconfirm-box" role="dialog" aria-labelledby="labelled" tabindex="-1"><div class="closeIcon">×</div><div class="title-c"><span class="icon-c"></span><span class="title"></span></div><div class="content-pane"><div class="content"></div></div><div class="buttons"></div><div class="jquery-clear"></div></div></div></div></div></div></div>', |
|||
title: 'Hello', |
|||
content: 'Are you sure to continue?', |
|||
contentLoaded: function () { |
|||
}, |
|||
icon: '', |
|||
confirmButton: 'Okay', |
|||
cancelButton: 'Close', |
|||
confirmButtonClass: 'btn-default', |
|||
cancelButtonClass: 'btn-default', |
|||
theme: 'white', |
|||
animation: 'zoom', |
|||
closeAnimation: 'scale', |
|||
animationSpeed: 500, |
|||
animationBounce: 1.2, |
|||
keyboardEnabled: false, |
|||
rtl: false, |
|||
confirmKeys: [13], // ENTER key
|
|||
cancelKeys: [27], // ESC key
|
|||
container: 'body', |
|||
confirm: function () { |
|||
}, |
|||
cancel: function () { |
|||
}, |
|||
backgroundDismiss: false, |
|||
autoClose: false, |
|||
closeIcon: null, |
|||
closeIconClass: false, |
|||
watchInterval: 100, |
|||
columnClass: 'col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-10 col-xs-offset-1', |
|||
onOpen: function () { |
|||
}, |
|||
onClose: function () { |
|||
}, |
|||
onAction: function () { |
|||
} |
|||
}; |
|||
|
|||
jconfirm.record = { |
|||
opened: 0, |
|||
closed: 0, |
|||
currentlyOpen: 0 |
|||
}; |
|||
})(jQuery); |
|||
@ -0,0 +1,7 @@ |
|||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, |
|||
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, |
|||
comprehensive icon sets or copy and paste your own. |
|||
|
|||
Please. Check it out. |
|||
|
|||
-Dave Gandy |
|||
|
After Width: | Height: | Size: 382 KiB |
@ -0,0 +1,34 @@ |
|||
// Animated Icons |
|||
// -------------------------- |
|||
|
|||
.@{fa-css-prefix}-spin { |
|||
-webkit-animation: fa-spin 2s infinite linear; |
|||
animation: fa-spin 2s infinite linear; |
|||
} |
|||
|
|||
.@{fa-css-prefix}-pulse { |
|||
-webkit-animation: fa-spin 1s infinite steps(8); |
|||
animation: fa-spin 1s infinite steps(8); |
|||
} |
|||
|
|||
@-webkit-keyframes fa-spin { |
|||
0% { |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
100% { |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
|
|||
@keyframes fa-spin { |
|||
0% { |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
100% { |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
@ -0,0 +1,25 @@ |
|||
// Bordered & Pulled |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-border { |
|||
padding: .2em .25em .15em; |
|||
border: solid .08em @fa-border-color; |
|||
border-radius: .1em; |
|||
} |
|||
|
|||
.@{fa-css-prefix}-pull-left { float: left; } |
|||
.@{fa-css-prefix}-pull-right { float: right; } |
|||
|
|||
.@{fa-css-prefix} { |
|||
&.@{fa-css-prefix}-pull-left { margin-right: .3em; } |
|||
&.@{fa-css-prefix}-pull-right { margin-left: .3em; } |
|||
} |
|||
|
|||
/* Deprecated as of 4.4.0 */ |
|||
.pull-right { float: right; } |
|||
.pull-left { float: left; } |
|||
|
|||
.@{fa-css-prefix} { |
|||
&.pull-left { margin-right: .3em; } |
|||
&.pull-right { margin-left: .3em; } |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
// Base Class Definition |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix} { |
|||
display: inline-block; |
|||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration |
|||
font-size: inherit; // can't have font-size inherit on line above, so need to override |
|||
text-rendering: auto; // optimizelegibility throws things off #1094 |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
|
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
// Fixed Width Icons |
|||
// ------------------------- |
|||
.@{fa-css-prefix}-fw { |
|||
width: (18em / 14); |
|||
text-align: center; |
|||
} |
|||
@ -0,0 +1,18 @@ |
|||
/*! |
|||
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome |
|||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) |
|||
*/ |
|||
|
|||
@import "variables.less"; |
|||
@import "mixins.less"; |
|||
@import "path.less"; |
|||
@import "core.less"; |
|||
@import "larger.less"; |
|||
@import "fixed-width.less"; |
|||
@import "list.less"; |
|||
@import "bordered-pulled.less"; |
|||
@import "animated.less"; |
|||
@import "rotated-flipped.less"; |
|||
@import "stacked.less"; |
|||
@import "icons.less"; |
|||
@import "screen-reader.less"; |
|||
@ -0,0 +1,733 @@ |
|||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen |
|||
readers do not read off random characters that represent icons */ |
|||
|
|||
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } |
|||
.@{fa-css-prefix}-music:before { content: @fa-var-music; } |
|||
.@{fa-css-prefix}-search:before { content: @fa-var-search; } |
|||
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } |
|||
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } |
|||
.@{fa-css-prefix}-star:before { content: @fa-var-star; } |
|||
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } |
|||
.@{fa-css-prefix}-user:before { content: @fa-var-user; } |
|||
.@{fa-css-prefix}-film:before { content: @fa-var-film; } |
|||
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } |
|||
.@{fa-css-prefix}-th:before { content: @fa-var-th; } |
|||
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } |
|||
.@{fa-css-prefix}-check:before { content: @fa-var-check; } |
|||
.@{fa-css-prefix}-remove:before, |
|||
.@{fa-css-prefix}-close:before, |
|||
.@{fa-css-prefix}-times:before { content: @fa-var-times; } |
|||
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } |
|||
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } |
|||
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } |
|||
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } |
|||
.@{fa-css-prefix}-gear:before, |
|||
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } |
|||
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } |
|||
.@{fa-css-prefix}-home:before { content: @fa-var-home; } |
|||
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } |
|||
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } |
|||
.@{fa-css-prefix}-road:before { content: @fa-var-road; } |
|||
.@{fa-css-prefix}-download:before { content: @fa-var-download; } |
|||
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } |
|||
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } |
|||
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } |
|||
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } |
|||
.@{fa-css-prefix}-rotate-right:before, |
|||
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } |
|||
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } |
|||
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } |
|||
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } |
|||
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } |
|||
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } |
|||
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } |
|||
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } |
|||
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } |
|||
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } |
|||
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } |
|||
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } |
|||
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } |
|||
.@{fa-css-prefix}-book:before { content: @fa-var-book; } |
|||
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } |
|||
.@{fa-css-prefix}-print:before { content: @fa-var-print; } |
|||
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } |
|||
.@{fa-css-prefix}-font:before { content: @fa-var-font; } |
|||
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } |
|||
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } |
|||
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } |
|||
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } |
|||
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } |
|||
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } |
|||
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } |
|||
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } |
|||
.@{fa-css-prefix}-list:before { content: @fa-var-list; } |
|||
.@{fa-css-prefix}-dedent:before, |
|||
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } |
|||
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } |
|||
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } |
|||
.@{fa-css-prefix}-photo:before, |
|||
.@{fa-css-prefix}-image:before, |
|||
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } |
|||
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } |
|||
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } |
|||
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } |
|||
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } |
|||
.@{fa-css-prefix}-edit:before, |
|||
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } |
|||
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } |
|||
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } |
|||
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } |
|||
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } |
|||
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } |
|||
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } |
|||
.@{fa-css-prefix}-play:before { content: @fa-var-play; } |
|||
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } |
|||
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } |
|||
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } |
|||
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } |
|||
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } |
|||
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } |
|||
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } |
|||
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } |
|||
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } |
|||
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } |
|||
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } |
|||
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } |
|||
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } |
|||
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } |
|||
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } |
|||
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } |
|||
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } |
|||
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } |
|||
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } |
|||
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } |
|||
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } |
|||
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } |
|||
.@{fa-css-prefix}-mail-forward:before, |
|||
.@{fa-css-prefix}-share:before { content: @fa-var-share; } |
|||
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } |
|||
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } |
|||
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } |
|||
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } |
|||
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } |
|||
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } |
|||
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } |
|||
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } |
|||
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } |
|||
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } |
|||
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } |
|||
.@{fa-css-prefix}-warning:before, |
|||
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } |
|||
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } |
|||
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } |
|||
.@{fa-css-prefix}-random:before { content: @fa-var-random; } |
|||
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } |
|||
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } |
|||
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } |
|||
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } |
|||
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } |
|||
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } |
|||
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } |
|||
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } |
|||
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } |
|||
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } |
|||
.@{fa-css-prefix}-bar-chart-o:before, |
|||
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } |
|||
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } |
|||
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } |
|||
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } |
|||
.@{fa-css-prefix}-key:before { content: @fa-var-key; } |
|||
.@{fa-css-prefix}-gears:before, |
|||
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } |
|||
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } |
|||
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } |
|||
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } |
|||
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } |
|||
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } |
|||
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } |
|||
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } |
|||
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } |
|||
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } |
|||
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } |
|||
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } |
|||
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } |
|||
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } |
|||
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } |
|||
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } |
|||
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } |
|||
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } |
|||
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } |
|||
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } |
|||
.@{fa-css-prefix}-facebook-f:before, |
|||
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } |
|||
.@{fa-css-prefix}-github:before { content: @fa-var-github; } |
|||
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } |
|||
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } |
|||
.@{fa-css-prefix}-feed:before, |
|||
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } |
|||
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } |
|||
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } |
|||
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } |
|||
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } |
|||
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } |
|||
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } |
|||
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } |
|||
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } |
|||
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } |
|||
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } |
|||
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } |
|||
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } |
|||
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } |
|||
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } |
|||
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } |
|||
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } |
|||
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } |
|||
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } |
|||
.@{fa-css-prefix}-group:before, |
|||
.@{fa-css-prefix}-users:before { content: @fa-var-users; } |
|||
.@{fa-css-prefix}-chain:before, |
|||
.@{fa-css-prefix}-link:before { content: @fa-var-link; } |
|||
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } |
|||
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } |
|||
.@{fa-css-prefix}-cut:before, |
|||
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } |
|||
.@{fa-css-prefix}-copy:before, |
|||
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } |
|||
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } |
|||
.@{fa-css-prefix}-save:before, |
|||
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } |
|||
.@{fa-css-prefix}-square:before { content: @fa-var-square; } |
|||
.@{fa-css-prefix}-navicon:before, |
|||
.@{fa-css-prefix}-reorder:before, |
|||
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } |
|||
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } |
|||
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } |
|||
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } |
|||
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } |
|||
.@{fa-css-prefix}-table:before { content: @fa-var-table; } |
|||
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } |
|||
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } |
|||
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } |
|||
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } |
|||
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } |
|||
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } |
|||
.@{fa-css-prefix}-money:before { content: @fa-var-money; } |
|||
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } |
|||
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } |
|||
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } |
|||
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } |
|||
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } |
|||
.@{fa-css-prefix}-unsorted:before, |
|||
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } |
|||
.@{fa-css-prefix}-sort-down:before, |
|||
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } |
|||
.@{fa-css-prefix}-sort-up:before, |
|||
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } |
|||
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } |
|||
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } |
|||
.@{fa-css-prefix}-rotate-left:before, |
|||
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } |
|||
.@{fa-css-prefix}-legal:before, |
|||
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } |
|||
.@{fa-css-prefix}-dashboard:before, |
|||
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } |
|||
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } |
|||
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } |
|||
.@{fa-css-prefix}-flash:before, |
|||
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } |
|||
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } |
|||
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } |
|||
.@{fa-css-prefix}-paste:before, |
|||
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } |
|||
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } |
|||
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } |
|||
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } |
|||
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } |
|||
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } |
|||
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } |
|||
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } |
|||
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } |
|||
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } |
|||
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } |
|||
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } |
|||
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } |
|||
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } |
|||
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } |
|||
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } |
|||
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } |
|||
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } |
|||
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } |
|||
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } |
|||
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } |
|||
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } |
|||
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } |
|||
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } |
|||
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } |
|||
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } |
|||
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } |
|||
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } |
|||
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } |
|||
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } |
|||
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } |
|||
.@{fa-css-prefix}-mobile-phone:before, |
|||
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } |
|||
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } |
|||
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } |
|||
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } |
|||
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } |
|||
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } |
|||
.@{fa-css-prefix}-mail-reply:before, |
|||
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } |
|||
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } |
|||
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } |
|||
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } |
|||
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } |
|||
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } |
|||
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } |
|||
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } |
|||
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } |
|||
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } |
|||
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } |
|||
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } |
|||
.@{fa-css-prefix}-code:before { content: @fa-var-code; } |
|||
.@{fa-css-prefix}-mail-reply-all:before, |
|||
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } |
|||
.@{fa-css-prefix}-star-half-empty:before, |
|||
.@{fa-css-prefix}-star-half-full:before, |
|||
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } |
|||
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } |
|||
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } |
|||
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } |
|||
.@{fa-css-prefix}-unlink:before, |
|||
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } |
|||
.@{fa-css-prefix}-question:before { content: @fa-var-question; } |
|||
.@{fa-css-prefix}-info:before { content: @fa-var-info; } |
|||
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } |
|||
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } |
|||
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } |
|||
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } |
|||
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } |
|||
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } |
|||
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } |
|||
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } |
|||
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } |
|||
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } |
|||
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } |
|||
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } |
|||
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } |
|||
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } |
|||
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } |
|||
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } |
|||
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } |
|||
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } |
|||
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } |
|||
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } |
|||
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } |
|||
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } |
|||
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } |
|||
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } |
|||
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } |
|||
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } |
|||
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } |
|||
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } |
|||
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } |
|||
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } |
|||
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } |
|||
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } |
|||
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } |
|||
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } |
|||
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } |
|||
.@{fa-css-prefix}-toggle-down:before, |
|||
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } |
|||
.@{fa-css-prefix}-toggle-up:before, |
|||
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } |
|||
.@{fa-css-prefix}-toggle-right:before, |
|||
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } |
|||
.@{fa-css-prefix}-euro:before, |
|||
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } |
|||
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } |
|||
.@{fa-css-prefix}-dollar:before, |
|||
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } |
|||
.@{fa-css-prefix}-rupee:before, |
|||
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } |
|||
.@{fa-css-prefix}-cny:before, |
|||
.@{fa-css-prefix}-rmb:before, |
|||
.@{fa-css-prefix}-yen:before, |
|||
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } |
|||
.@{fa-css-prefix}-ruble:before, |
|||
.@{fa-css-prefix}-rouble:before, |
|||
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } |
|||
.@{fa-css-prefix}-won:before, |
|||
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } |
|||
.@{fa-css-prefix}-bitcoin:before, |
|||
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } |
|||
.@{fa-css-prefix}-file:before { content: @fa-var-file; } |
|||
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } |
|||
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } |
|||
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } |
|||
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } |
|||
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } |
|||
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } |
|||
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } |
|||
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } |
|||
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } |
|||
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } |
|||
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } |
|||
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } |
|||
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } |
|||
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } |
|||
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } |
|||
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } |
|||
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } |
|||
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } |
|||
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } |
|||
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } |
|||
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } |
|||
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } |
|||
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } |
|||
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } |
|||
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } |
|||
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } |
|||
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } |
|||
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } |
|||
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } |
|||
.@{fa-css-prefix}-android:before { content: @fa-var-android; } |
|||
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } |
|||
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } |
|||
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } |
|||
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } |
|||
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } |
|||
.@{fa-css-prefix}-female:before { content: @fa-var-female; } |
|||
.@{fa-css-prefix}-male:before { content: @fa-var-male; } |
|||
.@{fa-css-prefix}-gittip:before, |
|||
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } |
|||
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } |
|||
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } |
|||
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } |
|||
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } |
|||
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } |
|||
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } |
|||
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } |
|||
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } |
|||
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } |
|||
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } |
|||
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } |
|||
.@{fa-css-prefix}-toggle-left:before, |
|||
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } |
|||
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } |
|||
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } |
|||
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } |
|||
.@{fa-css-prefix}-turkish-lira:before, |
|||
.@{fa-css-prefix}-try:before { content: @fa-var-try; } |
|||
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } |
|||
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } |
|||
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } |
|||
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } |
|||
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } |
|||
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } |
|||
.@{fa-css-prefix}-institution:before, |
|||
.@{fa-css-prefix}-bank:before, |
|||
.@{fa-css-prefix}-university:before { content: @fa-var-university; } |
|||
.@{fa-css-prefix}-mortar-board:before, |
|||
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } |
|||
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } |
|||
.@{fa-css-prefix}-google:before { content: @fa-var-google; } |
|||
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } |
|||
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } |
|||
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } |
|||
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } |
|||
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } |
|||
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } |
|||
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } |
|||
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } |
|||
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } |
|||
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } |
|||
.@{fa-css-prefix}-language:before { content: @fa-var-language; } |
|||
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } |
|||
.@{fa-css-prefix}-building:before { content: @fa-var-building; } |
|||
.@{fa-css-prefix}-child:before { content: @fa-var-child; } |
|||
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } |
|||
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } |
|||
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } |
|||
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } |
|||
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } |
|||
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } |
|||
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } |
|||
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } |
|||
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } |
|||
.@{fa-css-prefix}-automobile:before, |
|||
.@{fa-css-prefix}-car:before { content: @fa-var-car; } |
|||
.@{fa-css-prefix}-cab:before, |
|||
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } |
|||
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } |
|||
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } |
|||
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } |
|||
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } |
|||
.@{fa-css-prefix}-database:before { content: @fa-var-database; } |
|||
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } |
|||
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } |
|||
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } |
|||
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } |
|||
.@{fa-css-prefix}-file-photo-o:before, |
|||
.@{fa-css-prefix}-file-picture-o:before, |
|||
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } |
|||
.@{fa-css-prefix}-file-zip-o:before, |
|||
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } |
|||
.@{fa-css-prefix}-file-sound-o:before, |
|||
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } |
|||
.@{fa-css-prefix}-file-movie-o:before, |
|||
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } |
|||
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } |
|||
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } |
|||
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } |
|||
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } |
|||
.@{fa-css-prefix}-life-bouy:before, |
|||
.@{fa-css-prefix}-life-buoy:before, |
|||
.@{fa-css-prefix}-life-saver:before, |
|||
.@{fa-css-prefix}-support:before, |
|||
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } |
|||
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } |
|||
.@{fa-css-prefix}-ra:before, |
|||
.@{fa-css-prefix}-resistance:before, |
|||
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } |
|||
.@{fa-css-prefix}-ge:before, |
|||
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } |
|||
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } |
|||
.@{fa-css-prefix}-git:before { content: @fa-var-git; } |
|||
.@{fa-css-prefix}-y-combinator-square:before, |
|||
.@{fa-css-prefix}-yc-square:before, |
|||
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } |
|||
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } |
|||
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } |
|||
.@{fa-css-prefix}-wechat:before, |
|||
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } |
|||
.@{fa-css-prefix}-send:before, |
|||
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } |
|||
.@{fa-css-prefix}-send-o:before, |
|||
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } |
|||
.@{fa-css-prefix}-history:before { content: @fa-var-history; } |
|||
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } |
|||
.@{fa-css-prefix}-header:before { content: @fa-var-header; } |
|||
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } |
|||
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } |
|||
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } |
|||
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } |
|||
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } |
|||
.@{fa-css-prefix}-soccer-ball-o:before, |
|||
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } |
|||
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } |
|||
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } |
|||
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } |
|||
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } |
|||
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } |
|||
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } |
|||
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } |
|||
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } |
|||
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } |
|||
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } |
|||
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } |
|||
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } |
|||
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } |
|||
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } |
|||
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } |
|||
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } |
|||
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } |
|||
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } |
|||
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } |
|||
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } |
|||
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } |
|||
.@{fa-css-prefix}-at:before { content: @fa-var-at; } |
|||
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } |
|||
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } |
|||
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } |
|||
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } |
|||
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } |
|||
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } |
|||
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } |
|||
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } |
|||
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } |
|||
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } |
|||
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } |
|||
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } |
|||
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } |
|||
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } |
|||
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } |
|||
.@{fa-css-prefix}-shekel:before, |
|||
.@{fa-css-prefix}-sheqel:before, |
|||
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } |
|||
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } |
|||
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } |
|||
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } |
|||
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } |
|||
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } |
|||
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } |
|||
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } |
|||
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } |
|||
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } |
|||
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } |
|||
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } |
|||
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } |
|||
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } |
|||
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } |
|||
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } |
|||
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } |
|||
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } |
|||
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } |
|||
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } |
|||
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } |
|||
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } |
|||
.@{fa-css-prefix}-intersex:before, |
|||
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } |
|||
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } |
|||
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } |
|||
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } |
|||
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } |
|||
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } |
|||
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } |
|||
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } |
|||
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } |
|||
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } |
|||
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } |
|||
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } |
|||
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } |
|||
.@{fa-css-prefix}-server:before { content: @fa-var-server; } |
|||
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } |
|||
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } |
|||
.@{fa-css-prefix}-hotel:before, |
|||
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } |
|||
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } |
|||
.@{fa-css-prefix}-train:before { content: @fa-var-train; } |
|||
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } |
|||
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } |
|||
.@{fa-css-prefix}-yc:before, |
|||
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } |
|||
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } |
|||
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } |
|||
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } |
|||
.@{fa-css-prefix}-battery-4:before, |
|||
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } |
|||
.@{fa-css-prefix}-battery-3:before, |
|||
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } |
|||
.@{fa-css-prefix}-battery-2:before, |
|||
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } |
|||
.@{fa-css-prefix}-battery-1:before, |
|||
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } |
|||
.@{fa-css-prefix}-battery-0:before, |
|||
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } |
|||
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } |
|||
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } |
|||
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } |
|||
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } |
|||
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } |
|||
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } |
|||
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } |
|||
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } |
|||
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } |
|||
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } |
|||
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } |
|||
.@{fa-css-prefix}-hourglass-1:before, |
|||
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } |
|||
.@{fa-css-prefix}-hourglass-2:before, |
|||
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } |
|||
.@{fa-css-prefix}-hourglass-3:before, |
|||
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } |
|||
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } |
|||
.@{fa-css-prefix}-hand-grab-o:before, |
|||
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } |
|||
.@{fa-css-prefix}-hand-stop-o:before, |
|||
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } |
|||
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } |
|||
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } |
|||
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } |
|||
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } |
|||
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } |
|||
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } |
|||
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } |
|||
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } |
|||
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } |
|||
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } |
|||
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } |
|||
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } |
|||
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } |
|||
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } |
|||
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } |
|||
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } |
|||
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } |
|||
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } |
|||
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } |
|||
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } |
|||
.@{fa-css-prefix}-tv:before, |
|||
.@{fa-css-prefix}-television:before { content: @fa-var-television; } |
|||
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } |
|||
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } |
|||
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } |
|||
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } |
|||
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } |
|||
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } |
|||
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } |
|||
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } |
|||
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } |
|||
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } |
|||
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } |
|||
.@{fa-css-prefix}-map:before { content: @fa-var-map; } |
|||
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } |
|||
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } |
|||
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } |
|||
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } |
|||
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } |
|||
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } |
|||
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } |
|||
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } |
|||
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } |
|||
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } |
|||
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } |
|||
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } |
|||
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } |
|||
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } |
|||
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } |
|||
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } |
|||
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } |
|||
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } |
|||
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } |
|||
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } |
|||
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } |
|||
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } |
|||
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } |
|||
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } |
|||
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } |
|||
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } |
|||
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } |
|||
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } |
|||
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } |
|||
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } |
|||
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } |
|||
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } |
|||
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } |
|||
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } |
|||
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } |
|||
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } |
|||
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } |
|||
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } |
|||
.@{fa-css-prefix}-asl-interpreting:before, |
|||
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } |
|||
.@{fa-css-prefix}-deafness:before, |
|||
.@{fa-css-prefix}-hard-of-hearing:before, |
|||
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } |
|||
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } |
|||
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } |
|||
.@{fa-css-prefix}-signing:before, |
|||
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } |
|||
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } |
|||
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } |
|||
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } |
|||
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } |
|||
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } |
|||
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } |
|||
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } |
|||
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } |
|||
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } |
|||
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } |
|||
.@{fa-css-prefix}-google-plus-circle:before, |
|||
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } |
|||
.@{fa-css-prefix}-fa:before, |
|||
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } |
|||
@ -0,0 +1,13 @@ |
|||
// Icon Sizes |
|||
// ------------------------- |
|||
|
|||
/* makes the font 33% larger relative to the icon container */ |
|||
.@{fa-css-prefix}-lg { |
|||
font-size: (4em / 3); |
|||
line-height: (3em / 4); |
|||
vertical-align: -15%; |
|||
} |
|||
.@{fa-css-prefix}-2x { font-size: 2em; } |
|||
.@{fa-css-prefix}-3x { font-size: 3em; } |
|||
.@{fa-css-prefix}-4x { font-size: 4em; } |
|||
.@{fa-css-prefix}-5x { font-size: 5em; } |
|||
@ -0,0 +1,19 @@ |
|||
// List Icons |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-ul { |
|||
padding-left: 0; |
|||
margin-left: @fa-li-width; |
|||
list-style-type: none; |
|||
> li { position: relative; } |
|||
} |
|||
.@{fa-css-prefix}-li { |
|||
position: absolute; |
|||
left: -@fa-li-width; |
|||
width: @fa-li-width; |
|||
top: (2em / 14); |
|||
text-align: center; |
|||
&.@{fa-css-prefix}-lg { |
|||
left: (-@fa-li-width + (4em / 14)); |
|||
} |
|||
} |
|||
@ -0,0 +1,60 @@ |
|||
// Mixins |
|||
// -------------------------- |
|||
|
|||
.fa-icon() { |
|||
display: inline-block; |
|||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration |
|||
font-size: inherit; // can't have font-size inherit on line above, so need to override |
|||
text-rendering: auto; // optimizelegibility throws things off #1094 |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
|
|||
} |
|||
|
|||
.fa-icon-rotate(@degrees, @rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; |
|||
-webkit-transform: rotate(@degrees); |
|||
-ms-transform: rotate(@degrees); |
|||
transform: rotate(@degrees); |
|||
} |
|||
|
|||
.fa-icon-flip(@horiz, @vert, @rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; |
|||
-webkit-transform: scale(@horiz, @vert); |
|||
-ms-transform: scale(@horiz, @vert); |
|||
transform: scale(@horiz, @vert); |
|||
} |
|||
|
|||
|
|||
// Only display content to screen readers. A la Bootstrap 4. |
|||
// |
|||
// See: http://a11yproject.com/posts/how-to-hide-content/ |
|||
|
|||
.sr-only() { |
|||
position: absolute; |
|||
width: 1px; |
|||
height: 1px; |
|||
padding: 0; |
|||
margin: -1px; |
|||
overflow: hidden; |
|||
clip: rect(0,0,0,0); |
|||
border: 0; |
|||
} |
|||
|
|||
// Use in conjunction with .sr-only to only display content when it's focused. |
|||
// |
|||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 |
|||
// |
|||
// Credit: HTML5 Boilerplate |
|||
|
|||
.sr-only-focusable() { |
|||
&:active, |
|||
&:focus { |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
margin: 0; |
|||
overflow: visible; |
|||
clip: auto; |
|||
} |
|||
} |
|||
@ -0,0 +1,15 @@ |
|||
/* FONT PATH |
|||
* -------------------------- */ |
|||
|
|||
@font-face { |
|||
font-family: 'FontAwesome'; |
|||
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); |
|||
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), |
|||
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), |
|||
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), |
|||
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), |
|||
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); |
|||
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts |
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
// Rotated & Flipped Icons |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } |
|||
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } |
|||
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } |
|||
|
|||
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } |
|||
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } |
|||
|
|||
// Hook for IE8-9 |
|||
// ------------------------- |
|||
|
|||
:root .@{fa-css-prefix}-rotate-90, |
|||
:root .@{fa-css-prefix}-rotate-180, |
|||
:root .@{fa-css-prefix}-rotate-270, |
|||
:root .@{fa-css-prefix}-flip-horizontal, |
|||
:root .@{fa-css-prefix}-flip-vertical { |
|||
filter: none; |
|||
} |
|||
@ -0,0 +1,5 @@ |
|||
// Screen Readers |
|||
// ------------------------- |
|||
|
|||
.sr-only { .sr-only(); } |
|||
.sr-only-focusable { .sr-only-focusable(); } |
|||
@ -0,0 +1,20 @@ |
|||
// Stacked Icons |
|||
// ------------------------- |
|||
|
|||
.@{fa-css-prefix}-stack { |
|||
position: relative; |
|||
display: inline-block; |
|||
width: 2em; |
|||
height: 2em; |
|||
line-height: 2em; |
|||
vertical-align: middle; |
|||
} |
|||
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { |
|||
position: absolute; |
|||
left: 0; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
.@{fa-css-prefix}-stack-1x { line-height: inherit; } |
|||
.@{fa-css-prefix}-stack-2x { font-size: 2em; } |
|||
.@{fa-css-prefix}-inverse { color: @fa-inverse; } |
|||
@ -0,0 +1,744 @@ |
|||
// Variables |
|||
// -------------------------- |
|||
|
|||
@fa-font-path: "../fonts"; |
|||
@fa-font-size-base: 14px; |
|||
@fa-line-height-base: 1; |
|||
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly |
|||
@fa-css-prefix: fa; |
|||
@fa-version: "4.6.3"; |
|||
@fa-border-color: #eee; |
|||
@fa-inverse: #fff; |
|||
@fa-li-width: (30em / 14); |
|||
|
|||
@fa-var-500px: "\f26e"; |
|||
@fa-var-adjust: "\f042"; |
|||
@fa-var-adn: "\f170"; |
|||
@fa-var-align-center: "\f037"; |
|||
@fa-var-align-justify: "\f039"; |
|||
@fa-var-align-left: "\f036"; |
|||
@fa-var-align-right: "\f038"; |
|||
@fa-var-amazon: "\f270"; |
|||
@fa-var-ambulance: "\f0f9"; |
|||
@fa-var-american-sign-language-interpreting: "\f2a3"; |
|||
@fa-var-anchor: "\f13d"; |
|||
@fa-var-android: "\f17b"; |
|||
@fa-var-angellist: "\f209"; |
|||
@fa-var-angle-double-down: "\f103"; |
|||
@fa-var-angle-double-left: "\f100"; |
|||
@fa-var-angle-double-right: "\f101"; |
|||
@fa-var-angle-double-up: "\f102"; |
|||
@fa-var-angle-down: "\f107"; |
|||
@fa-var-angle-left: "\f104"; |
|||
@fa-var-angle-right: "\f105"; |
|||
@fa-var-angle-up: "\f106"; |
|||
@fa-var-apple: "\f179"; |
|||
@fa-var-archive: "\f187"; |
|||
@fa-var-area-chart: "\f1fe"; |
|||
@fa-var-arrow-circle-down: "\f0ab"; |
|||
@fa-var-arrow-circle-left: "\f0a8"; |
|||
@fa-var-arrow-circle-o-down: "\f01a"; |
|||
@fa-var-arrow-circle-o-left: "\f190"; |
|||
@fa-var-arrow-circle-o-right: "\f18e"; |
|||
@fa-var-arrow-circle-o-up: "\f01b"; |
|||
@fa-var-arrow-circle-right: "\f0a9"; |
|||
@fa-var-arrow-circle-up: "\f0aa"; |
|||
@fa-var-arrow-down: "\f063"; |
|||
@fa-var-arrow-left: "\f060"; |
|||
@fa-var-arrow-right: "\f061"; |
|||
@fa-var-arrow-up: "\f062"; |
|||
@fa-var-arrows: "\f047"; |
|||
@fa-var-arrows-alt: "\f0b2"; |
|||
@fa-var-arrows-h: "\f07e"; |
|||
@fa-var-arrows-v: "\f07d"; |
|||
@fa-var-asl-interpreting: "\f2a3"; |
|||
@fa-var-assistive-listening-systems: "\f2a2"; |
|||
@fa-var-asterisk: "\f069"; |
|||
@fa-var-at: "\f1fa"; |
|||
@fa-var-audio-description: "\f29e"; |
|||
@fa-var-automobile: "\f1b9"; |
|||
@fa-var-backward: "\f04a"; |
|||
@fa-var-balance-scale: "\f24e"; |
|||
@fa-var-ban: "\f05e"; |
|||
@fa-var-bank: "\f19c"; |
|||
@fa-var-bar-chart: "\f080"; |
|||
@fa-var-bar-chart-o: "\f080"; |
|||
@fa-var-barcode: "\f02a"; |
|||
@fa-var-bars: "\f0c9"; |
|||
@fa-var-battery-0: "\f244"; |
|||
@fa-var-battery-1: "\f243"; |
|||
@fa-var-battery-2: "\f242"; |
|||
@fa-var-battery-3: "\f241"; |
|||
@fa-var-battery-4: "\f240"; |
|||
@fa-var-battery-empty: "\f244"; |
|||
@fa-var-battery-full: "\f240"; |
|||
@fa-var-battery-half: "\f242"; |
|||
@fa-var-battery-quarter: "\f243"; |
|||
@fa-var-battery-three-quarters: "\f241"; |
|||
@fa-var-bed: "\f236"; |
|||
@fa-var-beer: "\f0fc"; |
|||
@fa-var-behance: "\f1b4"; |
|||
@fa-var-behance-square: "\f1b5"; |
|||
@fa-var-bell: "\f0f3"; |
|||
@fa-var-bell-o: "\f0a2"; |
|||
@fa-var-bell-slash: "\f1f6"; |
|||
@fa-var-bell-slash-o: "\f1f7"; |
|||
@fa-var-bicycle: "\f206"; |
|||
@fa-var-binoculars: "\f1e5"; |
|||
@fa-var-birthday-cake: "\f1fd"; |
|||
@fa-var-bitbucket: "\f171"; |
|||
@fa-var-bitbucket-square: "\f172"; |
|||
@fa-var-bitcoin: "\f15a"; |
|||
@fa-var-black-tie: "\f27e"; |
|||
@fa-var-blind: "\f29d"; |
|||
@fa-var-bluetooth: "\f293"; |
|||
@fa-var-bluetooth-b: "\f294"; |
|||
@fa-var-bold: "\f032"; |
|||
@fa-var-bolt: "\f0e7"; |
|||
@fa-var-bomb: "\f1e2"; |
|||
@fa-var-book: "\f02d"; |
|||
@fa-var-bookmark: "\f02e"; |
|||
@fa-var-bookmark-o: "\f097"; |
|||
@fa-var-braille: "\f2a1"; |
|||
@fa-var-briefcase: "\f0b1"; |
|||
@fa-var-btc: "\f15a"; |
|||
@fa-var-bug: "\f188"; |
|||
@fa-var-building: "\f1ad"; |
|||
@fa-var-building-o: "\f0f7"; |
|||
@fa-var-bullhorn: "\f0a1"; |
|||
@fa-var-bullseye: "\f140"; |
|||
@fa-var-bus: "\f207"; |
|||
@fa-var-buysellads: "\f20d"; |
|||
@fa-var-cab: "\f1ba"; |
|||
@fa-var-calculator: "\f1ec"; |
|||
@fa-var-calendar: "\f073"; |
|||
@fa-var-calendar-check-o: "\f274"; |
|||
@fa-var-calendar-minus-o: "\f272"; |
|||
@fa-var-calendar-o: "\f133"; |
|||
@fa-var-calendar-plus-o: "\f271"; |
|||
@fa-var-calendar-times-o: "\f273"; |
|||
@fa-var-camera: "\f030"; |
|||
@fa-var-camera-retro: "\f083"; |
|||
@fa-var-car: "\f1b9"; |
|||
@fa-var-caret-down: "\f0d7"; |
|||
@fa-var-caret-left: "\f0d9"; |
|||
@fa-var-caret-right: "\f0da"; |
|||
@fa-var-caret-square-o-down: "\f150"; |
|||
@fa-var-caret-square-o-left: "\f191"; |
|||
@fa-var-caret-square-o-right: "\f152"; |
|||
@fa-var-caret-square-o-up: "\f151"; |
|||
@fa-var-caret-up: "\f0d8"; |
|||
@fa-var-cart-arrow-down: "\f218"; |
|||
@fa-var-cart-plus: "\f217"; |
|||
@fa-var-cc: "\f20a"; |
|||
@fa-var-cc-amex: "\f1f3"; |
|||
@fa-var-cc-diners-club: "\f24c"; |
|||
@fa-var-cc-discover: "\f1f2"; |
|||
@fa-var-cc-jcb: "\f24b"; |
|||
@fa-var-cc-mastercard: "\f1f1"; |
|||
@fa-var-cc-paypal: "\f1f4"; |
|||
@fa-var-cc-stripe: "\f1f5"; |
|||
@fa-var-cc-visa: "\f1f0"; |
|||
@fa-var-certificate: "\f0a3"; |
|||
@fa-var-chain: "\f0c1"; |
|||
@fa-var-chain-broken: "\f127"; |
|||
@fa-var-check: "\f00c"; |
|||
@fa-var-check-circle: "\f058"; |
|||
@fa-var-check-circle-o: "\f05d"; |
|||
@fa-var-check-square: "\f14a"; |
|||
@fa-var-check-square-o: "\f046"; |
|||
@fa-var-chevron-circle-down: "\f13a"; |
|||
@fa-var-chevron-circle-left: "\f137"; |
|||
@fa-var-chevron-circle-right: "\f138"; |
|||
@fa-var-chevron-circle-up: "\f139"; |
|||
@fa-var-chevron-down: "\f078"; |
|||
@fa-var-chevron-left: "\f053"; |
|||
@fa-var-chevron-right: "\f054"; |
|||
@fa-var-chevron-up: "\f077"; |
|||
@fa-var-child: "\f1ae"; |
|||
@fa-var-chrome: "\f268"; |
|||
@fa-var-circle: "\f111"; |
|||
@fa-var-circle-o: "\f10c"; |
|||
@fa-var-circle-o-notch: "\f1ce"; |
|||
@fa-var-circle-thin: "\f1db"; |
|||
@fa-var-clipboard: "\f0ea"; |
|||
@fa-var-clock-o: "\f017"; |
|||
@fa-var-clone: "\f24d"; |
|||
@fa-var-close: "\f00d"; |
|||
@fa-var-cloud: "\f0c2"; |
|||
@fa-var-cloud-download: "\f0ed"; |
|||
@fa-var-cloud-upload: "\f0ee"; |
|||
@fa-var-cny: "\f157"; |
|||
@fa-var-code: "\f121"; |
|||
@fa-var-code-fork: "\f126"; |
|||
@fa-var-codepen: "\f1cb"; |
|||
@fa-var-codiepie: "\f284"; |
|||
@fa-var-coffee: "\f0f4"; |
|||
@fa-var-cog: "\f013"; |
|||
@fa-var-cogs: "\f085"; |
|||
@fa-var-columns: "\f0db"; |
|||
@fa-var-comment: "\f075"; |
|||
@fa-var-comment-o: "\f0e5"; |
|||
@fa-var-commenting: "\f27a"; |
|||
@fa-var-commenting-o: "\f27b"; |
|||
@fa-var-comments: "\f086"; |
|||
@fa-var-comments-o: "\f0e6"; |
|||
@fa-var-compass: "\f14e"; |
|||
@fa-var-compress: "\f066"; |
|||
@fa-var-connectdevelop: "\f20e"; |
|||
@fa-var-contao: "\f26d"; |
|||
@fa-var-copy: "\f0c5"; |
|||
@fa-var-copyright: "\f1f9"; |
|||
@fa-var-creative-commons: "\f25e"; |
|||
@fa-var-credit-card: "\f09d"; |
|||
@fa-var-credit-card-alt: "\f283"; |
|||
@fa-var-crop: "\f125"; |
|||
@fa-var-crosshairs: "\f05b"; |
|||
@fa-var-css3: "\f13c"; |
|||
@fa-var-cube: "\f1b2"; |
|||
@fa-var-cubes: "\f1b3"; |
|||
@fa-var-cut: "\f0c4"; |
|||
@fa-var-cutlery: "\f0f5"; |
|||
@fa-var-dashboard: "\f0e4"; |
|||
@fa-var-dashcube: "\f210"; |
|||
@fa-var-database: "\f1c0"; |
|||
@fa-var-deaf: "\f2a4"; |
|||
@fa-var-deafness: "\f2a4"; |
|||
@fa-var-dedent: "\f03b"; |
|||
@fa-var-delicious: "\f1a5"; |
|||
@fa-var-desktop: "\f108"; |
|||
@fa-var-deviantart: "\f1bd"; |
|||
@fa-var-diamond: "\f219"; |
|||
@fa-var-digg: "\f1a6"; |
|||
@fa-var-dollar: "\f155"; |
|||
@fa-var-dot-circle-o: "\f192"; |
|||
@fa-var-download: "\f019"; |
|||
@fa-var-dribbble: "\f17d"; |
|||
@fa-var-dropbox: "\f16b"; |
|||
@fa-var-drupal: "\f1a9"; |
|||
@fa-var-edge: "\f282"; |
|||
@fa-var-edit: "\f044"; |
|||
@fa-var-eject: "\f052"; |
|||
@fa-var-ellipsis-h: "\f141"; |
|||
@fa-var-ellipsis-v: "\f142"; |
|||
@fa-var-empire: "\f1d1"; |
|||
@fa-var-envelope: "\f0e0"; |
|||
@fa-var-envelope-o: "\f003"; |
|||
@fa-var-envelope-square: "\f199"; |
|||
@fa-var-envira: "\f299"; |
|||
@fa-var-eraser: "\f12d"; |
|||
@fa-var-eur: "\f153"; |
|||
@fa-var-euro: "\f153"; |
|||
@fa-var-exchange: "\f0ec"; |
|||
@fa-var-exclamation: "\f12a"; |
|||
@fa-var-exclamation-circle: "\f06a"; |
|||
@fa-var-exclamation-triangle: "\f071"; |
|||
@fa-var-expand: "\f065"; |
|||
@fa-var-expeditedssl: "\f23e"; |
|||
@fa-var-external-link: "\f08e"; |
|||
@fa-var-external-link-square: "\f14c"; |
|||
@fa-var-eye: "\f06e"; |
|||
@fa-var-eye-slash: "\f070"; |
|||
@fa-var-eyedropper: "\f1fb"; |
|||
@fa-var-fa: "\f2b4"; |
|||
@fa-var-facebook: "\f09a"; |
|||
@fa-var-facebook-f: "\f09a"; |
|||
@fa-var-facebook-official: "\f230"; |
|||
@fa-var-facebook-square: "\f082"; |
|||
@fa-var-fast-backward: "\f049"; |
|||
@fa-var-fast-forward: "\f050"; |
|||
@fa-var-fax: "\f1ac"; |
|||
@fa-var-feed: "\f09e"; |
|||
@fa-var-female: "\f182"; |
|||
@fa-var-fighter-jet: "\f0fb"; |
|||
@fa-var-file: "\f15b"; |
|||
@fa-var-file-archive-o: "\f1c6"; |
|||
@fa-var-file-audio-o: "\f1c7"; |
|||
@fa-var-file-code-o: "\f1c9"; |
|||
@fa-var-file-excel-o: "\f1c3"; |
|||
@fa-var-file-image-o: "\f1c5"; |
|||
@fa-var-file-movie-o: "\f1c8"; |
|||
@fa-var-file-o: "\f016"; |
|||
@fa-var-file-pdf-o: "\f1c1"; |
|||
@fa-var-file-photo-o: "\f1c5"; |
|||
@fa-var-file-picture-o: "\f1c5"; |
|||
@fa-var-file-powerpoint-o: "\f1c4"; |
|||
@fa-var-file-sound-o: "\f1c7"; |
|||
@fa-var-file-text: "\f15c"; |
|||
@fa-var-file-text-o: "\f0f6"; |
|||
@fa-var-file-video-o: "\f1c8"; |
|||
@fa-var-file-word-o: "\f1c2"; |
|||
@fa-var-file-zip-o: "\f1c6"; |
|||
@fa-var-files-o: "\f0c5"; |
|||
@fa-var-film: "\f008"; |
|||
@fa-var-filter: "\f0b0"; |
|||
@fa-var-fire: "\f06d"; |
|||
@fa-var-fire-extinguisher: "\f134"; |
|||
@fa-var-firefox: "\f269"; |
|||
@fa-var-first-order: "\f2b0"; |
|||
@fa-var-flag: "\f024"; |
|||
@fa-var-flag-checkered: "\f11e"; |
|||
@fa-var-flag-o: "\f11d"; |
|||
@fa-var-flash: "\f0e7"; |
|||
@fa-var-flask: "\f0c3"; |
|||
@fa-var-flickr: "\f16e"; |
|||
@fa-var-floppy-o: "\f0c7"; |
|||
@fa-var-folder: "\f07b"; |
|||
@fa-var-folder-o: "\f114"; |
|||
@fa-var-folder-open: "\f07c"; |
|||
@fa-var-folder-open-o: "\f115"; |
|||
@fa-var-font: "\f031"; |
|||
@fa-var-font-awesome: "\f2b4"; |
|||
@fa-var-fonticons: "\f280"; |
|||
@fa-var-fort-awesome: "\f286"; |
|||
@fa-var-forumbee: "\f211"; |
|||
@fa-var-forward: "\f04e"; |
|||
@fa-var-foursquare: "\f180"; |
|||
@fa-var-frown-o: "\f119"; |
|||
@fa-var-futbol-o: "\f1e3"; |
|||
@fa-var-gamepad: "\f11b"; |
|||
@fa-var-gavel: "\f0e3"; |
|||
@fa-var-gbp: "\f154"; |
|||
@fa-var-ge: "\f1d1"; |
|||
@fa-var-gear: "\f013"; |
|||
@fa-var-gears: "\f085"; |
|||
@fa-var-genderless: "\f22d"; |
|||
@fa-var-get-pocket: "\f265"; |
|||
@fa-var-gg: "\f260"; |
|||
@fa-var-gg-circle: "\f261"; |
|||
@fa-var-gift: "\f06b"; |
|||
@fa-var-git: "\f1d3"; |
|||
@fa-var-git-square: "\f1d2"; |
|||
@fa-var-github: "\f09b"; |
|||
@fa-var-github-alt: "\f113"; |
|||
@fa-var-github-square: "\f092"; |
|||
@fa-var-gitlab: "\f296"; |
|||
@fa-var-gittip: "\f184"; |
|||
@fa-var-glass: "\f000"; |
|||
@fa-var-glide: "\f2a5"; |
|||
@fa-var-glide-g: "\f2a6"; |
|||
@fa-var-globe: "\f0ac"; |
|||
@fa-var-google: "\f1a0"; |
|||
@fa-var-google-plus: "\f0d5"; |
|||
@fa-var-google-plus-circle: "\f2b3"; |
|||
@fa-var-google-plus-official: "\f2b3"; |
|||
@fa-var-google-plus-square: "\f0d4"; |
|||
@fa-var-google-wallet: "\f1ee"; |
|||
@fa-var-graduation-cap: "\f19d"; |
|||
@fa-var-gratipay: "\f184"; |
|||
@fa-var-group: "\f0c0"; |
|||
@fa-var-h-square: "\f0fd"; |
|||
@fa-var-hacker-news: "\f1d4"; |
|||
@fa-var-hand-grab-o: "\f255"; |
|||
@fa-var-hand-lizard-o: "\f258"; |
|||
@fa-var-hand-o-down: "\f0a7"; |
|||
@fa-var-hand-o-left: "\f0a5"; |
|||
@fa-var-hand-o-right: "\f0a4"; |
|||
@fa-var-hand-o-up: "\f0a6"; |
|||
@fa-var-hand-paper-o: "\f256"; |
|||
@fa-var-hand-peace-o: "\f25b"; |
|||
@fa-var-hand-pointer-o: "\f25a"; |
|||
@fa-var-hand-rock-o: "\f255"; |
|||
@fa-var-hand-scissors-o: "\f257"; |
|||
@fa-var-hand-spock-o: "\f259"; |
|||
@fa-var-hand-stop-o: "\f256"; |
|||
@fa-var-hard-of-hearing: "\f2a4"; |
|||
@fa-var-hashtag: "\f292"; |
|||
@fa-var-hdd-o: "\f0a0"; |
|||
@fa-var-header: "\f1dc"; |
|||
@fa-var-headphones: "\f025"; |
|||
@fa-var-heart: "\f004"; |
|||
@fa-var-heart-o: "\f08a"; |
|||
@fa-var-heartbeat: "\f21e"; |
|||
@fa-var-history: "\f1da"; |
|||
@fa-var-home: "\f015"; |
|||
@fa-var-hospital-o: "\f0f8"; |
|||
@fa-var-hotel: "\f236"; |
|||
@fa-var-hourglass: "\f254"; |
|||
@fa-var-hourglass-1: "\f251"; |
|||
@fa-var-hourglass-2: "\f252"; |
|||
@fa-var-hourglass-3: "\f253"; |
|||
@fa-var-hourglass-end: "\f253"; |
|||
@fa-var-hourglass-half: "\f252"; |
|||
@fa-var-hourglass-o: "\f250"; |
|||
@fa-var-hourglass-start: "\f251"; |
|||
@fa-var-houzz: "\f27c"; |
|||
@fa-var-html5: "\f13b"; |
|||
@fa-var-i-cursor: "\f246"; |
|||
@fa-var-ils: "\f20b"; |
|||
@fa-var-image: "\f03e"; |
|||
@fa-var-inbox: "\f01c"; |
|||
@fa-var-indent: "\f03c"; |
|||
@fa-var-industry: "\f275"; |
|||
@fa-var-info: "\f129"; |
|||
@fa-var-info-circle: "\f05a"; |
|||
@fa-var-inr: "\f156"; |
|||
@fa-var-instagram: "\f16d"; |
|||
@fa-var-institution: "\f19c"; |
|||
@fa-var-internet-explorer: "\f26b"; |
|||
@fa-var-intersex: "\f224"; |
|||
@fa-var-ioxhost: "\f208"; |
|||
@fa-var-italic: "\f033"; |
|||
@fa-var-joomla: "\f1aa"; |
|||
@fa-var-jpy: "\f157"; |
|||
@fa-var-jsfiddle: "\f1cc"; |
|||
@fa-var-key: "\f084"; |
|||
@fa-var-keyboard-o: "\f11c"; |
|||
@fa-var-krw: "\f159"; |
|||
@fa-var-language: "\f1ab"; |
|||
@fa-var-laptop: "\f109"; |
|||
@fa-var-lastfm: "\f202"; |
|||
@fa-var-lastfm-square: "\f203"; |
|||
@fa-var-leaf: "\f06c"; |
|||
@fa-var-leanpub: "\f212"; |
|||
@fa-var-legal: "\f0e3"; |
|||
@fa-var-lemon-o: "\f094"; |
|||
@fa-var-level-down: "\f149"; |
|||
@fa-var-level-up: "\f148"; |
|||
@fa-var-life-bouy: "\f1cd"; |
|||
@fa-var-life-buoy: "\f1cd"; |
|||
@fa-var-life-ring: "\f1cd"; |
|||
@fa-var-life-saver: "\f1cd"; |
|||
@fa-var-lightbulb-o: "\f0eb"; |
|||
@fa-var-line-chart: "\f201"; |
|||
@fa-var-link: "\f0c1"; |
|||
@fa-var-linkedin: "\f0e1"; |
|||
@fa-var-linkedin-square: "\f08c"; |
|||
@fa-var-linux: "\f17c"; |
|||
@fa-var-list: "\f03a"; |
|||
@fa-var-list-alt: "\f022"; |
|||
@fa-var-list-ol: "\f0cb"; |
|||
@fa-var-list-ul: "\f0ca"; |
|||
@fa-var-location-arrow: "\f124"; |
|||
@fa-var-lock: "\f023"; |
|||
@fa-var-long-arrow-down: "\f175"; |
|||
@fa-var-long-arrow-left: "\f177"; |
|||
@fa-var-long-arrow-right: "\f178"; |
|||
@fa-var-long-arrow-up: "\f176"; |
|||
@fa-var-low-vision: "\f2a8"; |
|||
@fa-var-magic: "\f0d0"; |
|||
@fa-var-magnet: "\f076"; |
|||
@fa-var-mail-forward: "\f064"; |
|||
@fa-var-mail-reply: "\f112"; |
|||
@fa-var-mail-reply-all: "\f122"; |
|||
@fa-var-male: "\f183"; |
|||
@fa-var-map: "\f279"; |
|||
@fa-var-map-marker: "\f041"; |
|||
@fa-var-map-o: "\f278"; |
|||
@fa-var-map-pin: "\f276"; |
|||
@fa-var-map-signs: "\f277"; |
|||
@fa-var-mars: "\f222"; |
|||
@fa-var-mars-double: "\f227"; |
|||
@fa-var-mars-stroke: "\f229"; |
|||
@fa-var-mars-stroke-h: "\f22b"; |
|||
@fa-var-mars-stroke-v: "\f22a"; |
|||
@fa-var-maxcdn: "\f136"; |
|||
@fa-var-meanpath: "\f20c"; |
|||
@fa-var-medium: "\f23a"; |
|||
@fa-var-medkit: "\f0fa"; |
|||
@fa-var-meh-o: "\f11a"; |
|||
@fa-var-mercury: "\f223"; |
|||
@fa-var-microphone: "\f130"; |
|||
@fa-var-microphone-slash: "\f131"; |
|||
@fa-var-minus: "\f068"; |
|||
@fa-var-minus-circle: "\f056"; |
|||
@fa-var-minus-square: "\f146"; |
|||
@fa-var-minus-square-o: "\f147"; |
|||
@fa-var-mixcloud: "\f289"; |
|||
@fa-var-mobile: "\f10b"; |
|||
@fa-var-mobile-phone: "\f10b"; |
|||
@fa-var-modx: "\f285"; |
|||
@fa-var-money: "\f0d6"; |
|||
@fa-var-moon-o: "\f186"; |
|||
@fa-var-mortar-board: "\f19d"; |
|||
@fa-var-motorcycle: "\f21c"; |
|||
@fa-var-mouse-pointer: "\f245"; |
|||
@fa-var-music: "\f001"; |
|||
@fa-var-navicon: "\f0c9"; |
|||
@fa-var-neuter: "\f22c"; |
|||
@fa-var-newspaper-o: "\f1ea"; |
|||
@fa-var-object-group: "\f247"; |
|||
@fa-var-object-ungroup: "\f248"; |
|||
@fa-var-odnoklassniki: "\f263"; |
|||
@fa-var-odnoklassniki-square: "\f264"; |
|||
@fa-var-opencart: "\f23d"; |
|||
@fa-var-openid: "\f19b"; |
|||
@fa-var-opera: "\f26a"; |
|||
@fa-var-optin-monster: "\f23c"; |
|||
@fa-var-outdent: "\f03b"; |
|||
@fa-var-pagelines: "\f18c"; |
|||
@fa-var-paint-brush: "\f1fc"; |
|||
@fa-var-paper-plane: "\f1d8"; |
|||
@fa-var-paper-plane-o: "\f1d9"; |
|||
@fa-var-paperclip: "\f0c6"; |
|||
@fa-var-paragraph: "\f1dd"; |
|||
@fa-var-paste: "\f0ea"; |
|||
@fa-var-pause: "\f04c"; |
|||
@fa-var-pause-circle: "\f28b"; |
|||
@fa-var-pause-circle-o: "\f28c"; |
|||
@fa-var-paw: "\f1b0"; |
|||
@fa-var-paypal: "\f1ed"; |
|||
@fa-var-pencil: "\f040"; |
|||
@fa-var-pencil-square: "\f14b"; |
|||
@fa-var-pencil-square-o: "\f044"; |
|||
@fa-var-percent: "\f295"; |
|||
@fa-var-phone: "\f095"; |
|||
@fa-var-phone-square: "\f098"; |
|||
@fa-var-photo: "\f03e"; |
|||
@fa-var-picture-o: "\f03e"; |
|||
@fa-var-pie-chart: "\f200"; |
|||
@fa-var-pied-piper: "\f2ae"; |
|||
@fa-var-pied-piper-alt: "\f1a8"; |
|||
@fa-var-pied-piper-pp: "\f1a7"; |
|||
@fa-var-pinterest: "\f0d2"; |
|||
@fa-var-pinterest-p: "\f231"; |
|||
@fa-var-pinterest-square: "\f0d3"; |
|||
@fa-var-plane: "\f072"; |
|||
@fa-var-play: "\f04b"; |
|||
@fa-var-play-circle: "\f144"; |
|||
@fa-var-play-circle-o: "\f01d"; |
|||
@fa-var-plug: "\f1e6"; |
|||
@fa-var-plus: "\f067"; |
|||
@fa-var-plus-circle: "\f055"; |
|||
@fa-var-plus-square: "\f0fe"; |
|||
@fa-var-plus-square-o: "\f196"; |
|||
@fa-var-power-off: "\f011"; |
|||
@fa-var-print: "\f02f"; |
|||
@fa-var-product-hunt: "\f288"; |
|||
@fa-var-puzzle-piece: "\f12e"; |
|||
@fa-var-qq: "\f1d6"; |
|||
@fa-var-qrcode: "\f029"; |
|||
@fa-var-question: "\f128"; |
|||
@fa-var-question-circle: "\f059"; |
|||
@fa-var-question-circle-o: "\f29c"; |
|||
@fa-var-quote-left: "\f10d"; |
|||
@fa-var-quote-right: "\f10e"; |
|||
@fa-var-ra: "\f1d0"; |
|||
@fa-var-random: "\f074"; |
|||
@fa-var-rebel: "\f1d0"; |
|||
@fa-var-recycle: "\f1b8"; |
|||
@fa-var-reddit: "\f1a1"; |
|||
@fa-var-reddit-alien: "\f281"; |
|||
@fa-var-reddit-square: "\f1a2"; |
|||
@fa-var-refresh: "\f021"; |
|||
@fa-var-registered: "\f25d"; |
|||
@fa-var-remove: "\f00d"; |
|||
@fa-var-renren: "\f18b"; |
|||
@fa-var-reorder: "\f0c9"; |
|||
@fa-var-repeat: "\f01e"; |
|||
@fa-var-reply: "\f112"; |
|||
@fa-var-reply-all: "\f122"; |
|||
@fa-var-resistance: "\f1d0"; |
|||
@fa-var-retweet: "\f079"; |
|||
@fa-var-rmb: "\f157"; |
|||
@fa-var-road: "\f018"; |
|||
@fa-var-rocket: "\f135"; |
|||
@fa-var-rotate-left: "\f0e2"; |
|||
@fa-var-rotate-right: "\f01e"; |
|||
@fa-var-rouble: "\f158"; |
|||
@fa-var-rss: "\f09e"; |
|||
@fa-var-rss-square: "\f143"; |
|||
@fa-var-rub: "\f158"; |
|||
@fa-var-ruble: "\f158"; |
|||
@fa-var-rupee: "\f156"; |
|||
@fa-var-safari: "\f267"; |
|||
@fa-var-save: "\f0c7"; |
|||
@fa-var-scissors: "\f0c4"; |
|||
@fa-var-scribd: "\f28a"; |
|||
@fa-var-search: "\f002"; |
|||
@fa-var-search-minus: "\f010"; |
|||
@fa-var-search-plus: "\f00e"; |
|||
@fa-var-sellsy: "\f213"; |
|||
@fa-var-send: "\f1d8"; |
|||
@fa-var-send-o: "\f1d9"; |
|||
@fa-var-server: "\f233"; |
|||
@fa-var-share: "\f064"; |
|||
@fa-var-share-alt: "\f1e0"; |
|||
@fa-var-share-alt-square: "\f1e1"; |
|||
@fa-var-share-square: "\f14d"; |
|||
@fa-var-share-square-o: "\f045"; |
|||
@fa-var-shekel: "\f20b"; |
|||
@fa-var-sheqel: "\f20b"; |
|||
@fa-var-shield: "\f132"; |
|||
@fa-var-ship: "\f21a"; |
|||
@fa-var-shirtsinbulk: "\f214"; |
|||
@fa-var-shopping-bag: "\f290"; |
|||
@fa-var-shopping-basket: "\f291"; |
|||
@fa-var-shopping-cart: "\f07a"; |
|||
@fa-var-sign-in: "\f090"; |
|||
@fa-var-sign-language: "\f2a7"; |
|||
@fa-var-sign-out: "\f08b"; |
|||
@fa-var-signal: "\f012"; |
|||
@fa-var-signing: "\f2a7"; |
|||
@fa-var-simplybuilt: "\f215"; |
|||
@fa-var-sitemap: "\f0e8"; |
|||
@fa-var-skyatlas: "\f216"; |
|||
@fa-var-skype: "\f17e"; |
|||
@fa-var-slack: "\f198"; |
|||
@fa-var-sliders: "\f1de"; |
|||
@fa-var-slideshare: "\f1e7"; |
|||
@fa-var-smile-o: "\f118"; |
|||
@fa-var-snapchat: "\f2ab"; |
|||
@fa-var-snapchat-ghost: "\f2ac"; |
|||
@fa-var-snapchat-square: "\f2ad"; |
|||
@fa-var-soccer-ball-o: "\f1e3"; |
|||
@fa-var-sort: "\f0dc"; |
|||
@fa-var-sort-alpha-asc: "\f15d"; |
|||
@fa-var-sort-alpha-desc: "\f15e"; |
|||
@fa-var-sort-amount-asc: "\f160"; |
|||
@fa-var-sort-amount-desc: "\f161"; |
|||
@fa-var-sort-asc: "\f0de"; |
|||
@fa-var-sort-desc: "\f0dd"; |
|||
@fa-var-sort-down: "\f0dd"; |
|||
@fa-var-sort-numeric-asc: "\f162"; |
|||
@fa-var-sort-numeric-desc: "\f163"; |
|||
@fa-var-sort-up: "\f0de"; |
|||
@fa-var-soundcloud: "\f1be"; |
|||
@fa-var-space-shuttle: "\f197"; |
|||
@fa-var-spinner: "\f110"; |
|||
@fa-var-spoon: "\f1b1"; |
|||
@fa-var-spotify: "\f1bc"; |
|||
@fa-var-square: "\f0c8"; |
|||
@fa-var-square-o: "\f096"; |
|||
@fa-var-stack-exchange: "\f18d"; |
|||
@fa-var-stack-overflow: "\f16c"; |
|||
@fa-var-star: "\f005"; |
|||
@fa-var-star-half: "\f089"; |
|||
@fa-var-star-half-empty: "\f123"; |
|||
@fa-var-star-half-full: "\f123"; |
|||
@fa-var-star-half-o: "\f123"; |
|||
@fa-var-star-o: "\f006"; |
|||
@fa-var-steam: "\f1b6"; |
|||
@fa-var-steam-square: "\f1b7"; |
|||
@fa-var-step-backward: "\f048"; |
|||
@fa-var-step-forward: "\f051"; |
|||
@fa-var-stethoscope: "\f0f1"; |
|||
@fa-var-sticky-note: "\f249"; |
|||
@fa-var-sticky-note-o: "\f24a"; |
|||
@fa-var-stop: "\f04d"; |
|||
@fa-var-stop-circle: "\f28d"; |
|||
@fa-var-stop-circle-o: "\f28e"; |
|||
@fa-var-street-view: "\f21d"; |
|||
@fa-var-strikethrough: "\f0cc"; |
|||
@fa-var-stumbleupon: "\f1a4"; |
|||
@fa-var-stumbleupon-circle: "\f1a3"; |
|||
@fa-var-subscript: "\f12c"; |
|||
@fa-var-subway: "\f239"; |
|||
@fa-var-suitcase: "\f0f2"; |
|||
@fa-var-sun-o: "\f185"; |
|||
@fa-var-superscript: "\f12b"; |
|||
@fa-var-support: "\f1cd"; |
|||
@fa-var-table: "\f0ce"; |
|||
@fa-var-tablet: "\f10a"; |
|||
@fa-var-tachometer: "\f0e4"; |
|||
@fa-var-tag: "\f02b"; |
|||
@fa-var-tags: "\f02c"; |
|||
@fa-var-tasks: "\f0ae"; |
|||
@fa-var-taxi: "\f1ba"; |
|||
@fa-var-television: "\f26c"; |
|||
@fa-var-tencent-weibo: "\f1d5"; |
|||
@fa-var-terminal: "\f120"; |
|||
@fa-var-text-height: "\f034"; |
|||
@fa-var-text-width: "\f035"; |
|||
@fa-var-th: "\f00a"; |
|||
@fa-var-th-large: "\f009"; |
|||
@fa-var-th-list: "\f00b"; |
|||
@fa-var-themeisle: "\f2b2"; |
|||
@fa-var-thumb-tack: "\f08d"; |
|||
@fa-var-thumbs-down: "\f165"; |
|||
@fa-var-thumbs-o-down: "\f088"; |
|||
@fa-var-thumbs-o-up: "\f087"; |
|||
@fa-var-thumbs-up: "\f164"; |
|||
@fa-var-ticket: "\f145"; |
|||
@fa-var-times: "\f00d"; |
|||
@fa-var-times-circle: "\f057"; |
|||
@fa-var-times-circle-o: "\f05c"; |
|||
@fa-var-tint: "\f043"; |
|||
@fa-var-toggle-down: "\f150"; |
|||
@fa-var-toggle-left: "\f191"; |
|||
@fa-var-toggle-off: "\f204"; |
|||
@fa-var-toggle-on: "\f205"; |
|||
@fa-var-toggle-right: "\f152"; |
|||
@fa-var-toggle-up: "\f151"; |
|||
@fa-var-trademark: "\f25c"; |
|||
@fa-var-train: "\f238"; |
|||
@fa-var-transgender: "\f224"; |
|||
@fa-var-transgender-alt: "\f225"; |
|||
@fa-var-trash: "\f1f8"; |
|||
@fa-var-trash-o: "\f014"; |
|||
@fa-var-tree: "\f1bb"; |
|||
@fa-var-trello: "\f181"; |
|||
@fa-var-tripadvisor: "\f262"; |
|||
@fa-var-trophy: "\f091"; |
|||
@fa-var-truck: "\f0d1"; |
|||
@fa-var-try: "\f195"; |
|||
@fa-var-tty: "\f1e4"; |
|||
@fa-var-tumblr: "\f173"; |
|||
@fa-var-tumblr-square: "\f174"; |
|||
@fa-var-turkish-lira: "\f195"; |
|||
@fa-var-tv: "\f26c"; |
|||
@fa-var-twitch: "\f1e8"; |
|||
@fa-var-twitter: "\f099"; |
|||
@fa-var-twitter-square: "\f081"; |
|||
@fa-var-umbrella: "\f0e9"; |
|||
@fa-var-underline: "\f0cd"; |
|||
@fa-var-undo: "\f0e2"; |
|||
@fa-var-universal-access: "\f29a"; |
|||
@fa-var-university: "\f19c"; |
|||
@fa-var-unlink: "\f127"; |
|||
@fa-var-unlock: "\f09c"; |
|||
@fa-var-unlock-alt: "\f13e"; |
|||
@fa-var-unsorted: "\f0dc"; |
|||
@fa-var-upload: "\f093"; |
|||
@fa-var-usb: "\f287"; |
|||
@fa-var-usd: "\f155"; |
|||
@fa-var-user: "\f007"; |
|||
@fa-var-user-md: "\f0f0"; |
|||
@fa-var-user-plus: "\f234"; |
|||
@fa-var-user-secret: "\f21b"; |
|||
@fa-var-user-times: "\f235"; |
|||
@fa-var-users: "\f0c0"; |
|||
@fa-var-venus: "\f221"; |
|||
@fa-var-venus-double: "\f226"; |
|||
@fa-var-venus-mars: "\f228"; |
|||
@fa-var-viacoin: "\f237"; |
|||
@fa-var-viadeo: "\f2a9"; |
|||
@fa-var-viadeo-square: "\f2aa"; |
|||
@fa-var-video-camera: "\f03d"; |
|||
@fa-var-vimeo: "\f27d"; |
|||
@fa-var-vimeo-square: "\f194"; |
|||
@fa-var-vine: "\f1ca"; |
|||
@fa-var-vk: "\f189"; |
|||
@fa-var-volume-control-phone: "\f2a0"; |
|||
@fa-var-volume-down: "\f027"; |
|||
@fa-var-volume-off: "\f026"; |
|||
@fa-var-volume-up: "\f028"; |
|||
@fa-var-warning: "\f071"; |
|||
@fa-var-wechat: "\f1d7"; |
|||
@fa-var-weibo: "\f18a"; |
|||
@fa-var-weixin: "\f1d7"; |
|||
@fa-var-whatsapp: "\f232"; |
|||
@fa-var-wheelchair: "\f193"; |
|||
@fa-var-wheelchair-alt: "\f29b"; |
|||
@fa-var-wifi: "\f1eb"; |
|||
@fa-var-wikipedia-w: "\f266"; |
|||
@fa-var-windows: "\f17a"; |
|||
@fa-var-won: "\f159"; |
|||
@fa-var-wordpress: "\f19a"; |
|||
@fa-var-wpbeginner: "\f297"; |
|||
@fa-var-wpforms: "\f298"; |
|||
@fa-var-wrench: "\f0ad"; |
|||
@fa-var-xing: "\f168"; |
|||
@fa-var-xing-square: "\f169"; |
|||
@fa-var-y-combinator: "\f23b"; |
|||
@fa-var-y-combinator-square: "\f1d4"; |
|||
@fa-var-yahoo: "\f19e"; |
|||
@fa-var-yc: "\f23b"; |
|||
@fa-var-yc-square: "\f1d4"; |
|||
@fa-var-yelp: "\f1e9"; |
|||
@fa-var-yen: "\f157"; |
|||
@fa-var-yoast: "\f2b1"; |
|||
@fa-var-youtube: "\f167"; |
|||
@fa-var-youtube-play: "\f16a"; |
|||
@fa-var-youtube-square: "\f166"; |
|||
|
|||
@ -0,0 +1,34 @@ |
|||
// Spinning Icons |
|||
// -------------------------- |
|||
|
|||
.#{$fa-css-prefix}-spin { |
|||
-webkit-animation: fa-spin 2s infinite linear; |
|||
animation: fa-spin 2s infinite linear; |
|||
} |
|||
|
|||
.#{$fa-css-prefix}-pulse { |
|||
-webkit-animation: fa-spin 1s infinite steps(8); |
|||
animation: fa-spin 1s infinite steps(8); |
|||
} |
|||
|
|||
@-webkit-keyframes fa-spin { |
|||
0% { |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
100% { |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
|
|||
@keyframes fa-spin { |
|||
0% { |
|||
-webkit-transform: rotate(0deg); |
|||
transform: rotate(0deg); |
|||
} |
|||
100% { |
|||
-webkit-transform: rotate(359deg); |
|||
transform: rotate(359deg); |
|||
} |
|||
} |
|||
@ -0,0 +1,25 @@ |
|||
// Bordered & Pulled |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-border { |
|||
padding: .2em .25em .15em; |
|||
border: solid .08em $fa-border-color; |
|||
border-radius: .1em; |
|||
} |
|||
|
|||
.#{$fa-css-prefix}-pull-left { float: left; } |
|||
.#{$fa-css-prefix}-pull-right { float: right; } |
|||
|
|||
.#{$fa-css-prefix} { |
|||
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; } |
|||
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; } |
|||
} |
|||
|
|||
/* Deprecated as of 4.4.0 */ |
|||
.pull-right { float: right; } |
|||
.pull-left { float: left; } |
|||
|
|||
.#{$fa-css-prefix} { |
|||
&.pull-left { margin-right: .3em; } |
|||
&.pull-right { margin-left: .3em; } |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
// Base Class Definition |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix} { |
|||
display: inline-block; |
|||
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration |
|||
font-size: inherit; // can't have font-size inherit on line above, so need to override |
|||
text-rendering: auto; // optimizelegibility throws things off #1094 |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
|
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
// Fixed Width Icons |
|||
// ------------------------- |
|||
.#{$fa-css-prefix}-fw { |
|||
width: (18em / 14); |
|||
text-align: center; |
|||
} |
|||
@ -0,0 +1,733 @@ |
|||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen |
|||
readers do not read off random characters that represent icons */ |
|||
|
|||
.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } |
|||
.#{$fa-css-prefix}-music:before { content: $fa-var-music; } |
|||
.#{$fa-css-prefix}-search:before { content: $fa-var-search; } |
|||
.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } |
|||
.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } |
|||
.#{$fa-css-prefix}-star:before { content: $fa-var-star; } |
|||
.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } |
|||
.#{$fa-css-prefix}-user:before { content: $fa-var-user; } |
|||
.#{$fa-css-prefix}-film:before { content: $fa-var-film; } |
|||
.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } |
|||
.#{$fa-css-prefix}-th:before { content: $fa-var-th; } |
|||
.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } |
|||
.#{$fa-css-prefix}-check:before { content: $fa-var-check; } |
|||
.#{$fa-css-prefix}-remove:before, |
|||
.#{$fa-css-prefix}-close:before, |
|||
.#{$fa-css-prefix}-times:before { content: $fa-var-times; } |
|||
.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } |
|||
.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } |
|||
.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } |
|||
.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } |
|||
.#{$fa-css-prefix}-gear:before, |
|||
.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } |
|||
.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } |
|||
.#{$fa-css-prefix}-home:before { content: $fa-var-home; } |
|||
.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } |
|||
.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } |
|||
.#{$fa-css-prefix}-road:before { content: $fa-var-road; } |
|||
.#{$fa-css-prefix}-download:before { content: $fa-var-download; } |
|||
.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } |
|||
.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } |
|||
.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } |
|||
.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } |
|||
.#{$fa-css-prefix}-rotate-right:before, |
|||
.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } |
|||
.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } |
|||
.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } |
|||
.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } |
|||
.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } |
|||
.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } |
|||
.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } |
|||
.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } |
|||
.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } |
|||
.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } |
|||
.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } |
|||
.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } |
|||
.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } |
|||
.#{$fa-css-prefix}-book:before { content: $fa-var-book; } |
|||
.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } |
|||
.#{$fa-css-prefix}-print:before { content: $fa-var-print; } |
|||
.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } |
|||
.#{$fa-css-prefix}-font:before { content: $fa-var-font; } |
|||
.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } |
|||
.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } |
|||
.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } |
|||
.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } |
|||
.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } |
|||
.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } |
|||
.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } |
|||
.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } |
|||
.#{$fa-css-prefix}-list:before { content: $fa-var-list; } |
|||
.#{$fa-css-prefix}-dedent:before, |
|||
.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } |
|||
.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } |
|||
.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } |
|||
.#{$fa-css-prefix}-photo:before, |
|||
.#{$fa-css-prefix}-image:before, |
|||
.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } |
|||
.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } |
|||
.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } |
|||
.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } |
|||
.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } |
|||
.#{$fa-css-prefix}-edit:before, |
|||
.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } |
|||
.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } |
|||
.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } |
|||
.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } |
|||
.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } |
|||
.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } |
|||
.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } |
|||
.#{$fa-css-prefix}-play:before { content: $fa-var-play; } |
|||
.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } |
|||
.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } |
|||
.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } |
|||
.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } |
|||
.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } |
|||
.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } |
|||
.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } |
|||
.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } |
|||
.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } |
|||
.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } |
|||
.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } |
|||
.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } |
|||
.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } |
|||
.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } |
|||
.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } |
|||
.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } |
|||
.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } |
|||
.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } |
|||
.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } |
|||
.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } |
|||
.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } |
|||
.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } |
|||
.#{$fa-css-prefix}-mail-forward:before, |
|||
.#{$fa-css-prefix}-share:before { content: $fa-var-share; } |
|||
.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } |
|||
.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } |
|||
.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } |
|||
.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } |
|||
.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } |
|||
.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } |
|||
.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } |
|||
.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } |
|||
.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } |
|||
.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } |
|||
.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } |
|||
.#{$fa-css-prefix}-warning:before, |
|||
.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } |
|||
.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } |
|||
.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } |
|||
.#{$fa-css-prefix}-random:before { content: $fa-var-random; } |
|||
.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } |
|||
.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } |
|||
.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } |
|||
.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } |
|||
.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } |
|||
.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } |
|||
.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } |
|||
.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } |
|||
.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } |
|||
.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } |
|||
.#{$fa-css-prefix}-bar-chart-o:before, |
|||
.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } |
|||
.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } |
|||
.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } |
|||
.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } |
|||
.#{$fa-css-prefix}-key:before { content: $fa-var-key; } |
|||
.#{$fa-css-prefix}-gears:before, |
|||
.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } |
|||
.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } |
|||
.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } |
|||
.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } |
|||
.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } |
|||
.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } |
|||
.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } |
|||
.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } |
|||
.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } |
|||
.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } |
|||
.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } |
|||
.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } |
|||
.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } |
|||
.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } |
|||
.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } |
|||
.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } |
|||
.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } |
|||
.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } |
|||
.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } |
|||
.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } |
|||
.#{$fa-css-prefix}-facebook-f:before, |
|||
.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } |
|||
.#{$fa-css-prefix}-github:before { content: $fa-var-github; } |
|||
.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } |
|||
.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } |
|||
.#{$fa-css-prefix}-feed:before, |
|||
.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } |
|||
.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } |
|||
.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } |
|||
.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } |
|||
.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } |
|||
.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } |
|||
.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } |
|||
.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } |
|||
.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } |
|||
.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } |
|||
.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } |
|||
.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } |
|||
.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } |
|||
.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } |
|||
.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } |
|||
.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } |
|||
.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } |
|||
.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } |
|||
.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } |
|||
.#{$fa-css-prefix}-group:before, |
|||
.#{$fa-css-prefix}-users:before { content: $fa-var-users; } |
|||
.#{$fa-css-prefix}-chain:before, |
|||
.#{$fa-css-prefix}-link:before { content: $fa-var-link; } |
|||
.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } |
|||
.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } |
|||
.#{$fa-css-prefix}-cut:before, |
|||
.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } |
|||
.#{$fa-css-prefix}-copy:before, |
|||
.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } |
|||
.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } |
|||
.#{$fa-css-prefix}-save:before, |
|||
.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } |
|||
.#{$fa-css-prefix}-square:before { content: $fa-var-square; } |
|||
.#{$fa-css-prefix}-navicon:before, |
|||
.#{$fa-css-prefix}-reorder:before, |
|||
.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } |
|||
.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } |
|||
.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } |
|||
.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } |
|||
.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } |
|||
.#{$fa-css-prefix}-table:before { content: $fa-var-table; } |
|||
.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } |
|||
.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } |
|||
.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } |
|||
.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } |
|||
.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } |
|||
.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } |
|||
.#{$fa-css-prefix}-money:before { content: $fa-var-money; } |
|||
.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } |
|||
.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } |
|||
.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } |
|||
.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } |
|||
.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } |
|||
.#{$fa-css-prefix}-unsorted:before, |
|||
.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } |
|||
.#{$fa-css-prefix}-sort-down:before, |
|||
.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } |
|||
.#{$fa-css-prefix}-sort-up:before, |
|||
.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } |
|||
.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } |
|||
.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } |
|||
.#{$fa-css-prefix}-rotate-left:before, |
|||
.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } |
|||
.#{$fa-css-prefix}-legal:before, |
|||
.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } |
|||
.#{$fa-css-prefix}-dashboard:before, |
|||
.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } |
|||
.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } |
|||
.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } |
|||
.#{$fa-css-prefix}-flash:before, |
|||
.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } |
|||
.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } |
|||
.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } |
|||
.#{$fa-css-prefix}-paste:before, |
|||
.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } |
|||
.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } |
|||
.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } |
|||
.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } |
|||
.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } |
|||
.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } |
|||
.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } |
|||
.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } |
|||
.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } |
|||
.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } |
|||
.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } |
|||
.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } |
|||
.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } |
|||
.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } |
|||
.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } |
|||
.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } |
|||
.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } |
|||
.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } |
|||
.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } |
|||
.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } |
|||
.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } |
|||
.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } |
|||
.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } |
|||
.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } |
|||
.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } |
|||
.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } |
|||
.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } |
|||
.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } |
|||
.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } |
|||
.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } |
|||
.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } |
|||
.#{$fa-css-prefix}-mobile-phone:before, |
|||
.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } |
|||
.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } |
|||
.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } |
|||
.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } |
|||
.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } |
|||
.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } |
|||
.#{$fa-css-prefix}-mail-reply:before, |
|||
.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } |
|||
.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } |
|||
.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } |
|||
.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } |
|||
.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } |
|||
.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } |
|||
.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } |
|||
.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } |
|||
.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } |
|||
.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } |
|||
.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } |
|||
.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } |
|||
.#{$fa-css-prefix}-code:before { content: $fa-var-code; } |
|||
.#{$fa-css-prefix}-mail-reply-all:before, |
|||
.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } |
|||
.#{$fa-css-prefix}-star-half-empty:before, |
|||
.#{$fa-css-prefix}-star-half-full:before, |
|||
.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } |
|||
.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } |
|||
.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } |
|||
.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } |
|||
.#{$fa-css-prefix}-unlink:before, |
|||
.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } |
|||
.#{$fa-css-prefix}-question:before { content: $fa-var-question; } |
|||
.#{$fa-css-prefix}-info:before { content: $fa-var-info; } |
|||
.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } |
|||
.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } |
|||
.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } |
|||
.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } |
|||
.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } |
|||
.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } |
|||
.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } |
|||
.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } |
|||
.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } |
|||
.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } |
|||
.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } |
|||
.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } |
|||
.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } |
|||
.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } |
|||
.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } |
|||
.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } |
|||
.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } |
|||
.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } |
|||
.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } |
|||
.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } |
|||
.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } |
|||
.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } |
|||
.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } |
|||
.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } |
|||
.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } |
|||
.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } |
|||
.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } |
|||
.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } |
|||
.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } |
|||
.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } |
|||
.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } |
|||
.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } |
|||
.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } |
|||
.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } |
|||
.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } |
|||
.#{$fa-css-prefix}-toggle-down:before, |
|||
.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } |
|||
.#{$fa-css-prefix}-toggle-up:before, |
|||
.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } |
|||
.#{$fa-css-prefix}-toggle-right:before, |
|||
.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } |
|||
.#{$fa-css-prefix}-euro:before, |
|||
.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } |
|||
.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } |
|||
.#{$fa-css-prefix}-dollar:before, |
|||
.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } |
|||
.#{$fa-css-prefix}-rupee:before, |
|||
.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } |
|||
.#{$fa-css-prefix}-cny:before, |
|||
.#{$fa-css-prefix}-rmb:before, |
|||
.#{$fa-css-prefix}-yen:before, |
|||
.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } |
|||
.#{$fa-css-prefix}-ruble:before, |
|||
.#{$fa-css-prefix}-rouble:before, |
|||
.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } |
|||
.#{$fa-css-prefix}-won:before, |
|||
.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } |
|||
.#{$fa-css-prefix}-bitcoin:before, |
|||
.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } |
|||
.#{$fa-css-prefix}-file:before { content: $fa-var-file; } |
|||
.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } |
|||
.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } |
|||
.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } |
|||
.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } |
|||
.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } |
|||
.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } |
|||
.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } |
|||
.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } |
|||
.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } |
|||
.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } |
|||
.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } |
|||
.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } |
|||
.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } |
|||
.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } |
|||
.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } |
|||
.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } |
|||
.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } |
|||
.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } |
|||
.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } |
|||
.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } |
|||
.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } |
|||
.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } |
|||
.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } |
|||
.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } |
|||
.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } |
|||
.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } |
|||
.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } |
|||
.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } |
|||
.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } |
|||
.#{$fa-css-prefix}-android:before { content: $fa-var-android; } |
|||
.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } |
|||
.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } |
|||
.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } |
|||
.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } |
|||
.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } |
|||
.#{$fa-css-prefix}-female:before { content: $fa-var-female; } |
|||
.#{$fa-css-prefix}-male:before { content: $fa-var-male; } |
|||
.#{$fa-css-prefix}-gittip:before, |
|||
.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } |
|||
.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } |
|||
.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } |
|||
.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } |
|||
.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } |
|||
.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } |
|||
.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } |
|||
.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } |
|||
.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } |
|||
.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } |
|||
.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } |
|||
.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } |
|||
.#{$fa-css-prefix}-toggle-left:before, |
|||
.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } |
|||
.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } |
|||
.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } |
|||
.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } |
|||
.#{$fa-css-prefix}-turkish-lira:before, |
|||
.#{$fa-css-prefix}-try:before { content: $fa-var-try; } |
|||
.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } |
|||
.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } |
|||
.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } |
|||
.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } |
|||
.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } |
|||
.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } |
|||
.#{$fa-css-prefix}-institution:before, |
|||
.#{$fa-css-prefix}-bank:before, |
|||
.#{$fa-css-prefix}-university:before { content: $fa-var-university; } |
|||
.#{$fa-css-prefix}-mortar-board:before, |
|||
.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } |
|||
.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } |
|||
.#{$fa-css-prefix}-google:before { content: $fa-var-google; } |
|||
.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } |
|||
.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } |
|||
.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } |
|||
.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } |
|||
.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } |
|||
.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } |
|||
.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } |
|||
.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } |
|||
.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } |
|||
.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } |
|||
.#{$fa-css-prefix}-language:before { content: $fa-var-language; } |
|||
.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } |
|||
.#{$fa-css-prefix}-building:before { content: $fa-var-building; } |
|||
.#{$fa-css-prefix}-child:before { content: $fa-var-child; } |
|||
.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } |
|||
.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } |
|||
.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } |
|||
.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } |
|||
.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } |
|||
.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } |
|||
.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } |
|||
.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } |
|||
.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } |
|||
.#{$fa-css-prefix}-automobile:before, |
|||
.#{$fa-css-prefix}-car:before { content: $fa-var-car; } |
|||
.#{$fa-css-prefix}-cab:before, |
|||
.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } |
|||
.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } |
|||
.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } |
|||
.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } |
|||
.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } |
|||
.#{$fa-css-prefix}-database:before { content: $fa-var-database; } |
|||
.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } |
|||
.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } |
|||
.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } |
|||
.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } |
|||
.#{$fa-css-prefix}-file-photo-o:before, |
|||
.#{$fa-css-prefix}-file-picture-o:before, |
|||
.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } |
|||
.#{$fa-css-prefix}-file-zip-o:before, |
|||
.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } |
|||
.#{$fa-css-prefix}-file-sound-o:before, |
|||
.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } |
|||
.#{$fa-css-prefix}-file-movie-o:before, |
|||
.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } |
|||
.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } |
|||
.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } |
|||
.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } |
|||
.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } |
|||
.#{$fa-css-prefix}-life-bouy:before, |
|||
.#{$fa-css-prefix}-life-buoy:before, |
|||
.#{$fa-css-prefix}-life-saver:before, |
|||
.#{$fa-css-prefix}-support:before, |
|||
.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } |
|||
.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } |
|||
.#{$fa-css-prefix}-ra:before, |
|||
.#{$fa-css-prefix}-resistance:before, |
|||
.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } |
|||
.#{$fa-css-prefix}-ge:before, |
|||
.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } |
|||
.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } |
|||
.#{$fa-css-prefix}-git:before { content: $fa-var-git; } |
|||
.#{$fa-css-prefix}-y-combinator-square:before, |
|||
.#{$fa-css-prefix}-yc-square:before, |
|||
.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } |
|||
.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } |
|||
.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } |
|||
.#{$fa-css-prefix}-wechat:before, |
|||
.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } |
|||
.#{$fa-css-prefix}-send:before, |
|||
.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } |
|||
.#{$fa-css-prefix}-send-o:before, |
|||
.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } |
|||
.#{$fa-css-prefix}-history:before { content: $fa-var-history; } |
|||
.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } |
|||
.#{$fa-css-prefix}-header:before { content: $fa-var-header; } |
|||
.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } |
|||
.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } |
|||
.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } |
|||
.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } |
|||
.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } |
|||
.#{$fa-css-prefix}-soccer-ball-o:before, |
|||
.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } |
|||
.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } |
|||
.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } |
|||
.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } |
|||
.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } |
|||
.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } |
|||
.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } |
|||
.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } |
|||
.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } |
|||
.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } |
|||
.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } |
|||
.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } |
|||
.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } |
|||
.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } |
|||
.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } |
|||
.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } |
|||
.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } |
|||
.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } |
|||
.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } |
|||
.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } |
|||
.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } |
|||
.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } |
|||
.#{$fa-css-prefix}-at:before { content: $fa-var-at; } |
|||
.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } |
|||
.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } |
|||
.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } |
|||
.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } |
|||
.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } |
|||
.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } |
|||
.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } |
|||
.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } |
|||
.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } |
|||
.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } |
|||
.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } |
|||
.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } |
|||
.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } |
|||
.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } |
|||
.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } |
|||
.#{$fa-css-prefix}-shekel:before, |
|||
.#{$fa-css-prefix}-sheqel:before, |
|||
.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } |
|||
.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } |
|||
.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } |
|||
.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } |
|||
.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } |
|||
.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } |
|||
.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } |
|||
.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } |
|||
.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } |
|||
.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } |
|||
.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } |
|||
.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } |
|||
.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } |
|||
.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } |
|||
.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } |
|||
.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } |
|||
.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } |
|||
.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } |
|||
.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } |
|||
.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } |
|||
.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } |
|||
.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } |
|||
.#{$fa-css-prefix}-intersex:before, |
|||
.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } |
|||
.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } |
|||
.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } |
|||
.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } |
|||
.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } |
|||
.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } |
|||
.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } |
|||
.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } |
|||
.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } |
|||
.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } |
|||
.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } |
|||
.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } |
|||
.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } |
|||
.#{$fa-css-prefix}-server:before { content: $fa-var-server; } |
|||
.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } |
|||
.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } |
|||
.#{$fa-css-prefix}-hotel:before, |
|||
.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } |
|||
.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } |
|||
.#{$fa-css-prefix}-train:before { content: $fa-var-train; } |
|||
.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } |
|||
.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } |
|||
.#{$fa-css-prefix}-yc:before, |
|||
.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } |
|||
.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } |
|||
.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } |
|||
.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } |
|||
.#{$fa-css-prefix}-battery-4:before, |
|||
.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } |
|||
.#{$fa-css-prefix}-battery-3:before, |
|||
.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } |
|||
.#{$fa-css-prefix}-battery-2:before, |
|||
.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } |
|||
.#{$fa-css-prefix}-battery-1:before, |
|||
.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } |
|||
.#{$fa-css-prefix}-battery-0:before, |
|||
.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } |
|||
.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } |
|||
.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } |
|||
.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } |
|||
.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } |
|||
.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } |
|||
.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } |
|||
.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } |
|||
.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } |
|||
.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } |
|||
.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } |
|||
.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } |
|||
.#{$fa-css-prefix}-hourglass-1:before, |
|||
.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } |
|||
.#{$fa-css-prefix}-hourglass-2:before, |
|||
.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } |
|||
.#{$fa-css-prefix}-hourglass-3:before, |
|||
.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } |
|||
.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } |
|||
.#{$fa-css-prefix}-hand-grab-o:before, |
|||
.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } |
|||
.#{$fa-css-prefix}-hand-stop-o:before, |
|||
.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } |
|||
.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } |
|||
.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } |
|||
.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } |
|||
.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } |
|||
.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } |
|||
.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } |
|||
.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } |
|||
.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } |
|||
.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } |
|||
.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } |
|||
.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } |
|||
.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } |
|||
.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } |
|||
.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } |
|||
.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } |
|||
.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } |
|||
.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } |
|||
.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } |
|||
.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } |
|||
.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } |
|||
.#{$fa-css-prefix}-tv:before, |
|||
.#{$fa-css-prefix}-television:before { content: $fa-var-television; } |
|||
.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } |
|||
.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } |
|||
.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } |
|||
.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } |
|||
.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } |
|||
.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } |
|||
.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } |
|||
.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } |
|||
.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } |
|||
.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } |
|||
.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } |
|||
.#{$fa-css-prefix}-map:before { content: $fa-var-map; } |
|||
.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } |
|||
.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } |
|||
.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } |
|||
.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } |
|||
.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } |
|||
.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } |
|||
.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } |
|||
.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } |
|||
.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } |
|||
.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } |
|||
.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } |
|||
.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } |
|||
.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } |
|||
.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } |
|||
.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } |
|||
.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } |
|||
.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } |
|||
.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } |
|||
.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } |
|||
.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } |
|||
.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } |
|||
.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } |
|||
.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } |
|||
.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } |
|||
.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } |
|||
.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } |
|||
.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } |
|||
.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } |
|||
.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } |
|||
.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } |
|||
.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } |
|||
.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } |
|||
.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } |
|||
.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } |
|||
.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } |
|||
.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } |
|||
.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } |
|||
.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } |
|||
.#{$fa-css-prefix}-asl-interpreting:before, |
|||
.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } |
|||
.#{$fa-css-prefix}-deafness:before, |
|||
.#{$fa-css-prefix}-hard-of-hearing:before, |
|||
.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } |
|||
.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } |
|||
.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } |
|||
.#{$fa-css-prefix}-signing:before, |
|||
.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } |
|||
.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } |
|||
.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } |
|||
.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } |
|||
.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } |
|||
.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } |
|||
.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } |
|||
.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } |
|||
.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } |
|||
.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } |
|||
.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } |
|||
.#{$fa-css-prefix}-google-plus-circle:before, |
|||
.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } |
|||
.#{$fa-css-prefix}-fa:before, |
|||
.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } |
|||
@ -0,0 +1,13 @@ |
|||
// Icon Sizes |
|||
// ------------------------- |
|||
|
|||
/* makes the font 33% larger relative to the icon container */ |
|||
.#{$fa-css-prefix}-lg { |
|||
font-size: (4em / 3); |
|||
line-height: (3em / 4); |
|||
vertical-align: -15%; |
|||
} |
|||
.#{$fa-css-prefix}-2x { font-size: 2em; } |
|||
.#{$fa-css-prefix}-3x { font-size: 3em; } |
|||
.#{$fa-css-prefix}-4x { font-size: 4em; } |
|||
.#{$fa-css-prefix}-5x { font-size: 5em; } |
|||
@ -0,0 +1,19 @@ |
|||
// List Icons |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-ul { |
|||
padding-left: 0; |
|||
margin-left: $fa-li-width; |
|||
list-style-type: none; |
|||
> li { position: relative; } |
|||
} |
|||
.#{$fa-css-prefix}-li { |
|||
position: absolute; |
|||
left: -$fa-li-width; |
|||
width: $fa-li-width; |
|||
top: (2em / 14); |
|||
text-align: center; |
|||
&.#{$fa-css-prefix}-lg { |
|||
left: -$fa-li-width + (4em / 14); |
|||
} |
|||
} |
|||
@ -0,0 +1,60 @@ |
|||
// Mixins |
|||
// -------------------------- |
|||
|
|||
@mixin fa-icon() { |
|||
display: inline-block; |
|||
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration |
|||
font-size: inherit; // can't have font-size inherit on line above, so need to override |
|||
text-rendering: auto; // optimizelegibility throws things off #1094 |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
|
|||
} |
|||
|
|||
@mixin fa-icon-rotate($degrees, $rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; |
|||
-webkit-transform: rotate($degrees); |
|||
-ms-transform: rotate($degrees); |
|||
transform: rotate($degrees); |
|||
} |
|||
|
|||
@mixin fa-icon-flip($horiz, $vert, $rotation) { |
|||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; |
|||
-webkit-transform: scale($horiz, $vert); |
|||
-ms-transform: scale($horiz, $vert); |
|||
transform: scale($horiz, $vert); |
|||
} |
|||
|
|||
|
|||
// Only display content to screen readers. A la Bootstrap 4. |
|||
// |
|||
// See: http://a11yproject.com/posts/how-to-hide-content/ |
|||
|
|||
@mixin sr-only { |
|||
position: absolute; |
|||
width: 1px; |
|||
height: 1px; |
|||
padding: 0; |
|||
margin: -1px; |
|||
overflow: hidden; |
|||
clip: rect(0,0,0,0); |
|||
border: 0; |
|||
} |
|||
|
|||
// Use in conjunction with .sr-only to only display content when it's focused. |
|||
// |
|||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 |
|||
// |
|||
// Credit: HTML5 Boilerplate |
|||
|
|||
@mixin sr-only-focusable { |
|||
&:active, |
|||
&:focus { |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
margin: 0; |
|||
overflow: visible; |
|||
clip: auto; |
|||
} |
|||
} |
|||
@ -0,0 +1,15 @@ |
|||
/* FONT PATH |
|||
* -------------------------- */ |
|||
|
|||
@font-face { |
|||
font-family: 'FontAwesome'; |
|||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); |
|||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), |
|||
url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); |
|||
// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts |
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
// Rotated & Flipped Icons |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } |
|||
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } |
|||
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } |
|||
|
|||
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } |
|||
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } |
|||
|
|||
// Hook for IE8-9 |
|||
// ------------------------- |
|||
|
|||
:root .#{$fa-css-prefix}-rotate-90, |
|||
:root .#{$fa-css-prefix}-rotate-180, |
|||
:root .#{$fa-css-prefix}-rotate-270, |
|||
:root .#{$fa-css-prefix}-flip-horizontal, |
|||
:root .#{$fa-css-prefix}-flip-vertical { |
|||
filter: none; |
|||
} |
|||
@ -0,0 +1,5 @@ |
|||
// Screen Readers |
|||
// ------------------------- |
|||
|
|||
.sr-only { @include sr-only(); } |
|||
.sr-only-focusable { @include sr-only-focusable(); } |
|||
@ -0,0 +1,20 @@ |
|||
// Stacked Icons |
|||
// ------------------------- |
|||
|
|||
.#{$fa-css-prefix}-stack { |
|||
position: relative; |
|||
display: inline-block; |
|||
width: 2em; |
|||
height: 2em; |
|||
line-height: 2em; |
|||
vertical-align: middle; |
|||
} |
|||
.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { |
|||
position: absolute; |
|||
left: 0; |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
.#{$fa-css-prefix}-stack-1x { line-height: inherit; } |
|||
.#{$fa-css-prefix}-stack-2x { font-size: 2em; } |
|||
.#{$fa-css-prefix}-inverse { color: $fa-inverse; } |
|||
@ -0,0 +1,744 @@ |
|||
// Variables |
|||
// -------------------------- |
|||
|
|||
$fa-font-path: "../fonts" !default; |
|||
$fa-font-size-base: 14px !default; |
|||
$fa-line-height-base: 1 !default; |
|||
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts" !default; // for referencing Bootstrap CDN font files directly |
|||
$fa-css-prefix: fa !default; |
|||
$fa-version: "4.6.3" !default; |
|||
$fa-border-color: #eee !default; |
|||
$fa-inverse: #fff !default; |
|||
$fa-li-width: (30em / 14) !default; |
|||
|
|||
$fa-var-500px: "\f26e"; |
|||
$fa-var-adjust: "\f042"; |
|||
$fa-var-adn: "\f170"; |
|||
$fa-var-align-center: "\f037"; |
|||
$fa-var-align-justify: "\f039"; |
|||
$fa-var-align-left: "\f036"; |
|||
$fa-var-align-right: "\f038"; |
|||
$fa-var-amazon: "\f270"; |
|||
$fa-var-ambulance: "\f0f9"; |
|||
$fa-var-american-sign-language-interpreting: "\f2a3"; |
|||
$fa-var-anchor: "\f13d"; |
|||
$fa-var-android: "\f17b"; |
|||
$fa-var-angellist: "\f209"; |
|||
$fa-var-angle-double-down: "\f103"; |
|||
$fa-var-angle-double-left: "\f100"; |
|||
$fa-var-angle-double-right: "\f101"; |
|||
$fa-var-angle-double-up: "\f102"; |
|||
$fa-var-angle-down: "\f107"; |
|||
$fa-var-angle-left: "\f104"; |
|||
$fa-var-angle-right: "\f105"; |
|||
$fa-var-angle-up: "\f106"; |
|||
$fa-var-apple: "\f179"; |
|||
$fa-var-archive: "\f187"; |
|||
$fa-var-area-chart: "\f1fe"; |
|||
$fa-var-arrow-circle-down: "\f0ab"; |
|||
$fa-var-arrow-circle-left: "\f0a8"; |
|||
$fa-var-arrow-circle-o-down: "\f01a"; |
|||
$fa-var-arrow-circle-o-left: "\f190"; |
|||
$fa-var-arrow-circle-o-right: "\f18e"; |
|||
$fa-var-arrow-circle-o-up: "\f01b"; |
|||
$fa-var-arrow-circle-right: "\f0a9"; |
|||
$fa-var-arrow-circle-up: "\f0aa"; |
|||
$fa-var-arrow-down: "\f063"; |
|||
$fa-var-arrow-left: "\f060"; |
|||
$fa-var-arrow-right: "\f061"; |
|||
$fa-var-arrow-up: "\f062"; |
|||
$fa-var-arrows: "\f047"; |
|||
$fa-var-arrows-alt: "\f0b2"; |
|||
$fa-var-arrows-h: "\f07e"; |
|||
$fa-var-arrows-v: "\f07d"; |
|||
$fa-var-asl-interpreting: "\f2a3"; |
|||
$fa-var-assistive-listening-systems: "\f2a2"; |
|||
$fa-var-asterisk: "\f069"; |
|||
$fa-var-at: "\f1fa"; |
|||
$fa-var-audio-description: "\f29e"; |
|||
$fa-var-automobile: "\f1b9"; |
|||
$fa-var-backward: "\f04a"; |
|||
$fa-var-balance-scale: "\f24e"; |
|||
$fa-var-ban: "\f05e"; |
|||
$fa-var-bank: "\f19c"; |
|||
$fa-var-bar-chart: "\f080"; |
|||
$fa-var-bar-chart-o: "\f080"; |
|||
$fa-var-barcode: "\f02a"; |
|||
$fa-var-bars: "\f0c9"; |
|||
$fa-var-battery-0: "\f244"; |
|||
$fa-var-battery-1: "\f243"; |
|||
$fa-var-battery-2: "\f242"; |
|||
$fa-var-battery-3: "\f241"; |
|||
$fa-var-battery-4: "\f240"; |
|||
$fa-var-battery-empty: "\f244"; |
|||
$fa-var-battery-full: "\f240"; |
|||
$fa-var-battery-half: "\f242"; |
|||
$fa-var-battery-quarter: "\f243"; |
|||
$fa-var-battery-three-quarters: "\f241"; |
|||
$fa-var-bed: "\f236"; |
|||
$fa-var-beer: "\f0fc"; |
|||
$fa-var-behance: "\f1b4"; |
|||
$fa-var-behance-square: "\f1b5"; |
|||
$fa-var-bell: "\f0f3"; |
|||
$fa-var-bell-o: "\f0a2"; |
|||
$fa-var-bell-slash: "\f1f6"; |
|||
$fa-var-bell-slash-o: "\f1f7"; |
|||
$fa-var-bicycle: "\f206"; |
|||
$fa-var-binoculars: "\f1e5"; |
|||
$fa-var-birthday-cake: "\f1fd"; |
|||
$fa-var-bitbucket: "\f171"; |
|||
$fa-var-bitbucket-square: "\f172"; |
|||
$fa-var-bitcoin: "\f15a"; |
|||
$fa-var-black-tie: "\f27e"; |
|||
$fa-var-blind: "\f29d"; |
|||
$fa-var-bluetooth: "\f293"; |
|||
$fa-var-bluetooth-b: "\f294"; |
|||
$fa-var-bold: "\f032"; |
|||
$fa-var-bolt: "\f0e7"; |
|||
$fa-var-bomb: "\f1e2"; |
|||
$fa-var-book: "\f02d"; |
|||
$fa-var-bookmark: "\f02e"; |
|||
$fa-var-bookmark-o: "\f097"; |
|||
$fa-var-braille: "\f2a1"; |
|||
$fa-var-briefcase: "\f0b1"; |
|||
$fa-var-btc: "\f15a"; |
|||
$fa-var-bug: "\f188"; |
|||
$fa-var-building: "\f1ad"; |
|||
$fa-var-building-o: "\f0f7"; |
|||
$fa-var-bullhorn: "\f0a1"; |
|||
$fa-var-bullseye: "\f140"; |
|||
$fa-var-bus: "\f207"; |
|||
$fa-var-buysellads: "\f20d"; |
|||
$fa-var-cab: "\f1ba"; |
|||
$fa-var-calculator: "\f1ec"; |
|||
$fa-var-calendar: "\f073"; |
|||
$fa-var-calendar-check-o: "\f274"; |
|||
$fa-var-calendar-minus-o: "\f272"; |
|||
$fa-var-calendar-o: "\f133"; |
|||
$fa-var-calendar-plus-o: "\f271"; |
|||
$fa-var-calendar-times-o: "\f273"; |
|||
$fa-var-camera: "\f030"; |
|||
$fa-var-camera-retro: "\f083"; |
|||
$fa-var-car: "\f1b9"; |
|||
$fa-var-caret-down: "\f0d7"; |
|||
$fa-var-caret-left: "\f0d9"; |
|||
$fa-var-caret-right: "\f0da"; |
|||
$fa-var-caret-square-o-down: "\f150"; |
|||
$fa-var-caret-square-o-left: "\f191"; |
|||
$fa-var-caret-square-o-right: "\f152"; |
|||
$fa-var-caret-square-o-up: "\f151"; |
|||
$fa-var-caret-up: "\f0d8"; |
|||
$fa-var-cart-arrow-down: "\f218"; |
|||
$fa-var-cart-plus: "\f217"; |
|||
$fa-var-cc: "\f20a"; |
|||
$fa-var-cc-amex: "\f1f3"; |
|||
$fa-var-cc-diners-club: "\f24c"; |
|||
$fa-var-cc-discover: "\f1f2"; |
|||
$fa-var-cc-jcb: "\f24b"; |
|||
$fa-var-cc-mastercard: "\f1f1"; |
|||
$fa-var-cc-paypal: "\f1f4"; |
|||
$fa-var-cc-stripe: "\f1f5"; |
|||
$fa-var-cc-visa: "\f1f0"; |
|||
$fa-var-certificate: "\f0a3"; |
|||
$fa-var-chain: "\f0c1"; |
|||
$fa-var-chain-broken: "\f127"; |
|||
$fa-var-check: "\f00c"; |
|||
$fa-var-check-circle: "\f058"; |
|||
$fa-var-check-circle-o: "\f05d"; |
|||
$fa-var-check-square: "\f14a"; |
|||
$fa-var-check-square-o: "\f046"; |
|||
$fa-var-chevron-circle-down: "\f13a"; |
|||
$fa-var-chevron-circle-left: "\f137"; |
|||
$fa-var-chevron-circle-right: "\f138"; |
|||
$fa-var-chevron-circle-up: "\f139"; |
|||
$fa-var-chevron-down: "\f078"; |
|||
$fa-var-chevron-left: "\f053"; |
|||
$fa-var-chevron-right: "\f054"; |
|||
$fa-var-chevron-up: "\f077"; |
|||
$fa-var-child: "\f1ae"; |
|||
$fa-var-chrome: "\f268"; |
|||
$fa-var-circle: "\f111"; |
|||
$fa-var-circle-o: "\f10c"; |
|||
$fa-var-circle-o-notch: "\f1ce"; |
|||
$fa-var-circle-thin: "\f1db"; |
|||
$fa-var-clipboard: "\f0ea"; |
|||
$fa-var-clock-o: "\f017"; |
|||
$fa-var-clone: "\f24d"; |
|||
$fa-var-close: "\f00d"; |
|||
$fa-var-cloud: "\f0c2"; |
|||
$fa-var-cloud-download: "\f0ed"; |
|||
$fa-var-cloud-upload: "\f0ee"; |
|||
$fa-var-cny: "\f157"; |
|||
$fa-var-code: "\f121"; |
|||
$fa-var-code-fork: "\f126"; |
|||
$fa-var-codepen: "\f1cb"; |
|||
$fa-var-codiepie: "\f284"; |
|||
$fa-var-coffee: "\f0f4"; |
|||
$fa-var-cog: "\f013"; |
|||
$fa-var-cogs: "\f085"; |
|||
$fa-var-columns: "\f0db"; |
|||
$fa-var-comment: "\f075"; |
|||
$fa-var-comment-o: "\f0e5"; |
|||
$fa-var-commenting: "\f27a"; |
|||
$fa-var-commenting-o: "\f27b"; |
|||
$fa-var-comments: "\f086"; |
|||
$fa-var-comments-o: "\f0e6"; |
|||
$fa-var-compass: "\f14e"; |
|||
$fa-var-compress: "\f066"; |
|||
$fa-var-connectdevelop: "\f20e"; |
|||
$fa-var-contao: "\f26d"; |
|||
$fa-var-copy: "\f0c5"; |
|||
$fa-var-copyright: "\f1f9"; |
|||
$fa-var-creative-commons: "\f25e"; |
|||
$fa-var-credit-card: "\f09d"; |
|||
$fa-var-credit-card-alt: "\f283"; |
|||
$fa-var-crop: "\f125"; |
|||
$fa-var-crosshairs: "\f05b"; |
|||
$fa-var-css3: "\f13c"; |
|||
$fa-var-cube: "\f1b2"; |
|||
$fa-var-cubes: "\f1b3"; |
|||
$fa-var-cut: "\f0c4"; |
|||
$fa-var-cutlery: "\f0f5"; |
|||
$fa-var-dashboard: "\f0e4"; |
|||
$fa-var-dashcube: "\f210"; |
|||
$fa-var-database: "\f1c0"; |
|||
$fa-var-deaf: "\f2a4"; |
|||
$fa-var-deafness: "\f2a4"; |
|||
$fa-var-dedent: "\f03b"; |
|||
$fa-var-delicious: "\f1a5"; |
|||
$fa-var-desktop: "\f108"; |
|||
$fa-var-deviantart: "\f1bd"; |
|||
$fa-var-diamond: "\f219"; |
|||
$fa-var-digg: "\f1a6"; |
|||
$fa-var-dollar: "\f155"; |
|||
$fa-var-dot-circle-o: "\f192"; |
|||
$fa-var-download: "\f019"; |
|||
$fa-var-dribbble: "\f17d"; |
|||
$fa-var-dropbox: "\f16b"; |
|||
$fa-var-drupal: "\f1a9"; |
|||
$fa-var-edge: "\f282"; |
|||
$fa-var-edit: "\f044"; |
|||
$fa-var-eject: "\f052"; |
|||
$fa-var-ellipsis-h: "\f141"; |
|||
$fa-var-ellipsis-v: "\f142"; |
|||
$fa-var-empire: "\f1d1"; |
|||
$fa-var-envelope: "\f0e0"; |
|||
$fa-var-envelope-o: "\f003"; |
|||
$fa-var-envelope-square: "\f199"; |
|||
$fa-var-envira: "\f299"; |
|||
$fa-var-eraser: "\f12d"; |
|||
$fa-var-eur: "\f153"; |
|||
$fa-var-euro: "\f153"; |
|||
$fa-var-exchange: "\f0ec"; |
|||
$fa-var-exclamation: "\f12a"; |
|||
$fa-var-exclamation-circle: "\f06a"; |
|||
$fa-var-exclamation-triangle: "\f071"; |
|||
$fa-var-expand: "\f065"; |
|||
$fa-var-expeditedssl: "\f23e"; |
|||
$fa-var-external-link: "\f08e"; |
|||
$fa-var-external-link-square: "\f14c"; |
|||
$fa-var-eye: "\f06e"; |
|||
$fa-var-eye-slash: "\f070"; |
|||
$fa-var-eyedropper: "\f1fb"; |
|||
$fa-var-fa: "\f2b4"; |
|||
$fa-var-facebook: "\f09a"; |
|||
$fa-var-facebook-f: "\f09a"; |
|||
$fa-var-facebook-official: "\f230"; |
|||
$fa-var-facebook-square: "\f082"; |
|||
$fa-var-fast-backward: "\f049"; |
|||
$fa-var-fast-forward: "\f050"; |
|||
$fa-var-fax: "\f1ac"; |
|||
$fa-var-feed: "\f09e"; |
|||
$fa-var-female: "\f182"; |
|||
$fa-var-fighter-jet: "\f0fb"; |
|||
$fa-var-file: "\f15b"; |
|||
$fa-var-file-archive-o: "\f1c6"; |
|||
$fa-var-file-audio-o: "\f1c7"; |
|||
$fa-var-file-code-o: "\f1c9"; |
|||
$fa-var-file-excel-o: "\f1c3"; |
|||
$fa-var-file-image-o: "\f1c5"; |
|||
$fa-var-file-movie-o: "\f1c8"; |
|||
$fa-var-file-o: "\f016"; |
|||
$fa-var-file-pdf-o: "\f1c1"; |
|||
$fa-var-file-photo-o: "\f1c5"; |
|||
$fa-var-file-picture-o: "\f1c5"; |
|||
$fa-var-file-powerpoint-o: "\f1c4"; |
|||
$fa-var-file-sound-o: "\f1c7"; |
|||
$fa-var-file-text: "\f15c"; |
|||
$fa-var-file-text-o: "\f0f6"; |
|||
$fa-var-file-video-o: "\f1c8"; |
|||
$fa-var-file-word-o: "\f1c2"; |
|||
$fa-var-file-zip-o: "\f1c6"; |
|||
$fa-var-files-o: "\f0c5"; |
|||
$fa-var-film: "\f008"; |
|||
$fa-var-filter: "\f0b0"; |
|||
$fa-var-fire: "\f06d"; |
|||
$fa-var-fire-extinguisher: "\f134"; |
|||
$fa-var-firefox: "\f269"; |
|||
$fa-var-first-order: "\f2b0"; |
|||
$fa-var-flag: "\f024"; |
|||
$fa-var-flag-checkered: "\f11e"; |
|||
$fa-var-flag-o: "\f11d"; |
|||
$fa-var-flash: "\f0e7"; |
|||
$fa-var-flask: "\f0c3"; |
|||
$fa-var-flickr: "\f16e"; |
|||
$fa-var-floppy-o: "\f0c7"; |
|||
$fa-var-folder: "\f07b"; |
|||
$fa-var-folder-o: "\f114"; |
|||
$fa-var-folder-open: "\f07c"; |
|||
$fa-var-folder-open-o: "\f115"; |
|||
$fa-var-font: "\f031"; |
|||
$fa-var-font-awesome: "\f2b4"; |
|||
$fa-var-fonticons: "\f280"; |
|||
$fa-var-fort-awesome: "\f286"; |
|||
$fa-var-forumbee: "\f211"; |
|||
$fa-var-forward: "\f04e"; |
|||
$fa-var-foursquare: "\f180"; |
|||
$fa-var-frown-o: "\f119"; |
|||
$fa-var-futbol-o: "\f1e3"; |
|||
$fa-var-gamepad: "\f11b"; |
|||
$fa-var-gavel: "\f0e3"; |
|||
$fa-var-gbp: "\f154"; |
|||
$fa-var-ge: "\f1d1"; |
|||
$fa-var-gear: "\f013"; |
|||
$fa-var-gears: "\f085"; |
|||
$fa-var-genderless: "\f22d"; |
|||
$fa-var-get-pocket: "\f265"; |
|||
$fa-var-gg: "\f260"; |
|||
$fa-var-gg-circle: "\f261"; |
|||
$fa-var-gift: "\f06b"; |
|||
$fa-var-git: "\f1d3"; |
|||
$fa-var-git-square: "\f1d2"; |
|||
$fa-var-github: "\f09b"; |
|||
$fa-var-github-alt: "\f113"; |
|||
$fa-var-github-square: "\f092"; |
|||
$fa-var-gitlab: "\f296"; |
|||
$fa-var-gittip: "\f184"; |
|||
$fa-var-glass: "\f000"; |
|||
$fa-var-glide: "\f2a5"; |
|||
$fa-var-glide-g: "\f2a6"; |
|||
$fa-var-globe: "\f0ac"; |
|||
$fa-var-google: "\f1a0"; |
|||
$fa-var-google-plus: "\f0d5"; |
|||
$fa-var-google-plus-circle: "\f2b3"; |
|||
$fa-var-google-plus-official: "\f2b3"; |
|||
$fa-var-google-plus-square: "\f0d4"; |
|||
$fa-var-google-wallet: "\f1ee"; |
|||
$fa-var-graduation-cap: "\f19d"; |
|||
$fa-var-gratipay: "\f184"; |
|||
$fa-var-group: "\f0c0"; |
|||
$fa-var-h-square: "\f0fd"; |
|||
$fa-var-hacker-news: "\f1d4"; |
|||
$fa-var-hand-grab-o: "\f255"; |
|||
$fa-var-hand-lizard-o: "\f258"; |
|||
$fa-var-hand-o-down: "\f0a7"; |
|||
$fa-var-hand-o-left: "\f0a5"; |
|||
$fa-var-hand-o-right: "\f0a4"; |
|||
$fa-var-hand-o-up: "\f0a6"; |
|||
$fa-var-hand-paper-o: "\f256"; |
|||
$fa-var-hand-peace-o: "\f25b"; |
|||
$fa-var-hand-pointer-o: "\f25a"; |
|||
$fa-var-hand-rock-o: "\f255"; |
|||
$fa-var-hand-scissors-o: "\f257"; |
|||
$fa-var-hand-spock-o: "\f259"; |
|||
$fa-var-hand-stop-o: "\f256"; |
|||
$fa-var-hard-of-hearing: "\f2a4"; |
|||
$fa-var-hashtag: "\f292"; |
|||
$fa-var-hdd-o: "\f0a0"; |
|||
$fa-var-header: "\f1dc"; |
|||
$fa-var-headphones: "\f025"; |
|||
$fa-var-heart: "\f004"; |
|||
$fa-var-heart-o: "\f08a"; |
|||
$fa-var-heartbeat: "\f21e"; |
|||
$fa-var-history: "\f1da"; |
|||
$fa-var-home: "\f015"; |
|||
$fa-var-hospital-o: "\f0f8"; |
|||
$fa-var-hotel: "\f236"; |
|||
$fa-var-hourglass: "\f254"; |
|||
$fa-var-hourglass-1: "\f251"; |
|||
$fa-var-hourglass-2: "\f252"; |
|||
$fa-var-hourglass-3: "\f253"; |
|||
$fa-var-hourglass-end: "\f253"; |
|||
$fa-var-hourglass-half: "\f252"; |
|||
$fa-var-hourglass-o: "\f250"; |
|||
$fa-var-hourglass-start: "\f251"; |
|||
$fa-var-houzz: "\f27c"; |
|||
$fa-var-html5: "\f13b"; |
|||
$fa-var-i-cursor: "\f246"; |
|||
$fa-var-ils: "\f20b"; |
|||
$fa-var-image: "\f03e"; |
|||
$fa-var-inbox: "\f01c"; |
|||
$fa-var-indent: "\f03c"; |
|||
$fa-var-industry: "\f275"; |
|||
$fa-var-info: "\f129"; |
|||
$fa-var-info-circle: "\f05a"; |
|||
$fa-var-inr: "\f156"; |
|||
$fa-var-instagram: "\f16d"; |
|||
$fa-var-institution: "\f19c"; |
|||
$fa-var-internet-explorer: "\f26b"; |
|||
$fa-var-intersex: "\f224"; |
|||
$fa-var-ioxhost: "\f208"; |
|||
$fa-var-italic: "\f033"; |
|||
$fa-var-joomla: "\f1aa"; |
|||
$fa-var-jpy: "\f157"; |
|||
$fa-var-jsfiddle: "\f1cc"; |
|||
$fa-var-key: "\f084"; |
|||
$fa-var-keyboard-o: "\f11c"; |
|||
$fa-var-krw: "\f159"; |
|||
$fa-var-language: "\f1ab"; |
|||
$fa-var-laptop: "\f109"; |
|||
$fa-var-lastfm: "\f202"; |
|||
$fa-var-lastfm-square: "\f203"; |
|||
$fa-var-leaf: "\f06c"; |
|||
$fa-var-leanpub: "\f212"; |
|||
$fa-var-legal: "\f0e3"; |
|||
$fa-var-lemon-o: "\f094"; |
|||
$fa-var-level-down: "\f149"; |
|||
$fa-var-level-up: "\f148"; |
|||
$fa-var-life-bouy: "\f1cd"; |
|||
$fa-var-life-buoy: "\f1cd"; |
|||
$fa-var-life-ring: "\f1cd"; |
|||
$fa-var-life-saver: "\f1cd"; |
|||
$fa-var-lightbulb-o: "\f0eb"; |
|||
$fa-var-line-chart: "\f201"; |
|||
$fa-var-link: "\f0c1"; |
|||
$fa-var-linkedin: "\f0e1"; |
|||
$fa-var-linkedin-square: "\f08c"; |
|||
$fa-var-linux: "\f17c"; |
|||
$fa-var-list: "\f03a"; |
|||
$fa-var-list-alt: "\f022"; |
|||
$fa-var-list-ol: "\f0cb"; |
|||
$fa-var-list-ul: "\f0ca"; |
|||
$fa-var-location-arrow: "\f124"; |
|||
$fa-var-lock: "\f023"; |
|||
$fa-var-long-arrow-down: "\f175"; |
|||
$fa-var-long-arrow-left: "\f177"; |
|||
$fa-var-long-arrow-right: "\f178"; |
|||
$fa-var-long-arrow-up: "\f176"; |
|||
$fa-var-low-vision: "\f2a8"; |
|||
$fa-var-magic: "\f0d0"; |
|||
$fa-var-magnet: "\f076"; |
|||
$fa-var-mail-forward: "\f064"; |
|||
$fa-var-mail-reply: "\f112"; |
|||
$fa-var-mail-reply-all: "\f122"; |
|||
$fa-var-male: "\f183"; |
|||
$fa-var-map: "\f279"; |
|||
$fa-var-map-marker: "\f041"; |
|||
$fa-var-map-o: "\f278"; |
|||
$fa-var-map-pin: "\f276"; |
|||
$fa-var-map-signs: "\f277"; |
|||
$fa-var-mars: "\f222"; |
|||
$fa-var-mars-double: "\f227"; |
|||
$fa-var-mars-stroke: "\f229"; |
|||
$fa-var-mars-stroke-h: "\f22b"; |
|||
$fa-var-mars-stroke-v: "\f22a"; |
|||
$fa-var-maxcdn: "\f136"; |
|||
$fa-var-meanpath: "\f20c"; |
|||
$fa-var-medium: "\f23a"; |
|||
$fa-var-medkit: "\f0fa"; |
|||
$fa-var-meh-o: "\f11a"; |
|||
$fa-var-mercury: "\f223"; |
|||
$fa-var-microphone: "\f130"; |
|||
$fa-var-microphone-slash: "\f131"; |
|||
$fa-var-minus: "\f068"; |
|||
$fa-var-minus-circle: "\f056"; |
|||
$fa-var-minus-square: "\f146"; |
|||
$fa-var-minus-square-o: "\f147"; |
|||
$fa-var-mixcloud: "\f289"; |
|||
$fa-var-mobile: "\f10b"; |
|||
$fa-var-mobile-phone: "\f10b"; |
|||
$fa-var-modx: "\f285"; |
|||
$fa-var-money: "\f0d6"; |
|||
$fa-var-moon-o: "\f186"; |
|||
$fa-var-mortar-board: "\f19d"; |
|||
$fa-var-motorcycle: "\f21c"; |
|||
$fa-var-mouse-pointer: "\f245"; |
|||
$fa-var-music: "\f001"; |
|||
$fa-var-navicon: "\f0c9"; |
|||
$fa-var-neuter: "\f22c"; |
|||
$fa-var-newspaper-o: "\f1ea"; |
|||
$fa-var-object-group: "\f247"; |
|||
$fa-var-object-ungroup: "\f248"; |
|||
$fa-var-odnoklassniki: "\f263"; |
|||
$fa-var-odnoklassniki-square: "\f264"; |
|||
$fa-var-opencart: "\f23d"; |
|||
$fa-var-openid: "\f19b"; |
|||
$fa-var-opera: "\f26a"; |
|||
$fa-var-optin-monster: "\f23c"; |
|||
$fa-var-outdent: "\f03b"; |
|||
$fa-var-pagelines: "\f18c"; |
|||
$fa-var-paint-brush: "\f1fc"; |
|||
$fa-var-paper-plane: "\f1d8"; |
|||
$fa-var-paper-plane-o: "\f1d9"; |
|||
$fa-var-paperclip: "\f0c6"; |
|||
$fa-var-paragraph: "\f1dd"; |
|||
$fa-var-paste: "\f0ea"; |
|||
$fa-var-pause: "\f04c"; |
|||
$fa-var-pause-circle: "\f28b"; |
|||
$fa-var-pause-circle-o: "\f28c"; |
|||
$fa-var-paw: "\f1b0"; |
|||
$fa-var-paypal: "\f1ed"; |
|||
$fa-var-pencil: "\f040"; |
|||
$fa-var-pencil-square: "\f14b"; |
|||
$fa-var-pencil-square-o: "\f044"; |
|||
$fa-var-percent: "\f295"; |
|||
$fa-var-phone: "\f095"; |
|||
$fa-var-phone-square: "\f098"; |
|||
$fa-var-photo: "\f03e"; |
|||
$fa-var-picture-o: "\f03e"; |
|||
$fa-var-pie-chart: "\f200"; |
|||
$fa-var-pied-piper: "\f2ae"; |
|||
$fa-var-pied-piper-alt: "\f1a8"; |
|||
$fa-var-pied-piper-pp: "\f1a7"; |
|||
$fa-var-pinterest: "\f0d2"; |
|||
$fa-var-pinterest-p: "\f231"; |
|||
$fa-var-pinterest-square: "\f0d3"; |
|||
$fa-var-plane: "\f072"; |
|||
$fa-var-play: "\f04b"; |
|||
$fa-var-play-circle: "\f144"; |
|||
$fa-var-play-circle-o: "\f01d"; |
|||
$fa-var-plug: "\f1e6"; |
|||
$fa-var-plus: "\f067"; |
|||
$fa-var-plus-circle: "\f055"; |
|||
$fa-var-plus-square: "\f0fe"; |
|||
$fa-var-plus-square-o: "\f196"; |
|||
$fa-var-power-off: "\f011"; |
|||
$fa-var-print: "\f02f"; |
|||
$fa-var-product-hunt: "\f288"; |
|||
$fa-var-puzzle-piece: "\f12e"; |
|||
$fa-var-qq: "\f1d6"; |
|||
$fa-var-qrcode: "\f029"; |
|||
$fa-var-question: "\f128"; |
|||
$fa-var-question-circle: "\f059"; |
|||
$fa-var-question-circle-o: "\f29c"; |
|||
$fa-var-quote-left: "\f10d"; |
|||
$fa-var-quote-right: "\f10e"; |
|||
$fa-var-ra: "\f1d0"; |
|||
$fa-var-random: "\f074"; |
|||
$fa-var-rebel: "\f1d0"; |
|||
$fa-var-recycle: "\f1b8"; |
|||
$fa-var-reddit: "\f1a1"; |
|||
$fa-var-reddit-alien: "\f281"; |
|||
$fa-var-reddit-square: "\f1a2"; |
|||
$fa-var-refresh: "\f021"; |
|||
$fa-var-registered: "\f25d"; |
|||
$fa-var-remove: "\f00d"; |
|||
$fa-var-renren: "\f18b"; |
|||
$fa-var-reorder: "\f0c9"; |
|||
$fa-var-repeat: "\f01e"; |
|||
$fa-var-reply: "\f112"; |
|||
$fa-var-reply-all: "\f122"; |
|||
$fa-var-resistance: "\f1d0"; |
|||
$fa-var-retweet: "\f079"; |
|||
$fa-var-rmb: "\f157"; |
|||
$fa-var-road: "\f018"; |
|||
$fa-var-rocket: "\f135"; |
|||
$fa-var-rotate-left: "\f0e2"; |
|||
$fa-var-rotate-right: "\f01e"; |
|||
$fa-var-rouble: "\f158"; |
|||
$fa-var-rss: "\f09e"; |
|||
$fa-var-rss-square: "\f143"; |
|||
$fa-var-rub: "\f158"; |
|||
$fa-var-ruble: "\f158"; |
|||
$fa-var-rupee: "\f156"; |
|||
$fa-var-safari: "\f267"; |
|||
$fa-var-save: "\f0c7"; |
|||
$fa-var-scissors: "\f0c4"; |
|||
$fa-var-scribd: "\f28a"; |
|||
$fa-var-search: "\f002"; |
|||
$fa-var-search-minus: "\f010"; |
|||
$fa-var-search-plus: "\f00e"; |
|||
$fa-var-sellsy: "\f213"; |
|||
$fa-var-send: "\f1d8"; |
|||
$fa-var-send-o: "\f1d9"; |
|||
$fa-var-server: "\f233"; |
|||
$fa-var-share: "\f064"; |
|||
$fa-var-share-alt: "\f1e0"; |
|||
$fa-var-share-alt-square: "\f1e1"; |
|||
$fa-var-share-square: "\f14d"; |
|||
$fa-var-share-square-o: "\f045"; |
|||
$fa-var-shekel: "\f20b"; |
|||
$fa-var-sheqel: "\f20b"; |
|||
$fa-var-shield: "\f132"; |
|||
$fa-var-ship: "\f21a"; |
|||
$fa-var-shirtsinbulk: "\f214"; |
|||
$fa-var-shopping-bag: "\f290"; |
|||
$fa-var-shopping-basket: "\f291"; |
|||
$fa-var-shopping-cart: "\f07a"; |
|||
$fa-var-sign-in: "\f090"; |
|||
$fa-var-sign-language: "\f2a7"; |
|||
$fa-var-sign-out: "\f08b"; |
|||
$fa-var-signal: "\f012"; |
|||
$fa-var-signing: "\f2a7"; |
|||
$fa-var-simplybuilt: "\f215"; |
|||
$fa-var-sitemap: "\f0e8"; |
|||
$fa-var-skyatlas: "\f216"; |
|||
$fa-var-skype: "\f17e"; |
|||
$fa-var-slack: "\f198"; |
|||
$fa-var-sliders: "\f1de"; |
|||
$fa-var-slideshare: "\f1e7"; |
|||
$fa-var-smile-o: "\f118"; |
|||
$fa-var-snapchat: "\f2ab"; |
|||
$fa-var-snapchat-ghost: "\f2ac"; |
|||
$fa-var-snapchat-square: "\f2ad"; |
|||
$fa-var-soccer-ball-o: "\f1e3"; |
|||
$fa-var-sort: "\f0dc"; |
|||
$fa-var-sort-alpha-asc: "\f15d"; |
|||
$fa-var-sort-alpha-desc: "\f15e"; |
|||
$fa-var-sort-amount-asc: "\f160"; |
|||
$fa-var-sort-amount-desc: "\f161"; |
|||
$fa-var-sort-asc: "\f0de"; |
|||
$fa-var-sort-desc: "\f0dd"; |
|||
$fa-var-sort-down: "\f0dd"; |
|||
$fa-var-sort-numeric-asc: "\f162"; |
|||
$fa-var-sort-numeric-desc: "\f163"; |
|||
$fa-var-sort-up: "\f0de"; |
|||
$fa-var-soundcloud: "\f1be"; |
|||
$fa-var-space-shuttle: "\f197"; |
|||
$fa-var-spinner: "\f110"; |
|||
$fa-var-spoon: "\f1b1"; |
|||
$fa-var-spotify: "\f1bc"; |
|||
$fa-var-square: "\f0c8"; |
|||
$fa-var-square-o: "\f096"; |
|||
$fa-var-stack-exchange: "\f18d"; |
|||
$fa-var-stack-overflow: "\f16c"; |
|||
$fa-var-star: "\f005"; |
|||
$fa-var-star-half: "\f089"; |
|||
$fa-var-star-half-empty: "\f123"; |
|||
$fa-var-star-half-full: "\f123"; |
|||
$fa-var-star-half-o: "\f123"; |
|||
$fa-var-star-o: "\f006"; |
|||
$fa-var-steam: "\f1b6"; |
|||
$fa-var-steam-square: "\f1b7"; |
|||
$fa-var-step-backward: "\f048"; |
|||
$fa-var-step-forward: "\f051"; |
|||
$fa-var-stethoscope: "\f0f1"; |
|||
$fa-var-sticky-note: "\f249"; |
|||
$fa-var-sticky-note-o: "\f24a"; |
|||
$fa-var-stop: "\f04d"; |
|||
$fa-var-stop-circle: "\f28d"; |
|||
$fa-var-stop-circle-o: "\f28e"; |
|||
$fa-var-street-view: "\f21d"; |
|||
$fa-var-strikethrough: "\f0cc"; |
|||
$fa-var-stumbleupon: "\f1a4"; |
|||
$fa-var-stumbleupon-circle: "\f1a3"; |
|||
$fa-var-subscript: "\f12c"; |
|||
$fa-var-subway: "\f239"; |
|||
$fa-var-suitcase: "\f0f2"; |
|||
$fa-var-sun-o: "\f185"; |
|||
$fa-var-superscript: "\f12b"; |
|||
$fa-var-support: "\f1cd"; |
|||
$fa-var-table: "\f0ce"; |
|||
$fa-var-tablet: "\f10a"; |
|||
$fa-var-tachometer: "\f0e4"; |
|||
$fa-var-tag: "\f02b"; |
|||
$fa-var-tags: "\f02c"; |
|||
$fa-var-tasks: "\f0ae"; |
|||
$fa-var-taxi: "\f1ba"; |
|||
$fa-var-television: "\f26c"; |
|||
$fa-var-tencent-weibo: "\f1d5"; |
|||
$fa-var-terminal: "\f120"; |
|||
$fa-var-text-height: "\f034"; |
|||
$fa-var-text-width: "\f035"; |
|||
$fa-var-th: "\f00a"; |
|||
$fa-var-th-large: "\f009"; |
|||
$fa-var-th-list: "\f00b"; |
|||
$fa-var-themeisle: "\f2b2"; |
|||
$fa-var-thumb-tack: "\f08d"; |
|||
$fa-var-thumbs-down: "\f165"; |
|||
$fa-var-thumbs-o-down: "\f088"; |
|||
$fa-var-thumbs-o-up: "\f087"; |
|||
$fa-var-thumbs-up: "\f164"; |
|||
$fa-var-ticket: "\f145"; |
|||
$fa-var-times: "\f00d"; |
|||
$fa-var-times-circle: "\f057"; |
|||
$fa-var-times-circle-o: "\f05c"; |
|||
$fa-var-tint: "\f043"; |
|||
$fa-var-toggle-down: "\f150"; |
|||
$fa-var-toggle-left: "\f191"; |
|||
$fa-var-toggle-off: "\f204"; |
|||
$fa-var-toggle-on: "\f205"; |
|||
$fa-var-toggle-right: "\f152"; |
|||
$fa-var-toggle-up: "\f151"; |
|||
$fa-var-trademark: "\f25c"; |
|||
$fa-var-train: "\f238"; |
|||
$fa-var-transgender: "\f224"; |
|||
$fa-var-transgender-alt: "\f225"; |
|||
$fa-var-trash: "\f1f8"; |
|||
$fa-var-trash-o: "\f014"; |
|||
$fa-var-tree: "\f1bb"; |
|||
$fa-var-trello: "\f181"; |
|||
$fa-var-tripadvisor: "\f262"; |
|||
$fa-var-trophy: "\f091"; |
|||
$fa-var-truck: "\f0d1"; |
|||
$fa-var-try: "\f195"; |
|||
$fa-var-tty: "\f1e4"; |
|||
$fa-var-tumblr: "\f173"; |
|||
$fa-var-tumblr-square: "\f174"; |
|||
$fa-var-turkish-lira: "\f195"; |
|||
$fa-var-tv: "\f26c"; |
|||
$fa-var-twitch: "\f1e8"; |
|||
$fa-var-twitter: "\f099"; |
|||
$fa-var-twitter-square: "\f081"; |
|||
$fa-var-umbrella: "\f0e9"; |
|||
$fa-var-underline: "\f0cd"; |
|||
$fa-var-undo: "\f0e2"; |
|||
$fa-var-universal-access: "\f29a"; |
|||
$fa-var-university: "\f19c"; |
|||
$fa-var-unlink: "\f127"; |
|||
$fa-var-unlock: "\f09c"; |
|||
$fa-var-unlock-alt: "\f13e"; |
|||
$fa-var-unsorted: "\f0dc"; |
|||
$fa-var-upload: "\f093"; |
|||
$fa-var-usb: "\f287"; |
|||
$fa-var-usd: "\f155"; |
|||
$fa-var-user: "\f007"; |
|||
$fa-var-user-md: "\f0f0"; |
|||
$fa-var-user-plus: "\f234"; |
|||
$fa-var-user-secret: "\f21b"; |
|||
$fa-var-user-times: "\f235"; |
|||
$fa-var-users: "\f0c0"; |
|||
$fa-var-venus: "\f221"; |
|||
$fa-var-venus-double: "\f226"; |
|||
$fa-var-venus-mars: "\f228"; |
|||
$fa-var-viacoin: "\f237"; |
|||
$fa-var-viadeo: "\f2a9"; |
|||
$fa-var-viadeo-square: "\f2aa"; |
|||
$fa-var-video-camera: "\f03d"; |
|||
$fa-var-vimeo: "\f27d"; |
|||
$fa-var-vimeo-square: "\f194"; |
|||
$fa-var-vine: "\f1ca"; |
|||
$fa-var-vk: "\f189"; |
|||
$fa-var-volume-control-phone: "\f2a0"; |
|||
$fa-var-volume-down: "\f027"; |
|||
$fa-var-volume-off: "\f026"; |
|||
$fa-var-volume-up: "\f028"; |
|||
$fa-var-warning: "\f071"; |
|||
$fa-var-wechat: "\f1d7"; |
|||
$fa-var-weibo: "\f18a"; |
|||
$fa-var-weixin: "\f1d7"; |
|||
$fa-var-whatsapp: "\f232"; |
|||
$fa-var-wheelchair: "\f193"; |
|||
$fa-var-wheelchair-alt: "\f29b"; |
|||
$fa-var-wifi: "\f1eb"; |
|||
$fa-var-wikipedia-w: "\f266"; |
|||
$fa-var-windows: "\f17a"; |
|||
$fa-var-won: "\f159"; |
|||
$fa-var-wordpress: "\f19a"; |
|||
$fa-var-wpbeginner: "\f297"; |
|||
$fa-var-wpforms: "\f298"; |
|||
$fa-var-wrench: "\f0ad"; |
|||
$fa-var-xing: "\f168"; |
|||
$fa-var-xing-square: "\f169"; |
|||
$fa-var-y-combinator: "\f23b"; |
|||
$fa-var-y-combinator-square: "\f1d4"; |
|||
$fa-var-yahoo: "\f19e"; |
|||
$fa-var-yc: "\f23b"; |
|||
$fa-var-yc-square: "\f1d4"; |
|||
$fa-var-yelp: "\f1e9"; |
|||
$fa-var-yen: "\f157"; |
|||
$fa-var-yoast: "\f2b1"; |
|||
$fa-var-youtube: "\f167"; |
|||
$fa-var-youtube-play: "\f16a"; |
|||
$fa-var-youtube-square: "\f166"; |
|||
|
|||
@ -0,0 +1,18 @@ |
|||
/*! |
|||
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome |
|||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) |
|||
*/ |
|||
|
|||
@import "variables"; |
|||
@import "mixins"; |
|||
@import "path"; |
|||
@import "core"; |
|||
@import "larger"; |
|||
@import "fixed-width"; |
|||
@import "list"; |
|||
@import "bordered-pulled"; |
|||
@import "animated"; |
|||
@import "rotated-flipped"; |
|||
@import "stacked"; |
|||
@import "icons"; |
|||
@import "screen-reader"; |
|||
|
After Width: | Height: | Size: 960 KiB |
@ -0,0 +1,864 @@ |
|||
/*! |
|||
* jQuery Form Plugin |
|||
* version: 2.80 (25-MAY-2011) |
|||
* @requires jQuery v1.3.2 or later |
|||
* |
|||
* Examples and documentation at: http://malsup.com/jquery/form/
|
|||
* Dual licensed under the MIT and GPL licenses: |
|||
* http://www.opensource.org/licenses/mit-license.php
|
|||
* http://www.gnu.org/licenses/gpl.html
|
|||
*/ |
|||
;(function($) { |
|||
|
|||
/* |
|||
Usage Note: |
|||
----------- |
|||
Do not use both ajaxSubmit and ajaxForm on the same form. These |
|||
functions are intended to be exclusive. Use ajaxSubmit if you want |
|||
to bind your own submit handler to the form. For example, |
|||
|
|||
$(document).ready(function() { |
|||
$('#myForm').bind('submit', function(e) { |
|||
e.preventDefault(); // <-- important
|
|||
$(this).ajaxSubmit({ |
|||
target: '#output' |
|||
}); |
|||
}); |
|||
}); |
|||
|
|||
Use ajaxForm when you want the plugin to manage all the event binding |
|||
for you. For example, |
|||
|
|||
$(document).ready(function() { |
|||
$('#myForm').ajaxForm({ |
|||
target: '#output' |
|||
}); |
|||
}); |
|||
|
|||
When using ajaxForm, the ajaxSubmit function will be invoked for you |
|||
at the appropriate time. |
|||
*/ |
|||
|
|||
/** |
|||
* ajaxSubmit() provides a mechanism for immediately submitting |
|||
* an HTML form using AJAX. |
|||
*/ |
|||
$.fn.ajaxSubmit = function(options) { |
|||
// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
|
|||
if (!this.length) { |
|||
log('ajaxSubmit: skipping submit process - no element selected'); |
|||
return this; |
|||
} |
|||
|
|||
if (typeof options == 'function') { |
|||
options = { success: options }; |
|||
} |
|||
|
|||
var action = this.attr('action'); |
|||
var url = (typeof action === 'string') ? $.trim(action) : ''; |
|||
url = url || window.location.href || ''; |
|||
if (url) { |
|||
// clean url (don't include hash vaue)
|
|||
url = (url.match(/^([^#]+)/)||[])[1]; |
|||
} |
|||
|
|||
options = $.extend(true, { |
|||
url: url, |
|||
success: $.ajaxSettings.success, |
|||
type: this[0].getAttribute('method') || 'GET', // IE7 massage (see issue 57)
|
|||
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank' |
|||
}, options); |
|||
|
|||
// hook for manipulating the form data before it is extracted;
|
|||
// convenient for use with rich editors like tinyMCE or FCKEditor
|
|||
var veto = {}; |
|||
this.trigger('form-pre-serialize', [this, options, veto]); |
|||
if (veto.veto) { |
|||
log('ajaxSubmit: submit vetoed via form-pre-serialize trigger'); |
|||
return this; |
|||
} |
|||
|
|||
// provide opportunity to alter form data before it is serialized
|
|||
if (options.beforeSerialize && options.beforeSerialize(this, options) === false) { |
|||
log('ajaxSubmit: submit aborted via beforeSerialize callback'); |
|||
return this; |
|||
} |
|||
|
|||
var n,v,a = this.formToArray(options.semantic); |
|||
if (options.data) { |
|||
options.extraData = options.data; |
|||
for (n in options.data) { |
|||
if(options.data[n] instanceof Array) { |
|||
for (var k in options.data[n]) { |
|||
a.push( { name: n, value: options.data[n][k] } ); |
|||
} |
|||
} |
|||
else { |
|||
v = options.data[n]; |
|||
v = $.isFunction(v) ? v() : v; // if value is fn, invoke it
|
|||
a.push( { name: n, value: v } ); |
|||
} |
|||
} |
|||
} |
|||
|
|||
// give pre-submit callback an opportunity to abort the submit
|
|||
if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) { |
|||
log('ajaxSubmit: submit aborted via beforeSubmit callback'); |
|||
return this; |
|||
} |
|||
|
|||
// fire vetoable 'validate' event
|
|||
this.trigger('form-submit-validate', [a, this, options, veto]); |
|||
if (veto.veto) { |
|||
log('ajaxSubmit: submit vetoed via form-submit-validate trigger'); |
|||
return this; |
|||
} |
|||
|
|||
var q = $.param(a); |
|||
|
|||
if (options.type.toUpperCase() == 'GET') { |
|||
options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q; |
|||
options.data = null; // data is null for 'get'
|
|||
} |
|||
else { |
|||
options.data = q; // data is the query string for 'post'
|
|||
} |
|||
|
|||
var $form = this, callbacks = []; |
|||
if (options.resetForm) { |
|||
callbacks.push(function() { $form.resetForm(); }); |
|||
} |
|||
if (options.clearForm) { |
|||
callbacks.push(function() { $form.clearForm(); }); |
|||
} |
|||
|
|||
// perform a load on the target only if dataType is not provided
|
|||
if (!options.dataType && options.target) { |
|||
var oldSuccess = options.success || function(){}; |
|||
callbacks.push(function(data) { |
|||
var fn = options.replaceTarget ? 'replaceWith' : 'html'; |
|||
$(options.target)[fn](data).each(oldSuccess, arguments); |
|||
}); |
|||
} |
|||
else if (options.success) { |
|||
callbacks.push(options.success); |
|||
} |
|||
|
|||
options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
|
|||
var context = options.context || options; // jQuery 1.4+ supports scope context
|
|||
for (var i=0, max=callbacks.length; i < max; i++) { |
|||
callbacks[i].apply(context, [data, status, xhr || $form, $form]); |
|||
} |
|||
}; |
|||
|
|||
// are there files to upload?
|
|||
var fileInputs = $('input:file', this).length > 0; |
|||
var mp = 'multipart/form-data'; |
|||
var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp); |
|||
|
|||
// options.iframe allows user to force iframe mode
|
|||
// 06-NOV-09: now defaulting to iframe mode if file input is detected
|
|||
if (options.iframe !== false && (fileInputs || options.iframe || multipart)) { |
|||
// hack to fix Safari hang (thanks to Tim Molendijk for this)
|
|||
// see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
|
|||
if (options.closeKeepAlive) { |
|||
$.get(options.closeKeepAlive, function() { fileUpload(a); }); |
|||
} |
|||
else { |
|||
fileUpload(a); |
|||
} |
|||
} |
|||
else { |
|||
$.ajax(options); |
|||
} |
|||
|
|||
// fire 'notify' event
|
|||
this.trigger('form-submit-notify', [this, options]); |
|||
return this; |
|||
|
|||
|
|||
// private function for handling file uploads (hat tip to YAHOO!)
|
|||
function fileUpload(a) { |
|||
var form = $form[0], i, s, g, id, $io, io, xhr, sub, n, timedOut, timeoutHandle; |
|||
|
|||
if (a) { |
|||
// ensure that every serialized input is still enabled
|
|||
for (i=0; i < a.length; i++) { |
|||
$(form[a[i].name]).attr('disabled', false); |
|||
} |
|||
} |
|||
|
|||
if ($(':input[name=submit],:input[id=submit]', form).length) { |
|||
// if there is an input with a name or id of 'submit' then we won't be
|
|||
// able to invoke the submit fn on the form (at least not x-browser)
|
|||
alert('Error: Form elements must not have name or id of "submit".'); |
|||
return; |
|||
} |
|||
|
|||
s = $.extend(true, {}, $.ajaxSettings, options); |
|||
s.context = s.context || s; |
|||
id = 'jqFormIO' + (new Date().getTime()); |
|||
if (s.iframeTarget) { |
|||
$io = $(s.iframeTarget); |
|||
n = $io.attr('name'); |
|||
if (n == null) |
|||
$io.attr('name', id); |
|||
else |
|||
id = n; |
|||
} |
|||
else { |
|||
$io = $('<iframe name="' + id + '" src="'+ s.iframeSrc +'" />'); |
|||
$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' }); |
|||
} |
|||
io = $io[0]; |
|||
|
|||
|
|||
xhr = { // mock object
|
|||
aborted: 0, |
|||
responseText: null, |
|||
responseXML: null, |
|||
status: 0, |
|||
statusText: 'n/a', |
|||
getAllResponseHeaders: function() {}, |
|||
getResponseHeader: function() {}, |
|||
setRequestHeader: function() {}, |
|||
abort: function(status) { |
|||
var e = (status === 'timeout' ? 'timeout' : 'aborted'); |
|||
log('aborting upload... ' + e); |
|||
this.aborted = 1; |
|||
$io.attr('src', s.iframeSrc); // abort op in progress
|
|||
xhr.error = e; |
|||
s.error && s.error.call(s.context, xhr, e, e); |
|||
g && $.event.trigger("ajaxError", [xhr, s, e]); |
|||
s.complete && s.complete.call(s.context, xhr, e); |
|||
} |
|||
}; |
|||
|
|||
g = s.global; |
|||
// trigger ajax global events so that activity/block indicators work like normal
|
|||
if (g && ! $.active++) { |
|||
$.event.trigger("ajaxStart"); |
|||
} |
|||
if (g) { |
|||
$.event.trigger("ajaxSend", [xhr, s]); |
|||
} |
|||
|
|||
if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) { |
|||
if (s.global) { |
|||
$.active--; |
|||
} |
|||
return; |
|||
} |
|||
if (xhr.aborted) { |
|||
return; |
|||
} |
|||
|
|||
// add submitting element to data if we know it
|
|||
sub = form.clk; |
|||
if (sub) { |
|||
n = sub.name; |
|||
if (n && !sub.disabled) { |
|||
s.extraData = s.extraData || {}; |
|||
s.extraData[n] = sub.value; |
|||
if (sub.type == "image") { |
|||
s.extraData[n+'.x'] = form.clk_x; |
|||
s.extraData[n+'.y'] = form.clk_y; |
|||
} |
|||
} |
|||
} |
|||
|
|||
// take a breath so that pending repaints get some cpu time before the upload starts
|
|||
function doSubmit() { |
|||
// make sure form attrs are set
|
|||
var t = $form.attr('target'), a = $form.attr('action'); |
|||
|
|||
// update form attrs in IE friendly way
|
|||
form.setAttribute('target',id); |
|||
if (form.getAttribute('method') != 'POST') { |
|||
form.setAttribute('method', 'POST'); |
|||
} |
|||
if (form.getAttribute('action') != s.url) { |
|||
form.setAttribute('action', s.url); |
|||
} |
|||
|
|||
// ie borks in some cases when setting encoding
|
|||
if (! s.skipEncodingOverride) { |
|||
$form.attr({ |
|||
encoding: 'multipart/form-data', |
|||
enctype: 'multipart/form-data' |
|||
}); |
|||
} |
|||
|
|||
// support timout
|
|||
if (s.timeout) { |
|||
timeoutHandle = setTimeout(function() { timedOut = true; cb(true); }, s.timeout); |
|||
} |
|||
|
|||
// add "extra" data to form if provided in options
|
|||
var extraInputs = []; |
|||
try { |
|||
if (s.extraData) { |
|||
for (var n in s.extraData) { |
|||
extraInputs.push( |
|||
$('<input type="hidden" name="'+n+'" value="'+s.extraData[n]+'" />') |
|||
.appendTo(form)[0]); |
|||
} |
|||
} |
|||
|
|||
if (!s.iframeTarget) { |
|||
// add iframe to doc and submit the form
|
|||
$io.appendTo('body'); |
|||
io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false); |
|||
} |
|||
form.submit(); |
|||
} |
|||
finally { |
|||
// reset attrs and remove "extra" input elements
|
|||
form.setAttribute('action',a); |
|||
if(t) { |
|||
form.setAttribute('target', t); |
|||
} else { |
|||
$form.removeAttr('target'); |
|||
} |
|||
$(extraInputs).remove(); |
|||
} |
|||
} |
|||
|
|||
if (s.forceSync) { |
|||
doSubmit(); |
|||
} |
|||
else { |
|||
setTimeout(doSubmit, 10); // this lets dom updates render
|
|||
} |
|||
|
|||
var data, doc, domCheckCount = 50, callbackProcessed; |
|||
|
|||
function cb(e) { |
|||
if (xhr.aborted || callbackProcessed) { |
|||
return; |
|||
} |
|||
if (e === true && xhr) { |
|||
xhr.abort('timeout'); |
|||
return; |
|||
} |
|||
|
|||
var doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document; |
|||
if (!doc || doc.location.href == s.iframeSrc) { |
|||
// response not received yet
|
|||
if (!timedOut) |
|||
return; |
|||
} |
|||
io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false); |
|||
|
|||
var status = 'success', errMsg; |
|||
try { |
|||
if (timedOut) { |
|||
throw 'timeout'; |
|||
} |
|||
|
|||
var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc); |
|||
if (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) { |
|||
if (--domCheckCount) { |
|||
// in some browsers (Opera) the iframe DOM is not always traversable when
|
|||
// the onload callback fires, so we loop a bit to accommodate
|
|||
log('requeing onLoad callback, DOM not available'); |
|||
setTimeout(cb, 250); |
|||
return; |
|||
} |
|||
// let this fall through because server response could be an empty document
|
|||
//log('Could not access iframe DOM after mutiple tries.');
|
|||
//throw 'DOMException: not available';
|
|||
} |
|||
|
|||
//log('response detected');
|
|||
var docRoot = doc.body ? doc.body : doc.documentElement; |
|||
xhr.responseText = docRoot ? docRoot.innerHTML : null; |
|||
xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc; |
|||
if (isXml) |
|||
s.dataType = 'xml'; |
|||
xhr.getResponseHeader = function(header){ |
|||
var headers = {'content-type': s.dataType}; |
|||
return headers[header]; |
|||
}; |
|||
// support for XHR 'status' & 'statusText' emulation :
|
|||
if (docRoot) { |
|||
xhr.status = Number( docRoot.getAttribute('status') ) || xhr.status; |
|||
xhr.statusText = docRoot.getAttribute('statusText') || xhr.statusText; |
|||
} |
|||
|
|||
var dt = s.dataType || ''; |
|||
var scr = /(json|script|text)/.test(dt.toLowerCase()); |
|||
if (scr || s.textarea) { |
|||
// see if user embedded response in textarea
|
|||
var ta = doc.getElementsByTagName('textarea')[0]; |
|||
if (ta) { |
|||
xhr.responseText = ta.value; |
|||
// support for XHR 'status' & 'statusText' emulation :
|
|||
xhr.status = Number( ta.getAttribute('status') ) || xhr.status; |
|||
xhr.statusText = ta.getAttribute('statusText') || xhr.statusText; |
|||
} |
|||
else if (scr) { |
|||
// account for browsers injecting pre around json response
|
|||
var pre = doc.getElementsByTagName('pre')[0]; |
|||
var b = doc.getElementsByTagName('body')[0]; |
|||
if (pre) { |
|||
xhr.responseText = pre.textContent ? pre.textContent : pre.innerHTML; |
|||
} |
|||
else if (b) { |
|||
xhr.responseText = b.innerHTML; |
|||
} |
|||
} |
|||
} |
|||
else if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) { |
|||
xhr.responseXML = toXml(xhr.responseText); |
|||
} |
|||
|
|||
try { |
|||
data = httpData(xhr, s.dataType, s); |
|||
} |
|||
catch (e) { |
|||
status = 'parsererror'; |
|||
xhr.error = errMsg = (e || status); |
|||
} |
|||
} |
|||
catch (e) { |
|||
log('error caught',e); |
|||
status = 'error'; |
|||
xhr.error = errMsg = (e || status); |
|||
} |
|||
|
|||
if (xhr.aborted) { |
|||
log('upload aborted'); |
|||
status = null; |
|||
} |
|||
|
|||
if (xhr.status) { // we've set xhr.status
|
|||
status = (xhr.status >= 200 && xhr.status < 300 || xhr.status === 304) ? 'success' : 'error'; |
|||
} |
|||
|
|||
// ordering of these callbacks/triggers is odd, but that's how $.ajax does it
|
|||
if (status === 'success') { |
|||
s.success && s.success.call(s.context, data, 'success', xhr); |
|||
g && $.event.trigger("ajaxSuccess", [xhr, s]); |
|||
} |
|||
else if (status) { |
|||
if (errMsg == undefined) |
|||
errMsg = xhr.statusText; |
|||
s.error && s.error.call(s.context, xhr, status, errMsg); |
|||
g && $.event.trigger("ajaxError", [xhr, s, errMsg]); |
|||
} |
|||
|
|||
g && $.event.trigger("ajaxComplete", [xhr, s]); |
|||
|
|||
if (g && ! --$.active) { |
|||
$.event.trigger("ajaxStop"); |
|||
} |
|||
|
|||
s.complete && s.complete.call(s.context, xhr, status); |
|||
|
|||
callbackProcessed = true; |
|||
if (s.timeout) |
|||
clearTimeout(timeoutHandle); |
|||
|
|||
// clean up
|
|||
setTimeout(function() { |
|||
if (!s.iframeTarget) |
|||
$io.remove(); |
|||
xhr.responseXML = null; |
|||
}, 100); |
|||
} |
|||
|
|||
var toXml = $.parseXML || function(s, doc) { // use parseXML if available (jQuery 1.5+)
|
|||
if (window.ActiveXObject) { |
|||
doc = new ActiveXObject('Microsoft.XMLDOM'); |
|||
doc.async = 'false'; |
|||
doc.loadXML(s); |
|||
} |
|||
else { |
|||
doc = (new DOMParser()).parseFromString(s, 'text/xml'); |
|||
} |
|||
return (doc && doc.documentElement && doc.documentElement.nodeName != 'parsererror') ? doc : null; |
|||
}; |
|||
var parseJSON = $.parseJSON || function(s) { |
|||
return window['eval']('(' + s + ')'); |
|||
}; |
|||
|
|||
var httpData = function( xhr, type, s ) { // mostly lifted from jq1.4.4
|
|||
|
|||
var ct = xhr.getResponseHeader('content-type') || '', |
|||
xml = type === 'xml' || !type && ct.indexOf('xml') >= 0, |
|||
data = xml ? xhr.responseXML : xhr.responseText; |
|||
|
|||
if (xml && data.documentElement.nodeName === 'parsererror') { |
|||
$.error && $.error('parsererror'); |
|||
} |
|||
if (s && s.dataFilter) { |
|||
data = s.dataFilter(data, type); |
|||
} |
|||
if (typeof data === 'string') { |
|||
if (type === 'json' || !type && ct.indexOf('json') >= 0) { |
|||
data = parseJSON(data); |
|||
|
|||
} else if (type === "script" || !type && ct.indexOf("javascript") >= 0) { |
|||
$.globalEval(data); |
|||
} |
|||
} |
|||
return data; |
|||
}; |
|||
} |
|||
}; |
|||
|
|||
/** |
|||
* ajaxForm() provides a mechanism for fully automating form submission. |
|||
* |
|||
* The advantages of using this method instead of ajaxSubmit() are: |
|||
* |
|||
* 1: This method will include coordinates for <input type="image" /> elements (if the element |
|||
* is used to submit the form). |
|||
* 2. This method will include the submit element's name/value data (for the element that was |
|||
* used to submit the form). |
|||
* 3. This method binds the submit() method to the form for you. |
|||
* |
|||
* The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely |
|||
* passes the options argument along after properly binding events for submit elements and |
|||
* the form itself. |
|||
*/ |
|||
$.fn.ajaxForm = function(options) { |
|||
// in jQuery 1.3+ we can fix mistakes with the ready state
|
|||
if (this.length === 0) { |
|||
var o = { s: this.selector, c: this.context }; |
|||
if (!$.isReady && o.s) { |
|||
log('DOM not ready, queuing ajaxForm'); |
|||
$(function() { |
|||
$(o.s,o.c).ajaxForm(options); |
|||
}); |
|||
return this; |
|||
} |
|||
// is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
|
|||
log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)')); |
|||
return this; |
|||
} |
|||
|
|||
return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) { |
|||
if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
|
|||
e.preventDefault(); |
|||
$(this).ajaxSubmit(options); |
|||
} |
|||
}).bind('click.form-plugin', function(e) { |
|||
var target = e.target; |
|||
var $el = $(target); |
|||
if (!($el.is(":submit,input:image"))) { |
|||
// is this a child element of the submit el? (ex: a span within a button)
|
|||
var t = $el.closest(':submit'); |
|||
if (t.length == 0) { |
|||
return; |
|||
} |
|||
target = t[0]; |
|||
} |
|||
var form = this; |
|||
form.clk = target; |
|||
if (target.type == 'image') { |
|||
if (e.offsetX != undefined) { |
|||
form.clk_x = e.offsetX; |
|||
form.clk_y = e.offsetY; |
|||
} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
|
|||
var offset = $el.offset(); |
|||
form.clk_x = e.pageX - offset.left; |
|||
form.clk_y = e.pageY - offset.top; |
|||
} else { |
|||
form.clk_x = e.pageX - target.offsetLeft; |
|||
form.clk_y = e.pageY - target.offsetTop; |
|||
} |
|||
} |
|||
// clear form vars
|
|||
setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100); |
|||
}); |
|||
}; |
|||
|
|||
// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
|
|||
$.fn.ajaxFormUnbind = function() { |
|||
return this.unbind('submit.form-plugin click.form-plugin'); |
|||
}; |
|||
|
|||
/** |
|||
* formToArray() gathers form element data into an array of objects that can |
|||
* be passed to any of the following ajax functions: $.get, $.post, or load. |
|||
* Each object in the array has both a 'name' and 'value' property. An example of |
|||
* an array for a simple login form might be: |
|||
* |
|||
* [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ] |
|||
* |
|||
* It is this array that is passed to pre-submit callback functions provided to the |
|||
* ajaxSubmit() and ajaxForm() methods. |
|||
*/ |
|||
$.fn.formToArray = function(semantic) { |
|||
var a = []; |
|||
if (this.length === 0) { |
|||
return a; |
|||
} |
|||
|
|||
var form = this[0]; |
|||
var els = semantic ? form.getElementsByTagName('*') : form.elements; |
|||
if (!els) { |
|||
return a; |
|||
} |
|||
|
|||
var i,j,n,v,el,max,jmax; |
|||
for(i=0, max=els.length; i < max; i++) { |
|||
el = els[i]; |
|||
n = el.name; |
|||
if (!n) { |
|||
continue; |
|||
} |
|||
|
|||
if (semantic && form.clk && el.type == "image") { |
|||
// handle image inputs on the fly when semantic == true
|
|||
if(!el.disabled && form.clk == el) { |
|||
a.push({name: n, value: $(el).val()}); |
|||
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y}); |
|||
} |
|||
continue; |
|||
} |
|||
|
|||
v = $.fieldValue(el, true); |
|||
if (v && v.constructor == Array) { |
|||
for(j=0, jmax=v.length; j < jmax; j++) { |
|||
a.push({name: n, value: v[j]}); |
|||
} |
|||
} |
|||
else if (v !== null && typeof v != 'undefined') { |
|||
a.push({name: n, value: v}); |
|||
} |
|||
} |
|||
|
|||
if (!semantic && form.clk) { |
|||
// input type=='image' are not found in elements array! handle it here
|
|||
var $input = $(form.clk), input = $input[0]; |
|||
n = input.name; |
|||
if (n && !input.disabled && input.type == 'image') { |
|||
a.push({name: n, value: $input.val()}); |
|||
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y}); |
|||
} |
|||
} |
|||
return a; |
|||
}; |
|||
|
|||
/** |
|||
* Serializes form data into a 'submittable' string. This method will return a string |
|||
* in the format: name1=value1&name2=value2 |
|||
*/ |
|||
$.fn.formSerialize = function(semantic) { |
|||
//hand off to jQuery.param for proper encoding
|
|||
return $.param(this.formToArray(semantic)); |
|||
}; |
|||
|
|||
/** |
|||
* Serializes all field elements in the jQuery object into a query string. |
|||
* This method will return a string in the format: name1=value1&name2=value2 |
|||
*/ |
|||
$.fn.fieldSerialize = function(successful) { |
|||
var a = []; |
|||
this.each(function() { |
|||
var n = this.name; |
|||
if (!n) { |
|||
return; |
|||
} |
|||
var v = $.fieldValue(this, successful); |
|||
if (v && v.constructor == Array) { |
|||
for (var i=0,max=v.length; i < max; i++) { |
|||
a.push({name: n, value: v[i]}); |
|||
} |
|||
} |
|||
else if (v !== null && typeof v != 'undefined') { |
|||
a.push({name: this.name, value: v}); |
|||
} |
|||
}); |
|||
//hand off to jQuery.param for proper encoding
|
|||
return $.param(a); |
|||
}; |
|||
|
|||
/** |
|||
* Returns the value(s) of the element in the matched set. For example, consider the following form: |
|||
* |
|||
* <form><fieldset> |
|||
* <input name="A" type="text" /> |
|||
* <input name="A" type="text" /> |
|||
* <input name="B" type="checkbox" value="B1" /> |
|||
* <input name="B" type="checkbox" value="B2"/> |
|||
* <input name="C" type="radio" value="C1" /> |
|||
* <input name="C" type="radio" value="C2" /> |
|||
* </fieldset></form> |
|||
* |
|||
* var v = $(':text').fieldValue(); |
|||
* // if no values are entered into the text inputs
|
|||
* v == ['',''] |
|||
* // if values entered into the text inputs are 'foo' and 'bar'
|
|||
* v == ['foo','bar'] |
|||
* |
|||
* var v = $(':checkbox').fieldValue(); |
|||
* // if neither checkbox is checked
|
|||
* v === undefined |
|||
* // if both checkboxes are checked
|
|||
* v == ['B1', 'B2'] |
|||
* |
|||
* var v = $(':radio').fieldValue(); |
|||
* // if neither radio is checked
|
|||
* v === undefined |
|||
* // if first radio is checked
|
|||
* v == ['C1'] |
|||
* |
|||
* The successful argument controls whether or not the field element must be 'successful' |
|||
* (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
|
|||
* The default value of the successful argument is true. If this value is false the value(s) |
|||
* for each element is returned. |
|||
* |
|||
* Note: This method *always* returns an array. If no valid value can be determined the |
|||
* array will be empty, otherwise it will contain one or more values. |
|||
*/ |
|||
$.fn.fieldValue = function(successful) { |
|||
for (var val=[], i=0, max=this.length; i < max; i++) { |
|||
var el = this[i]; |
|||
var v = $.fieldValue(el, successful); |
|||
if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) { |
|||
continue; |
|||
} |
|||
v.constructor == Array ? $.merge(val, v) : val.push(v); |
|||
} |
|||
return val; |
|||
}; |
|||
|
|||
/** |
|||
* Returns the value of the field element. |
|||
*/ |
|||
$.fieldValue = function(el, successful) { |
|||
var n = el.name, t = el.type, tag = el.tagName.toLowerCase(); |
|||
if (successful === undefined) { |
|||
successful = true; |
|||
} |
|||
|
|||
if (successful && (!n || el.disabled || t == 'reset' || t == 'button' || |
|||
(t == 'checkbox' || t == 'radio') && !el.checked || |
|||
(t == 'submit' || t == 'image') && el.form && el.form.clk != el || |
|||
tag == 'select' && el.selectedIndex == -1)) { |
|||
return null; |
|||
} |
|||
|
|||
if (tag == 'select') { |
|||
var index = el.selectedIndex; |
|||
if (index < 0) { |
|||
return null; |
|||
} |
|||
var a = [], ops = el.options; |
|||
var one = (t == 'select-one'); |
|||
var max = (one ? index+1 : ops.length); |
|||
for(var i=(one ? index : 0); i < max; i++) { |
|||
var op = ops[i]; |
|||
if (op.selected) { |
|||
var v = op.value; |
|||
if (!v) { // extra pain for IE...
|
|||
v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value; |
|||
} |
|||
if (one) { |
|||
return v; |
|||
} |
|||
a.push(v); |
|||
} |
|||
} |
|||
return a; |
|||
} |
|||
return $(el).val(); |
|||
}; |
|||
|
|||
/** |
|||
* Clears the form data. Takes the following actions on the form's input fields: |
|||
* - input text fields will have their 'value' property set to the empty string |
|||
* - select elements will have their 'selectedIndex' property set to -1 |
|||
* - checkbox and radio inputs will have their 'checked' property set to false |
|||
* - inputs of type submit, button, reset, and hidden will *not* be effected |
|||
* - button elements will *not* be effected |
|||
*/ |
|||
$.fn.clearForm = function() { |
|||
return this.each(function() { |
|||
$('input,select,textarea', this).clearFields(); |
|||
}); |
|||
}; |
|||
|
|||
/** |
|||
* Clears the selected form elements. |
|||
*/ |
|||
$.fn.clearFields = $.fn.clearInputs = function() { |
|||
return this.each(function() { |
|||
var t = this.type, tag = this.tagName.toLowerCase(); |
|||
if (t == 'text' || t == 'password' || tag == 'textarea') { |
|||
this.value = ''; |
|||
} |
|||
else if (t == 'checkbox' || t == 'radio') { |
|||
this.checked = false; |
|||
} |
|||
else if (tag == 'select') { |
|||
this.selectedIndex = -1; |
|||
} |
|||
}); |
|||
}; |
|||
|
|||
/** |
|||
* Resets the form data. Causes all form elements to be reset to their original value. |
|||
*/ |
|||
$.fn.resetForm = function() { |
|||
return this.each(function() { |
|||
// guard against an input with the name of 'reset'
|
|||
// note that IE reports the reset function as an 'object'
|
|||
if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) { |
|||
this.reset(); |
|||
} |
|||
}); |
|||
}; |
|||
|
|||
/** |
|||
* Enables or disables any matching elements. |
|||
*/ |
|||
$.fn.enable = function(b) { |
|||
if (b === undefined) { |
|||
b = true; |
|||
} |
|||
return this.each(function() { |
|||
this.disabled = !b; |
|||
}); |
|||
}; |
|||
|
|||
/** |
|||
* Checks/unchecks any matching checkboxes or radio buttons and |
|||
* selects/deselects and matching option elements. |
|||
*/ |
|||
$.fn.selected = function(select) { |
|||
if (select === undefined) { |
|||
select = true; |
|||
} |
|||
return this.each(function() { |
|||
var t = this.type; |
|||
if (t == 'checkbox' || t == 'radio') { |
|||
this.checked = select; |
|||
} |
|||
else if (this.tagName.toLowerCase() == 'option') { |
|||
var $sel = $(this).parent('select'); |
|||
if (select && $sel[0] && $sel[0].type == 'select-one') { |
|||
// deselect all other options
|
|||
$sel.find('option').selected(false); |
|||
} |
|||
this.selected = select; |
|||
} |
|||
}); |
|||
}; |
|||
|
|||
// helper fn for console logging
|
|||
function log() { |
|||
var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,''); |
|||
if (window.console && window.console.log) { |
|||
window.console.log(msg); |
|||
} |
|||
else if (window.opera && window.opera.postError) { |
|||
window.opera.postError(msg); |
|||
} |
|||
}; |
|||
|
|||
})(jQuery); |
|||
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 701 B |
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,380 @@ |
|||
|
|||
/** layui-v1.0.2 经典模块化前端框架@LGPL www.layui.com By 贤心*/.layui-btn, |
|||
.layui-inline, |
|||
img{vertical-align: middle} |
|||
.layui-btn, |
|||
.layui-unselect{-webkit-user-select: none;-ms-user-select: none;-moz-user-select: none} |
|||
.layui-laypage a, |
|||
a{text-decoration: none} |
|||
.layui-btn, |
|||
.layui-tree li i, |
|||
.layui-unselect{-moz-user-select: none} |
|||
blockquote, |
|||
body, |
|||
button, |
|||
dd, |
|||
div, |
|||
dl, |
|||
dt, |
|||
form, |
|||
h1, |
|||
h2, |
|||
h3, |
|||
h4, |
|||
h5, |
|||
h6, |
|||
input, |
|||
li, |
|||
ol, |
|||
p, |
|||
pre, |
|||
td, |
|||
textarea, |
|||
th, |
|||
ul{margin: 0;padding: 0;-webkit-tap-highlight-color: rgba(0, 0, 0, 0)} |
|||
a:active, |
|||
a:hover{outline: 0} |
|||
img{display: inline-block;border: none} |
|||
li{list-style: none} |
|||
table{border-collapse: collapse;border-spacing: 0} |
|||
button, |
|||
input, |
|||
optgroup, |
|||
option, |
|||
select, |
|||
textarea{font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;outline: 0} |
|||
pre{white-space: pre-wrap;white-space: -moz-pre-wrap;white-space: -pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word} |
|||
@font-face{font-family: layui-icon;src: url(../font/iconfont.eot);src: url(../font/iconfont.eot?#iefix) format('embedded-opentype'), url(../font/iconfont.woff) format('woff'), url(../font/iconfont.ttf) format('truetype'), url(../font/iconfont.svg#iconfont) format('svg')} |
|||
.layui-icon{font-family: layui-icon!important;font-size: 16px;font-style: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale} |
|||
.layui-flow-more a cite, |
|||
.layui-laypage em, |
|||
.layui-tree li a cite, |
|||
a cite{font-style: normal} |
|||
hr{height: 1px;margin: 10px 0;border: 0;background-color: #e2e2e2;clear: both} |
|||
a cite{*cursor: pointer} |
|||
.layui-box, |
|||
.layui-box *{-webkit-box-sizing: content-box!important;-moz-box-sizing: content-box!important;box-sizing: content-box!important} |
|||
.layui-clear{clear: both;*zoom: 1} |
|||
.layui-clear:after{content: '\20';clear: both;*zoom: 1;display: block;height: 0} |
|||
.layui-inline{position: relative;display: inline-block;*display: inline;*zoom: 1} |
|||
.layui-edge{position: absolute;width: 0;height: 0;border-style: dashed;border-color: transparent;overflow: hidden} |
|||
.layui-elip{text-overflow: ellipsis;overflow: hidden;white-space: nowrap} |
|||
.layui-disabled, |
|||
.layui-disabled:hover{color: #d2d2d2!important;cursor: not-allowed!important} |
|||
.layui-circle{border-radius: 100%} |
|||
.layui-show{display: block!important} |
|||
.layui-hide{display: none!important} |
|||
.layui-main{position: relative;width: 1140px;margin: 0 auto} |
|||
.layui-header{position: relative;z-index: 1000;height: 65px} |
|||
.layui-header a:hover{transition: all .5s;-webkit-transition: all .5s} |
|||
.layui-side{position: fixed;top: 0;bottom: 0;z-index: 999;width: 200px;overflow-x: hidden} |
|||
.layui-side-scroll{width: 220px;height: 100%;overflow-x: hidden} |
|||
.layui-body{position: absolute;left: 200px;right: 0;top: 0;bottom: 0;z-index: 998;width: auto;overflow: hidden;overflow-y: auto;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box} |
|||
.layui-layout-admin .layui-header{border-bottom: 5px solid #5FB878} |
|||
.layui-layout-admin .layui-side{top: 65px;width: 200px;overflow-x: hidden} |
|||
.layui-layout-admin .layui-body{top: 70px;bottom: 44px} |
|||
.layui-layout-admin .layui-main{width: auto;margin: 0 15px} |
|||
.layui-layout-admin .layui-footer{position: fixed;left: 200px;right: 0;bottom: 0;height: 44px;background-color: #eee} |
|||
.layui-btn, |
|||
.layui-input, |
|||
.layui-textarea, |
|||
.layui-upload-button{outline: 0;-webkit-transition: border-color .3s cubic-bezier(.65, .05, .35, .5);transition: border-color .3s cubic-bezier(.65, .05, .35, .5);-webkit-box-sizing: border-box!important;-moz-box-sizing: border-box!important;box-sizing: border-box!important} |
|||
.layui-elem-quote{margin-bottom: 10px;padding: 15px;line-height: 22px;border-left: 5px solid #009688;border-radius: 0 2px 2px 0;background-color: #f2f2f2} |
|||
.layui-quote-nm{border-color: #e2e2e2;border-style: solid;border-width: 1px 1px 1px 5px;background: 0 0} |
|||
.layui-elem-field{margin-bottom: 10px;padding: 0;border: 1px solid #e2e2e2} |
|||
.layui-elem-field legend{margin-left: 20px;padding: 0 10px;font-size: 20px;font-weight: 300} |
|||
.layui-field-title{margin: 10px 0 20px;border: none;border-top: 1px solid #e2e2e2} |
|||
.layui-field-box{padding: 10px 15px} |
|||
.layui-field-title .layui-field-box{padding: 10px 0} |
|||
.layui-bg-black{background-color: #393D49;color: #c2c2c2} |
|||
.layui-bg-black a{color: #c2c2c2} |
|||
.layui-bg-black a:hover{color: #fff} |
|||
.layui-bg-gray{background-color: #eee;color: #333} |
|||
.layui-bg-green{background-color: #009688;color: #D7EEE8} |
|||
.layui-bg-blue{background-color: #1E9FFF;color: #D7EEE8} |
|||
.layui-word-aux{font-size: 12px;color: #999;padding: 0 5px} |
|||
.layui-btn{display: inline-block;height: 38px;line-height: 38px;padding: 0 18px;background-color: #009688;color: #fff;white-space: nowrap;text-align: center;border: none;border-radius: 2px;cursor: pointer;opacity: .9;filter: alpha(opacity=90)} |
|||
.layui-btn:hover{opacity: .8;filter: alpha(opacity=80);color: #fff} |
|||
.layui-btn:active{opacity: 1;filter: alpha(opacity=100)} |
|||
.layui-btn+.layui-btn{margin-left: 10px} |
|||
.layui-btn-radius{border-radius: 100px} |
|||
.layui-btn .layui-icon{font-size: 18px;vertical-align: bottom} |
|||
.layui-btn-primary{border: 1px solid #C9C9C9;background-color: #fff;color: #555} |
|||
.layui-btn-primary:hover{border-color: #009688;color: #333} |
|||
.layui-btn-normal{background-color: #1E9FFF} |
|||
.layui-btn-warm{background-color: #F7B824} |
|||
.layui-btn-danger{background-color: #FF5722} |
|||
.layui-btn-disabled, |
|||
.layui-btn-disabled:active, |
|||
.layui-btn-disabled:hover{border: 1px solid #e6e6e6;background-color: #FBFBFB;color: #C9C9C9;cursor: not-allowed;opacity: 1} |
|||
.layui-btn-big{height: 44px;line-height: 44px;padding: 0 25px;font-size: 16px} |
|||
.layui-btn-small{height: 30px;line-height: 30px;padding: 0 10px;font-size: 12px} |
|||
.layui-btn-small i{font-size: 16px!important} |
|||
.layui-btn-mini{height: 22px;line-height: 22px;padding: 0 5px;font-size: 12px} |
|||
.layui-btn-mini i{font-size: 14px!important} |
|||
.layui-input, |
|||
.layui-textarea{display: block;width: 100%;padding-left: 10px;height: 38px;line-height: 38px;line-height: 36px\9;border: 1px solid #e6e6e6;background-color: #fff;border-radius: 2px} |
|||
.layui-form-label, |
|||
.layui-form-mid, |
|||
.layui-textarea{line-height: 20px;position: relative} |
|||
.layui-input:hover, |
|||
.layui-textarea:hover{border-color: #D2D2D2!important} |
|||
.layui-input:focus, |
|||
.layui-textarea:focus{border-color: #C9C9C9!important} |
|||
.layui-textarea{min-height: 100px;height: auto;padding: 6px 10px;resize: vertical} |
|||
.layui-form input[type=checkbox], |
|||
.layui-form input[type=radio], |
|||
.layui-form select{display: none} |
|||
.layui-form-item{margin-bottom: 15px;clear: both;*zoom: 1} |
|||
.layui-form-item:after{content: '\20';clear: both;*zoom: 1;display: block;height: 0} |
|||
.layui-form-label{float: left;display: block;padding: 9px 15px;text-align: right} |
|||
.layui-form-item .layui-inline{margin-bottom: 5px;margin-right: 10px} |
|||
.layui-input-block, |
|||
.layui-input-inline{position: relative} |
|||
.layui-input-block{margin-left: 110px;min-height: 36px} |
|||
.layui-input-inline{display: inline-block;vertical-align: middle} |
|||
.layui-form-item .layui-input-inline{float: left;width: 190px;margin-right: 10px} |
|||
.layui-form-text .layui-input-inline{width: auto} |
|||
.layui-form-mid{float: left;display: block;padding: 8px 0;margin-right: 10px} |
|||
.layui-form-danger+.layui-form-select .layui-input, |
|||
.layui-form-danger:focus{border: 1px solid #FF5722!important} |
|||
.layui-form-select{position: relative} |
|||
.layui-form-select .layui-input{padding-right: 30px;cursor: pointer} |
|||
.layui-form-select .layui-edge{position: absolute;right: 10px;top: 50%;margin-top: -3px;cursor: pointer;border-width: 6px;border-top-color: #c2c2c2;border-top-style: solid;transition: transform .3s;transition: transform .3s, -webkit-transform .3s} |
|||
.layui-form-checkbox, |
|||
.layui-form-switch{-webkit-transition: .1s linear;cursor: pointer} |
|||
.layui-form-select ul{display: none;position: absolute;left: 0;top: 42px;margin-bottom: 50px;padding: 5px 0;z-index: 999;width: 100%;border: 1px solid #d2d2d2;max-height: 300px;overflow-y: auto;background-color: #fff;border-radius: 2px;box-shadow: 0 2px 4px rgba(0, 0, 0, .12);box-sizing: border-box} |
|||
.layui-form-select ul li{padding: 0 10px;line-height: 36px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;cursor: pointer} |
|||
.layui-form-select ul li:hover{background-color: #f2f2f2} |
|||
.layui-form-select ul li.layui-this{background-color: #5FB878;color: #fff} |
|||
.layui-form-selected ul{display: block} |
|||
.layui-form-checkbox, |
|||
.layui-form-checkbox *, |
|||
.layui-form-radio, |
|||
.layui-form-radio *, |
|||
.layui-form-switch{display: inline-block;vertical-align: middle} |
|||
.layui-form-selected .layui-edge{margin-top: -9px;-webkit-transform: rotate(180deg);transform: rotate(180deg);margin-top: -3px\9} |
|||
:root .layui-form-selected .layui-edge{margin-top: -9px\0/IE9} |
|||
.layui-form-checkbox{position: relative;height: 30px;line-height: 28px;margin: 4px 10px 0 0;padding-right: 30px;border: 1px solid #d2d2d2;background-color: #fff;font-size: 0;border-radius: 2px;transition: .1s linear;box-sizing: border-box!important} |
|||
.layui-form-checkbox:hover{border: 1px solid #c2c2c2} |
|||
.layui-form-checkbox span{padding: 0 10px;font-size: 14px;background-color: #d2d2d2;color: #fff;overflow: hidden;white-space: nowrap;text-overflow: ellipsis} |
|||
.layui-form-checkbox:hover span{background-color: #c2c2c2} |
|||
.layui-form-checkbox i{position: absolute;right: 0;width: 37px;color: #fff;font-size: 20px} |
|||
.layui-form-checkbox:hover i{color: #c2c2c2} |
|||
.layui-form-checked, |
|||
.layui-form-checked:hover{border: 1px solid #5FB878} |
|||
.layui-form-checked span, |
|||
.layui-form-checked:hover span{background-color: #5FB878} |
|||
.layui-form-checked i, |
|||
.layui-form-checked:hover i{color: #5FB878} |
|||
.layui-form-switch{position: relative;height: 22px;line-height: 22px;width: 40px;padding: 0 5px;margin-top: 8px;border: 1px solid #d2d2d2;border-radius: 20px;background-color: #fff;transition: .1s linear} |
|||
.layui-form-switch i{position: absolute;left: 5px;top: 3px;width: 16px;height: 16px;border-radius: 20px;background-color: #d2d2d2;-webkit-transition: .1s linear;transition: .1s linear} |
|||
.layui-form-onswitch{border-color: #5FB878;background-color: #5FB878} |
|||
.layui-form-onswitch:before{content: '';color: #fff} |
|||
.layui-form-onswitch i{left: 30px;background-color: #fff} |
|||
.layui-form-radio{line-height: 28px;margin: 6px 10px 0 0;padding-right: 10px;cursor: pointer;font-size: 0} |
|||
.layui-form-radio i{margin-right: 8px;font-size: 22px;color: #c2c2c2} |
|||
.layui-form-radio span{font-size: 14px} |
|||
.layui-form-radio i:hover, |
|||
.layui-form-radioed i{color: #5FB878} |
|||
.layui-form-pane .layui-form-label{width: 80px;padding: 8px 15px;line-height: 20px;border: 1px solid #e6e6e6;border-radius: 2px 0 0 2px;text-align: center;background-color: #FBFBFB;overflow: hidden;white-space: nowrap;text-overflow: ellipsis} |
|||
.layui-form-pane .layui-input-inline{margin-left: -1px} |
|||
.layui-form-pane .layui-input-block{margin-left: 112px;left: -1px} |
|||
.layui-form-pane .layui-input{border-radius: 0 2px 2px 0} |
|||
.layui-form-pane .layui-form-text .layui-form-label{float: none;width: 100%;border-right: 1px solid #e6e6e6;border-radius: 2px;box-sizing: border-box!important;text-align: left} |
|||
.layui-laypage button, |
|||
.layui-laypage input, |
|||
.layui-nav{-webkit-box-sizing: border-box!important;-moz-box-sizing: border-box!important} |
|||
.layui-form-pane .layui-form-text .layui-input-inline{display: block;margin: 0;top: -1px;clear: both} |
|||
.layui-form-pane .layui-form-text .layui-input-block{margin: 0;left: 0;top: -1px} |
|||
.layui-form-pane .layui-form-text .layui-textarea{min-height: 100px;border-radius: 0 0 2px 2px} |
|||
.layui-form-pane .layui-input:hover, |
|||
.layui-form-pane .layui-textarea:hover{border-color: #e6e6e6!important} |
|||
.layui-form-pane .layui-input:focus, |
|||
.layui-form-pane .layui-textarea:focus{border-color: #e6e6e6!important} |
|||
.layui-form-pane .layui-form-checkbox{margin: 0 0 10px 10px} |
|||
.layui-form-pane .layui-form-radio, |
|||
.layui-form-pane .layui-form-switch{margin-left: 10px} |
|||
.layui-layedit{border: 1px solid #d2d2d2;border-radius: 2px} |
|||
.layui-layedit-tool{padding: 3px 5px;border-bottom: 1px solid #e2e2e2;font-size: 0} |
|||
.layedit-tool-fixed{position: fixed;top: 0;border-top: 1px solid #e2e2e2} |
|||
.layui-layedit-tool .layedit-tool-mid, |
|||
.layui-layedit-tool .layui-icon{display: inline-block;vertical-align: middle;text-align: center;font-size: 14px} |
|||
.layui-layedit-tool .layui-icon{position: relative;width: 32px;height: 30px;line-height: 30px;margin: 3px 5px;color: #777;cursor: pointer;border-radius: 2px} |
|||
.layui-layedit-tool .layui-icon:hover{color: #393D49} |
|||
.layui-layedit-tool .layui-icon:active{color: #000} |
|||
.layui-layedit-tool .layedit-tool-active{background-color: #e2e2e2;color: #000} |
|||
.layui-layedit-tool .layui-disabled, |
|||
.layui-layedit-tool .layui-disabled:hover{color: #d2d2d2;cursor: not-allowed} |
|||
.layui-layedit-tool .layedit-tool-mid{width: 1px;height: 18px;margin: 0 10px;background-color: #d2d2d2} |
|||
.layedit-tool-html{width: 50px!important;font-size: 30px!important} |
|||
.layedit-tool-b, |
|||
.layedit-tool-code, |
|||
.layedit-tool-help{font-size: 16px!important} |
|||
.layedit-tool-d, |
|||
.layedit-tool-face, |
|||
.layedit-tool-image, |
|||
.layedit-tool-unlink{font-size: 18px!important} |
|||
.layedit-tool-image input{position: absolute;font-size: 0;left: 0;top: 0;width: 100%;height: 100%;opacity: .01;filter: Alpha(opacity=1);cursor: pointer} |
|||
.layui-layedit-iframe iframe{display: block;width: 100%} |
|||
#LAY_layedit_code{overflow: hidden} |
|||
.layui-table{width: 100%;margin: 10px 0} |
|||
.layui-table thead tr{background-color: #f2f2f2} |
|||
.layui-table td, |
|||
.layui-table th{padding: 6px 10px;min-height: 20px;line-height: 20px;border: 1px solid #d2d2d2;font-size: 14px;font-weight: 400} |
|||
.layui-table th{padding: 10px} |
|||
.layui-table tr{background-color: #fff} |
|||
.layui-table tr:nth-child(even){background: #fbfbfb} |
|||
.layui-upload-button{position: relative;display: inline-block;vertical-align: middle;min-width: 60px;height: 36px;line-height: 36px;border: 1px solid #DFDFDF;border-radius: 2px;overflow: hidden;background-color: #fff;color: #666} |
|||
.layui-upload-button:hover{border: 1px solid #aaa;color: #333} |
|||
.layui-upload-button:active{border: 1px solid #4CAF50;color: #000} |
|||
.layui-upload-button input, |
|||
.layui-upload-file{opacity: .01;filter: Alpha(opacity=1);cursor: pointer} |
|||
.layui-upload-button input{position: absolute;left: 0;top: 0;z-index: 10;font-size: 100px;width: 100%;height: 100%} |
|||
.layui-upload-icon{display: block;margin: 0 15px;text-align: center} |
|||
.layui-upload-icon i{margin-right: 5px;vertical-align: top;font-size: 20px;color: #5FB878} |
|||
.layui-upload-iframe{position: absolute;width: 0;height: 0;border: 0;visibility: hidden} |
|||
.layui-upload-enter{border: 1px solid #009E94;background-color: #009E94;color: #fff;-webkit-transform: scale(1.1);transform: scale(1.1)} |
|||
.layui-upload-enter .layui-upload-icon, |
|||
.layui-upload-enter .layui-upload-icon i{color: #fff} |
|||
.layui-flow-more{margin: 10px 0;text-align: center;color: #999;font-size: 14px} |
|||
.layui-flow-more a{height: 32px;line-height: 32px} |
|||
.layui-flow-more a *{display: inline-block;vertical-align: top} |
|||
.layui-flow-more a cite{padding: 0 20px;border-radius: 3px;background-color: #eee;color: #333} |
|||
.layui-flow-more a cite:hover{opacity: .8} |
|||
.layui-flow-more a i{font-size: 30px;color: #737383} |
|||
.layui-laypage{display: inline-block;vertical-align: middle;margin: 10px 0;background-color: #fff;font-size: 0} |
|||
.layui-laypage>:first-child, |
|||
.layui-laypage>:first-child em{border-radius: 2px 0 0 2px} |
|||
.layui-laypage>:last-child, |
|||
.layui-laypage>:last-child em{border-radius: 0 2px 2px 0} |
|||
.layui-laypage a, |
|||
.layui-laypage span{display: inline-block;vertical-align: middle;padding: 0 15px;border: 1px solid #e2e2e2;height: 28px;line-height: 28px;margin: 0 -1px -1px 0;color: #333;font-size: 12px} |
|||
.layui-laypage span{color: #999;font-weight: 700} |
|||
.layui-laypage .layui-laypage-curr{position: relative} |
|||
.layui-laypage .layui-laypage-curr em{position: relative;color: #fff;font-weight: 400} |
|||
.layui-laypage .layui-laypage-curr .layui-laypage-em{position: absolute;left: -1px;top: -1px;padding: 1px;width: 100%;height: 100%;background-color: #009688} |
|||
.layui-laypage-em{border-radius: 2px} |
|||
.layui-laypage-next em, |
|||
.layui-laypage-prev em{font-family: Sim sun;font-size: 16px} |
|||
.layui-laypage .layui-laypage-total{border: none;font-weight: 400} |
|||
.layui-laypage button, |
|||
.layui-laypage input{height: 30px;line-height: 30px;border: 1px solid #e2e2e2;border-radius: 2px;vertical-align: middle;background-color: #fff;box-sizing: border-box!important} |
|||
.layui-laypage input{width: 50px;margin: 0 5px;text-align: center} |
|||
.layui-laypage button{margin-left: 5px;padding: 0 15px;cursor: pointer} |
|||
.layui-code{position: relative;margin: 10px 0;padding: 15px;line-height: 20px;border: 1px solid #ddd;border-left-width: 6px;background-color: #F2F2F2;color: #333;font-family: Courier New;font-size: 12px} |
|||
.layui-tree{line-height: 26px} |
|||
.layui-tree li{text-overflow: ellipsis;overflow: hidden;white-space: nowrap} |
|||
.layui-tree li .layui-tree-spread, |
|||
.layui-tree li a{display: inline-block;vertical-align: top;height: 26px;*display: inline;*zoom: 1;cursor: pointer} |
|||
.layui-tree li a{font-size: 0} |
|||
.layui-tree li a i{font-size: 16px} |
|||
.layui-tree li a cite{padding: 0 6px;font-size: 14px} |
|||
.layui-tree li i{padding-left: 6px;color: #333} |
|||
.layui-tree li .layui-tree-check{font-size: 13px} |
|||
.layui-tree li .layui-tree-check:hover{color: #009E94} |
|||
.layui-tree li ul{display: none;margin-left: 20px} |
|||
.layui-tree li .layui-tree-enter{line-height: 24px;border: 1px dotted #000} |
|||
.layui-tree-drag{display: none;position: absolute;left: -666px;top: -666px;background-color: #f2f2f2;padding: 5px 10px;border: 1px dotted #000;white-space: nowrap} |
|||
.layui-tree-drag i{padding-right: 5px} |
|||
.layui-nav{position: relative;padding: 0 20px;background-color: #393D49;color: #c2c2c2;border-radius: 2px;font-size: 0;box-sizing: border-box!important} |
|||
.layui-nav *{font-size: 14px} |
|||
.layui-nav .layui-nav-item{position: relative;display: inline-block;vertical-align: middle;line-height: 60px} |
|||
.layui-nav .layui-nav-item a{display: block;padding: 0 20px;color: #c2c2c2;transition: all .3s;-webkit-transition: all .3s} |
|||
.layui-nav .layui-this:after, |
|||
.layui-nav-bar{position: absolute;left: 0;top: 0;width: 0;height: 5px;background-color: #5FB878;transition: all .2s;-webkit-transition: all .2s} |
|||
.layui-nav-tree .layui-nav-item a:hover, |
|||
.layui-nav-tree .layui-this a{background-color: #4E5465} |
|||
.layui-nav .layui-nav-item a:hover, |
|||
.layui-nav .layui-this a{color: #fff} |
|||
.layui-nav .layui-this:after{content: '';top: auto;bottom: 0;width: 100%} |
|||
.layui-nav-tree{width: 200px;padding: 0} |
|||
.layui-nav-tree .layui-nav-item{display: block;line-height: 45px} |
|||
.layui-nav-tree .layui-nav-bar{width: 5px;height: 0} |
|||
.layui-nav-tree .layui-this{margin: 1px 0} |
|||
.layui-nav-tree .layui-this:after{width: 5px;height: 100%;top: 0;left: 0;bottom: auto} |
|||
.layui-nav-tree .layui-nav-title a, |
|||
.layui-nav-tree .layui-nav-title a:hover{background-color: #2B2E37;color: #fff} |
|||
.layui-nav-side{position: fixed;top: 0;bottom: 0;left: 0;overflow-x: hidden;z-index: 999} |
|||
.layui-breadcrumb{visibility: hidden;font-size: 0} |
|||
.layui-breadcrumb a{padding-right: 8px;line-height: 22px;font-size: 14px;color: #333!important} |
|||
.layui-breadcrumb a:hover{color: #01AAED!important} |
|||
.layui-breadcrumb a cite, |
|||
.layui-breadcrumb a span{color: #666;cursor: text;font-style: normal} |
|||
.layui-breadcrumb a span{padding-left: 8px;font-family: Sim sun} |
|||
.layui-tab{position: relative;margin: 10px 0;overflow: hidden;text-align: left!important} |
|||
.layui-fixbar li, |
|||
.layui-tab-bar, |
|||
.layui-tab-title li, |
|||
.layui-util-face ul li{cursor: pointer;text-align: center} |
|||
.layui-tab-title{position: relative;left: 0;height: 40px;white-space: nowrap;font-size: 0;border-bottom: 1px solid #e2e2e2;transition: all .2s;-webkit-transition: all .2s} |
|||
.layui-tab-title li{display: inline-block;*display: block;*zoom: 1;vertical-align: middle;font-size: 14px;transition: all .3s;-webkit-transition: all .3s;position: relative;line-height: 40px;min-width: 65px;padding: 0 10px} |
|||
.layui-tab-title .layui-this{color: #000} |
|||
.layui-tab-title .layui-this:after{position: absolute;left: 0;top: 0;content: '';width: 100%;height: 41px;border: 1px solid #e2e2e2;border-bottom-color: #fff;border-radius: 2px 2px 0 0;-webkit-box-sizing: border-box!important;-moz-box-sizing: border-box!important;box-sizing: border-box!important;pointer-events: none} |
|||
.layui-tab-bar{position: absolute;right: 0;top: 0;width: 30px;height: 39px;line-height: 39px;border: 1px solid #e2e2e2;border-radius: 2px;background-color: #fff} |
|||
.layui-tab-bar .layui-icon{position: relative;display: inline-block;top: 3px;transition: all .3s;-webkit-transition: all .3s} |
|||
.layui-tab-item, |
|||
.layui-util-face .layui-layer-TipsG{display: none} |
|||
.layui-tab-more{padding-right: 30px;height: auto;white-space: normal} |
|||
.layui-tab-more li.layui-this:after{border-bottom-color: #e2e2e2;border-radius: 2px} |
|||
.layui-tab-more .layui-tab-bar .layui-icon{top: -2px;top: 3px\9;-webkit-transform: rotate(180deg);transform: rotate(180deg)} |
|||
:root .layui-tab-more .layui-tab-bar .layui-icon{top: -2px\0/IE9} |
|||
.layui-tab-content{padding: 10px} |
|||
.layui-tab-title li .layui-tab-close{position: relative;margin-left: 8px;top: 1px;color: #c2c2c2} |
|||
.layui-tab-title li .layui-tab-close:hover{border-radius: 10px;background-color: #FF5722;color: #fff} |
|||
.layui-tab-brief .layui-this{color: #009688} |
|||
.layui-tab-brief .layui-tab-more li.layui-this:after, |
|||
.layui-tab-brief .layui-this:after{border: none;border-radius: none;border-bottom: 3px solid #5FB878} |
|||
.layui-tab-card{border: 1px solid #e2e2e2;border-radius: 2px;box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1)} |
|||
.layui-tab-card .layui-tab-title{background-color: #f2f2f2} |
|||
.layui-tab-card .layui-tab-title li{margin-right: -1px;margin-left: -1px} |
|||
.layui-tab-card .layui-this{background-color: #fff} |
|||
.layui-tab-card .layui-this:after{border-top: none;border-bottom-color: #fff} |
|||
.layui-tab-card .layui-tab-bar{height: 40px;line-height: 40px;border-radius: 0;border-top: none;border-right: none} |
|||
.layui-tab-card .layui-tab-more .layui-this{background: 0 0;color: #5FB878} |
|||
.layui-tab-card .layui-tab-more .layui-this:after{border: none} |
|||
.layui-fixbar{position: fixed;right: 15px;bottom: 15px;z-index: 9999} |
|||
.layui-fixbar li{width: 50px;height: 50px;line-height: 50px;margin-bottom: 1px;font-size: 30px;background-color: #9F9F9F;color: #fff;border-radius: 2px;opacity: .95} |
|||
.layui-fixbar li:hover{opacity: .85} |
|||
.layui-fixbar li:active{opacity: 1} |
|||
.layui-fixbar .layui-fixbar-top{display: none;font-size: 40px} |
|||
body .layui-util-face{border: none;background: 0 0} |
|||
body .layui-util-face .layui-layer-content{padding: 0;background-color: #fff;color: #666;box-shadow: none} |
|||
.layui-util-face ul{position: relative;width: 372px;padding: 10px;border: 1px solid #D9D9D9;background-color: #fff;box-shadow: 0 0 20px rgba(0, 0, 0, .2)} |
|||
.layui-util-face ul li{float: left;border: 1px solid #e8e8e8;height: 22px;width: 26px;overflow: hidden;margin: -1px 0 0 -1px;padding: 4px 2px} |
|||
.layui-util-face ul li:hover{position: relative;z-index: 2;border: 1px solid #eb7350;background: #fff9ec} |
|||
.layui-anim{-webkit-animation-duration: .3s;animation-duration: .3s;-webkit-animation-fill-mode: both;animation-fill-mode: both} |
|||
.layui-anim-loop{-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite} |
|||
@-webkit-keyframes layui-rotate{from{-webkit-transform: rotate(0)} |
|||
to{-webkit-transform: rotate(360deg)}} |
|||
@keyframes layui-rotate{from{transform: rotate(0)} |
|||
to{transform: rotate(360deg)}} |
|||
.layui-anim-rotate{-webkit-animation-name: layui-rotate;animation-name: layui-rotate;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-timing-function: linear;animation-timing-function: linear} |
|||
@-webkit-keyframes layui-up{from{-webkit-transform: translate3d(0, 100%, 0);opacity: .3} |
|||
to{-webkit-transform: translate3d(0, 0, 0);opacity: 1}} |
|||
@keyframes layui-up{from{transform: translate3d(0, 100%, 0);opacity: .3} |
|||
to{transform: translate3d(0, 0, 0);opacity: 1}} |
|||
.layui-anim-up{-webkit-animation-name: layui-up;animation-name: layui-up} |
|||
@-webkit-keyframes layui-upbit{from{-webkit-transform: translate3d(0, 30px, 0);opacity: .3} |
|||
to{-webkit-transform: translate3d(0, 0, 0);opacity: 1}} |
|||
@keyframes layui-upbit{from{transform: translate3d(0, 30px, 0);opacity: .3} |
|||
to{transform: translate3d(0, 0, 0);opacity: 1}} |
|||
.layui-anim-upbit{-webkit-animation-name: layui-upbit;animation-name: layui-upbit} |
|||
@-webkit-keyframes layui-scale{0%{opacity: .3;-webkit-transform: scale(.5)} |
|||
100%{opacity: 1;-webkit-transform: scale(1)}} |
|||
@keyframes layui-scale{0%{opacity: .3;-ms-transform: scale(.5);transform: scale(.5)} |
|||
100%{opacity: 1;-ms-transform: scale(1);transform: scale(1)}} |
|||
.layui-anim-scale{-webkit-animation-name: layui-scale;animation-name: layui-scale} |
|||
@-webkit-keyframes layui-scale-spring{0%{opacity: .5;-webkit-transform: scale(.5)} |
|||
80%{opacity: .8;-webkit-transform: scale(1.1)} |
|||
100%{opacity: 1;-webkit-transform: scale(1)}} |
|||
@keyframes layui-scale-spring{0%{opacity: .5;-ms-transform: scale(.5);transform: scale(.5)} |
|||
80%{opacity: .8;-ms-transform: scale(1.1);transform: scale(1.1)} |
|||
100%{opacity: 1;-ms-transform: scale(1);transform: scale(1)}} |
|||
.layui-anim-scaleSpring{-webkit-animation-name: layui-scale-spring;animation-name: layui-scale-spring} |
|||
@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow: ellipsis;overflow: hidden;white-space: nowrap} |
|||
.layui-form-item .layui-inline{display: block;margin-right: 0;margin-bottom: 20px;clear: both} |
|||
.layui-form-item .layui-inline:after{content: '\20';clear: both;display: block;height: 0} |
|||
.layui-form-item .layui-input-inline{display: block;float: none;left: -1px;width: auto;margin: 0 0 10px 112px} |
|||
.layui-form-item .layui-input-inline+.layui-form-mid{margin-left: 110px;top: -5px;padding: 0} |
|||
.layui-form-item .layui-form-checkbox{margin-right: 5px;margin-bottom: 5px}} |
|||
@ -0,0 +1,2 @@ |
|||
/** layui-v1.0.2 经典模块化前端框架@LGPL www.layui.com By 贤心 */ |
|||
html #layuicss-layui-mobilecss{display:none;position:absolute;width:1989px}blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}html{font:12px 'Helvetica Neue','PingFang SC',STHeitiSC-Light,Helvetica,Arial,sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0)}a{text-decoration:none;background:0 0}a:active,a:hover{outline:0}table{border-collapse:collapse;border-spacing:0}li{list-style:none}b,strong{font-weight:700}h1,h2,h3,h4,h5,h6{font-weight:500}address,cite,dfn,em,var{font-style:normal}dfn{font-style:italic}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}img{border:0;vertical-align:bottom}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;outline:0}button,select{text-transform:none}select{-webkit-appearance:none;border:none}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input,label{vertical-align:middle} |
|||
@ -0,0 +1,2 @@ |
|||
/** layui-v1.0.2 经典模块化前端框架@LGPL www.layui.com By 贤心 */ |
|||
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #ddd;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:30px;line-height:30px;border-bottom:1px solid #ddd}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #ddd;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none} |
|||
|
After Width: | Height: | Size: 314 B |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 701 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.0 KiB |