Updating js plugins
This commit is contained in:
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "bootstrapToastWrapper",
|
||||||
|
"_release": "fec5a24c81",
|
||||||
|
"_resolution": {
|
||||||
|
"type": "branch",
|
||||||
|
"branch": "master",
|
||||||
|
"commit": "fec5a24c81849ebb7c70e52cbfde7c8342e8695b"
|
||||||
|
},
|
||||||
|
"_source": "https://git.inforsistemas-devel1.com.br/bower/bootstrapToastWrapper.git",
|
||||||
|
"_target": "*",
|
||||||
|
"_originalSource": "https://git.inforsistemas-devel1.com.br/bower/bootstrapToastWrapper.git"
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
/nbproject
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# bootstrap-toast-wrapper
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
(function ($) {
|
||||||
|
|
||||||
|
$.fn.bootstrapToastWrapper = function (content) {
|
||||||
|
|
||||||
|
var type = {
|
||||||
|
'primary': '#084298',
|
||||||
|
'secondary': '#41464b',
|
||||||
|
'success': '#0f5132',
|
||||||
|
'danger': '#842029',
|
||||||
|
'warning': '#664d03',
|
||||||
|
'info': '#055160',
|
||||||
|
'light': '#636464',
|
||||||
|
'dark': '#141619'
|
||||||
|
}
|
||||||
|
|
||||||
|
var toastContent = "<div class='toast show'> <div class='toast-header'> {{type}} <strong class='me-auto'>{{title}}</strong> <button type='button' class='btn-close' data-bs-dismiss='toast' aria-label='Close'></button> </div> <div class='toast-body'>{{body}}</div> </div>";
|
||||||
|
var rect = '<svg class="bd-placeholder-img rounded me-2" width="20" height="20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false"><rect width="100%" height="100%" fill="{{type}}"></rect></svg>';
|
||||||
|
|
||||||
|
rect = rect.replace('{{type}}', type[content['type']]);
|
||||||
|
|
||||||
|
toastContent = toastContent.replace('{{type}}', rect);
|
||||||
|
|
||||||
|
|
||||||
|
for(key in content){
|
||||||
|
toastContent = toastContent.replace('{{'+key+'}}', content[key] );
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = $(this).append(toastContent).children("div:last-child");;
|
||||||
|
|
||||||
|
if(content.timeout){
|
||||||
|
setTimeout(function(){
|
||||||
|
$(a).remove();
|
||||||
|
}, content.timeout);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
})(jQuery);
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<!--
|
||||||
|
To change this license header, choose License Headers in Project Properties.
|
||||||
|
To change this template file, choose Tools | Templates
|
||||||
|
and open the template in the editor.
|
||||||
|
-->
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>TODO supply a title</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
||||||
|
<script src="src/bootstrapToastWrapper.js"></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<button onclick="toast()">Toast</button>
|
||||||
|
|
||||||
|
<div id="toasts" class="toast-container p-3 error" style="position: fixed; right: 0px; bottom: 0px; "> </div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
function toast(){
|
||||||
|
$('#toasts').bootstrapToastWrapper({
|
||||||
|
'type': 'danger',
|
||||||
|
'title': 'Algo deu errado',
|
||||||
|
'body' : 'Cpf não pode ser validado',
|
||||||
|
'timeout': 5000
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
(function ($) {
|
||||||
|
$.fn.bootstrapToastWrapper = function (content) {
|
||||||
|
|
||||||
|
var type = {
|
||||||
|
'primary': '#084298',
|
||||||
|
'secondary': '#41464b',
|
||||||
|
'success': '#0f5132',
|
||||||
|
'danger': '#842029',
|
||||||
|
'warning': '#664d03',
|
||||||
|
'info': '#055160',
|
||||||
|
'light': '#636464',
|
||||||
|
'dark': '#141619'
|
||||||
|
}
|
||||||
|
|
||||||
|
var toastContent = "<div class='toast show'> <div class='toast-header'> {{type}} <strong class='me-auto'>{{title}}</strong> <button type='button' class='btn-close' data-bs-dismiss='toast' aria-label='Close'></button> </div> <div class='toast-body'>{{body}}</div> </div>";
|
||||||
|
var rect = '<svg class="bd-placeholder-img rounded me-2" width="20" height="20" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false"><rect width="100%" height="100%" fill="{{type}}"></rect></svg>';
|
||||||
|
|
||||||
|
rect = rect.replace('{{type}}', type[content['type']]);
|
||||||
|
|
||||||
|
toastContent = toastContent.replace('{{type}}', rect);
|
||||||
|
|
||||||
|
for(key in content){
|
||||||
|
toastContent = toastContent.replace('{{'+key+'}}', content[key] );
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = $(this).append(toastContent).children("div:last-child");;
|
||||||
|
|
||||||
|
if(content.timeout){
|
||||||
|
setTimeout(function(){
|
||||||
|
$(a).remove();
|
||||||
|
}, content.timeout);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
})(jQuery);
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"name": "datatables.net-dt",
|
||||||
|
"description": "DataTables for jQuery ",
|
||||||
|
"main": [
|
||||||
|
"css/jquery.dataTables.css",
|
||||||
|
"images/sort_asc.png",
|
||||||
|
"images/sort_asc_disabled.png",
|
||||||
|
"images/sort_both.png",
|
||||||
|
"images/sort_desc.png",
|
||||||
|
"images/sort_desc_disabled.png"
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"filter",
|
||||||
|
"sort",
|
||||||
|
"DataTables",
|
||||||
|
"jQuery",
|
||||||
|
"table",
|
||||||
|
"DataTables"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"jquery": ">=1.7",
|
||||||
|
"datatables.net": ">=1.10.9"
|
||||||
|
},
|
||||||
|
"moduleType": [
|
||||||
|
"globals",
|
||||||
|
"amd",
|
||||||
|
"node"
|
||||||
|
],
|
||||||
|
"ignore": [
|
||||||
|
"composer.json",
|
||||||
|
"datatables.json",
|
||||||
|
"package.json"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "SpryMedia Ltd",
|
||||||
|
"homepage": "https://datatables.net"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"homepage": "https://datatables.net",
|
||||||
|
"license": "MIT",
|
||||||
|
"version": "3.2.2",
|
||||||
|
"_release": "3.2.2",
|
||||||
|
"_resolution": {
|
||||||
|
"type": "version",
|
||||||
|
"tag": "3.2.2",
|
||||||
|
"commit": "6daa67243fec9e07cd85dffdce9380bc7c6e323b"
|
||||||
|
},
|
||||||
|
"_source": "https://github.com/DataTables/Dist-DataTables-DataTables.git",
|
||||||
|
"_target": "^3.2.2",
|
||||||
|
"_originalSource": "datatables.net-dt",
|
||||||
|
"_direct": true
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
Copyright SpryMedia Limited and other contributors
|
||||||
|
http://datatables.net
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
# DataTables for jQuery
|
||||||
|
|
||||||
|
This package contains distribution files required to style [DataTables library](https://datatables.net) for [jQuery](http://jquery.com/) .
|
||||||
|
|
||||||
|
DataTables is a table enhancing library which adds features such as paging, ordering, search, scrolling and many more to a static HTML page. A comprehensive API is also available that can be used to manipulate the table. Please refer to the [DataTables web-site](//datatables.net) for a full range of documentation and examples.
|
||||||
|
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### Browser
|
||||||
|
|
||||||
|
For inclusion of this library using a standard `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages for you, will all dependencies satisfied.
|
||||||
|
|
||||||
|
### npm
|
||||||
|
|
||||||
|
```
|
||||||
|
npm install datatables.net-dt
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
var $ = require( 'jquery' );
|
||||||
|
require( 'datatables.net-dt' )( window, $ );
|
||||||
|
```
|
||||||
|
|
||||||
|
### bower
|
||||||
|
|
||||||
|
```
|
||||||
|
bower install --save datatables.net-dt
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Full documentation of the DataTables options, API and plug-in interface are available on the DOCS_LINK. The site also contains information on the wide variety of plug-ins that are available for DataTables, which can be used to enhance and customise your table even further.
|
||||||
|
|
||||||
|
|
||||||
|
## Bug / Support
|
||||||
|
|
||||||
|
Support for DataTables is available through the [DataTables forums](//datatables.net/forums) and [commercial support options](//datatables.net/support) are available.
|
||||||
|
|
||||||
|
|
||||||
|
### Contributing
|
||||||
|
|
||||||
|
If you are thinking of contributing code to DataTables, first of all, thank you! All fixes, patches and enhancements to DataTables are very warmly welcomed. This repository is a distribution repo, so patches and issues sent to this repo will not be accepted. Instead, please direct pull requests to the [DataTables/DataTablesSrc](http://github.com/DataTables/DataTablesSrc). For issues / bugs, please direct your questions to the [DataTables forums](//datatables.net/forums).
|
||||||
|
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This software is released under the [MIT license](//datatables.net/license). You are free to use, modify and distribute this software, but all copyright information must remain.
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"name": "datatables.net-dt",
|
||||||
|
"description": "DataTables for jQuery ",
|
||||||
|
"main": [
|
||||||
|
"css/jquery.dataTables.css",
|
||||||
|
"images/sort_asc.png",
|
||||||
|
"images/sort_asc_disabled.png",
|
||||||
|
"images/sort_both.png",
|
||||||
|
"images/sort_desc.png",
|
||||||
|
"images/sort_desc_disabled.png"
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"filter",
|
||||||
|
"sort",
|
||||||
|
"DataTables",
|
||||||
|
"jQuery",
|
||||||
|
"table",
|
||||||
|
"DataTables"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"jquery": ">=1.7",
|
||||||
|
"datatables.net": ">=1.10.9"
|
||||||
|
},
|
||||||
|
"moduleType": [
|
||||||
|
"globals",
|
||||||
|
"amd",
|
||||||
|
"node"
|
||||||
|
],
|
||||||
|
"ignore": [
|
||||||
|
"composer.json",
|
||||||
|
"datatables.json",
|
||||||
|
"package.json"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "SpryMedia Ltd",
|
||||||
|
"homepage": "https://datatables.net"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"homepage": "https://datatables.net",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
@@ -0,0 +1,452 @@
|
|||||||
|
/*
|
||||||
|
* Table styles
|
||||||
|
*/
|
||||||
|
table.dataTable {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
clear: both;
|
||||||
|
border-collapse: separate;
|
||||||
|
border-spacing: 0;
|
||||||
|
/*
|
||||||
|
* Header and footer styles
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* Body styles
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
table.dataTable thead th,
|
||||||
|
table.dataTable tfoot th {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
table.dataTable thead th,
|
||||||
|
table.dataTable thead td {
|
||||||
|
padding: 10px 18px;
|
||||||
|
border-bottom: 1px solid #111111;
|
||||||
|
}
|
||||||
|
table.dataTable thead th:active,
|
||||||
|
table.dataTable thead td:active {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
table.dataTable tfoot th,
|
||||||
|
table.dataTable tfoot td {
|
||||||
|
padding: 10px 18px 6px 18px;
|
||||||
|
border-top: 1px solid #111111;
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting,
|
||||||
|
table.dataTable thead .sorting_asc,
|
||||||
|
table.dataTable thead .sorting_desc {
|
||||||
|
cursor: pointer;
|
||||||
|
*cursor: hand;
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting,
|
||||||
|
table.dataTable thead .sorting_asc,
|
||||||
|
table.dataTable thead .sorting_desc,
|
||||||
|
table.dataTable thead .sorting_asc_disabled,
|
||||||
|
table.dataTable thead .sorting_desc_disabled {
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center right;
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting {
|
||||||
|
background-image: url("../images/sort_both.png");
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting_asc {
|
||||||
|
background-image: url("../images/sort_asc.png");
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting_desc {
|
||||||
|
background-image: url("../images/sort_desc.png");
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting_asc_disabled {
|
||||||
|
background-image: url("../images/sort_asc_disabled.png");
|
||||||
|
}
|
||||||
|
table.dataTable thead .sorting_desc_disabled {
|
||||||
|
background-image: url("../images/sort_desc_disabled.png");
|
||||||
|
}
|
||||||
|
table.dataTable tbody tr {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
table.dataTable tbody tr.selected {
|
||||||
|
background-color: #b0bed9;
|
||||||
|
}
|
||||||
|
table.dataTable tbody th,
|
||||||
|
table.dataTable tbody td {
|
||||||
|
padding: 8px 10px;
|
||||||
|
}
|
||||||
|
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
|
||||||
|
border-top: 1px solid #dddddd;
|
||||||
|
}
|
||||||
|
table.dataTable.row-border tbody tr:first-child th,
|
||||||
|
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
|
||||||
|
table.dataTable.display tbody tr:first-child td {
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
|
||||||
|
border-top: 1px solid #dddddd;
|
||||||
|
border-right: 1px solid #dddddd;
|
||||||
|
}
|
||||||
|
table.dataTable.cell-border tbody tr th:first-child,
|
||||||
|
table.dataTable.cell-border tbody tr td:first-child {
|
||||||
|
border-left: 1px solid #dddddd;
|
||||||
|
}
|
||||||
|
table.dataTable.cell-border tbody tr:first-child th,
|
||||||
|
table.dataTable.cell-border tbody tr:first-child td {
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
}
|
||||||
|
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
|
||||||
|
background-color: #abb9d3;
|
||||||
|
}
|
||||||
|
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
|
||||||
|
background-color: whitesmoke;
|
||||||
|
}
|
||||||
|
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
|
||||||
|
background-color: #a9b7d1;
|
||||||
|
}
|
||||||
|
table.dataTable.order-column tbody tr > .sorting_1,
|
||||||
|
table.dataTable.order-column tbody tr > .sorting_2,
|
||||||
|
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
|
||||||
|
table.dataTable.display tbody tr > .sorting_2,
|
||||||
|
table.dataTable.display tbody tr > .sorting_3 {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
}
|
||||||
|
table.dataTable.order-column tbody tr.selected > .sorting_1,
|
||||||
|
table.dataTable.order-column tbody tr.selected > .sorting_2,
|
||||||
|
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
|
||||||
|
table.dataTable.display tbody tr.selected > .sorting_2,
|
||||||
|
table.dataTable.display tbody tr.selected > .sorting_3 {
|
||||||
|
background-color: #acbad4;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
|
||||||
|
background-color: #f3f3f3;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
|
||||||
|
background-color: whitesmoke;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
|
||||||
|
background-color: #a6b3cd;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
|
||||||
|
background-color: #a7b5ce;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
|
||||||
|
background-color: #a9b6d0;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
|
||||||
|
background-color: #fbfbfb;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
|
||||||
|
background-color: #fdfdfd;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
|
||||||
|
background-color: #acbad4;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
|
||||||
|
background-color: #adbbd6;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
|
||||||
|
background-color: #afbdd8;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
|
||||||
|
background-color: #eaeaea;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
|
||||||
|
background-color: #ebebeb;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
|
||||||
|
background-color: #a1aec7;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
|
||||||
|
background-color: #a2afc8;
|
||||||
|
}
|
||||||
|
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
|
||||||
|
background-color: #a4b2cb;
|
||||||
|
}
|
||||||
|
table.dataTable.no-footer {
|
||||||
|
border-bottom: 1px solid #111111;
|
||||||
|
}
|
||||||
|
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
table.dataTable.compact thead th,
|
||||||
|
table.dataTable.compact thead td {
|
||||||
|
padding: 4px 17px 4px 4px;
|
||||||
|
}
|
||||||
|
table.dataTable.compact tfoot th,
|
||||||
|
table.dataTable.compact tfoot td {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
table.dataTable.compact tbody th,
|
||||||
|
table.dataTable.compact tbody td {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
table.dataTable th.dt-left,
|
||||||
|
table.dataTable td.dt-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
table.dataTable th.dt-center,
|
||||||
|
table.dataTable td.dt-center,
|
||||||
|
table.dataTable td.dataTables_empty {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
table.dataTable th.dt-right,
|
||||||
|
table.dataTable td.dt-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
table.dataTable th.dt-justify,
|
||||||
|
table.dataTable td.dt-justify {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
table.dataTable th.dt-nowrap,
|
||||||
|
table.dataTable td.dt-nowrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
table.dataTable thead th.dt-head-left,
|
||||||
|
table.dataTable thead td.dt-head-left,
|
||||||
|
table.dataTable tfoot th.dt-head-left,
|
||||||
|
table.dataTable tfoot td.dt-head-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
table.dataTable thead th.dt-head-center,
|
||||||
|
table.dataTable thead td.dt-head-center,
|
||||||
|
table.dataTable tfoot th.dt-head-center,
|
||||||
|
table.dataTable tfoot td.dt-head-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
table.dataTable thead th.dt-head-right,
|
||||||
|
table.dataTable thead td.dt-head-right,
|
||||||
|
table.dataTable tfoot th.dt-head-right,
|
||||||
|
table.dataTable tfoot td.dt-head-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
table.dataTable thead th.dt-head-justify,
|
||||||
|
table.dataTable thead td.dt-head-justify,
|
||||||
|
table.dataTable tfoot th.dt-head-justify,
|
||||||
|
table.dataTable tfoot td.dt-head-justify {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
table.dataTable thead th.dt-head-nowrap,
|
||||||
|
table.dataTable thead td.dt-head-nowrap,
|
||||||
|
table.dataTable tfoot th.dt-head-nowrap,
|
||||||
|
table.dataTable tfoot td.dt-head-nowrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
table.dataTable tbody th.dt-body-left,
|
||||||
|
table.dataTable tbody td.dt-body-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
table.dataTable tbody th.dt-body-center,
|
||||||
|
table.dataTable tbody td.dt-body-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
table.dataTable tbody th.dt-body-right,
|
||||||
|
table.dataTable tbody td.dt-body-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
table.dataTable tbody th.dt-body-justify,
|
||||||
|
table.dataTable tbody td.dt-body-justify {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
table.dataTable tbody th.dt-body-nowrap,
|
||||||
|
table.dataTable tbody td.dt-body-nowrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.dataTable,
|
||||||
|
table.dataTable th,
|
||||||
|
table.dataTable td {
|
||||||
|
-webkit-box-sizing: content-box;
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Control feature layout
|
||||||
|
*/
|
||||||
|
.dataTables_wrapper {
|
||||||
|
position: relative;
|
||||||
|
clear: both;
|
||||||
|
*zoom: 1;
|
||||||
|
zoom: 1;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_length {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_filter {
|
||||||
|
float: right;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_filter input {
|
||||||
|
margin-left: 0.5em;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_info {
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
padding-top: 0.755em;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate {
|
||||||
|
float: right;
|
||||||
|
text-align: right;
|
||||||
|
padding-top: 0.25em;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 1.5em;
|
||||||
|
padding: 0.5em 1em;
|
||||||
|
margin-left: 2px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none !important;
|
||||||
|
cursor: pointer;
|
||||||
|
*cursor: hand;
|
||||||
|
color: #333333 !important;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
||||||
|
color: #333333 !important;
|
||||||
|
border: 1px solid #979797;
|
||||||
|
background-color: white;
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
|
||||||
|
/* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
|
||||||
|
/* Chrome10+,Safari5.1+ */
|
||||||
|
background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
|
||||||
|
/* FF3.6+ */
|
||||||
|
background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
|
||||||
|
/* IE10+ */
|
||||||
|
background: -o-linear-gradient(top, white 0%, gainsboro 100%);
|
||||||
|
/* Opera 11.10+ */
|
||||||
|
background: linear-gradient(to bottom, white 0%, gainsboro 100%);
|
||||||
|
/* W3C */
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
||||||
|
cursor: default;
|
||||||
|
color: #666 !important;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
background: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
||||||
|
color: white !important;
|
||||||
|
border: 1px solid #111111;
|
||||||
|
background-color: #585858;
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
|
||||||
|
/* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
|
||||||
|
/* Chrome10+,Safari5.1+ */
|
||||||
|
background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
|
||||||
|
/* FF3.6+ */
|
||||||
|
background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
|
||||||
|
/* IE10+ */
|
||||||
|
background: -o-linear-gradient(top, #585858 0%, #111111 100%);
|
||||||
|
/* Opera 11.10+ */
|
||||||
|
background: linear-gradient(to bottom, #585858 0%, #111111 100%);
|
||||||
|
/* W3C */
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
||||||
|
outline: none;
|
||||||
|
background-color: #2b2b2b;
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
|
||||||
|
/* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
||||||
|
/* Chrome10+,Safari5.1+ */
|
||||||
|
background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
||||||
|
/* FF3.6+ */
|
||||||
|
background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
||||||
|
/* IE10+ */
|
||||||
|
background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
|
||||||
|
/* Opera 11.10+ */
|
||||||
|
background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
|
||||||
|
/* W3C */
|
||||||
|
box-shadow: inset 0 0 3px #111;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .ellipsis {
|
||||||
|
padding: 0 1em;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_processing {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
margin-left: -50%;
|
||||||
|
margin-top: -25px;
|
||||||
|
padding-top: 20px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.2em;
|
||||||
|
background-color: white;
|
||||||
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
|
||||||
|
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
||||||
|
background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
||||||
|
background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
||||||
|
background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
||||||
|
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_length,
|
||||||
|
.dataTables_wrapper .dataTables_filter,
|
||||||
|
.dataTables_wrapper .dataTables_info,
|
||||||
|
.dataTables_wrapper .dataTables_processing,
|
||||||
|
.dataTables_wrapper .dataTables_paginate {
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_scroll {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
|
||||||
|
*margin-top: -1px;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
|
||||||
|
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
|
||||||
|
height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
||||||
|
border-bottom: 1px solid #111111;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
|
||||||
|
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper:after {
|
||||||
|
visibility: hidden;
|
||||||
|
display: block;
|
||||||
|
content: "";
|
||||||
|
clear: both;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 767px) {
|
||||||
|
.dataTables_wrapper .dataTables_info,
|
||||||
|
.dataTables_wrapper .dataTables_paginate {
|
||||||
|
float: none;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 640px) {
|
||||||
|
.dataTables_wrapper .dataTables_length,
|
||||||
|
.dataTables_wrapper .dataTables_filter {
|
||||||
|
float: none;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_filter {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 160 B |
Binary file not shown.
|
After Width: | Height: | Size: 148 B |
Binary file not shown.
|
After Width: | Height: | Size: 201 B |
Binary file not shown.
|
After Width: | Height: | Size: 158 B |
Binary file not shown.
|
After Width: | Height: | Size: 146 B |
@@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"name": "datatables.net",
|
||||||
|
"description": "DataTables for jQuery ",
|
||||||
|
"main": [
|
||||||
|
"js/jquery.dataTables.js"
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"filter",
|
||||||
|
"sort",
|
||||||
|
"DataTables",
|
||||||
|
"jQuery",
|
||||||
|
"table",
|
||||||
|
"DataTables"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"jquery": ">=1.7"
|
||||||
|
},
|
||||||
|
"moduleType": [
|
||||||
|
"globals",
|
||||||
|
"amd",
|
||||||
|
"node"
|
||||||
|
],
|
||||||
|
"ignore": [
|
||||||
|
"composer.json",
|
||||||
|
"datatables.json",
|
||||||
|
"package.json"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "SpryMedia Ltd",
|
||||||
|
"homepage": "https://datatables.net"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"homepage": "https://datatables.net",
|
||||||
|
"license": "MIT",
|
||||||
|
"version": "1.11.4",
|
||||||
|
"_release": "1.11.4",
|
||||||
|
"_resolution": {
|
||||||
|
"type": "version",
|
||||||
|
"tag": "1.11.4",
|
||||||
|
"commit": "d41e1a71500a77dc14432c80fc3185cb1e318d24"
|
||||||
|
},
|
||||||
|
"_source": "https://github.com/DataTables/Dist-DataTables.git",
|
||||||
|
"_target": ">=1.10.9",
|
||||||
|
"_originalSource": "datatables.net"
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
*.lock
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright SpryMedia Limited and other contributors
|
||||||
|
http://datatables.net
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
# DataTables for jQuery
|
||||||
|
|
||||||
|
This package contains distribution files for the [DataTables library](https://datatables.net) for [jQuery](http://jquery.com/). Only the core software for this library is contained in this package - to be correctly styled, a styling package for DataTables must also be included. Styling options include DataTable's native styling, [Bootstrap](http://getbootstrap.com) and [Foundation](http://foundation.zurb.com/).
|
||||||
|
|
||||||
|
DataTables is a table enhancing library which adds features such as paging, ordering, search, scrolling and many more to a static HTML page. A comprehensive API is also available that can be used to manipulate the table. Please refer to the [DataTables web-site](//datatables.net) for a full range of documentation and examples.
|
||||||
|
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### Browser
|
||||||
|
|
||||||
|
For inclusion of this library using a standard `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages \for you, will all dependencies satisfied.
|
||||||
|
|
||||||
|
### npm
|
||||||
|
|
||||||
|
```
|
||||||
|
npm install datatables.net
|
||||||
|
```
|
||||||
|
|
||||||
|
ES3 Syntax
|
||||||
|
```
|
||||||
|
var $ = require( 'jquery' );
|
||||||
|
require( 'datatables.net' )( window, $ );
|
||||||
|
```
|
||||||
|
|
||||||
|
ES6 Syntax
|
||||||
|
```
|
||||||
|
import 'datatables.net'
|
||||||
|
```
|
||||||
|
|
||||||
|
### bower
|
||||||
|
|
||||||
|
```
|
||||||
|
bower install --save datatables.net
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Full documentation of the DataTables options, API and plug-in interface are available on the [website](https://datatables.net/reference/index). The site also contains information on the wide variety of plug-ins that are available for DataTables, which can be used to enhance and customise your table even further.
|
||||||
|
|
||||||
|
|
||||||
|
## Bug / Support
|
||||||
|
|
||||||
|
Support for DataTables is available through the [DataTables forums](//datatables.net/forums) and [commercial support options](//datatables.net/support) are available.
|
||||||
|
|
||||||
|
|
||||||
|
### Contributing
|
||||||
|
|
||||||
|
If you are thinking of contributing code to DataTables, first of all, thank you! All fixes, patches and enhancements to DataTables are very warmly welcomed. This repository is a distribution repo, so patches and issues sent to this repo will not be accepted. Instead, please direct pull requests to the [DataTables/DataTablesSrc](http://github.com/DataTables/DataTablesSrc). For issues / bugs, please direct your questions to the [DataTables forums](//datatables.net/forums).
|
||||||
|
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This software is released under the [MIT license](//datatables.net/license). You are free to use, modify and distribute this software, but all copyright information must remain.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"name": "datatables.net",
|
||||||
|
"description": "DataTables for jQuery ",
|
||||||
|
"main": [
|
||||||
|
"js/jquery.dataTables.js"
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"filter",
|
||||||
|
"sort",
|
||||||
|
"DataTables",
|
||||||
|
"jQuery",
|
||||||
|
"table",
|
||||||
|
"DataTables"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"jquery": ">=1.7"
|
||||||
|
},
|
||||||
|
"moduleType": [
|
||||||
|
"globals",
|
||||||
|
"amd",
|
||||||
|
"node"
|
||||||
|
],
|
||||||
|
"ignore": [
|
||||||
|
"composer.json",
|
||||||
|
"datatables.json",
|
||||||
|
"package.json"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "SpryMedia Ltd",
|
||||||
|
"homepage": "https://datatables.net"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"homepage": "https://datatables.net",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
+15345
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,187 @@
|
|||||||
|
/*!
|
||||||
|
Copyright 2008-2021 SpryMedia Ltd.
|
||||||
|
|
||||||
|
This source file is free software, available under the following license:
|
||||||
|
MIT license - http://datatables.net/license
|
||||||
|
|
||||||
|
This source file is distributed in the hope that it will be useful, but
|
||||||
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
|
||||||
|
|
||||||
|
For details please refer to: http://www.datatables.net
|
||||||
|
DataTables 1.11.4
|
||||||
|
©2008-2021 SpryMedia Ltd - datatables.net/license
|
||||||
|
*/
|
||||||
|
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(l,z,A){l instanceof String&&(l=String(l));for(var q=l.length,E=0;E<q;E++){var P=l[E];if(z.call(A,P,E,l))return{i:E,v:P}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.ISOLATE_POLYFILLS=!1;
|
||||||
|
$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(l,z,A){if(l==Array.prototype||l==Object.prototype)return l;l[z]=A.value;return l};$jscomp.getGlobal=function(l){l=["object"==typeof globalThis&&globalThis,l,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var z=0;z<l.length;++z){var A=l[z];if(A&&A.Math==Math)return A}throw Error("Cannot find global object");};$jscomp.global=$jscomp.getGlobal(this);
|
||||||
|
$jscomp.IS_SYMBOL_NATIVE="function"===typeof Symbol&&"symbol"===typeof Symbol("x");$jscomp.TRUST_ES6_POLYFILLS=!$jscomp.ISOLATE_POLYFILLS||$jscomp.IS_SYMBOL_NATIVE;$jscomp.polyfills={};$jscomp.propertyToPolyfillSymbol={};$jscomp.POLYFILL_PREFIX="$jscp$";var $jscomp$lookupPolyfilledValue=function(l,z){var A=$jscomp.propertyToPolyfillSymbol[z];if(null==A)return l[z];A=l[A];return void 0!==A?A:l[z]};
|
||||||
|
$jscomp.polyfill=function(l,z,A,q){z&&($jscomp.ISOLATE_POLYFILLS?$jscomp.polyfillIsolated(l,z,A,q):$jscomp.polyfillUnisolated(l,z,A,q))};$jscomp.polyfillUnisolated=function(l,z,A,q){A=$jscomp.global;l=l.split(".");for(q=0;q<l.length-1;q++){var E=l[q];if(!(E in A))return;A=A[E]}l=l[l.length-1];q=A[l];z=z(q);z!=q&&null!=z&&$jscomp.defineProperty(A,l,{configurable:!0,writable:!0,value:z})};
|
||||||
|
$jscomp.polyfillIsolated=function(l,z,A,q){var E=l.split(".");l=1===E.length;q=E[0];q=!l&&q in $jscomp.polyfills?$jscomp.polyfills:$jscomp.global;for(var P=0;P<E.length-1;P++){var ma=E[P];if(!(ma in q))return;q=q[ma]}E=E[E.length-1];A=$jscomp.IS_SYMBOL_NATIVE&&"es6"===A?q[E]:null;z=z(A);null!=z&&(l?$jscomp.defineProperty($jscomp.polyfills,E,{configurable:!0,writable:!0,value:z}):z!==A&&($jscomp.propertyToPolyfillSymbol[E]=$jscomp.IS_SYMBOL_NATIVE?$jscomp.global.Symbol(E):$jscomp.POLYFILL_PREFIX+E,
|
||||||
|
E=$jscomp.propertyToPolyfillSymbol[E],$jscomp.defineProperty(q,E,{configurable:!0,writable:!0,value:z})))};$jscomp.polyfill("Array.prototype.find",function(l){return l?l:function(z,A){return $jscomp.findInternal(this,z,A).v}},"es6","es3");
|
||||||
|
(function(l){"function"===typeof define&&define.amd?define(["jquery"],function(z){return l(z,window,document)}):"object"===typeof exports?module.exports=function(z,A){z||(z=window);A||(A="undefined"!==typeof window?require("jquery"):require("jquery")(z));return l(A,z,z.document)}:window.DataTable=l(jQuery,window,document)})(function(l,z,A,q){function E(a){var b,c,d={};l.each(a,function(e,h){(b=e.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" ")&&(c=e.replace(b[0],
|
||||||
|
b[2].toLowerCase()),d[c]=e,"o"===b[1]&&E(a[e]))});a._hungarianMap=d}function P(a,b,c){a._hungarianMap||E(a);var d;l.each(b,function(e,h){d=a._hungarianMap[e];d===q||!c&&b[d]!==q||("o"===d.charAt(0)?(b[d]||(b[d]={}),l.extend(!0,b[d],b[e]),P(a[d],b[d],c)):b[d]=b[e])})}function ma(a){var b=u.defaults.oLanguage,c=b.sDecimal;c&&Xa(c);if(a){var d=a.sZeroRecords;!a.sEmptyTable&&d&&"No data available in table"===b.sEmptyTable&&X(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&d&&"Loading..."===b.sLoadingRecords&&
|
||||||
|
X(a,a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&c!==a&&Xa(a)}}function zb(a){S(a,"ordering","bSort");S(a,"orderMulti","bSortMulti");S(a,"orderClasses","bSortClasses");S(a,"orderCellsTop","bSortCellsTop");S(a,"order","aaSorting");S(a,"orderFixed","aaSortingFixed");S(a,"paging","bPaginate");S(a,"pagingType","sPaginationType");S(a,"pageLength","iDisplayLength");S(a,"searching","bFilter");"boolean"===typeof a.sScrollX&&(a.sScrollX=a.sScrollX?"100%":
|
||||||
|
"");"boolean"===typeof a.scrollX&&(a.scrollX=a.scrollX?"100%":"");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&P(u.models.oSearch,a[b])}function Ab(a){S(a,"orderable","bSortable");S(a,"orderData","aDataSort");S(a,"orderSequence","asSorting");S(a,"orderDataType","sortDataType");var b=a.aDataSort;"number"!==typeof b||Array.isArray(b)||(a.aDataSort=[b])}function Bb(a){if(!u.__browser){var b={};u.__browser=b;var c=l("<div/>").css({position:"fixed",top:0,left:-1*l(z).scrollLeft(),height:1,
|
||||||
|
width:1,overflow:"hidden"}).append(l("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(l("<div/>").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}l.extend(a.oBrowser,u.__browser);a.oScroll.iBarWidth=u.__browser.barWidth}
|
||||||
|
function Cb(a,b,c,d,e,h){var f=!1;if(c!==q){var g=c;f=!0}for(;d!==e;)a.hasOwnProperty(d)&&(g=f?b(g,a[d],d,a):a[d],f=!0,d+=h);return g}function Ya(a,b){var c=u.defaults.column,d=a.aoColumns.length;c=l.extend({},u.models.oColumn,c,{nTh:b?b:A.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=l.extend({},u.models.oSearch,c[d]);Ga(a,d,l(b).data())}function Ga(a,b,c){b=a.aoColumns[b];
|
||||||
|
var d=a.oClasses,e=l(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var h=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);h&&(b.sWidthOrig=h[1])}c!==q&&null!==c&&(Ab(c),P(u.defaults.column,c,!0),c.mDataProp===q||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),l.extend(b,c),X(b,c,"sWidth","sWidthOrig"),c.iDataSort!==q&&(b.aDataSort=[c.iDataSort]),X(b,c,"aDataSort"));var f=b.mData,g=na(f),
|
||||||
|
k=b.mRender?na(b.mRender):null;c=function(m){return"string"===typeof m&&-1!==m.indexOf("@")};b._bAttrSrc=l.isPlainObject(f)&&(c(f.sort)||c(f.type)||c(f.filter));b._setter=null;b.fnGetData=function(m,n,p){var t=g(m,n,q,p);return k&&n?k(t,n,m,p):t};b.fnSetData=function(m,n,p){return ha(f)(m,n,p)};"number"!==typeof f&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==l.inArray("asc",b.asSorting);c=-1!==l.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c?
|
||||||
|
(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function ta(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Za(a);for(var c=0,d=b.length;c<d;c++)b[c].nTh.style.width=b[c].sWidth}b=a.oScroll;""===b.sY&&""===b.sX||Ha(a);F(a,null,"column-sizing",[a])}function ua(a,b){a=Ia(a,"bVisible");
|
||||||
|
return"number"===typeof a[b]?a[b]:null}function va(a,b){a=Ia(a,"bVisible");b=l.inArray(b,a);return-1!==b?b:null}function oa(a){var b=0;l.each(a.aoColumns,function(c,d){d.bVisible&&"none"!==l(d.nTh).css("display")&&b++});return b}function Ia(a,b){var c=[];l.map(a.aoColumns,function(d,e){d[b]&&c.push(e)});return c}function $a(a){var b=a.aoColumns,c=a.aoData,d=u.ext.type.detect,e,h,f;var g=0;for(e=b.length;g<e;g++){var k=b[g];var m=[];if(!k.sType&&k._sManualType)k.sType=k._sManualType;else if(!k.sType){var n=
|
||||||
|
0;for(h=d.length;n<h;n++){var p=0;for(f=c.length;p<f;p++){m[p]===q&&(m[p]=T(a,p,g,"type"));var t=d[n](m[p],a);if(!t&&n!==d.length-1)break;if("html"===t&&!Z(m[p]))break}if(t){k.sType=t;break}}k.sType||(k.sType="string")}}}function Db(a,b,c,d){var e,h,f,g=a.aoColumns;if(b)for(e=b.length-1;0<=e;e--){var k=b[e];var m=k.targets!==q?k.targets:k.aTargets;Array.isArray(m)||(m=[m]);var n=0;for(h=m.length;n<h;n++)if("number"===typeof m[n]&&0<=m[n]){for(;g.length<=m[n];)Ya(a);d(m[n],k)}else if("number"===typeof m[n]&&
|
||||||
|
0>m[n])d(g.length+m[n],k);else if("string"===typeof m[n]){var p=0;for(f=g.length;p<f;p++)("_all"==m[n]||l(g[p].nTh).hasClass(m[n]))&&d(p,k)}}if(c)for(e=0,a=c.length;e<a;e++)d(e,c[e])}function ia(a,b,c,d){var e=a.aoData.length,h=l.extend(!0,{},u.models.oRow,{src:c?"dom":"data",idx:e});h._aData=b;a.aoData.push(h);for(var f=a.aoColumns,g=0,k=f.length;g<k;g++)f[g].sType=null;a.aiDisplayMaster.push(e);b=a.rowIdFn(b);b!==q&&(a.aIds[b]=h);!c&&a.oFeatures.bDeferRender||ab(a,e,c,d);return e}function Ja(a,
|
||||||
|
b){var c;b instanceof l||(b=l(b));return b.map(function(d,e){c=bb(a,e);return ia(a,c.data,e,c.cells)})}function T(a,b,c,d){"search"===d?d="filter":"order"===d&&(d="sort");var e=a.iDraw,h=a.aoColumns[c],f=a.aoData[b]._aData,g=h.sDefaultContent,k=h.fnGetData(f,d,{settings:a,row:b,col:c});if(k===q)return a.iDrawError!=e&&null===g&&(da(a,0,"Requested unknown parameter "+("function"==typeof h.mData?"{function}":"'"+h.mData+"'")+" for row "+b+", column "+c,4),a.iDrawError=e),g;if((k===f||null===k)&&null!==
|
||||||
|
g&&d!==q)k=g;else if("function"===typeof k)return k.call(f);if(null===k&&"display"===d)return"";"filter"===d&&(a=u.ext.type.search,a[h.sType]&&(k=a[h.sType](k)));return k}function Eb(a,b,c,d){a.aoColumns[c].fnSetData(a.aoData[b]._aData,d,{settings:a,row:b,col:c})}function cb(a){return l.map(a.match(/(\\.|[^\.])+/g)||[""],function(b){return b.replace(/\\\./g,".")})}function db(a){return U(a.aoData,"_aData")}function Ka(a){a.aoData.length=0;a.aiDisplayMaster.length=0;a.aiDisplay.length=0;a.aIds={}}
|
||||||
|
function La(a,b,c){for(var d=-1,e=0,h=a.length;e<h;e++)a[e]==b?d=e:a[e]>b&&a[e]--; -1!=d&&c===q&&a.splice(d,1)}function wa(a,b,c,d){var e=a.aoData[b],h,f=function(k,m){for(;k.childNodes.length;)k.removeChild(k.firstChild);k.innerHTML=T(a,b,m,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==e.src)){var g=e.anCells;if(g)if(d!==q)f(g[d],d);else for(c=0,h=g.length;c<h;c++)f(g[c],c)}else e._aData=bb(a,e,d,d===q?q:e._aData).data;e._aSortData=null;e._aFilterData=null;f=a.aoColumns;if(d!==q)f[d].sType=null;
|
||||||
|
else{c=0;for(h=f.length;c<h;c++)f[c].sType=null;eb(a,e)}}function bb(a,b,c,d){var e=[],h=b.firstChild,f,g=0,k,m=a.aoColumns,n=a._rowReadObject;d=d!==q?d:n?{}:[];var p=function(x,w){if("string"===typeof x){var r=x.indexOf("@");-1!==r&&(r=x.substring(r+1),ha(x)(d,w.getAttribute(r)))}},t=function(x){if(c===q||c===g)f=m[g],k=x.innerHTML.trim(),f&&f._bAttrSrc?(ha(f.mData._)(d,k),p(f.mData.sort,x),p(f.mData.type,x),p(f.mData.filter,x)):n?(f._setter||(f._setter=ha(f.mData)),f._setter(d,k)):d[g]=k;g++};if(h)for(;h;){var v=
|
||||||
|
h.nodeName.toUpperCase();if("TD"==v||"TH"==v)t(h),e.push(h);h=h.nextSibling}else for(e=b.anCells,h=0,v=e.length;h<v;h++)t(e[h]);(b=b.firstChild?b:b.nTr)&&(b=b.getAttribute("id"))&&ha(a.rowId)(d,b);return{data:d,cells:e}}function ab(a,b,c,d){var e=a.aoData[b],h=e._aData,f=[],g,k;if(null===e.nTr){var m=c||A.createElement("tr");e.nTr=m;e.anCells=f;m._DT_RowIndex=b;eb(a,e);var n=0;for(g=a.aoColumns.length;n<g;n++){var p=a.aoColumns[n];e=(k=c?!1:!0)?A.createElement(p.sCellType):d[n];e._DT_CellIndex={row:b,
|
||||||
|
column:n};f.push(e);if(k||!(!p.mRender&&p.mData===n||l.isPlainObject(p.mData)&&p.mData._===n+".display"))e.innerHTML=T(a,b,n,"display");p.sClass&&(e.className+=" "+p.sClass);p.bVisible&&!c?m.appendChild(e):!p.bVisible&&c&&e.parentNode.removeChild(e);p.fnCreatedCell&&p.fnCreatedCell.call(a.oInstance,e,T(a,b,n),h,b,n)}F(a,"aoRowCreatedCallback",null,[m,h,b,f])}}function eb(a,b){var c=b.nTr,d=b._aData;if(c){if(a=a.rowIdFn(d))c.id=a;d.DT_RowClass&&(a=d.DT_RowClass.split(" "),b.__rowc=b.__rowc?Ma(b.__rowc.concat(a)):
|
||||||
|
a,l(c).removeClass(b.__rowc.join(" ")).addClass(d.DT_RowClass));d.DT_RowAttr&&l(c).attr(d.DT_RowAttr);d.DT_RowData&&l(c).data(d.DT_RowData)}}function Fb(a){var b,c,d=a.nTHead,e=a.nTFoot,h=0===l("th, td",d).length,f=a.oClasses,g=a.aoColumns;h&&(c=l("<tr/>").appendTo(d));var k=0;for(b=g.length;k<b;k++){var m=g[k];var n=l(m.nTh).addClass(m.sClass);h&&n.appendTo(c);a.oFeatures.bSort&&(n.addClass(m.sSortingClass),!1!==m.bSortable&&(n.attr("tabindex",a.iTabIndex).attr("aria-controls",a.sTableId),fb(a,m.nTh,
|
||||||
|
k)));m.sTitle!=n[0].innerHTML&&n.html(m.sTitle);gb(a,"header")(a,n,m,f)}h&&xa(a.aoHeader,d);l(d).children("tr").children("th, td").addClass(f.sHeaderTH);l(e).children("tr").children("th, td").addClass(f.sFooterTH);if(null!==e)for(a=a.aoFooter[0],k=0,b=a.length;k<b;k++)m=g[k],m.nTf=a[k].cell,m.sClass&&l(m.nTf).addClass(m.sClass)}function ya(a,b,c){var d,e,h=[],f=[],g=a.aoColumns.length;if(b){c===q&&(c=!1);var k=0;for(d=b.length;k<d;k++){h[k]=b[k].slice();h[k].nTr=b[k].nTr;for(e=g-1;0<=e;e--)a.aoColumns[e].bVisible||
|
||||||
|
c||h[k].splice(e,1);f.push([])}k=0;for(d=h.length;k<d;k++){if(a=h[k].nTr)for(;e=a.firstChild;)a.removeChild(e);e=0;for(b=h[k].length;e<b;e++){var m=g=1;if(f[k][e]===q){a.appendChild(h[k][e].cell);for(f[k][e]=1;h[k+g]!==q&&h[k][e].cell==h[k+g][e].cell;)f[k+g][e]=1,g++;for(;h[k][e+m]!==q&&h[k][e].cell==h[k][e+m].cell;){for(c=0;c<g;c++)f[k+c][e+m]=1;m++}l(h[k][e].cell).attr("rowspan",g).attr("colspan",m)}}}}}function ja(a,b){var c="ssp"==Q(a),d=a.iInitDisplayStart;d!==q&&-1!==d&&(a._iDisplayStart=c?
|
||||||
|
d:d>=a.fnRecordsDisplay()?0:d,a.iInitDisplayStart=-1);c=F(a,"aoPreDrawCallback","preDraw",[a]);if(-1!==l.inArray(!1,c))V(a,!1);else{c=[];var e=0;d=a.asStripeClasses;var h=d.length,f=a.oLanguage,g="ssp"==Q(a),k=a.aiDisplay,m=a._iDisplayStart,n=a.fnDisplayEnd();a.bDrawing=!0;if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,V(a,!1);else if(!g)a.iDraw++;else if(!a.bDestroying&&!b){Gb(a);return}if(0!==k.length)for(b=g?a.aoData.length:n,f=g?0:m;f<b;f++){g=k[f];var p=a.aoData[g];null===p.nTr&&ab(a,g);var t=
|
||||||
|
p.nTr;if(0!==h){var v=d[e%h];p._sRowStripe!=v&&(l(t).removeClass(p._sRowStripe).addClass(v),p._sRowStripe=v)}F(a,"aoRowCallback",null,[t,p._aData,e,f,g]);c.push(t);e++}else e=f.sZeroRecords,1==a.iDraw&&"ajax"==Q(a)?e=f.sLoadingRecords:f.sEmptyTable&&0===a.fnRecordsTotal()&&(e=f.sEmptyTable),c[0]=l("<tr/>",{"class":h?d[0]:""}).append(l("<td />",{valign:"top",colSpan:oa(a),"class":a.oClasses.sRowEmpty}).html(e))[0];F(a,"aoHeaderCallback","header",[l(a.nTHead).children("tr")[0],db(a),m,n,k]);F(a,"aoFooterCallback",
|
||||||
|
"footer",[l(a.nTFoot).children("tr")[0],db(a),m,n,k]);d=l(a.nTBody);d.children().detach();d.append(l(c));F(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function ka(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&Hb(a);d?za(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;ja(a);a._drawHold=!1}function Ib(a){var b=a.oClasses,c=l(a.nTable);c=l("<div/>").insertBefore(c);var d=a.oFeatures,e=l("<div/>",{id:a.sTableId+"_wrapper",
|
||||||
|
"class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var h=a.sDom.split(""),f,g,k,m,n,p,t=0;t<h.length;t++){f=null;g=h[t];if("<"==g){k=l("<div/>")[0];m=h[t+1];if("'"==m||'"'==m){n="";for(p=2;h[t+p]!=m;)n+=h[t+p],p++;"H"==n?n=b.sJUIHeader:"F"==n&&(n=b.sJUIFooter);-1!=n.indexOf(".")?(m=n.split("."),k.id=m[0].substr(1,m[0].length-1),k.className=m[1]):"#"==n.charAt(0)?k.id=n.substr(1,n.length-1):k.className=n;t+=p}e.append(k);
|
||||||
|
e=l(k)}else if(">"==g)e=e.parent();else if("l"==g&&d.bPaginate&&d.bLengthChange)f=Jb(a);else if("f"==g&&d.bFilter)f=Kb(a);else if("r"==g&&d.bProcessing)f=Lb(a);else if("t"==g)f=Mb(a);else if("i"==g&&d.bInfo)f=Nb(a);else if("p"==g&&d.bPaginate)f=Ob(a);else if(0!==u.ext.feature.length)for(k=u.ext.feature,p=0,m=k.length;p<m;p++)if(g==k[p].cFeature){f=k[p].fnInit(a);break}f&&(k=a.aanFeatures,k[g]||(k[g]=[]),k[g].push(f),e.append(f))}c.replaceWith(e);a.nHolding=null}function xa(a,b){b=l(b).children("tr");
|
||||||
|
var c,d,e;a.splice(0,a.length);var h=0;for(e=b.length;h<e;h++)a.push([]);h=0;for(e=b.length;h<e;h++){var f=b[h];for(c=f.firstChild;c;){if("TD"==c.nodeName.toUpperCase()||"TH"==c.nodeName.toUpperCase()){var g=1*c.getAttribute("colspan");var k=1*c.getAttribute("rowspan");g=g&&0!==g&&1!==g?g:1;k=k&&0!==k&&1!==k?k:1;var m=0;for(d=a[h];d[m];)m++;var n=m;var p=1===g?!0:!1;for(d=0;d<g;d++)for(m=0;m<k;m++)a[h+m][n+d]={cell:c,unique:p},a[h+m].nTr=f}c=c.nextSibling}}}function Na(a,b,c){var d=[];c||(c=a.aoHeader,
|
||||||
|
b&&(c=[],xa(c,b)));b=0;for(var e=c.length;b<e;b++)for(var h=0,f=c[b].length;h<f;h++)!c[b][h].unique||d[h]&&a.bSortCellsTop||(d[h]=c[b][h].cell);return d}function Oa(a,b,c){F(a,"aoServerParams","serverParams",[b]);if(b&&Array.isArray(b)){var d={},e=/(.*?)\[\]$/;l.each(b,function(n,p){(n=p.name.match(e))?(n=n[0],d[n]||(d[n]=[]),d[n].push(p.value)):d[p.name]=p.value});b=d}var h=a.ajax,f=a.oInstance,g=function(n){var p=a.jqXHR?a.jqXHR.status:null;if(null===n||"number"===typeof p&&204==p)n={},Aa(a,n,[]);
|
||||||
|
(p=n.error||n.sError)&&da(a,0,p);a.json=n;F(a,null,"xhr",[a,n,a.jqXHR]);c(n)};if(l.isPlainObject(h)&&h.data){var k=h.data;var m="function"===typeof k?k(b,a):k;b="function"===typeof k&&m?m:l.extend(!0,b,m);delete h.data}m={data:b,success:g,dataType:"json",cache:!1,type:a.sServerMethod,error:function(n,p,t){t=F(a,null,"xhr",[a,null,a.jqXHR]);-1===l.inArray(!0,t)&&("parsererror"==p?da(a,0,"Invalid JSON response",1):4===n.readyState&&da(a,0,"Ajax error",7));V(a,!1)}};a.oAjaxData=b;F(a,null,"preXhr",[a,
|
||||||
|
b]);a.fnServerData?a.fnServerData.call(f,a.sAjaxSource,l.map(b,function(n,p){return{name:p,value:n}}),g,a):a.sAjaxSource||"string"===typeof h?a.jqXHR=l.ajax(l.extend(m,{url:h||a.sAjaxSource})):"function"===typeof h?a.jqXHR=h.call(f,b,g,a):(a.jqXHR=l.ajax(l.extend(m,h)),h.data=k)}function Gb(a){a.iDraw++;V(a,!0);Oa(a,Pb(a),function(b){Qb(a,b)})}function Pb(a){var b=a.aoColumns,c=b.length,d=a.oFeatures,e=a.oPreviousSearch,h=a.aoPreSearchCols,f=[],g=pa(a);var k=a._iDisplayStart;var m=!1!==d.bPaginate?
|
||||||
|
a._iDisplayLength:-1;var n=function(x,w){f.push({name:x,value:w})};n("sEcho",a.iDraw);n("iColumns",c);n("sColumns",U(b,"sName").join(","));n("iDisplayStart",k);n("iDisplayLength",m);var p={draw:a.iDraw,columns:[],order:[],start:k,length:m,search:{value:e.sSearch,regex:e.bRegex}};for(k=0;k<c;k++){var t=b[k];var v=h[k];m="function"==typeof t.mData?"function":t.mData;p.columns.push({data:m,name:t.sName,searchable:t.bSearchable,orderable:t.bSortable,search:{value:v.sSearch,regex:v.bRegex}});n("mDataProp_"+
|
||||||
|
k,m);d.bFilter&&(n("sSearch_"+k,v.sSearch),n("bRegex_"+k,v.bRegex),n("bSearchable_"+k,t.bSearchable));d.bSort&&n("bSortable_"+k,t.bSortable)}d.bFilter&&(n("sSearch",e.sSearch),n("bRegex",e.bRegex));d.bSort&&(l.each(g,function(x,w){p.order.push({column:w.col,dir:w.dir});n("iSortCol_"+x,w.col);n("sSortDir_"+x,w.dir)}),n("iSortingCols",g.length));b=u.ext.legacy.ajax;return null===b?a.sAjaxSource?f:p:b?f:p}function Qb(a,b){var c=function(f,g){return b[f]!==q?b[f]:b[g]},d=Aa(a,b),e=c("sEcho","draw"),h=
|
||||||
|
c("iTotalRecords","recordsTotal");c=c("iTotalDisplayRecords","recordsFiltered");if(e!==q){if(1*e<a.iDraw)return;a.iDraw=1*e}d||(d=[]);Ka(a);a._iRecordsTotal=parseInt(h,10);a._iRecordsDisplay=parseInt(c,10);e=0;for(h=d.length;e<h;e++)ia(a,d[e]);a.aiDisplay=a.aiDisplayMaster.slice();ja(a,!0);a._bInitComplete||Pa(a,b);V(a,!1)}function Aa(a,b,c){a=l.isPlainObject(a.ajax)&&a.ajax.dataSrc!==q?a.ajax.dataSrc:a.sAjaxDataProp;if(!c)return"data"===a?b.aaData||b[a]:""!==a?na(a)(b):b;ha(a)(b,c)}function Kb(a){var b=
|
||||||
|
a.oClasses,c=a.sTableId,d=a.oLanguage,e=a.oPreviousSearch,h=a.aanFeatures,f='<input type="search" class="'+b.sFilterInput+'"/>',g=d.sSearch;g=g.match(/_INPUT_/)?g.replace("_INPUT_",f):g+f;b=l("<div/>",{id:h.f?null:c+"_filter","class":b.sFilter}).append(l("<label/>").append(g));var k=function(n){var p=this.value?this.value:"";e.return&&"Enter"!==n.key||p==e.sSearch||(za(a,{sSearch:p,bRegex:e.bRegex,bSmart:e.bSmart,bCaseInsensitive:e.bCaseInsensitive,"return":e.return}),a._iDisplayStart=0,ja(a))};h=
|
||||||
|
null!==a.searchDelay?a.searchDelay:"ssp"===Q(a)?400:0;var m=l("input",b).val(e.sSearch).attr("placeholder",d.sSearchPlaceholder).on("keyup.DT search.DT input.DT paste.DT cut.DT",h?hb(k,h):k).on("mouseup",function(n){setTimeout(function(){k.call(m[0],n)},10)}).on("keypress.DT",function(n){if(13==n.keyCode)return!1}).attr("aria-controls",c);l(a.nTable).on("search.dt.DT",function(n,p){if(a===p)try{m[0]!==A.activeElement&&m.val(e.sSearch)}catch(t){}});return b[0]}function za(a,b,c){var d=a.oPreviousSearch,
|
||||||
|
e=a.aoPreSearchCols,h=function(g){d.sSearch=g.sSearch;d.bRegex=g.bRegex;d.bSmart=g.bSmart;d.bCaseInsensitive=g.bCaseInsensitive;d.return=g.return},f=function(g){return g.bEscapeRegex!==q?!g.bEscapeRegex:g.bRegex};$a(a);if("ssp"!=Q(a)){Rb(a,b.sSearch,c,f(b),b.bSmart,b.bCaseInsensitive,b.return);h(b);for(b=0;b<e.length;b++)Sb(a,e[b].sSearch,b,f(e[b]),e[b].bSmart,e[b].bCaseInsensitive);Tb(a)}else h(b);a.bFiltered=!0;F(a,null,"search",[a])}function Tb(a){for(var b=u.ext.search,c=a.aiDisplay,d,e,h=0,f=
|
||||||
|
b.length;h<f;h++){for(var g=[],k=0,m=c.length;k<m;k++)e=c[k],d=a.aoData[e],b[h](a,d._aFilterData,e,d._aData,k)&&g.push(e);c.length=0;l.merge(c,g)}}function Sb(a,b,c,d,e,h){if(""!==b){var f=[],g=a.aiDisplay;d=ib(b,d,e,h);for(e=0;e<g.length;e++)b=a.aoData[g[e]]._aFilterData[c],d.test(b)&&f.push(g[e]);a.aiDisplay=f}}function Rb(a,b,c,d,e,h){e=ib(b,d,e,h);var f=a.oPreviousSearch.sSearch,g=a.aiDisplayMaster;h=[];0!==u.ext.search.length&&(c=!0);var k=Ub(a);if(0>=b.length)a.aiDisplay=g.slice();else{if(k||
|
||||||
|
c||d||f.length>b.length||0!==b.indexOf(f)||a.bSorted)a.aiDisplay=g.slice();b=a.aiDisplay;for(c=0;c<b.length;c++)e.test(a.aoData[b[c]]._sFilterRow)&&h.push(b[c]);a.aiDisplay=h}}function ib(a,b,c,d){a=b?a:jb(a);c&&(a="^(?=.*?"+l.map(a.match(/"[^"]+"|[^ ]+/g)||[""],function(e){if('"'===e.charAt(0)){var h=e.match(/^"(.*)"$/);e=h?h[1]:e}return e.replace('"',"")}).join(")(?=.*?")+").*$");return new RegExp(a,d?"i":"")}function Ub(a){var b=a.aoColumns,c,d;var e=!1;var h=0;for(c=a.aoData.length;h<c;h++){var f=
|
||||||
|
a.aoData[h];if(!f._aFilterData){var g=[];e=0;for(d=b.length;e<d;e++){var k=b[e];k.bSearchable?(k=T(a,h,e,"filter"),null===k&&(k=""),"string"!==typeof k&&k.toString&&(k=k.toString())):k="";k.indexOf&&-1!==k.indexOf("&")&&(Qa.innerHTML=k,k=sc?Qa.textContent:Qa.innerText);k.replace&&(k=k.replace(/[\r\n\u2028]/g,""));g.push(k)}f._aFilterData=g;f._sFilterRow=g.join(" ");e=!0}}return e}function Vb(a){return{search:a.sSearch,smart:a.bSmart,regex:a.bRegex,caseInsensitive:a.bCaseInsensitive}}function Wb(a){return{sSearch:a.search,
|
||||||
|
bSmart:a.smart,bRegex:a.regex,bCaseInsensitive:a.caseInsensitive}}function Nb(a){var b=a.sTableId,c=a.aanFeatures.i,d=l("<div/>",{"class":a.oClasses.sInfo,id:c?null:b+"_info"});c||(a.aoDrawCallback.push({fn:Xb,sName:"information"}),d.attr("role","status").attr("aria-live","polite"),l(a.nTable).attr("aria-describedby",b+"_info"));return d[0]}function Xb(a){var b=a.aanFeatures.i;if(0!==b.length){var c=a.oLanguage,d=a._iDisplayStart+1,e=a.fnDisplayEnd(),h=a.fnRecordsTotal(),f=a.fnRecordsDisplay(),g=
|
||||||
|
f?c.sInfo:c.sInfoEmpty;f!==h&&(g+=" "+c.sInfoFiltered);g+=c.sInfoPostFix;g=Yb(a,g);c=c.fnInfoCallback;null!==c&&(g=c.call(a.oInstance,a,d,e,h,f,g));l(b).html(g)}}function Yb(a,b){var c=a.fnFormatNumber,d=a._iDisplayStart+1,e=a._iDisplayLength,h=a.fnRecordsDisplay(),f=-1===e;return b.replace(/_START_/g,c.call(a,d)).replace(/_END_/g,c.call(a,a.fnDisplayEnd())).replace(/_MAX_/g,c.call(a,a.fnRecordsTotal())).replace(/_TOTAL_/g,c.call(a,h)).replace(/_PAGE_/g,c.call(a,f?1:Math.ceil(d/e))).replace(/_PAGES_/g,
|
||||||
|
c.call(a,f?1:Math.ceil(h/e)))}function Ba(a){var b=a.iInitDisplayStart,c=a.aoColumns;var d=a.oFeatures;var e=a.bDeferLoading;if(a.bInitialised){Ib(a);Fb(a);ya(a,a.aoHeader);ya(a,a.aoFooter);V(a,!0);d.bAutoWidth&&Za(a);var h=0;for(d=c.length;h<d;h++){var f=c[h];f.sWidth&&(f.nTh.style.width=K(f.sWidth))}F(a,null,"preInit",[a]);ka(a);c=Q(a);if("ssp"!=c||e)"ajax"==c?Oa(a,[],function(g){var k=Aa(a,g);for(h=0;h<k.length;h++)ia(a,k[h]);a.iInitDisplayStart=b;ka(a);V(a,!1);Pa(a,g)},a):(V(a,!1),Pa(a))}else setTimeout(function(){Ba(a)},
|
||||||
|
200)}function Pa(a,b){a._bInitComplete=!0;(b||a.oInit.aaData)&&ta(a);F(a,null,"plugin-init",[a,b]);F(a,"aoInitComplete","init",[a,b])}function kb(a,b){b=parseInt(b,10);a._iDisplayLength=b;lb(a);F(a,null,"length",[a,b])}function Jb(a){var b=a.oClasses,c=a.sTableId,d=a.aLengthMenu,e=Array.isArray(d[0]),h=e?d[0]:d;d=e?d[1]:d;e=l("<select/>",{name:c+"_length","aria-controls":c,"class":b.sLengthSelect});for(var f=0,g=h.length;f<g;f++)e[0][f]=new Option("number"===typeof d[f]?a.fnFormatNumber(d[f]):d[f],
|
||||||
|
h[f]);var k=l("<div><label/></div>").addClass(b.sLength);a.aanFeatures.l||(k[0].id=c+"_length");k.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));l("select",k).val(a._iDisplayLength).on("change.DT",function(m){kb(a,l(this).val());ja(a)});l(a.nTable).on("length.dt.DT",function(m,n,p){a===n&&l("select",k).val(p)});return k[0]}function Ob(a){var b=a.sPaginationType,c=u.ext.pager[b],d="function"===typeof c,e=function(f){ja(f)};b=l("<div/>").addClass(a.oClasses.sPaging+b)[0];
|
||||||
|
var h=a.aanFeatures;d||c.fnInit(a,b,e);h.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(f){if(d){var g=f._iDisplayStart,k=f._iDisplayLength,m=f.fnRecordsDisplay(),n=-1===k;g=n?0:Math.ceil(g/k);k=n?1:Math.ceil(m/k);m=c(g,k);var p;n=0;for(p=h.p.length;n<p;n++)gb(f,"pageButton")(f,h.p[n],n,m,g,k)}else c.fnUpdate(f,e)},sName:"pagination"}));return b}function Ra(a,b,c){var d=a._iDisplayStart,e=a._iDisplayLength,h=a.fnRecordsDisplay();0===h||-1===e?d=0:"number"===typeof b?(d=b*e,d>h&&
|
||||||
|
(d=0)):"first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e<h&&(d+=e):"last"==b?d=Math.floor((h-1)/e)*e:da(a,0,"Unknown paging action: "+b,5);b=a._iDisplayStart!==d;a._iDisplayStart=d;b&&(F(a,null,"page",[a]),c&&ja(a));return b}function Lb(a){return l("<div/>",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function V(a,b){a.oFeatures.bProcessing&&l(a.aanFeatures.r).css("display",b?"block":"none");
|
||||||
|
F(a,null,"processing",[a,b])}function Mb(a){var b=l(a.nTable),c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,h=a.oClasses,f=b.children("caption"),g=f.length?f[0]._captionSide:null,k=l(b[0].cloneNode(!1)),m=l(b[0].cloneNode(!1)),n=b.children("tfoot");n.length||(n=null);k=l("<div/>",{"class":h.sScrollWrapper}).append(l("<div/>",{"class":h.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?K(d):null:"100%"}).append(l("<div/>",{"class":h.sScrollHeadInner}).css({"box-sizing":"content-box",
|
||||||
|
width:c.sXInner||"100%"}).append(k.removeAttr("id").css("margin-left",0).append("top"===g?f:null).append(b.children("thead"))))).append(l("<div/>",{"class":h.sScrollBody}).css({position:"relative",overflow:"auto",width:d?K(d):null}).append(b));n&&k.append(l("<div/>",{"class":h.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?K(d):null:"100%"}).append(l("<div/>",{"class":h.sScrollFootInner}).append(m.removeAttr("id").css("margin-left",0).append("bottom"===g?f:null).append(b.children("tfoot")))));
|
||||||
|
b=k.children();var p=b[0];h=b[1];var t=n?b[2]:null;if(d)l(h).on("scroll.DT",function(v){v=this.scrollLeft;p.scrollLeft=v;n&&(t.scrollLeft=v)});l(h).css("max-height",e);c.bCollapse||l(h).css("height",e);a.nScrollHead=p;a.nScrollBody=h;a.nScrollFoot=t;a.aoDrawCallback.push({fn:Ha,sName:"scrolling"});return k[0]}function Ha(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY;b=b.iBarWidth;var h=l(a.nScrollHead),f=h[0].style,g=h.children("div"),k=g[0].style,m=g.children("table");g=a.nScrollBody;var n=l(g),p=
|
||||||
|
g.style,t=l(a.nScrollFoot).children("div"),v=t.children("table"),x=l(a.nTHead),w=l(a.nTable),r=w[0],C=r.style,G=a.nTFoot?l(a.nTFoot):null,aa=a.oBrowser,L=aa.bScrollOversize;U(a.aoColumns,"nTh");var O=[],I=[],H=[],ea=[],Y,Ca=function(D){D=D.style;D.paddingTop="0";D.paddingBottom="0";D.borderTopWidth="0";D.borderBottomWidth="0";D.height=0};var fa=g.scrollHeight>g.clientHeight;if(a.scrollBarVis!==fa&&a.scrollBarVis!==q)a.scrollBarVis=fa,ta(a);else{a.scrollBarVis=fa;w.children("thead, tfoot").remove();
|
||||||
|
if(G){var ba=G.clone().prependTo(w);var la=G.find("tr");ba=ba.find("tr")}var mb=x.clone().prependTo(w);x=x.find("tr");fa=mb.find("tr");mb.find("th, td").removeAttr("tabindex");c||(p.width="100%",h[0].style.width="100%");l.each(Na(a,mb),function(D,W){Y=ua(a,D);W.style.width=a.aoColumns[Y].sWidth});G&&ca(function(D){D.style.width=""},ba);h=w.outerWidth();""===c?(C.width="100%",L&&(w.find("tbody").height()>g.offsetHeight||"scroll"==n.css("overflow-y"))&&(C.width=K(w.outerWidth()-b)),h=w.outerWidth()):
|
||||||
|
""!==d&&(C.width=K(d),h=w.outerWidth());ca(Ca,fa);ca(function(D){var W=z.getComputedStyle?z.getComputedStyle(D).width:K(l(D).width());H.push(D.innerHTML);O.push(W)},fa);ca(function(D,W){D.style.width=O[W]},x);l(fa).height(0);G&&(ca(Ca,ba),ca(function(D){ea.push(D.innerHTML);I.push(K(l(D).css("width")))},ba),ca(function(D,W){D.style.width=I[W]},la),l(ba).height(0));ca(function(D,W){D.innerHTML='<div class="dataTables_sizing">'+H[W]+"</div>";D.childNodes[0].style.height="0";D.childNodes[0].style.overflow=
|
||||||
|
"hidden";D.style.width=O[W]},fa);G&&ca(function(D,W){D.innerHTML='<div class="dataTables_sizing">'+ea[W]+"</div>";D.childNodes[0].style.height="0";D.childNodes[0].style.overflow="hidden";D.style.width=I[W]},ba);Math.round(w.outerWidth())<Math.round(h)?(la=g.scrollHeight>g.offsetHeight||"scroll"==n.css("overflow-y")?h+b:h,L&&(g.scrollHeight>g.offsetHeight||"scroll"==n.css("overflow-y"))&&(C.width=K(la-b)),""!==c&&""===d||da(a,1,"Possible column misalignment",6)):la="100%";p.width=K(la);f.width=K(la);
|
||||||
|
G&&(a.nScrollFoot.style.width=K(la));!e&&L&&(p.height=K(r.offsetHeight+b));c=w.outerWidth();m[0].style.width=K(c);k.width=K(c);d=w.height()>g.clientHeight||"scroll"==n.css("overflow-y");e="padding"+(aa.bScrollbarLeft?"Left":"Right");k[e]=d?b+"px":"0px";G&&(v[0].style.width=K(c),t[0].style.width=K(c),t[0].style[e]=d?b+"px":"0px");w.children("colgroup").insertBefore(w.children("thead"));n.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(g.scrollTop=0)}}function ca(a,b,c){for(var d=0,e=0,h=
|
||||||
|
b.length,f,g;e<h;){f=b[e].firstChild;for(g=c?c[e].firstChild:null;f;)1===f.nodeType&&(c?a(f,g,d):a(f,d),d++),f=f.nextSibling,g=c?g.nextSibling:null;e++}}function Za(a){var b=a.nTable,c=a.aoColumns,d=a.oScroll,e=d.sY,h=d.sX,f=d.sXInner,g=c.length,k=Ia(a,"bVisible"),m=l("th",a.nTHead),n=b.getAttribute("width"),p=b.parentNode,t=!1,v,x=a.oBrowser;d=x.bScrollOversize;(v=b.style.width)&&-1!==v.indexOf("%")&&(n=v);for(v=0;v<k.length;v++){var w=c[k[v]];null!==w.sWidth&&(w.sWidth=Zb(w.sWidthOrig,p),t=!0)}if(d||
|
||||||
|
!t&&!h&&!e&&g==oa(a)&&g==m.length)for(v=0;v<g;v++)k=ua(a,v),null!==k&&(c[k].sWidth=K(m.eq(v).width()));else{g=l(b).clone().css("visibility","hidden").removeAttr("id");g.find("tbody tr").remove();var r=l("<tr/>").appendTo(g.find("tbody"));g.find("thead, tfoot").remove();g.append(l(a.nTHead).clone()).append(l(a.nTFoot).clone());g.find("tfoot th, tfoot td").css("width","");m=Na(a,g.find("thead")[0]);for(v=0;v<k.length;v++)w=c[k[v]],m[v].style.width=null!==w.sWidthOrig&&""!==w.sWidthOrig?K(w.sWidthOrig):
|
||||||
|
"",w.sWidthOrig&&h&&l(m[v]).append(l("<div/>").css({width:w.sWidthOrig,margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(v=0;v<k.length;v++)t=k[v],w=c[t],l($b(a,t)).clone(!1).append(w.sContentPadding).appendTo(r);l("[name]",g).removeAttr("name");w=l("<div/>").css(h||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(g).appendTo(p);h&&f?g.width(f):h?(g.css("width","auto"),g.removeAttr("width"),g.width()<p.clientWidth&&n&&g.width(p.clientWidth)):e?g.width(p.clientWidth):
|
||||||
|
n&&g.width(n);for(v=e=0;v<k.length;v++)p=l(m[v]),f=p.outerWidth()-p.width(),p=x.bBounding?Math.ceil(m[v].getBoundingClientRect().width):p.outerWidth(),e+=p,c[k[v]].sWidth=K(p-f);b.style.width=K(e);w.remove()}n&&(b.style.width=K(n));!n&&!h||a._reszEvt||(b=function(){l(z).on("resize.DT-"+a.sInstance,hb(function(){ta(a)}))},d?setTimeout(b,1E3):b(),a._reszEvt=!0)}function Zb(a,b){if(!a)return 0;a=l("<div/>").css("width",K(a)).appendTo(b||A.body);b=a[0].offsetWidth;a.remove();return b}function $b(a,b){var c=
|
||||||
|
ac(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]:l("<td/>").html(T(a,c,b,"display"))[0]}function ac(a,b){for(var c,d=-1,e=-1,h=0,f=a.aoData.length;h<f;h++)c=T(a,h,b,"display")+"",c=c.replace(tc,""),c=c.replace(/ /g," "),c.length>d&&(d=c.length,e=h);return e}function K(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function pa(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var e=l.isPlainObject(d);var h=[];var f=function(n){n.length&&
|
||||||
|
!Array.isArray(n[0])?h.push(n):l.merge(h,n)};Array.isArray(d)&&f(d);e&&d.pre&&f(d.pre);f(a.aaSorting);e&&d.post&&f(d.post);for(a=0;a<h.length;a++){var g=h[a][0];f=c[g].aDataSort;d=0;for(e=f.length;d<e;d++){var k=f[d];var m=c[k].sType||"string";h[a]._idx===q&&(h[a]._idx=l.inArray(h[a][1],c[k].asSorting));b.push({src:g,col:k,dir:h[a][1],index:h[a]._idx,type:m,formatter:u.ext.type.order[m+"-pre"]})}}return b}function Hb(a){var b,c=[],d=u.ext.type.order,e=a.aoData,h=0,f=a.aiDisplayMaster;$a(a);var g=
|
||||||
|
pa(a);var k=0;for(b=g.length;k<b;k++){var m=g[k];m.formatter&&h++;bc(a,m.col)}if("ssp"!=Q(a)&&0!==g.length){k=0;for(b=f.length;k<b;k++)c[f[k]]=k;h===g.length?f.sort(function(n,p){var t,v=g.length,x=e[n]._aSortData,w=e[p]._aSortData;for(t=0;t<v;t++){var r=g[t];var C=x[r.col];var G=w[r.col];C=C<G?-1:C>G?1:0;if(0!==C)return"asc"===r.dir?C:-C}C=c[n];G=c[p];return C<G?-1:C>G?1:0}):f.sort(function(n,p){var t,v=g.length,x=e[n]._aSortData,w=e[p]._aSortData;for(t=0;t<v;t++){var r=g[t];var C=x[r.col];var G=
|
||||||
|
w[r.col];r=d[r.type+"-"+r.dir]||d["string-"+r.dir];C=r(C,G);if(0!==C)return C}C=c[n];G=c[p];return C<G?-1:C>G?1:0})}a.bSorted=!0}function cc(a){var b=a.aoColumns,c=pa(a);a=a.oLanguage.oAria;for(var d=0,e=b.length;d<e;d++){var h=b[d];var f=h.asSorting;var g=h.ariaTitle||h.sTitle.replace(/<.*?>/g,"");var k=h.nTh;k.removeAttribute("aria-sort");h.bSortable&&(0<c.length&&c[0].col==d?(k.setAttribute("aria-sort","asc"==c[0].dir?"ascending":"descending"),h=f[c[0].index+1]||f[0]):h=f[0],g+="asc"===h?a.sSortAscending:
|
||||||
|
a.sSortDescending);k.setAttribute("aria-label",g)}}function nb(a,b,c,d){var e=a.aaSorting,h=a.aoColumns[b].asSorting,f=function(g,k){var m=g._idx;m===q&&(m=l.inArray(g[1],h));return m+1<h.length?m+1:k?null:0};"number"===typeof e[0]&&(e=a.aaSorting=[e]);c&&a.oFeatures.bSortMulti?(c=l.inArray(b,U(e,"0")),-1!==c?(b=f(e[c],!0),null===b&&1===e.length&&(b=0),null===b?e.splice(c,1):(e[c][1]=h[b],e[c]._idx=b)):(e.push([b,h[0],0]),e[e.length-1]._idx=0)):e.length&&e[0][0]==b?(b=f(e[0]),e.length=1,e[0][1]=h[b],
|
||||||
|
e[0]._idx=b):(e.length=0,e.push([b,h[0]]),e[0]._idx=0);ka(a);"function"==typeof d&&d(a)}function fb(a,b,c,d){var e=a.aoColumns[c];ob(b,{},function(h){!1!==e.bSortable&&(a.oFeatures.bProcessing?(V(a,!0),setTimeout(function(){nb(a,c,h.shiftKey,d);"ssp"!==Q(a)&&V(a,!1)},0)):nb(a,c,h.shiftKey,d))})}function Sa(a){var b=a.aLastSort,c=a.oClasses.sSortColumn,d=pa(a),e=a.oFeatures,h;if(e.bSort&&e.bSortClasses){e=0;for(h=b.length;e<h;e++){var f=b[e].src;l(U(a.aoData,"anCells",f)).removeClass(c+(2>e?e+1:3))}e=
|
||||||
|
0;for(h=d.length;e<h;e++)f=d[e].src,l(U(a.aoData,"anCells",f)).addClass(c+(2>e?e+1:3))}a.aLastSort=d}function bc(a,b){var c=a.aoColumns[b],d=u.ext.order[c.sSortDataType],e;d&&(e=d.call(a.oInstance,a,b,va(a,b)));for(var h,f=u.ext.type.order[c.sType+"-pre"],g=0,k=a.aoData.length;g<k;g++)if(c=a.aoData[g],c._aSortData||(c._aSortData=[]),!c._aSortData[b]||d)h=d?e[g]:T(a,g,b,"sort"),c._aSortData[b]=f?f(h):h}function qa(a){if(!a._bLoadingState){var b={time:+new Date,start:a._iDisplayStart,length:a._iDisplayLength,
|
||||||
|
order:l.extend(!0,[],a.aaSorting),search:Vb(a.oPreviousSearch),columns:l.map(a.aoColumns,function(c,d){return{visible:c.bVisible,search:Vb(a.aoPreSearchCols[d])}})};a.oSavedState=b;F(a,"aoStateSaveParams","stateSaveParams",[a,b]);a.oFeatures.bStateSave&&!a.bDestroying&&a.fnStateSaveCallback.call(a.oInstance,a,b)}}function dc(a,b,c){if(a.oFeatures.bStateSave)return b=a.fnStateLoadCallback.call(a.oInstance,a,function(d){pb(a,d,c)}),b!==q&&pb(a,b,c),!0;c()}function pb(a,b,c){var d,e=a.aoColumns;a._bLoadingState=
|
||||||
|
!0;var h=a._bInitComplete?new u.Api(a):null;if(b&&b.time){var f=F(a,"aoStateLoadParams","stateLoadParams",[a,b]);if(-1!==l.inArray(!1,f))a._bLoadingState=!1;else if(f=a.iStateDuration,0<f&&b.time<+new Date-1E3*f)a._bLoadingState=!1;else if(b.columns&&e.length!==b.columns.length)a._bLoadingState=!1;else{a.oLoadedState=l.extend(!0,{},b);b.start!==q&&(null===h?(a._iDisplayStart=b.start,a.iInitDisplayStart=b.start):Ra(a,b.start/b.length));b.length!==q&&(a._iDisplayLength=b.length);b.order!==q&&(a.aaSorting=
|
||||||
|
[],l.each(b.order,function(k,m){a.aaSorting.push(m[0]>=e.length?[0,m[1]]:m)}));b.search!==q&&l.extend(a.oPreviousSearch,Wb(b.search));if(b.columns){f=0;for(d=b.columns.length;f<d;f++){var g=b.columns[f];g.visible!==q&&(h?h.column(f).visible(g.visible,!1):e[f].bVisible=g.visible);g.search!==q&&l.extend(a.aoPreSearchCols[f],Wb(g.search))}h&&h.columns.adjust()}a._bLoadingState=!1;F(a,"aoStateLoaded","stateLoaded",[a,b])}}else a._bLoadingState=!1;c()}function Ta(a){var b=u.settings;a=l.inArray(a,U(b,
|
||||||
|
"nTable"));return-1!==a?b[a]:null}function da(a,b,c,d){c="DataTables warning: "+(a?"table id="+a.sTableId+" - ":"")+c;d&&(c+=". For more information about this error, please see http://datatables.net/tn/"+d);if(b)z.console&&console.log&&console.log(c);else if(b=u.ext,b=b.sErrMode||b.errMode,a&&F(a,null,"error",[a,d,c]),"alert"==b)alert(c);else{if("throw"==b)throw Error(c);"function"==typeof b&&b(a,d,c)}}function X(a,b,c,d){Array.isArray(c)?l.each(c,function(e,h){Array.isArray(h)?X(a,b,h[0],h[1]):
|
||||||
|
X(a,b,h)}):(d===q&&(d=c),b[c]!==q&&(a[d]=b[c]))}function qb(a,b,c){var d;for(d in b)if(b.hasOwnProperty(d)){var e=b[d];l.isPlainObject(e)?(l.isPlainObject(a[d])||(a[d]={}),l.extend(!0,a[d],e)):c&&"data"!==d&&"aaData"!==d&&Array.isArray(e)?a[d]=e.slice():a[d]=e}return a}function ob(a,b,c){l(a).on("click.DT",b,function(d){l(a).trigger("blur");c(d)}).on("keypress.DT",b,function(d){13===d.which&&(d.preventDefault(),c(d))}).on("selectstart.DT",function(){return!1})}function R(a,b,c,d){c&&a[b].push({fn:c,
|
||||||
|
sName:d})}function F(a,b,c,d){var e=[];b&&(e=l.map(a[b].slice().reverse(),function(h,f){return h.fn.apply(a.oInstance,d)}));null!==c&&(b=l.Event(c+".dt"),l(a.nTable).trigger(b,d),e.push(b.result));return e}function lb(a){var b=a._iDisplayStart,c=a.fnDisplayEnd(),d=a._iDisplayLength;b>=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function gb(a,b){a=a.renderer;var c=u.ext.renderer[b];return l.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]||c._:c._}function Q(a){return a.oFeatures.bServerSide?
|
||||||
|
"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function Da(a,b){var c=ec.numbers_length,d=Math.floor(c/2);b<=c?a=ra(0,b):a<=d?(a=ra(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=ra(b-(c-2),b):(a=ra(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Xa(a){l.each({num:function(b){return Ua(b,a)},"num-fmt":function(b){return Ua(b,a,rb)},"html-num":function(b){return Ua(b,a,Va)},"html-num-fmt":function(b){return Ua(b,a,Va,rb)}},function(b,
|
||||||
|
c){M.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(M.type.search[b+a]=M.type.search.html)})}function fc(a){return function(){var b=[Ta(this[u.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return u.ext.internal[a].apply(this,b)}}var u=function(a,b){if(this instanceof u)return l(a).DataTable(b);b=a;this.$=function(f,g){return this.api(!0).$(f,g)};this._=function(f,g){return this.api(!0).rows(f,g).data()};this.api=function(f){return f?new B(Ta(this[M.iApiIndex])):new B(this)};this.fnAddData=
|
||||||
|
function(f,g){var k=this.api(!0);f=Array.isArray(f)&&(Array.isArray(f[0])||l.isPlainObject(f[0]))?k.rows.add(f):k.row.add(f);(g===q||g)&&k.draw();return f.flatten().toArray()};this.fnAdjustColumnSizing=function(f){var g=this.api(!0).columns.adjust(),k=g.settings()[0],m=k.oScroll;f===q||f?g.draw(!1):(""!==m.sX||""!==m.sY)&&Ha(k)};this.fnClearTable=function(f){var g=this.api(!0).clear();(f===q||f)&&g.draw()};this.fnClose=function(f){this.api(!0).row(f).child.hide()};this.fnDeleteRow=function(f,g,k){var m=
|
||||||
|
this.api(!0);f=m.rows(f);var n=f.settings()[0],p=n.aoData[f[0][0]];f.remove();g&&g.call(this,n,p);(k===q||k)&&m.draw();return p};this.fnDestroy=function(f){this.api(!0).destroy(f)};this.fnDraw=function(f){this.api(!0).draw(f)};this.fnFilter=function(f,g,k,m,n,p){n=this.api(!0);null===g||g===q?n.search(f,k,m,p):n.column(g).search(f,k,m,p);n.draw()};this.fnGetData=function(f,g){var k=this.api(!0);if(f!==q){var m=f.nodeName?f.nodeName.toLowerCase():"";return g!==q||"td"==m||"th"==m?k.cell(f,g).data():
|
||||||
|
k.row(f).data()||null}return k.data().toArray()};this.fnGetNodes=function(f){var g=this.api(!0);return f!==q?g.row(f).node():g.rows().nodes().flatten().toArray()};this.fnGetPosition=function(f){var g=this.api(!0),k=f.nodeName.toUpperCase();return"TR"==k?g.row(f).index():"TD"==k||"TH"==k?(f=g.cell(f).index(),[f.row,f.columnVisible,f.column]):null};this.fnIsOpen=function(f){return this.api(!0).row(f).child.isShown()};this.fnOpen=function(f,g,k){return this.api(!0).row(f).child(g,k).show().child()[0]};
|
||||||
|
this.fnPageChange=function(f,g){f=this.api(!0).page(f);(g===q||g)&&f.draw(!1)};this.fnSetColumnVis=function(f,g,k){f=this.api(!0).column(f).visible(g);(k===q||k)&&f.columns.adjust().draw()};this.fnSettings=function(){return Ta(this[M.iApiIndex])};this.fnSort=function(f){this.api(!0).order(f).draw()};this.fnSortListener=function(f,g,k){this.api(!0).order.listener(f,g,k)};this.fnUpdate=function(f,g,k,m,n){var p=this.api(!0);k===q||null===k?p.row(g).data(f):p.cell(g,k).data(f);(n===q||n)&&p.columns.adjust();
|
||||||
|
(m===q||m)&&p.draw();return 0};this.fnVersionCheck=M.fnVersionCheck;var c=this,d=b===q,e=this.length;d&&(b={});this.oApi=this.internal=M.internal;for(var h in u.ext.internal)h&&(this[h]=fc(h));this.each(function(){var f={},g=1<e?qb(f,b,!0):b,k=0,m;f=this.getAttribute("id");var n=!1,p=u.defaults,t=l(this);if("table"!=this.nodeName.toLowerCase())da(null,0,"Non-table node initialisation ("+this.nodeName+")",2);else{zb(p);Ab(p.column);P(p,p,!0);P(p.column,p.column,!0);P(p,l.extend(g,t.data()),!0);var v=
|
||||||
|
u.settings;k=0;for(m=v.length;k<m;k++){var x=v[k];if(x.nTable==this||x.nTHead&&x.nTHead.parentNode==this||x.nTFoot&&x.nTFoot.parentNode==this){var w=g.bRetrieve!==q?g.bRetrieve:p.bRetrieve;if(d||w)return x.oInstance;if(g.bDestroy!==q?g.bDestroy:p.bDestroy){x.oInstance.fnDestroy();break}else{da(x,0,"Cannot reinitialise DataTable",3);return}}if(x.sTableId==this.id){v.splice(k,1);break}}if(null===f||""===f)this.id=f="DataTables_Table_"+u.ext._unique++;var r=l.extend(!0,{},u.models.oSettings,{sDestroyWidth:t[0].style.width,
|
||||||
|
sInstance:f,sTableId:f});r.nTable=this;r.oApi=c.internal;r.oInit=g;v.push(r);r.oInstance=1===c.length?c:t.dataTable();zb(g);ma(g.oLanguage);g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=Array.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]);g=qb(l.extend(!0,{},p),g);X(r.oFeatures,g,"bPaginate bLengthChange bFilter bSort bSortMulti bInfo bProcessing bAutoWidth bSortClasses bServerSide bDeferRender".split(" "));X(r,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod",
|
||||||
|
"aaSorting","aaSortingFixed","aLengthMenu","sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer","searchDelay","rowId",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"]]);X(r.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]);X(r.oLanguage,g,"fnInfoCallback");
|
||||||
|
R(r,"aoDrawCallback",g.fnDrawCallback,"user");R(r,"aoServerParams",g.fnServerParams,"user");R(r,"aoStateSaveParams",g.fnStateSaveParams,"user");R(r,"aoStateLoadParams",g.fnStateLoadParams,"user");R(r,"aoStateLoaded",g.fnStateLoaded,"user");R(r,"aoRowCallback",g.fnRowCallback,"user");R(r,"aoRowCreatedCallback",g.fnCreatedRow,"user");R(r,"aoHeaderCallback",g.fnHeaderCallback,"user");R(r,"aoFooterCallback",g.fnFooterCallback,"user");R(r,"aoInitComplete",g.fnInitComplete,"user");R(r,"aoPreDrawCallback",
|
||||||
|
g.fnPreDrawCallback,"user");r.rowIdFn=na(g.rowId);Bb(r);var C=r.oClasses;l.extend(C,u.ext.classes,g.oClasses);t.addClass(C.sTable);r.iInitDisplayStart===q&&(r.iInitDisplayStart=g.iDisplayStart,r._iDisplayStart=g.iDisplayStart);null!==g.iDeferLoading&&(r.bDeferLoading=!0,f=Array.isArray(g.iDeferLoading),r._iRecordsDisplay=f?g.iDeferLoading[0]:g.iDeferLoading,r._iRecordsTotal=f?g.iDeferLoading[1]:g.iDeferLoading);var G=r.oLanguage;l.extend(!0,G,g.oLanguage);G.sUrl?(l.ajax({dataType:"json",url:G.sUrl,
|
||||||
|
success:function(I){P(p.oLanguage,I);ma(I);l.extend(!0,G,I);F(r,null,"i18n",[r]);Ba(r)},error:function(){Ba(r)}}),n=!0):F(r,null,"i18n",[r]);null===g.asStripeClasses&&(r.asStripeClasses=[C.sStripeOdd,C.sStripeEven]);f=r.asStripeClasses;var aa=t.children("tbody").find("tr").eq(0);-1!==l.inArray(!0,l.map(f,function(I,H){return aa.hasClass(I)}))&&(l("tbody tr",this).removeClass(f.join(" ")),r.asDestroyStripes=f.slice());f=[];v=this.getElementsByTagName("thead");0!==v.length&&(xa(r.aoHeader,v[0]),f=Na(r));
|
||||||
|
if(null===g.aoColumns)for(v=[],k=0,m=f.length;k<m;k++)v.push(null);else v=g.aoColumns;k=0;for(m=v.length;k<m;k++)Ya(r,f?f[k]:null);Db(r,g.aoColumnDefs,v,function(I,H){Ga(r,I,H)});if(aa.length){var L=function(I,H){return null!==I.getAttribute("data-"+H)?H:null};l(aa[0]).children("th, td").each(function(I,H){var ea=r.aoColumns[I];if(ea.mData===I){var Y=L(H,"sort")||L(H,"order");H=L(H,"filter")||L(H,"search");if(null!==Y||null!==H)ea.mData={_:I+".display",sort:null!==Y?I+".@data-"+Y:q,type:null!==Y?
|
||||||
|
I+".@data-"+Y:q,filter:null!==H?I+".@data-"+H:q},Ga(r,I)}})}var O=r.oFeatures;f=function(){if(g.aaSorting===q){var I=r.aaSorting;k=0;for(m=I.length;k<m;k++)I[k][1]=r.aoColumns[k].asSorting[0]}Sa(r);O.bSort&&R(r,"aoDrawCallback",function(){if(r.bSorted){var Y=pa(r),Ca={};l.each(Y,function(fa,ba){Ca[ba.src]=ba.dir});F(r,null,"order",[r,Y,Ca]);cc(r)}});R(r,"aoDrawCallback",function(){(r.bSorted||"ssp"===Q(r)||O.bDeferRender)&&Sa(r)},"sc");I=t.children("caption").each(function(){this._captionSide=l(this).css("caption-side")});
|
||||||
|
var H=t.children("thead");0===H.length&&(H=l("<thead/>").appendTo(t));r.nTHead=H[0];var ea=t.children("tbody");0===ea.length&&(ea=l("<tbody/>").insertAfter(H));r.nTBody=ea[0];H=t.children("tfoot");0===H.length&&0<I.length&&(""!==r.oScroll.sX||""!==r.oScroll.sY)&&(H=l("<tfoot/>").appendTo(t));0===H.length||0===H.children().length?t.addClass(C.sNoFooter):0<H.length&&(r.nTFoot=H[0],xa(r.aoFooter,r.nTFoot));if(g.aaData)for(k=0;k<g.aaData.length;k++)ia(r,g.aaData[k]);else(r.bDeferLoading||"dom"==Q(r))&&
|
||||||
|
Ja(r,l(r.nTBody).children("tr"));r.aiDisplay=r.aiDisplayMaster.slice();r.bInitialised=!0;!1===n&&Ba(r)};R(r,"aoDrawCallback",qa,"state_save");g.bStateSave?(O.bStateSave=!0,dc(r,g,f)):f()}});c=null;return this},M,y,J,sb={},gc=/[\r\n\u2028]/g,Va=/<.*?>/g,uc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,vc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,rb=/['\u00A0,$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,Z=function(a){return a&&!0!==a&&"-"!==a?!1:!0},hc=
|
||||||
|
function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},ic=function(a,b){sb[b]||(sb[b]=new RegExp(jb(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(sb[b],"."):a},tb=function(a,b,c){var d="string"===typeof a;if(Z(a))return!0;b&&d&&(a=ic(a,b));c&&d&&(a=a.replace(rb,""));return!isNaN(parseFloat(a))&&isFinite(a)},jc=function(a,b,c){return Z(a)?!0:Z(a)||"string"===typeof a?tb(a.replace(Va,""),b,c)?!0:null:null},U=function(a,b,c){var d=[],e=0,h=a.length;if(c!==q)for(;e<
|
||||||
|
h;e++)a[e]&&a[e][b]&&d.push(a[e][b][c]);else for(;e<h;e++)a[e]&&d.push(a[e][b]);return d},Ea=function(a,b,c,d){var e=[],h=0,f=b.length;if(d!==q)for(;h<f;h++)a[b[h]][c]&&e.push(a[b[h]][c][d]);else for(;h<f;h++)e.push(a[b[h]][c]);return e},ra=function(a,b){var c=[];if(b===q){b=0;var d=a}else d=b,b=a;for(a=b;a<d;a++)c.push(a);return c},kc=function(a){for(var b=[],c=0,d=a.length;c<d;c++)a[c]&&b.push(a[c]);return b},Ma=function(a){a:{if(!(2>a.length)){var b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d<
|
||||||
|
e;d++){if(b[d]===c){b=!1;break a}c=b[d]}}b=!0}if(b)return a.slice();b=[];e=a.length;var h,f=0;d=0;a:for(;d<e;d++){c=a[d];for(h=0;h<f;h++)if(b[h]===c)continue a;b.push(c);f++}return b},lc=function(a,b){if(Array.isArray(b))for(var c=0;c<b.length;c++)lc(a,b[c]);else a.push(b);return a},mc=function(a,b){b===q&&(b=0);return-1!==this.indexOf(a,b)};Array.isArray||(Array.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)});Array.prototype.includes||(Array.prototype.includes=mc);
|
||||||
|
String.prototype.trim||(String.prototype.trim=function(){return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")});String.prototype.includes||(String.prototype.includes=mc);u.util={throttle:function(a,b){var c=b!==q?b:200,d,e;return function(){var h=this,f=+new Date,g=arguments;d&&f<d+c?(clearTimeout(e),e=setTimeout(function(){d=q;a.apply(h,g)},c)):(d=f,a.apply(h,g))}},escapeRegex:function(a){return a.replace(vc,"\\$1")},set:function(a){if(l.isPlainObject(a))return u.util.set(a._);if(null===
|
||||||
|
a)return function(){};if("function"===typeof a)return function(c,d,e){a(c,"set",d,e)};if("string"!==typeof a||-1===a.indexOf(".")&&-1===a.indexOf("[")&&-1===a.indexOf("("))return function(c,d){c[a]=d};var b=function(c,d,e){e=cb(e);var h=e[e.length-1];for(var f,g,k=0,m=e.length-1;k<m;k++){if("__proto__"===e[k]||"constructor"===e[k])throw Error("Cannot set prototype values");f=e[k].match(Fa);g=e[k].match(sa);if(f){e[k]=e[k].replace(Fa,"");c[e[k]]=[];h=e.slice();h.splice(0,k+1);f=h.join(".");if(Array.isArray(d))for(g=
|
||||||
|
0,m=d.length;g<m;g++)h={},b(h,d[g],f),c[e[k]].push(h);else c[e[k]]=d;return}g&&(e[k]=e[k].replace(sa,""),c=c[e[k]](d));if(null===c[e[k]]||c[e[k]]===q)c[e[k]]={};c=c[e[k]]}if(h.match(sa))c[h.replace(sa,"")](d);else c[h.replace(Fa,"")]=d};return function(c,d){return b(c,d,a)}},get:function(a){if(l.isPlainObject(a)){var b={};l.each(a,function(d,e){e&&(b[d]=u.util.get(e))});return function(d,e,h,f){var g=b[e]||b._;return g!==q?g(d,e,h,f):d}}if(null===a)return function(d){return d};if("function"===typeof a)return function(d,
|
||||||
|
e,h,f){return a(d,e,h,f)};if("string"!==typeof a||-1===a.indexOf(".")&&-1===a.indexOf("[")&&-1===a.indexOf("("))return function(d,e){return d[a]};var c=function(d,e,h){if(""!==h){var f=cb(h);for(var g=0,k=f.length;g<k;g++){h=f[g].match(Fa);var m=f[g].match(sa);if(h){f[g]=f[g].replace(Fa,"");""!==f[g]&&(d=d[f[g]]);m=[];f.splice(0,g+1);f=f.join(".");if(Array.isArray(d))for(g=0,k=d.length;g<k;g++)m.push(c(d[g],e,f));d=h[0].substring(1,h[0].length-1);d=""===d?m:m.join(d);break}else if(m){f[g]=f[g].replace(sa,
|
||||||
|
"");d=d[f[g]]();continue}if(null===d||d[f[g]]===q)return q;d=d[f[g]]}}return d};return function(d,e){return c(d,e,a)}}};var S=function(a,b,c){a[b]!==q&&(a[c]=a[b])},Fa=/\[.*?\]$/,sa=/\(\)$/,na=u.util.get,ha=u.util.set,jb=u.util.escapeRegex,Qa=l("<div>")[0],sc=Qa.textContent!==q,tc=/<.*?>/g,hb=u.util.throttle,nc=[],N=Array.prototype,wc=function(a){var b,c=u.settings,d=l.map(c,function(h,f){return h.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var e=
|
||||||
|
l.inArray(a,d);return-1!==e?[c[e]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=l(a):a instanceof l&&(b=a)}else return[];if(b)return b.map(function(h){e=l.inArray(this,d);return-1!==e?c[e]:null}).toArray()};var B=function(a,b){if(!(this instanceof B))return new B(a,b);var c=[],d=function(f){(f=wc(f))&&c.push.apply(c,f)};if(Array.isArray(a))for(var e=0,h=a.length;e<h;e++)d(a[e]);else d(a);this.context=Ma(c);b&&l.merge(this,b);this.selector={rows:null,
|
||||||
|
cols:null,opts:null};B.extend(this,this,nc)};u.Api=B;l.extend(B.prototype,{any:function(){return 0!==this.count()},concat:N.concat,context:[],count:function(){return this.flatten().length},each:function(a){for(var b=0,c=this.length;b<c;b++)a.call(this,this[b],b,this);return this},eq:function(a){var b=this.context;return b.length>a?new B(b[a],this[a]):null},filter:function(a){var b=[];if(N.filter)b=N.filter.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)a.call(this,this[c],c,this)&&b.push(this[c]);
|
||||||
|
return new B(this.context,b)},flatten:function(){var a=[];return new B(this.context,a.concat.apply(a,this.toArray()))},join:N.join,indexOf:N.indexOf||function(a,b){b=b||0;for(var c=this.length;b<c;b++)if(this[b]===a)return b;return-1},iterator:function(a,b,c,d){var e=[],h,f,g=this.context,k,m=this.selector;"string"===typeof a&&(d=c,c=b,b=a,a=!1);var n=0;for(h=g.length;n<h;n++){var p=new B(g[n]);if("table"===b){var t=c.call(p,g[n],n);t!==q&&e.push(t)}else if("columns"===b||"rows"===b)t=c.call(p,g[n],
|
||||||
|
this[n],n),t!==q&&e.push(t);else if("column"===b||"column-rows"===b||"row"===b||"cell"===b){var v=this[n];"column-rows"===b&&(k=Wa(g[n],m.opts));var x=0;for(f=v.length;x<f;x++)t=v[x],t="cell"===b?c.call(p,g[n],t.row,t.column,n,x):c.call(p,g[n],t,n,x,k),t!==q&&e.push(t)}}return e.length||d?(a=new B(g,a?e.concat.apply([],e):e),b=a.selector,b.rows=m.rows,b.cols=m.cols,b.opts=m.opts,a):this},lastIndexOf:N.lastIndexOf||function(a,b){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,
|
||||||
|
map:function(a){var b=[];if(N.map)b=N.map.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)b.push(a.call(this,this[c],c));return new B(this.context,b)},pluck:function(a){return this.map(function(b){return b[a]})},pop:N.pop,push:N.push,reduce:N.reduce||function(a,b){return Cb(this,a,b,0,this.length,1)},reduceRight:N.reduceRight||function(a,b){return Cb(this,a,b,this.length-1,-1,-1)},reverse:N.reverse,selector:null,shift:N.shift,slice:function(){return new B(this.context,this)},sort:N.sort,
|
||||||
|
splice:N.splice,toArray:function(){return N.slice.call(this)},to$:function(){return l(this)},toJQuery:function(){return l(this)},unique:function(){return new B(this.context,Ma(this))},unshift:N.unshift});B.extend=function(a,b,c){if(c.length&&b&&(b instanceof B||b.__dt_wrapper)){var d,e=function(g,k,m){return function(){var n=k.apply(g,arguments);B.extend(n,n,m.methodExt);return n}};var h=0;for(d=c.length;h<d;h++){var f=c[h];b[f.name]="function"===f.type?e(a,f.val,f):"object"===f.type?{}:f.val;b[f.name].__dt_wrapper=
|
||||||
|
!0;B.extend(a,b[f.name],f.propExt)}}};B.register=y=function(a,b){if(Array.isArray(a))for(var c=0,d=a.length;c<d;c++)B.register(a[c],b);else{d=a.split(".");var e=nc,h;a=0;for(c=d.length;a<c;a++){var f=(h=-1!==d[a].indexOf("()"))?d[a].replace("()",""):d[a];a:{var g=0;for(var k=e.length;g<k;g++)if(e[g].name===f){g=e[g];break a}g=null}g||(g={name:f,val:{},methodExt:[],propExt:[],type:"object"},e.push(g));a===c-1?(g.val=b,g.type="function"===typeof b?"function":l.isPlainObject(b)?"object":"other"):e=h?
|
||||||
|
g.methodExt:g.propExt}}};B.registerPlural=J=function(a,b,c){B.register(a,c);B.register(b,function(){var d=c.apply(this,arguments);return d===this?this:d instanceof B?d.length?Array.isArray(d[0])?new B(d.context,d[0]):d[0]:q:d})};var oc=function(a,b){if(Array.isArray(a))return l.map(a,function(d){return oc(d,b)});if("number"===typeof a)return[b[a]];var c=l.map(b,function(d,e){return d.nTable});return l(c).filter(a).map(function(d){d=l.inArray(this,c);return b[d]}).toArray()};y("tables()",function(a){return a!==
|
||||||
|
q&&null!==a?new B(oc(a,this.context)):this});y("table()",function(a){a=this.tables(a);var b=a.context;return b.length?new B(b[0]):a});J("tables().nodes()","table().node()",function(){return this.iterator("table",function(a){return a.nTable},1)});J("tables().body()","table().body()",function(){return this.iterator("table",function(a){return a.nTBody},1)});J("tables().header()","table().header()",function(){return this.iterator("table",function(a){return a.nTHead},1)});J("tables().footer()","table().footer()",
|
||||||
|
function(){return this.iterator("table",function(a){return a.nTFoot},1)});J("tables().containers()","table().container()",function(){return this.iterator("table",function(a){return a.nTableWrapper},1)});y("draw()",function(a){return this.iterator("table",function(b){"page"===a?ja(b):("string"===typeof a&&(a="full-hold"===a?!1:!0),ka(b,!1===a))})});y("page()",function(a){return a===q?this.page.info().page:this.iterator("table",function(b){Ra(b,a)})});y("page.info()",function(a){if(0===this.context.length)return q;
|
||||||
|
a=this.context[0];var b=a._iDisplayStart,c=a.oFeatures.bPaginate?a._iDisplayLength:-1,d=a.fnRecordsDisplay(),e=-1===c;return{page:e?0:Math.floor(b/c),pages:e?1:Math.ceil(d/c),start:b,end:a.fnDisplayEnd(),length:c,recordsTotal:a.fnRecordsTotal(),recordsDisplay:d,serverSide:"ssp"===Q(a)}});y("page.len()",function(a){return a===q?0!==this.context.length?this.context[0]._iDisplayLength:q:this.iterator("table",function(b){kb(b,a)})});var pc=function(a,b,c){if(c){var d=new B(a);d.one("draw",function(){c(d.ajax.json())})}if("ssp"==
|
||||||
|
Q(a))ka(a,b);else{V(a,!0);var e=a.jqXHR;e&&4!==e.readyState&&e.abort();Oa(a,[],function(h){Ka(a);h=Aa(a,h);for(var f=0,g=h.length;f<g;f++)ia(a,h[f]);ka(a,b);V(a,!1)})}};y("ajax.json()",function(){var a=this.context;if(0<a.length)return a[0].json});y("ajax.params()",function(){var a=this.context;if(0<a.length)return a[0].oAjaxData});y("ajax.reload()",function(a,b){return this.iterator("table",function(c){pc(c,!1===b,a)})});y("ajax.url()",function(a){var b=this.context;if(a===q){if(0===b.length)return q;
|
||||||
|
b=b[0];return b.ajax?l.isPlainObject(b.ajax)?b.ajax.url:b.ajax:b.sAjaxSource}return this.iterator("table",function(c){l.isPlainObject(c.ajax)?c.ajax.url=a:c.ajax=a})});y("ajax.url().load()",function(a,b){return this.iterator("table",function(c){pc(c,!1===b,a)})});var ub=function(a,b,c,d,e){var h=[],f,g,k;var m=typeof b;b&&"string"!==m&&"function"!==m&&b.length!==q||(b=[b]);m=0;for(g=b.length;m<g;m++){var n=b[m]&&b[m].split&&!b[m].match(/[\[\(:]/)?b[m].split(","):[b[m]];var p=0;for(k=n.length;p<k;p++)(f=
|
||||||
|
c("string"===typeof n[p]?n[p].trim():n[p]))&&f.length&&(h=h.concat(f))}a=M.selector[a];if(a.length)for(m=0,g=a.length;m<g;m++)h=a[m](d,e,h);return Ma(h)},vb=function(a){a||(a={});a.filter&&a.search===q&&(a.search=a.filter);return l.extend({search:"none",order:"current",page:"all"},a)},wb=function(a){for(var b=0,c=a.length;b<c;b++)if(0<a[b].length)return a[0]=a[b],a[0].length=1,a.length=1,a.context=[a.context[b]],a;a.length=0;return a},Wa=function(a,b){var c=[],d=a.aiDisplay;var e=a.aiDisplayMaster;
|
||||||
|
var h=b.search;var f=b.order;b=b.page;if("ssp"==Q(a))return"removed"===h?[]:ra(0,e.length);if("current"==b)for(f=a._iDisplayStart,a=a.fnDisplayEnd();f<a;f++)c.push(d[f]);else if("current"==f||"applied"==f)if("none"==h)c=e.slice();else if("applied"==h)c=d.slice();else{if("removed"==h){var g={};f=0;for(a=d.length;f<a;f++)g[d[f]]=null;c=l.map(e,function(k){return g.hasOwnProperty(k)?null:k})}}else if("index"==f||"original"==f)for(f=0,a=a.aoData.length;f<a;f++)"none"==h?c.push(f):(e=l.inArray(f,d),(-1===
|
||||||
|
e&&"removed"==h||0<=e&&"applied"==h)&&c.push(f));return c},xc=function(a,b,c){var d;return ub("row",b,function(e){var h=hc(e),f=a.aoData;if(null!==h&&!c)return[h];d||(d=Wa(a,c));if(null!==h&&-1!==l.inArray(h,d))return[h];if(null===e||e===q||""===e)return d;if("function"===typeof e)return l.map(d,function(k){var m=f[k];return e(k,m._aData,m.nTr)?k:null});if(e.nodeName){h=e._DT_RowIndex;var g=e._DT_CellIndex;if(h!==q)return f[h]&&f[h].nTr===e?[h]:[];if(g)return f[g.row]&&f[g.row].nTr===e.parentNode?
|
||||||
|
[g.row]:[];h=l(e).closest("*[data-dt-row]");return h.length?[h.data("dt-row")]:[]}if("string"===typeof e&&"#"===e.charAt(0)&&(h=a.aIds[e.replace(/^#/,"")],h!==q))return[h.idx];h=kc(Ea(a.aoData,d,"nTr"));return l(h).filter(e).map(function(){return this._DT_RowIndex}).toArray()},a,c)};y("rows()",function(a,b){a===q?a="":l.isPlainObject(a)&&(b=a,a="");b=vb(b);var c=this.iterator("table",function(d){return xc(d,a,b)},1);c.selector.rows=a;c.selector.opts=b;return c});y("rows().nodes()",function(){return this.iterator("row",
|
||||||
|
function(a,b){return a.aoData[b].nTr||q},1)});y("rows().data()",function(){return this.iterator(!0,"rows",function(a,b){return Ea(a.aoData,b,"_aData")},1)});J("rows().cache()","row().cache()",function(a){return this.iterator("row",function(b,c){b=b.aoData[c];return"search"===a?b._aFilterData:b._aSortData},1)});J("rows().invalidate()","row().invalidate()",function(a){return this.iterator("row",function(b,c){wa(b,c,a)})});J("rows().indexes()","row().index()",function(){return this.iterator("row",function(a,
|
||||||
|
b){return b},1)});J("rows().ids()","row().id()",function(a){for(var b=[],c=this.context,d=0,e=c.length;d<e;d++)for(var h=0,f=this[d].length;h<f;h++){var g=c[d].rowIdFn(c[d].aoData[this[d][h]]._aData);b.push((!0===a?"#":"")+g)}return new B(c,b)});J("rows().remove()","row().remove()",function(){var a=this;this.iterator("row",function(b,c,d){var e=b.aoData,h=e[c],f,g;e.splice(c,1);var k=0;for(f=e.length;k<f;k++){var m=e[k];var n=m.anCells;null!==m.nTr&&(m.nTr._DT_RowIndex=k);if(null!==n)for(m=0,g=n.length;m<
|
||||||
|
g;m++)n[m]._DT_CellIndex.row=k}La(b.aiDisplayMaster,c);La(b.aiDisplay,c);La(a[d],c,!1);0<b._iRecordsDisplay&&b._iRecordsDisplay--;lb(b);c=b.rowIdFn(h._aData);c!==q&&delete b.aIds[c]});this.iterator("table",function(b){for(var c=0,d=b.aoData.length;c<d;c++)b.aoData[c].idx=c});return this});y("rows.add()",function(a){var b=this.iterator("table",function(d){var e,h=[];var f=0;for(e=a.length;f<e;f++){var g=a[f];g.nodeName&&"TR"===g.nodeName.toUpperCase()?h.push(Ja(d,g)[0]):h.push(ia(d,g))}return h},1),
|
||||||
|
c=this.rows(-1);c.pop();l.merge(c,b);return c});y("row()",function(a,b){return wb(this.rows(a,b))});y("row().data()",function(a){var b=this.context;if(a===q)return b.length&&this.length?b[0].aoData[this[0]]._aData:q;var c=b[0].aoData[this[0]];c._aData=a;Array.isArray(a)&&c.nTr&&c.nTr.id&&ha(b[0].rowId)(a,c.nTr.id);wa(b[0],this[0],"data");return this});y("row().node()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]].nTr||null:null});y("row.add()",function(a){a instanceof
|
||||||
|
l&&a.length&&(a=a[0]);var b=this.iterator("table",function(c){return a.nodeName&&"TR"===a.nodeName.toUpperCase()?Ja(c,a)[0]:ia(c,a)});return this.row(b[0])});l(A).on("plugin-init.dt",function(a,b){var c=new B(b);c.on("stateSaveParams",function(d,e,h){d=c.rows().iterator("row",function(f,g){return f.aoData[g]._detailsShow?g:q});h.childRows=c.rows(d).ids(!0).toArray()});(a=c.state.loaded())&&a.childRows&&c.rows(a.childRows).every(function(){F(b,null,"requestChild",[this])})});var yc=function(a,b,c,
|
||||||
|
d){var e=[],h=function(f,g){if(Array.isArray(f)||f instanceof l)for(var k=0,m=f.length;k<m;k++)h(f[k],g);else f.nodeName&&"tr"===f.nodeName.toLowerCase()?e.push(f):(k=l("<tr><td></td></tr>").addClass(g),l("td",k).addClass(g).html(f)[0].colSpan=oa(a),e.push(k[0]))};h(c,d);b._details&&b._details.detach();b._details=l(e);b._detailsShow&&b._details.insertAfter(b.nTr)},xb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==q?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=q,a._details=
|
||||||
|
q,l(a.nTr).removeClass("dt-hasChild"),qa(c[0]))},qc=function(a,b){var c=a.context;if(c.length&&a.length){var d=c[0].aoData[a[0]];d._details&&((d._detailsShow=b)?(d._details.insertAfter(d.nTr),l(d.nTr).addClass("dt-hasChild")):(d._details.detach(),l(d.nTr).removeClass("dt-hasChild")),F(c[0],null,"childRow",[b,a.row(a[0])]),zc(c[0]),qa(c[0]))}},zc=function(a){var b=new B(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0<U(c,"_details").length&&(b.on("draw.dt.DT_details",
|
||||||
|
function(d,e){a===e&&b.rows({page:"current"}).eq(0).each(function(h){h=c[h];h._detailsShow&&h._details.insertAfter(h.nTr)})}),b.on("column-visibility.dt.DT_details",function(d,e,h,f){if(a===e)for(e=oa(e),h=0,f=c.length;h<f;h++)d=c[h],d._details&&d._details.children("td[colspan]").attr("colspan",e)}),b.on("destroy.dt.DT_details",function(d,e){if(a===e)for(d=0,e=c.length;d<e;d++)c[d]._details&&xb(b,d)}))};y("row().child()",function(a,b){var c=this.context;if(a===q)return c.length&&this.length?c[0].aoData[this[0]]._details:
|
||||||
|
q;!0===a?this.child.show():!1===a?xb(this):c.length&&this.length&&yc(c[0],c[0].aoData[this[0]],a,b);return this});y(["row().child.show()","row().child().show()"],function(a){qc(this,!0);return this});y(["row().child.hide()","row().child().hide()"],function(){qc(this,!1);return this});y(["row().child.remove()","row().child().remove()"],function(){xb(this);return this});y("row().child.isShown()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var Ac=
|
||||||
|
/^([^:]+):(name|visIdx|visible)$/,rc=function(a,b,c,d,e){c=[];d=0;for(var h=e.length;d<h;d++)c.push(T(a,e[d],b));return c},Bc=function(a,b,c){var d=a.aoColumns,e=U(d,"sName"),h=U(d,"nTh");return ub("column",b,function(f){var g=hc(f);if(""===f)return ra(d.length);if(null!==g)return[0<=g?g:d.length+g];if("function"===typeof f){var k=Wa(a,c);return l.map(d,function(p,t){return f(t,rc(a,t,0,0,k),h[t])?t:null})}var m="string"===typeof f?f.match(Ac):"";if(m)switch(m[2]){case "visIdx":case "visible":g=parseInt(m[1],
|
||||||
|
10);if(0>g){var n=l.map(d,function(p,t){return p.bVisible?t:null});return[n[n.length+g]]}return[ua(a,g)];case "name":return l.map(e,function(p,t){return p===m[1]?t:null});default:return[]}if(f.nodeName&&f._DT_CellIndex)return[f._DT_CellIndex.column];g=l(h).filter(f).map(function(){return l.inArray(this,h)}).toArray();if(g.length||!f.nodeName)return g;g=l(f).closest("*[data-dt-column]");return g.length?[g.data("dt-column")]:[]},a,c)};y("columns()",function(a,b){a===q?a="":l.isPlainObject(a)&&(b=a,
|
||||||
|
a="");b=vb(b);var c=this.iterator("table",function(d){return Bc(d,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});J("columns().header()","column().header()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTh},1)});J("columns().footer()","column().footer()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTf},1)});J("columns().data()","column().data()",function(){return this.iterator("column-rows",rc,1)});J("columns().dataSrc()",
|
||||||
|
"column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});J("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,h){return Ea(b.aoData,h,"search"===a?"_aFilterData":"_aSortData",c)},1)});J("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return Ea(a.aoData,e,"anCells",b)},1)});J("columns().visible()","column().visible()",function(a,b){var c=
|
||||||
|
this,d=this.iterator("column",function(e,h){if(a===q)return e.aoColumns[h].bVisible;var f=e.aoColumns,g=f[h],k=e.aoData,m;if(a!==q&&g.bVisible!==a){if(a){var n=l.inArray(!0,U(f,"bVisible"),h+1);f=0;for(m=k.length;f<m;f++){var p=k[f].nTr;e=k[f].anCells;p&&p.insertBefore(e[h],e[n]||null)}}else l(U(e.aoData,"anCells",h)).detach();g.bVisible=a}});a!==q&&this.iterator("table",function(e){ya(e,e.aoHeader);ya(e,e.aoFooter);e.aiDisplay.length||l(e.nTBody).find("td[colspan]").attr("colspan",oa(e));qa(e);c.iterator("column",
|
||||||
|
function(h,f){F(h,null,"column-visibility",[h,f,a,b])});(b===q||b)&&c.columns.adjust()});return d});J("columns().indexes()","column().index()",function(a){return this.iterator("column",function(b,c){return"visible"===a?va(b,c):c},1)});y("columns.adjust()",function(){return this.iterator("table",function(a){ta(a)},1)});y("column.index()",function(a,b){if(0!==this.context.length){var c=this.context[0];if("fromVisible"===a||"toData"===a)return ua(c,b);if("fromData"===a||"toVisible"===a)return va(c,b)}});
|
||||||
|
y("column()",function(a,b){return wb(this.columns(a,b))});var Cc=function(a,b,c){var d=a.aoData,e=Wa(a,c),h=kc(Ea(d,e,"anCells")),f=l(lc([],h)),g,k=a.aoColumns.length,m,n,p,t,v,x;return ub("cell",b,function(w){var r="function"===typeof w;if(null===w||w===q||r){m=[];n=0;for(p=e.length;n<p;n++)for(g=e[n],t=0;t<k;t++)v={row:g,column:t},r?(x=d[g],w(v,T(a,g,t),x.anCells?x.anCells[t]:null)&&m.push(v)):m.push(v);return m}if(l.isPlainObject(w))return w.column!==q&&w.row!==q&&-1!==l.inArray(w.row,e)?[w]:[];
|
||||||
|
r=f.filter(w).map(function(C,G){return{row:G._DT_CellIndex.row,column:G._DT_CellIndex.column}}).toArray();if(r.length||!w.nodeName)return r;x=l(w).closest("*[data-dt-row]");return x.length?[{row:x.data("dt-row"),column:x.data("dt-column")}]:[]},a,c)};y("cells()",function(a,b,c){l.isPlainObject(a)&&(a.row===q?(c=a,a=null):(c=b,b=null));l.isPlainObject(b)&&(c=b,b=null);if(null===b||b===q)return this.iterator("table",function(n){return Cc(n,a,vb(c))});var d=c?{page:c.page,order:c.order,search:c.search}:
|
||||||
|
{},e=this.columns(b,d),h=this.rows(a,d),f,g,k,m;d=this.iterator("table",function(n,p){n=[];f=0;for(g=h[p].length;f<g;f++)for(k=0,m=e[p].length;k<m;k++)n.push({row:h[p][f],column:e[p][k]});return n},1);d=c&&c.selected?this.cells(d,c):d;l.extend(d.selector,{cols:b,rows:a,opts:c});return d});J("cells().nodes()","cell().node()",function(){return this.iterator("cell",function(a,b,c){return(a=a.aoData[b])&&a.anCells?a.anCells[c]:q},1)});y("cells().data()",function(){return this.iterator("cell",function(a,
|
||||||
|
b,c){return T(a,b,c)},1)});J("cells().cache()","cell().cache()",function(a){a="search"===a?"_aFilterData":"_aSortData";return this.iterator("cell",function(b,c,d){return b.aoData[c][a][d]},1)});J("cells().render()","cell().render()",function(a){return this.iterator("cell",function(b,c,d){return T(b,c,d,a)},1)});J("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(a,b,c){return{row:b,column:c,columnVisible:va(a,c)}},1)});J("cells().invalidate()","cell().invalidate()",
|
||||||
|
function(a){return this.iterator("cell",function(b,c,d){wa(b,c,a,d)})});y("cell()",function(a,b,c){return wb(this.cells(a,b,c))});y("cell().data()",function(a){var b=this.context,c=this[0];if(a===q)return b.length&&c.length?T(b[0],c[0].row,c[0].column):q;Eb(b[0],c[0].row,c[0].column,a);wa(b[0],c[0].row,"data",c[0].column);return this});y("order()",function(a,b){var c=this.context;if(a===q)return 0!==c.length?c[0].aaSorting:q;"number"===typeof a?a=[[a,b]]:a.length&&!Array.isArray(a[0])&&(a=Array.prototype.slice.call(arguments));
|
||||||
|
return this.iterator("table",function(d){d.aaSorting=a.slice()})});y("order.listener()",function(a,b,c){return this.iterator("table",function(d){fb(d,a,b,c)})});y("order.fixed()",function(a){if(!a){var b=this.context;b=b.length?b[0].aaSortingFixed:q;return Array.isArray(b)?{pre:b}:b}return this.iterator("table",function(c){c.aaSortingFixed=l.extend(!0,{},a)})});y(["columns().order()","column().order()"],function(a){var b=this;return this.iterator("table",function(c,d){var e=[];l.each(b[d],function(h,
|
||||||
|
f){e.push([f,a])});c.aaSorting=e})});y("search()",function(a,b,c,d){var e=this.context;return a===q?0!==e.length?e[0].oPreviousSearch.sSearch:q:this.iterator("table",function(h){h.oFeatures.bFilter&&za(h,l.extend({},h.oPreviousSearch,{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),1)})});J("columns().search()","column().search()",function(a,b,c,d){return this.iterator("column",function(e,h){var f=e.aoPreSearchCols;if(a===q)return f[h].sSearch;e.oFeatures.bFilter&&
|
||||||
|
(l.extend(f[h],{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),za(e,e.oPreviousSearch,1))})});y("state()",function(){return this.context.length?this.context[0].oSavedState:null});y("state.clear()",function(){return this.iterator("table",function(a){a.fnStateSaveCallback.call(a.oInstance,a,{})})});y("state.loaded()",function(){return this.context.length?this.context[0].oLoadedState:null});y("state.save()",function(){return this.iterator("table",function(a){qa(a)})});
|
||||||
|
u.versionCheck=u.fnVersionCheck=function(a){var b=u.version.split(".");a=a.split(".");for(var c,d,e=0,h=a.length;e<h;e++)if(c=parseInt(b[e],10)||0,d=parseInt(a[e],10)||0,c!==d)return c>d;return!0};u.isDataTable=u.fnIsDataTable=function(a){var b=l(a).get(0),c=!1;if(a instanceof u.Api)return!0;l.each(u.settings,function(d,e){d=e.nScrollHead?l("table",e.nScrollHead)[0]:null;var h=e.nScrollFoot?l("table",e.nScrollFoot)[0]:null;if(e.nTable===b||d===b||h===b)c=!0});return c};u.tables=u.fnTables=function(a){var b=
|
||||||
|
!1;l.isPlainObject(a)&&(b=a.api,a=a.visible);var c=l.map(u.settings,function(d){if(!a||a&&l(d.nTable).is(":visible"))return d.nTable});return b?new B(c):c};u.camelToHungarian=P;y("$()",function(a,b){b=this.rows(b).nodes();b=l(b);return l([].concat(b.filter(a).toArray(),b.find(a).toArray()))});l.each(["on","one","off"],function(a,b){y(b+"()",function(){var c=Array.prototype.slice.call(arguments);c[0]=l.map(c[0].split(/\s/),function(e){return e.match(/\.dt\b/)?e:e+".dt"}).join(" ");var d=l(this.tables().nodes());
|
||||||
|
d[b].apply(d,c);return this})});y("clear()",function(){return this.iterator("table",function(a){Ka(a)})});y("settings()",function(){return new B(this.context,this.context)});y("init()",function(){var a=this.context;return a.length?a[0].oInit:null});y("data()",function(){return this.iterator("table",function(a){return U(a.aoData,"_aData")}).flatten()});y("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,h=b.nTBody,f=b.nTHead,
|
||||||
|
g=b.nTFoot,k=l(e);h=l(h);var m=l(b.nTableWrapper),n=l.map(b.aoData,function(t){return t.nTr}),p;b.bDestroying=!0;F(b,"aoDestroyCallback","destroy",[b]);a||(new B(b)).columns().visible(!0);m.off(".DT").find(":not(tbody *)").off(".DT");l(z).off(".DT-"+b.sInstance);e!=f.parentNode&&(k.children("thead").detach(),k.append(f));g&&e!=g.parentNode&&(k.children("tfoot").detach(),k.append(g));b.aaSorting=[];b.aaSortingFixed=[];Sa(b);l(n).removeClass(b.asStripeClasses.join(" "));l("th, td",f).removeClass(d.sSortable+
|
||||||
|
" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);h.children().detach();h.append(n);f=a?"remove":"detach";k[f]();m[f]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),k.css("width",b.sDestroyWidth).removeClass(d.sTable),(p=b.asDestroyStripes.length)&&h.children().each(function(t){l(this).addClass(b.asDestroyStripes[t%p])}));c=l.inArray(b,u.settings);-1!==c&&u.settings.splice(c,1)})});l.each(["column","row","cell"],function(a,b){y(b+"s().every()",function(c){var d=this.selector.opts,e=
|
||||||
|
this;return this.iterator(b,function(h,f,g,k,m){c.call(e[b](f,"cell"===b?g:d,"cell"===b?d:q),f,g,k,m)})})});y("i18n()",function(a,b,c){var d=this.context[0];a=na(a)(d.oLanguage);a===q&&(a=b);c!==q&&l.isPlainObject(a)&&(a=a[c]!==q?a[c]:a._);return a.replace("%d",c)});u.version="1.11.4";u.settings=[];u.models={};u.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0,"return":!1};u.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",
|
||||||
|
src:null,idx:-1};u.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};u.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,
|
||||||
|
25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,
|
||||||
|
fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},
|
||||||
|
fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",
|
||||||
|
sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:l.extend({},u.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};E(u.defaults);u.defaults.column={aDataSort:null,
|
||||||
|
iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};E(u.defaults.column);u.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,
|
||||||
|
iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],
|
||||||
|
aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,jqXHR:null,json:q,oAjaxData:q,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,
|
||||||
|
bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==Q(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==Q(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures,h=
|
||||||
|
e.bPaginate;return e.bServerSide?!1===h||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!h||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};u.ext=M={buttons:{},classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:u.fnVersionCheck,
|
||||||
|
iApiIndex:0,oJUIClasses:{},sVersion:u.version};l.extend(M,{afnFiltering:M.search,aTypes:M.type.detect,ofnSearch:M.type.search,oSort:M.type.order,afnSortData:M.order,aoFeatures:M.feature,oApi:M.internal,oStdClasses:M.classes,oPagination:M.pager});l.extend(u.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",
|
||||||
|
sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_desc_disabled",sSortableDesc:"sorting_asc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",
|
||||||
|
sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""});var ec=u.ext.pager;l.extend(ec,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[Da(a,b)]},simple_numbers:function(a,b){return["previous",Da(a,b),"next"]},
|
||||||
|
full_numbers:function(a,b){return["first","previous",Da(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",Da(a,b),"last"]},_numbers:Da,numbers_length:7});l.extend(!0,u.ext.renderer,{pageButton:{_:function(a,b,c,d,e,h){var f=a.oClasses,g=a.oLanguage.oPaginate,k=a.oLanguage.oAria.paginate||{},m,n,p=0,t=function(x,w){var r,C=f.sPageButtonDisabled,G=function(I){Ra(a,I.data.action,!0)};var aa=0;for(r=w.length;aa<r;aa++){var L=w[aa];if(Array.isArray(L)){var O=l("<"+(L.DT_el||"div")+"/>").appendTo(x);
|
||||||
|
t(O,L)}else{m=null;n=L;O=a.iTabIndex;switch(L){case "ellipsis":x.append('<span class="ellipsis">…</span>');break;case "first":m=g.sFirst;0===e&&(O=-1,n+=" "+C);break;case "previous":m=g.sPrevious;0===e&&(O=-1,n+=" "+C);break;case "next":m=g.sNext;if(0===h||e===h-1)O=-1,n+=" "+C;break;case "last":m=g.sLast;if(0===h||e===h-1)O=-1,n+=" "+C;break;default:m=a.fnFormatNumber(L+1),n=e===L?f.sPageButtonActive:""}null!==m&&(O=l("<a>",{"class":f.sPageButton+" "+n,"aria-controls":a.sTableId,"aria-label":k[L],
|
||||||
|
"data-dt-idx":p,tabindex:O,id:0===c&&"string"===typeof L?a.sTableId+"_"+L:null}).html(m).appendTo(x),ob(O,{action:L},G),p++)}}};try{var v=l(b).find(A.activeElement).data("dt-idx")}catch(x){}t(l(b).empty(),d);v!==q&&l(b).find("[data-dt-idx="+v+"]").trigger("focus")}}});l.extend(u.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return tb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!uc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||Z(a)?"date":null},function(a,
|
||||||
|
b){b=b.oLanguage.sDecimal;return tb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return Z(a)||"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);l.extend(u.ext.type.search,{html:function(a){return Z(a)?a:"string"===typeof a?a.replace(gc," ").replace(Va,""):""},string:function(a){return Z(a)?a:"string"===typeof a?a.replace(gc," "):a}});var Ua=function(a,
|
||||||
|
b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=ic(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};l.extend(M.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return Z(a)?"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return Z(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return a<b?-1:a>b?1:0},"string-desc":function(a,b){return a<
|
||||||
|
b?1:a>b?-1:0}});Xa("");l.extend(!0,u.ext.renderer,{header:{_:function(a,b,c,d){l(a.nTable).on("order.dt.DT",function(e,h,f,g){a===h&&(e=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==g[e]?d.sSortAsc:"desc"==g[e]?d.sSortDesc:c.sSortingClass))})},jqueryui:function(a,b,c,d){l("<div/>").addClass(d.sSortJUIWrapper).append(b.contents()).append(l("<span/>").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);l(a.nTable).on("order.dt.DT",function(e,h,f,g){a===h&&(e=c.idx,b.removeClass(d.sSortAsc+
|
||||||
|
" "+d.sSortDesc).addClass("asc"==g[e]?d.sSortAsc:"desc"==g[e]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"==g[e]?d.sSortJUIAsc:"desc"==g[e]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var yb=function(a){Array.isArray(a)&&(a=a.join(","));return"string"===typeof a?a.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,"""):a};u.render=
|
||||||
|
{number:function(a,b,c,d,e){return{display:function(h){if("number"!==typeof h&&"string"!==typeof h)return h;var f=0>h?"-":"",g=parseFloat(h);if(isNaN(g))return yb(h);g=g.toFixed(c);h=Math.abs(g);g=parseInt(h,10);h=c?b+(h-g).toFixed(c).substring(2):"";0===g&&0===parseFloat(h)&&(f="");return f+(d||"")+g.toString().replace(/\B(?=(\d{3})+(?!\d))/g,a)+h+(e||"")}}},text:function(){return{display:yb,filter:yb}}};l.extend(u.ext.internal,{_fnExternApiFunc:fc,_fnBuildAjax:Oa,_fnAjaxUpdate:Gb,_fnAjaxParameters:Pb,
|
||||||
|
_fnAjaxUpdateDraw:Qb,_fnAjaxDataSrc:Aa,_fnAddColumn:Ya,_fnColumnOptions:Ga,_fnAdjustColumnSizing:ta,_fnVisibleToColumnIndex:ua,_fnColumnIndexToVisible:va,_fnVisbleColumns:oa,_fnGetColumns:Ia,_fnColumnTypes:$a,_fnApplyColumnDefs:Db,_fnHungarianMap:E,_fnCamelToHungarian:P,_fnLanguageCompat:ma,_fnBrowserDetect:Bb,_fnAddData:ia,_fnAddTr:Ja,_fnNodeToDataIndex:function(a,b){return b._DT_RowIndex!==q?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return l.inArray(c,a.aoData[b].anCells)},_fnGetCellData:T,
|
||||||
|
_fnSetCellData:Eb,_fnSplitObjNotation:cb,_fnGetObjectDataFn:na,_fnSetObjectDataFn:ha,_fnGetDataMaster:db,_fnClearTable:Ka,_fnDeleteIndex:La,_fnInvalidate:wa,_fnGetRowElements:bb,_fnCreateTr:ab,_fnBuildHead:Fb,_fnDrawHead:ya,_fnDraw:ja,_fnReDraw:ka,_fnAddOptionsHtml:Ib,_fnDetectHeader:xa,_fnGetUniqueThs:Na,_fnFeatureHtmlFilter:Kb,_fnFilterComplete:za,_fnFilterCustom:Tb,_fnFilterColumn:Sb,_fnFilter:Rb,_fnFilterCreateSearch:ib,_fnEscapeRegex:jb,_fnFilterData:Ub,_fnFeatureHtmlInfo:Nb,_fnUpdateInfo:Xb,
|
||||||
|
_fnInfoMacros:Yb,_fnInitialise:Ba,_fnInitComplete:Pa,_fnLengthChange:kb,_fnFeatureHtmlLength:Jb,_fnFeatureHtmlPaginate:Ob,_fnPageChange:Ra,_fnFeatureHtmlProcessing:Lb,_fnProcessingDisplay:V,_fnFeatureHtmlTable:Mb,_fnScrollDraw:Ha,_fnApplyToChildren:ca,_fnCalculateColumnWidths:Za,_fnThrottle:hb,_fnConvertToWidth:Zb,_fnGetWidestNode:$b,_fnGetMaxLenString:ac,_fnStringToCss:K,_fnSortFlatten:pa,_fnSort:Hb,_fnSortAria:cc,_fnSortListener:nb,_fnSortAttachListener:fb,_fnSortingClasses:Sa,_fnSortData:bc,_fnSaveState:qa,
|
||||||
|
_fnLoadState:dc,_fnImplementState:pb,_fnSettingsFromNode:Ta,_fnLog:da,_fnMap:X,_fnBindAction:ob,_fnCallbackReg:R,_fnCallbackFire:F,_fnLengthOverflow:lb,_fnRenderer:gb,_fnDataSource:Q,_fnRowAttributes:eb,_fnExtend:qb,_fnCalculateEnd:function(){}});l.fn.dataTable=u;u.$=l;l.fn.dataTableSettings=u.settings;l.fn.dataTableExt=u.ext;l.fn.DataTable=function(a){return l(this).dataTable(a).api()};l.each(u,function(a,b){l.fn.DataTable[a]=b});return u});
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<version>1.11.4</version>
|
||||||
|
<id>datatables.net</id>
|
||||||
|
<description>This is jQuery DataTables</description>
|
||||||
|
<repository type="git" url="https://github.com/DataTables/Dist-DataTables.git"/>
|
||||||
|
<authors>SpryMedia Ltd</authors>
|
||||||
|
<projectUrl>http://datatables.net</projectUrl>
|
||||||
|
<license type="expression">MIT</license>
|
||||||
|
<tags> Datatables jQuery table</tags>
|
||||||
|
<dependencies>
|
||||||
|
<dependency id="jquery" version="1.7.0"/>
|
||||||
|
</dependencies>
|
||||||
|
<contentFiles>
|
||||||
|
<files include="**/*" buildAction="Content"/>
|
||||||
|
</contentFiles>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="js/jquery.dataTables.js" target="content\Scripts"/>
|
||||||
|
<file src="js/jquery.dataTables.js" target="contentFiles\any\any\wwwroot\js"/>
|
||||||
|
<file src="js/jquery.dataTables.min.js" target="content\Scripts"/>
|
||||||
|
<file src="js/jquery.dataTables.min.js" target="contentFiles\any\any\wwwroot\js"/>
|
||||||
|
<file src="types/types.d.ts" target="content\Scripts"/>
|
||||||
|
<file src="types/types.d.ts" target="contentFiles\any\any\wwwroot\js"/>
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
|
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"name": "datatables.net",
|
||||||
|
"version": "1.10.21",
|
||||||
|
"lockfileVersion": 1,
|
||||||
|
"requires": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@types/jquery": {
|
||||||
|
"version": "3.5.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.1.tgz",
|
||||||
|
"integrity": "sha512-Tyctjh56U7eX2b9udu3wG853ASYP0uagChJcQJXLUXEU6C/JiW5qt5dl8ao01VRj1i5pgXPAf8f1mq4+FDLRQg==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"@types/sizzle": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"@types/sizzle": {
|
||||||
|
"version": "2.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz",
|
||||||
|
"integrity": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==",
|
||||||
|
"dev": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+2687
File diff suppressed because it is too large
Load Diff
+2714
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"name": "dropzone",
|
||||||
|
"homepage": "https://github.com/enyo/dropzone",
|
||||||
|
"version": "5.9.3",
|
||||||
|
"_release": "5.9.3",
|
||||||
|
"_resolution": {
|
||||||
|
"type": "version",
|
||||||
|
"tag": "v5.9.3",
|
||||||
|
"commit": "d67a484444d7493485cc6ef47001d876830c5d04"
|
||||||
|
},
|
||||||
|
"_source": "https://github.com/enyo/dropzone.git",
|
||||||
|
"_target": "^5.9.3",
|
||||||
|
"_originalSource": "dropzone",
|
||||||
|
"_direct": true
|
||||||
|
}
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: [enyo] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||||
|
# patreon: # Replace with a single Patreon username
|
||||||
|
# open_collective: # Replace with a single Open Collective username
|
||||||
|
# ko_fi: # Replace with a single Ko-fi username
|
||||||
|
# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||||
|
# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||||
|
# liberapay: # Replace with a single Liberapay username
|
||||||
|
# issuehunt: # Replace with a single IssueHunt username
|
||||||
|
# otechie: # Replace with a single Otechie username
|
||||||
|
# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
**Browser / OS:**
|
||||||
|
- OS & Device: [e.g. iOS 14 on iPhone X]
|
||||||
|
- Browser [e.g. chrome, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Please submit feature requests in the Discussion tab! I will close issues that are feature requests.
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
# This workflow will do a clean install of node dependencies, build the source
|
||||||
|
# code and run tests across different versions of node.
|
||||||
|
#
|
||||||
|
# In case there is a new version in package.json and it's the main branch, it
|
||||||
|
# will also tag and release this version.
|
||||||
|
|
||||||
|
name: Test and Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
test:
|
||||||
|
name: Test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Setup Node.js environment
|
||||||
|
uses: actions/setup-node@v2.1.1
|
||||||
|
- name: Checkout Dropzone
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- run: yarn install
|
||||||
|
- run: yarn test
|
||||||
|
|
||||||
|
# Auto tag when the package.json version has changed. A different job will see
|
||||||
|
# this tag, publish it, and create a release for it.
|
||||||
|
tag:
|
||||||
|
name: Tag if package.json version increased
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
needs: [test]
|
||||||
|
outputs:
|
||||||
|
tagname: ${{ steps.auto_tag.outputs.tagname }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout Dropzone
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Auto tag
|
||||||
|
id: auto_tag
|
||||||
|
uses: Klemensas/action-autotag@1.2.3
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
with:
|
||||||
|
tag_prefix: v
|
||||||
|
tag_message: "Please check the changelog for a list of changes"
|
||||||
|
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: Build dist files
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
needs: [test]
|
||||||
|
steps:
|
||||||
|
- name: Setup Node.js environment
|
||||||
|
uses: actions/setup-node@v2.1.1
|
||||||
|
- name: Checkout Dropzone
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- run: yarn install
|
||||||
|
- name: Read package.json version
|
||||||
|
uses: pchynoweth/action-get-npm-version@1.0.1
|
||||||
|
id: package_version
|
||||||
|
- name: Inject package version into javascript file
|
||||||
|
uses: jacobtomlinson/gha-find-replace@master
|
||||||
|
id: version_replace
|
||||||
|
with:
|
||||||
|
include: "src/dropzone.js"
|
||||||
|
find: "version = \"dev\""
|
||||||
|
replace: "version = \"${{ steps.package_version.outputs.version }}\""
|
||||||
|
- name: Abort if version wasn't replaced
|
||||||
|
if: steps.version_replace.outputs.modifiedFiles != 1
|
||||||
|
run: exit 1
|
||||||
|
- run: yarn build
|
||||||
|
- name: Upload dist folder in case of release
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
path: dist
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: Create GitHub release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [build, tag]
|
||||||
|
if: github.ref == 'refs/heads/main' && needs.tag.outputs.tagname != null
|
||||||
|
steps:
|
||||||
|
- name: Checkout Dropzone
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Download dist folder
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
path: dist
|
||||||
|
- name: Compress dist folder
|
||||||
|
run: zip dist -r dist
|
||||||
|
- name: Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: "${{ needs.tag.outputs.tagname }}"
|
||||||
|
release_name: "Release ${{ needs.tag.outputs.tagname }}"
|
||||||
|
body: "Please check the [changelog](https://github.com/dropzone/dropzone/blob/${{ github.sha }}/CHANGELOG.md) for a list of changes"
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
- name: Upload Release Asset
|
||||||
|
id: upload-release-asset
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./dist.zip
|
||||||
|
asset_name: dist.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|
||||||
|
|
||||||
|
npm-publish:
|
||||||
|
name: Publish new version to npm
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [build,release]
|
||||||
|
steps:
|
||||||
|
- name: Checkout Dropzone
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Download dist folder
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
path: dist
|
||||||
|
- name: Publish
|
||||||
|
uses: JS-DevTools/npm-publish@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.NPM_TOKEN }}
|
||||||
|
|
||||||
|
trigger-remote-releases:
|
||||||
|
name: Dispatch the "new-release" event to packagist and bower repo
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [tag,release]
|
||||||
|
steps:
|
||||||
|
- name: Dispatch "new-release" event to the dropzone-packagist repo.
|
||||||
|
uses: peter-evans/repository-dispatch@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.DRONE_PAT }}
|
||||||
|
repository: dropzone/dropzone-packagist
|
||||||
|
event-type: new-release
|
||||||
|
client-payload: '{"releaseTag": "${{ needs.tag.outputs.tagname }}"}'
|
||||||
|
- name: Dispatch "new-release" event to the dropzone-bower repo.
|
||||||
|
uses: peter-evans/repository-dispatch@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.DRONE_PAT }}
|
||||||
|
repository: dropzone/dropzone-bower
|
||||||
|
event-type: new-release
|
||||||
|
client-payload: '{"releaseTag": "${{ needs.tag.outputs.tagname }}"}'
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
build
|
||||||
|
components
|
||||||
|
node_modules
|
||||||
|
.DS_Store
|
||||||
|
.sass-cache
|
||||||
|
_site
|
||||||
|
_config.yaml
|
||||||
|
.idea
|
||||||
|
dist
|
||||||
|
|
||||||
|
# The GitLab pages artifacts
|
||||||
|
public
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
.github
|
||||||
|
.sass-cache
|
||||||
|
.idea
|
||||||
|
tool
|
||||||
|
test
|
||||||
|
babel.config.js
|
||||||
|
webpack.config.js
|
||||||
|
CONTRIBUTING.md
|
||||||
@@ -0,0 +1,167 @@
|
|||||||
|
## 5.9.3
|
||||||
|
|
||||||
|
- Fix incorrect resize method used for creating thumbnails of existing files
|
||||||
|
(thanks to @gplwhite)
|
||||||
|
|
||||||
|
## 5.9.2
|
||||||
|
|
||||||
|
- Handle `xhr.readyState` in the `submitRequest` function and don't attempt to
|
||||||
|
send if it's not `1` (OPENED). (thanks to @bobbysmith007)
|
||||||
|
|
||||||
|
## 5.9.1
|
||||||
|
|
||||||
|
- Fix the way upload progress is calculated when using chunked uploads. (thanks
|
||||||
|
to @ckovey)
|
||||||
|
|
||||||
|
## 5.9.0
|
||||||
|
|
||||||
|
- Properly handle when timeout is null or 0
|
||||||
|
- Make the default of timeout null
|
||||||
|
|
||||||
|
## 5.8.1
|
||||||
|
|
||||||
|
- Fix custom event polyfill for IE11
|
||||||
|
- Fix build to use ES5 instead of ES6, which was broken due to webpack upgrade.
|
||||||
|
(thanks to @fukayatsu)
|
||||||
|
|
||||||
|
## 5.8.0
|
||||||
|
|
||||||
|
- Dropzone now also triggers custom events on the DOM element. The custom events
|
||||||
|
are the same as the events you can listen on with Dropzone but start with
|
||||||
|
`dropzone:`. (thanks to @1cg)
|
||||||
|
- Moved the `./src/options.js` previewTemplate in its own
|
||||||
|
`preview-template.html` file.
|
||||||
|
- Switched to yarn as the primary package manager (shouldn't affect anybody that
|
||||||
|
is not working Dropzone itself).
|
||||||
|
|
||||||
|
## 5.7.6
|
||||||
|
|
||||||
|
- Revert `dist/min/*.css` files to be named `dist/min/*.min.css`.
|
||||||
|
- Setup bower releases.
|
||||||
|
|
||||||
|
## 5.7.5
|
||||||
|
|
||||||
|
- Rename `blacklistedBrowsers` to `blockedBrowsers` (but still accept
|
||||||
|
`blacklistedBrowsers` for legacy).
|
||||||
|
- Add automatic trigger for packagist deployment.
|
||||||
|
- Fix links in `package.json`.
|
||||||
|
|
||||||
|
## 5.7.4
|
||||||
|
|
||||||
|
- Prevent hidden input field from getting focus (thanks to @sinedied)
|
||||||
|
- Fix documentation of `maxFilesize` (thanks to @alxndr-w)
|
||||||
|
- Fix build issues so the UMD module can be imported properly
|
||||||
|
|
||||||
|
## 5.7.3 (retracted)
|
||||||
|
|
||||||
|
- Add `disablePreviews` option.
|
||||||
|
- Fix IE problems with Symbols.
|
||||||
|
- **WARNING**: This release had issues because the .js files couldn't be
|
||||||
|
imported as AMD/CommonJS packages properly. The standalone version worked fine
|
||||||
|
though. I have retracted this version from npm but have left the release on
|
||||||
|
GitHub.
|
||||||
|
|
||||||
|
## 5.7.2
|
||||||
|
|
||||||
|
- Base the calculation of the chunks to send on the transformed files
|
||||||
|
- Properly display seconds (instead of ms) in error message when timeout is
|
||||||
|
reached
|
||||||
|
- Properly handle it when `options.method` is a function (there was a bug, which
|
||||||
|
always assumed that it was a String) (thanks to @almdac)
|
||||||
|
- Fix orientation on devices that already handle it properly (thanks to @nosegrind)
|
||||||
|
- Handle additionalParams when they are an Array the way it's expected (thanks to @wiz78)
|
||||||
|
- Check for `string` in error message type instead of `String` (thanks to @RuQuentin)
|
||||||
|
|
||||||
|
## 5.7.1
|
||||||
|
|
||||||
|
- Fix issue with IE (thanks to @Bjego)
|
||||||
|
|
||||||
|
## 5.7.0
|
||||||
|
|
||||||
|
- Cleanup the SVGs used to remove IDs and sketch attributes
|
||||||
|
Since SVGs are duplicated this resulted in duplicate IDs being used.
|
||||||
|
- Add a dedicated `displayExistingFile` method to make it easier to display
|
||||||
|
server files.
|
||||||
|
- Fix an error where chunked uploads don't work as expected when transforming
|
||||||
|
files before uploading.
|
||||||
|
- Make the default text a button so it's discoverable by keyboard.
|
||||||
|
|
||||||
|
## 5.6.1
|
||||||
|
|
||||||
|
- Re-released due to missing javascript files
|
||||||
|
- Removes `npm` dependency that got added by mistake
|
||||||
|
|
||||||
|
## 5.6.0
|
||||||
|
|
||||||
|
- Timeout now generates an error (thanks to @mmollick)
|
||||||
|
- Fix duplicate iteration of error processing (#159 thanks @darkland)
|
||||||
|
- Fixed bootstrap example (@thanks to @polosatus)
|
||||||
|
- The `addedfiles` event now triggers _after_ each individual `addedfile` event
|
||||||
|
when dragging files into the dropzone, which is the same behavior as when
|
||||||
|
clicking it.
|
||||||
|
|
||||||
|
## 5.5.0
|
||||||
|
|
||||||
|
- Correct photo orientation before uploading (if enabled) (thanks to @nosegrind)
|
||||||
|
- Remove a potential memory leak in some browsers by keeping a reference to `xhr` inside the individual
|
||||||
|
chunk objects (thanks to @clayton2)
|
||||||
|
- Allow HTML in the remove links (thanks to @christianklemp)
|
||||||
|
- `hiddenInputContainer` can now be an `HtmlElement` in addition to a selector String (thanks to @WAmeling)
|
||||||
|
- Fix default values on website (since the last deployment, the default values all stated `null`)
|
||||||
|
|
||||||
|
## 5.4.0
|
||||||
|
|
||||||
|
- Fix IE11 issue when dropping files
|
||||||
|
|
||||||
|
## 5.3.1
|
||||||
|
|
||||||
|
- Fix broken npm release of 5.3.0
|
||||||
|
|
||||||
|
## 5.3.0
|
||||||
|
|
||||||
|
- Add `dictUploadCanceled` option (thanks to @Fohlen)
|
||||||
|
- Fix issue with drag'n'drop on Safari and IE10 (thanks to @taylorryan)
|
||||||
|
- Fix issues with resizing if SVG files are dropped (thanks to @saschagros)
|
||||||
|
|
||||||
|
## 5.2.0
|
||||||
|
|
||||||
|
- **Migrated from coffeescript to ES6!**
|
||||||
|
- **Added chunked file uploading!** The highly requested chunked uploads are now available. Checkout the
|
||||||
|
`chunking` option documentation for more information.
|
||||||
|
- Fixed a faulty `console.warning` (should be `console.warn`)
|
||||||
|
- If an input field doesn't have a name, don't include it when sending the form (thanks to @remyj38)
|
||||||
|
- Opera on Windows Phone is now also blacklisted (thanks to @dracos1)
|
||||||
|
- If a custom preview element is used, it is now properly handled when it doesn't have a parent (thanks to @uNmAnNeR)
|
||||||
|
|
||||||
|
## 5.1.1
|
||||||
|
|
||||||
|
- Fix issue where showing files already on the server fails, due to the missing `file.upload.filename`
|
||||||
|
- Fix issue where `file.upload.filename` gets removed after the file uploaded completed
|
||||||
|
- Properly handle `arraybuffer` and `blob` responses
|
||||||
|
|
||||||
|
## 5.1.0
|
||||||
|
|
||||||
|
- Add possibility to translate file sizes. (#16 thanks to @lerarybak for that)
|
||||||
|
- Fix duplicate filenames in multiple file uploads (#15)
|
||||||
|
- The `renameFilename` option has been **deprecated**. Use `renameFile` instead
|
||||||
|
(which also has a slightly different function signature)
|
||||||
|
- The `renameFile` option now stores the new name in `file.upload.filename` (#1)
|
||||||
|
|
||||||
|
## 5.0.1
|
||||||
|
|
||||||
|
- Add missing dist/ folder to npm.
|
||||||
|
|
||||||
|
## 5.0.0
|
||||||
|
|
||||||
|
- **Add support for browser image resizing!** Yes, really. The new options are: `resizeWidth`, `resizeHeight`, `resizeMimeType` and `resizeQuality`.
|
||||||
|
Thanks a lot to [MD Systems](https://www.md-systems.ch/) for donating the money to make this a reality.
|
||||||
|
- Fix IE11 issue with `options.timeout`
|
||||||
|
- Resolve an issue that occurs in the iOS squashed image fix, where some transparent PNGs are stretched inaccurately
|
||||||
|
|
||||||
|
## 4.4.0
|
||||||
|
|
||||||
|
- Add `options.timeout`
|
||||||
|
|
||||||
|
## 4.3.0
|
||||||
|
|
||||||
|
Added Changelog. Sorry that this didn't happen sooner.
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
# Contributor Covenant Code of Conduct
|
||||||
|
|
||||||
|
## Our Pledge
|
||||||
|
|
||||||
|
In the interest of fostering an open and welcoming environment, we as
|
||||||
|
contributors and maintainers pledge to making participation in our project and
|
||||||
|
our community a harassment-free experience for everyone, regardless of age, body
|
||||||
|
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
||||||
|
level of experience, education, socio-economic status, nationality, personal
|
||||||
|
appearance, race, religion, or sexual identity and orientation.
|
||||||
|
|
||||||
|
## Our Standards
|
||||||
|
|
||||||
|
Examples of behavior that contributes to creating a positive environment
|
||||||
|
include:
|
||||||
|
|
||||||
|
* Using welcoming and inclusive language
|
||||||
|
* Being respectful of differing viewpoints and experiences
|
||||||
|
* Gracefully accepting constructive criticism
|
||||||
|
* Focusing on what is best for the community
|
||||||
|
* Showing empathy towards other community members
|
||||||
|
|
||||||
|
Examples of unacceptable behavior by participants include:
|
||||||
|
|
||||||
|
* The use of sexualized language or imagery and unwelcome sexual attention or
|
||||||
|
advances
|
||||||
|
* Trolling, insulting/derogatory comments, and personal or political attacks
|
||||||
|
* Public or private harassment
|
||||||
|
* Publishing others' private information, such as a physical or electronic
|
||||||
|
address, without explicit permission
|
||||||
|
* Other conduct which could reasonably be considered inappropriate in a
|
||||||
|
professional setting
|
||||||
|
|
||||||
|
## Our Responsibilities
|
||||||
|
|
||||||
|
Project maintainers are responsible for clarifying the standards of acceptable
|
||||||
|
behavior and are expected to take appropriate and fair corrective action in
|
||||||
|
response to any instances of unacceptable behavior.
|
||||||
|
|
||||||
|
Project maintainers have the right and responsibility to remove, edit, or
|
||||||
|
reject comments, commits, code, wiki edits, issues, and other contributions
|
||||||
|
that are not aligned to this Code of Conduct, or to ban temporarily or
|
||||||
|
permanently any contributor for other behaviors that they deem inappropriate,
|
||||||
|
threatening, offensive, or harmful.
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
This Code of Conduct applies both within project spaces and in public spaces
|
||||||
|
when an individual is representing the project or its community. Examples of
|
||||||
|
representing a project or community include using an official project e-mail
|
||||||
|
address, posting via an official social media account, or acting as an appointed
|
||||||
|
representative at an online or offline event. Representation of a project may be
|
||||||
|
further defined and clarified by project maintainers.
|
||||||
|
|
||||||
|
## Enforcement
|
||||||
|
|
||||||
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||||
|
reported by contacting the project team at m@tias.me. All
|
||||||
|
complaints will be reviewed and investigated and will result in a response that
|
||||||
|
is deemed necessary and appropriate to the circumstances. The project team is
|
||||||
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
||||||
|
Further details of specific enforcement policies may be posted separately.
|
||||||
|
|
||||||
|
Project maintainers who do not follow or enforce the Code of Conduct in good
|
||||||
|
faith may face temporary or permanent repercussions as determined by other
|
||||||
|
members of the project's leadership.
|
||||||
|
|
||||||
|
## Attribution
|
||||||
|
|
||||||
|
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
||||||
|
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
||||||
|
|
||||||
|
[homepage]: https://www.contributor-covenant.org
|
||||||
|
|
||||||
|
For answers to common questions about this code of conduct, see
|
||||||
|
https://www.contributor-covenant.org/faq
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
Contribute
|
||||||
|
==========
|
||||||
|
|
||||||
|
> **I'm in the process of making some substantial changes to this library,
|
||||||
|
> so please DO NOT create any PRs. I will simply close them.**
|
||||||
|
|
||||||
|
|
||||||
|
When I'm done, these rules will apply:
|
||||||
|
|
||||||
|
|
||||||
|
Communicate
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Before you start implementing new features, please create an issue about it
|
||||||
|
first and discuss your intent.
|
||||||
|
|
||||||
|
It might be something that someone else is already implementing or that goes
|
||||||
|
against the concepts of Dropzone, and I really hate rejecting pull requests
|
||||||
|
others spent hours writing on.
|
||||||
|
|
||||||
|
|
||||||
|
Developer Dependencies
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
The first thing you need to do, is to install the developer dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ yarn install
|
||||||
|
```
|
||||||
|
|
||||||
|
This will install all the tools you need to compile the source files and to test
|
||||||
|
the library.
|
||||||
|
|
||||||
|
|
||||||
|
ECMAScript 6 & Sass (-> Javascript & CSS)
|
||||||
|
------------------------------------------
|
||||||
|
|
||||||
|
Since June 2017, Dropzone is written in [ECMAScript
|
||||||
|
6](https://babeljs.io/learn-es2015/) and [Sass](http://sass-lang.com/).
|
||||||
|
|
||||||
|
|
||||||
|
Testing
|
||||||
|
-------
|
||||||
|
|
||||||
|
To test the library simply run `yarn test`.
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
LICENSE
|
||||||
|
|
||||||
|
(The MIT License)
|
||||||
|
|
||||||
|
Copyright (c) 2021 Matias Meno <m@tias.me>
|
||||||
|
Logo (c) 2015 "1910" www.weare1910.com
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
<img alt="Dropzone.js" src="https://raw.githubusercontent.com/dropzone/dropzone/assets/github-logo.svg" />
|
||||||
|
|
||||||
|
[](https://github.com/dropzone/dropzone/actions/workflows/test-and-release.yml)
|
||||||
|
|
||||||
|
Dropzone is a JavaScript library that turns any HTML element into a dropzone.
|
||||||
|
This means that a user can drag and drop a file onto it, and Dropzone will
|
||||||
|
display file previews and upload progress, and handle the upload for you via
|
||||||
|
XHR.
|
||||||
|
|
||||||
|
It's fully configurable and can be styled according to your needs.
|
||||||
|
|
||||||
|
Quickstart
|
||||||
|
----------
|
||||||
|
|
||||||
|
- [📚 Full documentation](https://dropzone.gitbook.io/dropzone/)
|
||||||
|
- [💾 Download
|
||||||
|
link](https://github.com/dropzone/dropzone/releases/latest/download/dist.zip)
|
||||||
|
containing JavaScript UMD modules and CSS files (full and minimised)
|
||||||
|
- [⚙️ `src/options.js`](https://github.com/dropzone/dropzone/blob/main/src/options.js)
|
||||||
|
for all available options
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img alt="Dropzone Screenshot" width="568" src="https://github.com/dropzone/dropzone/raw/a19faf6c3aef5d3d7f912ca988cc62af1967d5d9/dropzone-preview.png" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Community
|
||||||
|
---------
|
||||||
|
|
||||||
|
If you need support please use the [discussions section][discussions] or
|
||||||
|
[stackoverflow][so] with the `dropzone.js` tag and **not** the GitHub issues
|
||||||
|
tracker. Only post an issue here if you think you discovered a bug.
|
||||||
|
|
||||||
|
If you have a feature request or want to discuss something, please use the
|
||||||
|
[discussions][] as well.
|
||||||
|
|
||||||
|
[discussions]: https://github.com/dropzone/dropzone/discussions
|
||||||
|
[so]: https://stackoverflow.com/questions/tagged/dropzone.js
|
||||||
|
|
||||||
|
|
||||||
|
> ⚠️ **Please read the [contributing guidelines](CONTRIBUTING.md) before you start
|
||||||
|
> working on Dropzone!**
|
||||||
|
|
||||||
|
|
||||||
|
Main features
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Beautiful by default
|
||||||
|
- Image thumbnail previews. Simply register the callback `thumbnail(file, data)`
|
||||||
|
and display the image wherever you like
|
||||||
|
- Retina enabled
|
||||||
|
- Multiple files and synchronous uploads
|
||||||
|
- Progress updates
|
||||||
|
- Support for large files
|
||||||
|
- Complete theming. The look and feel of Dropzone is just the default theme. You
|
||||||
|
can define everything yourself by overwriting the default event listeners.
|
||||||
|
- Browser image resizing (resize the images before you upload them to your
|
||||||
|
server)
|
||||||
|
- Well tested
|
||||||
|
|
||||||
|
# MIT License
|
||||||
|
|
||||||
|
See LICENSE file
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
module.exports = function (api) {
|
||||||
|
api.cache(true);
|
||||||
|
const presets = [
|
||||||
|
[
|
||||||
|
"@babel/preset-env",
|
||||||
|
{
|
||||||
|
corejs: {
|
||||||
|
version: "3.8",
|
||||||
|
proposals: false,
|
||||||
|
},
|
||||||
|
useBuiltIns: "usage",
|
||||||
|
// The target is specified in the package.json "browserslist"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
];
|
||||||
|
const plugins = [
|
||||||
|
["@babel/plugin-transform-for-of", { allowArrayLike: true }],
|
||||||
|
];
|
||||||
|
return {
|
||||||
|
presets,
|
||||||
|
plugins,
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"name": "enyo/dropzone",
|
||||||
|
"description": "Handles drag and drop of files for you.",
|
||||||
|
"homepage": "http://www.dropzonejs.com",
|
||||||
|
"keywords": [
|
||||||
|
"dragndrop",
|
||||||
|
"drag and drop",
|
||||||
|
"file upload",
|
||||||
|
"upload"
|
||||||
|
],
|
||||||
|
"authors": [{
|
||||||
|
"name": "Matias Meno",
|
||||||
|
"email": "m@tias.me",
|
||||||
|
"homepage": "http://www.matiasmeno.com"
|
||||||
|
}],
|
||||||
|
"license": "MIT",
|
||||||
|
"minimum-stability": "dev"
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"name": "dropzone",
|
||||||
|
"version": "5.9.3",
|
||||||
|
"description": "Handles drag and drop of files for you.",
|
||||||
|
"keywords": [
|
||||||
|
"dragndrop",
|
||||||
|
"drag and drop",
|
||||||
|
"file upload",
|
||||||
|
"upload"
|
||||||
|
],
|
||||||
|
"homepage": "http://www.dropzonejs.com",
|
||||||
|
"main": "./dist/dropzone.js",
|
||||||
|
"browserslist": "defaults, > 0.25%, IE 11",
|
||||||
|
"maintainers": [
|
||||||
|
{
|
||||||
|
"name": "Matias Meno",
|
||||||
|
"email": "m@tias.me",
|
||||||
|
"web": "https://www.yesmeno.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "Matias Meno",
|
||||||
|
"email": "m@tias.me",
|
||||||
|
"web": "https://www.yesmeno.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"build": "webpack && cp dist/dropzone.js dist/dropzone-amd-module.js && cp dist/min/dropzone.min.js dist/min/dropzone-amd-module.min.js",
|
||||||
|
"test": "karma start --single-run --browsers ChromeHeadless test/karma.conf.js",
|
||||||
|
"build-website": "grunt build-website"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"email": "m@tias.me",
|
||||||
|
"url": "https://github.com/dropzone/dropzone/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/dropzone/dropzone.git"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.11.0",
|
||||||
|
"@babel/preset-env": "^7.11.0",
|
||||||
|
"babel-loader": "^8.0.0",
|
||||||
|
"chai": "4.3.0",
|
||||||
|
"core-js": "^3.8.0",
|
||||||
|
"css-loader": "^5.0.2",
|
||||||
|
"extract-loader": "^5.1.0",
|
||||||
|
"file-loader": "^6.2.0",
|
||||||
|
"html-loader": "^2.1.0",
|
||||||
|
"karma": "^6.1.0",
|
||||||
|
"karma-chrome-launcher": "^3.1.0",
|
||||||
|
"karma-mocha": "^2.0.1",
|
||||||
|
"karma-rollup-preprocessor": "^7.0.5",
|
||||||
|
"karma-sinon-chai": "^2.0.2",
|
||||||
|
"karma-spec-reporter": "^0.0.32",
|
||||||
|
"marked": "^2.0.0",
|
||||||
|
"mocha": "^8.3.0",
|
||||||
|
"mocha-headless-chrome": "^3.0.0",
|
||||||
|
"rollup": "^2.38.4",
|
||||||
|
"rollup-plugin-html": "^0.2.1",
|
||||||
|
"sass": "^1.33.0",
|
||||||
|
"sass-loader": "^11.0.1",
|
||||||
|
"sinon": "^9.2.4",
|
||||||
|
"sinon-chai": "^3.5.0",
|
||||||
|
"webpack": "^5.23.0",
|
||||||
|
"webpack-cli": "^4.5.0",
|
||||||
|
"webpack-shell-plugin-next": "^2.1.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
*.css
|
||||||
|
*.map
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
@use "sass:math";
|
||||||
|
|
||||||
|
.dropzone, .dropzone * {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.dropzone {
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.dz-preview {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: 120px;
|
||||||
|
margin: 0.5em;
|
||||||
|
|
||||||
|
.dz-progress {
|
||||||
|
display: block;
|
||||||
|
height: 15px;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
.dz-upload {
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
width: 0;
|
||||||
|
background: green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-error-message {
|
||||||
|
color: red;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
&.dz-error {
|
||||||
|
.dz-error-message, .dz-error-mark {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.dz-success {
|
||||||
|
.dz-success-mark {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-error-mark, .dz-success-mark {
|
||||||
|
position: absolute;
|
||||||
|
display: none;
|
||||||
|
left: 30px;
|
||||||
|
top: 30px;
|
||||||
|
width: 54px;
|
||||||
|
height: 58px;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -(math.div(54px, 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,400 @@
|
|||||||
|
@use "sass:math";
|
||||||
|
|
||||||
|
@mixin keyframes($name) {
|
||||||
|
@-webkit-keyframes #{$name} {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
@-moz-keyframes #{$name} {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
@keyframes #{$name} {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@mixin prefix($map, $vendors: webkit moz ms o) {
|
||||||
|
@each $prop, $value in $map {
|
||||||
|
@if $vendors {
|
||||||
|
@each $vendor in $vendors {
|
||||||
|
#{"-" + $vendor + "-" + $prop}: #{$value};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Dump regular property anyway
|
||||||
|
#{$prop}: #{$value};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@include keyframes(passing-through) {
|
||||||
|
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
@include prefix((transform: translateY(40px)));
|
||||||
|
}
|
||||||
|
|
||||||
|
30%, 70% {
|
||||||
|
opacity: 1;
|
||||||
|
@include prefix((transform: translateY(0px)));
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
@include prefix((transform: translateY(-40px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@include keyframes(slide-in) {
|
||||||
|
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
@include prefix((transform: translateY(40px)));
|
||||||
|
}
|
||||||
|
|
||||||
|
30% {
|
||||||
|
opacity: 1;
|
||||||
|
@include prefix((transform: translateY(0px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@include keyframes(pulse) {
|
||||||
|
|
||||||
|
0% { @include prefix((transform: scale(1))); }
|
||||||
|
10% { @include prefix((transform: scale(1.1))); }
|
||||||
|
20% { @include prefix((transform: scale(1))); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.dropzone, .dropzone * {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.dropzone {
|
||||||
|
|
||||||
|
$image-size: 120px;
|
||||||
|
|
||||||
|
$image-border-radius: 20px;
|
||||||
|
|
||||||
|
&.dz-clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
* {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.dz-message {
|
||||||
|
&, * {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
min-height: 150px;
|
||||||
|
border: 2px solid rgba(0, 0, 0, 0.3);
|
||||||
|
background: white;
|
||||||
|
padding: 20px 20px;
|
||||||
|
|
||||||
|
&.dz-started {
|
||||||
|
.dz-message {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.dz-drag-hover {
|
||||||
|
border-style: solid;
|
||||||
|
.dz-message {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.dz-message {
|
||||||
|
text-align: center;
|
||||||
|
margin: 2em 0;
|
||||||
|
|
||||||
|
.dz-button {
|
||||||
|
background: none;
|
||||||
|
color: inherit;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
font: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.dz-preview {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
vertical-align: top;
|
||||||
|
|
||||||
|
margin: 16px;
|
||||||
|
min-height: 100px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
// Making sure that always the hovered preview element is on top
|
||||||
|
z-index: 1000;
|
||||||
|
.dz-details {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.dz-file-preview {
|
||||||
|
|
||||||
|
.dz-image {
|
||||||
|
border-radius: $image-border-radius;
|
||||||
|
background: #999;
|
||||||
|
background: linear-gradient(to bottom, #eee, #ddd);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-details {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.dz-image-preview {
|
||||||
|
background: white;
|
||||||
|
.dz-details {
|
||||||
|
@include prefix((transition: opacity 0.2s linear));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-remove {
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
display: block;
|
||||||
|
cursor: pointer;
|
||||||
|
border: none;
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover .dz-details {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.dz-details {
|
||||||
|
$background-color: #444;
|
||||||
|
|
||||||
|
z-index: 20;
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
|
||||||
|
font-size: 13px;
|
||||||
|
min-width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 2em 1em;
|
||||||
|
text-align: center;
|
||||||
|
color: rgba(0, 0, 0, 0.9);
|
||||||
|
|
||||||
|
$width: 120px;
|
||||||
|
|
||||||
|
line-height: 150%;
|
||||||
|
|
||||||
|
.dz-size {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-filename {
|
||||||
|
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
span {
|
||||||
|
border: 1px solid rgba(200, 200, 200, 0.8);
|
||||||
|
background-color: rgba(255, 255, 255, 0.8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:not(:hover) {
|
||||||
|
span {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-filename, .dz-size {
|
||||||
|
span {
|
||||||
|
background-color: rgba(255, 255, 255, 0.4);
|
||||||
|
padding: 0 0.4em;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.dz-image {
|
||||||
|
// opacity: 0.8;
|
||||||
|
img {
|
||||||
|
@include prefix((transform: scale(1.05, 1.05))); // Getting rid of that white bleed-in
|
||||||
|
@include prefix((filter: blur(8px)), webkit); // Getting rid of that white bleed-in
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.dz-image {
|
||||||
|
border-radius: $image-border-radius;
|
||||||
|
overflow: hidden;
|
||||||
|
width: $image-size;
|
||||||
|
height: $image-size;
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
&.dz-success {
|
||||||
|
.dz-success-mark {
|
||||||
|
@include prefix((animation: passing-through 3s cubic-bezier(0.770, 0.000, 0.175, 1.000)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.dz-error {
|
||||||
|
.dz-error-mark {
|
||||||
|
opacity: 1;
|
||||||
|
@include prefix((animation: slide-in 3s cubic-bezier(0.770, 0.000, 0.175, 1.000)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.dz-success-mark, .dz-error-mark {
|
||||||
|
|
||||||
|
$image-height: 54px;
|
||||||
|
$image-width: 54px;
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
z-index: 500;
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -(math.div($image-width, 2));
|
||||||
|
margin-top: -(math.div($image-height, 2));
|
||||||
|
|
||||||
|
svg {
|
||||||
|
display: block;
|
||||||
|
width: $image-width;
|
||||||
|
height: $image-height;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
&.dz-processing .dz-progress {
|
||||||
|
opacity: 1;
|
||||||
|
@include prefix((transition: all 0.2s linear));
|
||||||
|
}
|
||||||
|
&.dz-complete .dz-progress {
|
||||||
|
opacity: 0;
|
||||||
|
@include prefix((transition: opacity 0.4s ease-in));
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.dz-processing) {
|
||||||
|
.dz-progress {
|
||||||
|
@include prefix((animation: pulse 6s ease infinite));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.dz-progress {
|
||||||
|
|
||||||
|
opacity: 1;
|
||||||
|
z-index: 1000;
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
position: absolute;
|
||||||
|
height: 16px;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -8px;
|
||||||
|
|
||||||
|
width: 80px;
|
||||||
|
margin-left: -40px;
|
||||||
|
|
||||||
|
// border: 2px solid #333;
|
||||||
|
background: rgba(255, 255, 255, 0.9);
|
||||||
|
|
||||||
|
// Fix for chrome bug: https://code.google.com/p/chromium/issues/detail?id=157218
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
|
||||||
|
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
.dz-upload {
|
||||||
|
background: #333;
|
||||||
|
background: linear-gradient(to bottom, #666, #444);
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 0;
|
||||||
|
@include prefix((transition: width 300ms ease-in-out));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
&.dz-error {
|
||||||
|
.dz-error-message {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
&:hover .dz-error-message {
|
||||||
|
opacity: 1;
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dz-error-message {
|
||||||
|
$width: $image-size + 20px;
|
||||||
|
$color: rgb(190, 38, 38);
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 1000;
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
display: none;
|
||||||
|
opacity: 0;
|
||||||
|
@include prefix((transition: opacity 0.3s ease));
|
||||||
|
border-radius: 8px;
|
||||||
|
font-size: 13px;
|
||||||
|
top: $image-size + 10px;
|
||||||
|
left: -10px;
|
||||||
|
width: $width;
|
||||||
|
background: $color;
|
||||||
|
background: linear-gradient(to bottom, $color, darken($color, 5%));
|
||||||
|
padding: 0.5em 1.2em;
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
// The triangle pointing up
|
||||||
|
&:after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: -6px;
|
||||||
|
left: math.div($width, 2) - 6px;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-left: 6px solid transparent;
|
||||||
|
border-right: 6px solid transparent;
|
||||||
|
border-bottom: 6px solid $color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
// The Emitter class provides the ability to call `.on()` on Dropzone to listen
|
||||||
|
// to events.
|
||||||
|
// It is strongly based on component's emitter class, and I removed the
|
||||||
|
// functionality because of the dependency hell with different frameworks.
|
||||||
|
export default class Emitter {
|
||||||
|
// Add an event listener for given event
|
||||||
|
on(event, fn) {
|
||||||
|
this._callbacks = this._callbacks || {};
|
||||||
|
// Create namespace for this event
|
||||||
|
if (!this._callbacks[event]) {
|
||||||
|
this._callbacks[event] = [];
|
||||||
|
}
|
||||||
|
this._callbacks[event].push(fn);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
emit(event, ...args) {
|
||||||
|
this._callbacks = this._callbacks || {};
|
||||||
|
let callbacks = this._callbacks[event];
|
||||||
|
|
||||||
|
if (callbacks) {
|
||||||
|
for (let callback of callbacks) {
|
||||||
|
callback.apply(this, args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// trigger a corresponding DOM event
|
||||||
|
if (this.element) {
|
||||||
|
this.element.dispatchEvent(
|
||||||
|
this.makeEvent("dropzone:" + event, { args: args })
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
makeEvent(eventName, detail) {
|
||||||
|
let params = { bubbles: true, cancelable: true, detail: detail };
|
||||||
|
|
||||||
|
if (typeof window.CustomEvent === "function") {
|
||||||
|
return new CustomEvent(eventName, params);
|
||||||
|
} else {
|
||||||
|
// IE 11 support
|
||||||
|
// https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent
|
||||||
|
var evt = document.createEvent("CustomEvent");
|
||||||
|
evt.initCustomEvent(
|
||||||
|
eventName,
|
||||||
|
params.bubbles,
|
||||||
|
params.cancelable,
|
||||||
|
params.detail
|
||||||
|
);
|
||||||
|
return evt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove event listener for given event. If fn is not provided, all event
|
||||||
|
// listeners for that event will be removed. If neither is provided, all
|
||||||
|
// event listeners will be removed.
|
||||||
|
off(event, fn) {
|
||||||
|
if (!this._callbacks || arguments.length === 0) {
|
||||||
|
this._callbacks = {};
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// specific event
|
||||||
|
let callbacks = this._callbacks[event];
|
||||||
|
if (!callbacks) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove all handlers
|
||||||
|
if (arguments.length === 1) {
|
||||||
|
delete this._callbacks[event];
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove specific handler
|
||||||
|
for (let i = 0; i < callbacks.length; i++) {
|
||||||
|
let callback = callbacks[i];
|
||||||
|
if (callback === fn) {
|
||||||
|
callbacks.splice(i, 1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,772 @@
|
|||||||
|
import Dropzone from "./dropzone.js";
|
||||||
|
import defaultPreviewTemplate from "./preview-template.html";
|
||||||
|
|
||||||
|
let defaultOptions = {
|
||||||
|
/**
|
||||||
|
* Has to be specified on elements other than form (or when the form
|
||||||
|
* doesn't have an `action` attribute). You can also
|
||||||
|
* provide a function that will be called with `files` and
|
||||||
|
* must return the url (since `v3.12.0`)
|
||||||
|
*/
|
||||||
|
url: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Can be changed to `"put"` if necessary. You can also provide a function
|
||||||
|
* that will be called with `files` and must return the method (since `v3.12.0`).
|
||||||
|
*/
|
||||||
|
method: "post",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Will be set on the XHRequest.
|
||||||
|
*/
|
||||||
|
withCredentials: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The timeout for the XHR requests in milliseconds (since `v4.4.0`).
|
||||||
|
* If set to null or 0, no timeout is going to be set.
|
||||||
|
*/
|
||||||
|
timeout: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* How many file uploads to process in parallel (See the
|
||||||
|
* Enqueuing file uploads documentation section for more info)
|
||||||
|
*/
|
||||||
|
parallelUploads: 2,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to send multiple files in one request. If
|
||||||
|
* this it set to true, then the fallback file input element will
|
||||||
|
* have the `multiple` attribute as well. This option will
|
||||||
|
* also trigger additional events (like `processingmultiple`). See the events
|
||||||
|
* documentation section for more information.
|
||||||
|
*/
|
||||||
|
uploadMultiple: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether you want files to be uploaded in chunks to your server. This can't be
|
||||||
|
* used in combination with `uploadMultiple`.
|
||||||
|
*
|
||||||
|
* See [chunksUploaded](#config-chunksUploaded) for the callback to finalise an upload.
|
||||||
|
*/
|
||||||
|
chunking: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `chunking` is enabled, this defines whether **every** file should be chunked,
|
||||||
|
* even if the file size is below chunkSize. This means, that the additional chunk
|
||||||
|
* form data will be submitted and the `chunksUploaded` callback will be invoked.
|
||||||
|
*/
|
||||||
|
forceChunking: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `chunking` is `true`, then this defines the chunk size in bytes.
|
||||||
|
*/
|
||||||
|
chunkSize: 2000000,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `true`, the individual chunks of a file are being uploaded simultaneously.
|
||||||
|
*/
|
||||||
|
parallelChunkUploads: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether a chunk should be retried if it fails.
|
||||||
|
*/
|
||||||
|
retryChunks: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `retryChunks` is true, how many times should it be retried.
|
||||||
|
*/
|
||||||
|
retryChunksLimit: 3,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The maximum filesize (in bytes) that is allowed to be uploaded.
|
||||||
|
*/
|
||||||
|
maxFilesize: 256,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the file param that gets transferred.
|
||||||
|
* **NOTE**: If you have the option `uploadMultiple` set to `true`, then
|
||||||
|
* Dropzone will append `[]` to the name.
|
||||||
|
*/
|
||||||
|
paramName: "file",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether thumbnails for images should be generated
|
||||||
|
*/
|
||||||
|
createImageThumbnails: true,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* In MB. When the filename exceeds this limit, the thumbnail will not be generated.
|
||||||
|
*/
|
||||||
|
maxThumbnailFilesize: 10,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `null`, the ratio of the image will be used to calculate it.
|
||||||
|
*/
|
||||||
|
thumbnailWidth: 120,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The same as `thumbnailWidth`. If both are null, images will not be resized.
|
||||||
|
*/
|
||||||
|
thumbnailHeight: 120,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* How the images should be scaled down in case both, `thumbnailWidth` and `thumbnailHeight` are provided.
|
||||||
|
* Can be either `contain` or `crop`.
|
||||||
|
*/
|
||||||
|
thumbnailMethod: "crop",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If set, images will be resized to these dimensions before being **uploaded**.
|
||||||
|
* If only one, `resizeWidth` **or** `resizeHeight` is provided, the original aspect
|
||||||
|
* ratio of the file will be preserved.
|
||||||
|
*
|
||||||
|
* The `options.transformFile` function uses these options, so if the `transformFile` function
|
||||||
|
* is overridden, these options don't do anything.
|
||||||
|
*/
|
||||||
|
resizeWidth: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* See `resizeWidth`.
|
||||||
|
*/
|
||||||
|
resizeHeight: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The mime type of the resized image (before it gets uploaded to the server).
|
||||||
|
* If `null` the original mime type will be used. To force jpeg, for example, use `image/jpeg`.
|
||||||
|
* See `resizeWidth` for more information.
|
||||||
|
*/
|
||||||
|
resizeMimeType: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The quality of the resized images. See `resizeWidth`.
|
||||||
|
*/
|
||||||
|
resizeQuality: 0.8,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* How the images should be scaled down in case both, `resizeWidth` and `resizeHeight` are provided.
|
||||||
|
* Can be either `contain` or `crop`.
|
||||||
|
*/
|
||||||
|
resizeMethod: "contain",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base that is used to calculate the **displayed** filesize. You can
|
||||||
|
* change this to 1024 if you would rather display kibibytes, mebibytes,
|
||||||
|
* etc... 1024 is technically incorrect, because `1024 bytes` are `1 kibibyte`
|
||||||
|
* not `1 kilobyte`. You can change this to `1024` if you don't care about
|
||||||
|
* validity.
|
||||||
|
*/
|
||||||
|
filesizeBase: 1000,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If not `null` defines how many files this Dropzone handles. If it exceeds,
|
||||||
|
* the event `maxfilesexceeded` will be called. The dropzone element gets the
|
||||||
|
* class `dz-max-files-reached` accordingly so you can provide visual
|
||||||
|
* feedback.
|
||||||
|
*/
|
||||||
|
maxFiles: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An optional object to send additional headers to the server. Eg:
|
||||||
|
* `{ "My-Awesome-Header": "header value" }`
|
||||||
|
*/
|
||||||
|
headers: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `true`, the dropzone element itself will be clickable, if `false`
|
||||||
|
* nothing will be clickable.
|
||||||
|
*
|
||||||
|
* You can also pass an HTML element, a CSS selector (for multiple elements)
|
||||||
|
* or an array of those. In that case, all of those elements will trigger an
|
||||||
|
* upload when clicked.
|
||||||
|
*/
|
||||||
|
clickable: true,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether hidden files in directories should be ignored.
|
||||||
|
*/
|
||||||
|
ignoreHiddenFiles: true,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The default implementation of `accept` checks the file's mime type or
|
||||||
|
* extension against this list. This is a comma separated list of mime
|
||||||
|
* types or file extensions.
|
||||||
|
*
|
||||||
|
* Eg.: `image/*,application/pdf,.psd`
|
||||||
|
*
|
||||||
|
* If the Dropzone is `clickable` this option will also be used as
|
||||||
|
* [`accept`](https://developer.mozilla.org/en-US/docs/HTML/Element/input#attr-accept)
|
||||||
|
* parameter on the hidden file input as well.
|
||||||
|
*/
|
||||||
|
acceptedFiles: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* **Deprecated!**
|
||||||
|
* Use acceptedFiles instead.
|
||||||
|
*/
|
||||||
|
acceptedMimeTypes: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If false, files will be added to the queue but the queue will not be
|
||||||
|
* processed automatically.
|
||||||
|
* This can be useful if you need some additional user input before sending
|
||||||
|
* files (or if you want want all files sent at once).
|
||||||
|
* If you're ready to send the file simply call `myDropzone.processQueue()`.
|
||||||
|
*
|
||||||
|
* See the [enqueuing file uploads](#enqueuing-file-uploads) documentation
|
||||||
|
* section for more information.
|
||||||
|
*/
|
||||||
|
autoProcessQueue: true,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If false, files added to the dropzone will not be queued by default.
|
||||||
|
* You'll have to call `enqueueFile(file)` manually.
|
||||||
|
*/
|
||||||
|
autoQueue: true,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `true`, this will add a link to every file preview to remove or cancel (if
|
||||||
|
* already uploading) the file. The `dictCancelUpload`, `dictCancelUploadConfirmation`
|
||||||
|
* and `dictRemoveFile` options are used for the wording.
|
||||||
|
*/
|
||||||
|
addRemoveLinks: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines where to display the file previews – if `null` the
|
||||||
|
* Dropzone element itself is used. Can be a plain `HTMLElement` or a CSS
|
||||||
|
* selector. The element should have the `dropzone-previews` class so
|
||||||
|
* the previews are displayed properly.
|
||||||
|
*/
|
||||||
|
previewsContainer: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set this to `true` if you don't want previews to be shown.
|
||||||
|
*/
|
||||||
|
disablePreviews: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the element the hidden input field (which is used when clicking on the
|
||||||
|
* dropzone to trigger file selection) will be appended to. This might
|
||||||
|
* be important in case you use frameworks to switch the content of your page.
|
||||||
|
*
|
||||||
|
* Can be a selector string, or an element directly.
|
||||||
|
*/
|
||||||
|
hiddenInputContainer: "body",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If null, no capture type will be specified
|
||||||
|
* If camera, mobile devices will skip the file selection and choose camera
|
||||||
|
* If microphone, mobile devices will skip the file selection and choose the microphone
|
||||||
|
* If camcorder, mobile devices will skip the file selection and choose the camera in video mode
|
||||||
|
* On apple devices multiple must be set to false. AcceptedFiles may need to
|
||||||
|
* be set to an appropriate mime type (e.g. "image/*", "audio/*", or "video/*").
|
||||||
|
*/
|
||||||
|
capture: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* **Deprecated**. Use `renameFile` instead.
|
||||||
|
*/
|
||||||
|
renameFilename: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A function that is invoked before the file is uploaded to the server and renames the file.
|
||||||
|
* This function gets the `File` as argument and can use the `file.name`. The actual name of the
|
||||||
|
* file that gets used during the upload can be accessed through `file.upload.filename`.
|
||||||
|
*/
|
||||||
|
renameFile: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `true` the fallback will be forced. This is very useful to test your server
|
||||||
|
* implementations first and make sure that everything works as
|
||||||
|
* expected without dropzone if you experience problems, and to test
|
||||||
|
* how your fallbacks will look.
|
||||||
|
*/
|
||||||
|
forceFallback: false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The text used before any files are dropped.
|
||||||
|
*/
|
||||||
|
dictDefaultMessage: "Drop files here to upload",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The text that replaces the default message text it the browser is not supported.
|
||||||
|
*/
|
||||||
|
dictFallbackMessage:
|
||||||
|
"Your browser does not support drag'n'drop file uploads.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The text that will be added before the fallback form.
|
||||||
|
* If you provide a fallback element yourself, or if this option is `null` this will
|
||||||
|
* be ignored.
|
||||||
|
*/
|
||||||
|
dictFallbackText:
|
||||||
|
"Please use the fallback form below to upload your files like in the olden days.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the filesize is too big.
|
||||||
|
* `{{filesize}}` and `{{maxFilesize}}` will be replaced with the respective configuration values.
|
||||||
|
*/
|
||||||
|
dictFileTooBig:
|
||||||
|
"File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the file doesn't match the file type.
|
||||||
|
*/
|
||||||
|
dictInvalidFileType: "You can't upload files of this type.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the server response was invalid.
|
||||||
|
* `{{statusCode}}` will be replaced with the servers status code.
|
||||||
|
*/
|
||||||
|
dictResponseError: "Server responded with {{statusCode}} code.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `addRemoveLinks` is true, the text to be used for the cancel upload link.
|
||||||
|
*/
|
||||||
|
dictCancelUpload: "Cancel upload",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The text that is displayed if an upload was manually canceled
|
||||||
|
*/
|
||||||
|
dictUploadCanceled: "Upload canceled.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `addRemoveLinks` is true, the text to be used for confirmation when cancelling upload.
|
||||||
|
*/
|
||||||
|
dictCancelUploadConfirmation: "Are you sure you want to cancel this upload?",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If `addRemoveLinks` is true, the text to be used to remove a file.
|
||||||
|
*/
|
||||||
|
dictRemoveFile: "Remove file",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If this is not null, then the user will be prompted before removing a file.
|
||||||
|
*/
|
||||||
|
dictRemoveFileConfirmation: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Displayed if `maxFiles` is st and exceeded.
|
||||||
|
* The string `{{maxFiles}}` will be replaced by the configuration value.
|
||||||
|
*/
|
||||||
|
dictMaxFilesExceeded: "You can not upload any more files.",
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allows you to translate the different units. Starting with `tb` for terabytes and going down to
|
||||||
|
* `b` for bytes.
|
||||||
|
*/
|
||||||
|
dictFileSizeUnits: { tb: "TB", gb: "GB", mb: "MB", kb: "KB", b: "b" },
|
||||||
|
/**
|
||||||
|
* Called when dropzone initialized
|
||||||
|
* You can add event listeners here
|
||||||
|
*/
|
||||||
|
init() {},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Can be an **object** of additional parameters to transfer to the server, **or** a `Function`
|
||||||
|
* that gets invoked with the `files`, `xhr` and, if it's a chunked upload, `chunk` arguments. In case
|
||||||
|
* of a function, this needs to return a map.
|
||||||
|
*
|
||||||
|
* The default implementation does nothing for normal uploads, but adds relevant information for
|
||||||
|
* chunked uploads.
|
||||||
|
*
|
||||||
|
* This is the same as adding hidden input fields in the form element.
|
||||||
|
*/
|
||||||
|
params(files, xhr, chunk) {
|
||||||
|
if (chunk) {
|
||||||
|
return {
|
||||||
|
dzuuid: chunk.file.upload.uuid,
|
||||||
|
dzchunkindex: chunk.index,
|
||||||
|
dztotalfilesize: chunk.file.size,
|
||||||
|
dzchunksize: this.options.chunkSize,
|
||||||
|
dztotalchunkcount: chunk.file.upload.totalChunkCount,
|
||||||
|
dzchunkbyteoffset: chunk.index * this.options.chunkSize,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A function that gets a [file](https://developer.mozilla.org/en-US/docs/DOM/File)
|
||||||
|
* and a `done` function as parameters.
|
||||||
|
*
|
||||||
|
* If the done function is invoked without arguments, the file is "accepted" and will
|
||||||
|
* be processed. If you pass an error message, the file is rejected, and the error
|
||||||
|
* message will be displayed.
|
||||||
|
* This function will not be called if the file is too big or doesn't match the mime types.
|
||||||
|
*/
|
||||||
|
accept(file, done) {
|
||||||
|
return done();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The callback that will be invoked when all chunks have been uploaded for a file.
|
||||||
|
* It gets the file for which the chunks have been uploaded as the first parameter,
|
||||||
|
* and the `done` function as second. `done()` needs to be invoked when everything
|
||||||
|
* needed to finish the upload process is done.
|
||||||
|
*/
|
||||||
|
chunksUploaded: function (file, done) {
|
||||||
|
done();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets called when the browser is not supported.
|
||||||
|
* The default implementation shows the fallback input field and adds
|
||||||
|
* a text.
|
||||||
|
*/
|
||||||
|
fallback() {
|
||||||
|
// This code should pass in IE7... :(
|
||||||
|
let messageElement;
|
||||||
|
this.element.className = `${this.element.className} dz-browser-not-supported`;
|
||||||
|
|
||||||
|
for (let child of this.element.getElementsByTagName("div")) {
|
||||||
|
if (/(^| )dz-message($| )/.test(child.className)) {
|
||||||
|
messageElement = child;
|
||||||
|
child.className = "dz-message"; // Removes the 'dz-default' class
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!messageElement) {
|
||||||
|
messageElement = Dropzone.createElement(
|
||||||
|
'<div class="dz-message"><span></span></div>'
|
||||||
|
);
|
||||||
|
this.element.appendChild(messageElement);
|
||||||
|
}
|
||||||
|
|
||||||
|
let span = messageElement.getElementsByTagName("span")[0];
|
||||||
|
if (span) {
|
||||||
|
if (span.textContent != null) {
|
||||||
|
span.textContent = this.options.dictFallbackMessage;
|
||||||
|
} else if (span.innerText != null) {
|
||||||
|
span.innerText = this.options.dictFallbackMessage;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.element.appendChild(this.getFallbackForm());
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets called to calculate the thumbnail dimensions.
|
||||||
|
*
|
||||||
|
* It gets `file`, `width` and `height` (both may be `null`) as parameters and must return an object containing:
|
||||||
|
*
|
||||||
|
* - `srcWidth` & `srcHeight` (required)
|
||||||
|
* - `trgWidth` & `trgHeight` (required)
|
||||||
|
* - `srcX` & `srcY` (optional, default `0`)
|
||||||
|
* - `trgX` & `trgY` (optional, default `0`)
|
||||||
|
*
|
||||||
|
* Those values are going to be used by `ctx.drawImage()`.
|
||||||
|
*/
|
||||||
|
resize(file, width, height, resizeMethod) {
|
||||||
|
let info = {
|
||||||
|
srcX: 0,
|
||||||
|
srcY: 0,
|
||||||
|
srcWidth: file.width,
|
||||||
|
srcHeight: file.height,
|
||||||
|
};
|
||||||
|
|
||||||
|
let srcRatio = file.width / file.height;
|
||||||
|
|
||||||
|
// Automatically calculate dimensions if not specified
|
||||||
|
if (width == null && height == null) {
|
||||||
|
width = info.srcWidth;
|
||||||
|
height = info.srcHeight;
|
||||||
|
} else if (width == null) {
|
||||||
|
width = height * srcRatio;
|
||||||
|
} else if (height == null) {
|
||||||
|
height = width / srcRatio;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure images aren't upscaled
|
||||||
|
width = Math.min(width, info.srcWidth);
|
||||||
|
height = Math.min(height, info.srcHeight);
|
||||||
|
|
||||||
|
let trgRatio = width / height;
|
||||||
|
|
||||||
|
if (info.srcWidth > width || info.srcHeight > height) {
|
||||||
|
// Image is bigger and needs rescaling
|
||||||
|
if (resizeMethod === "crop") {
|
||||||
|
if (srcRatio > trgRatio) {
|
||||||
|
info.srcHeight = file.height;
|
||||||
|
info.srcWidth = info.srcHeight * trgRatio;
|
||||||
|
} else {
|
||||||
|
info.srcWidth = file.width;
|
||||||
|
info.srcHeight = info.srcWidth / trgRatio;
|
||||||
|
}
|
||||||
|
} else if (resizeMethod === "contain") {
|
||||||
|
// Method 'contain'
|
||||||
|
if (srcRatio > trgRatio) {
|
||||||
|
height = width / srcRatio;
|
||||||
|
} else {
|
||||||
|
width = height * srcRatio;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Error(`Unknown resizeMethod '${resizeMethod}'`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
info.srcX = (file.width - info.srcWidth) / 2;
|
||||||
|
info.srcY = (file.height - info.srcHeight) / 2;
|
||||||
|
|
||||||
|
info.trgWidth = width;
|
||||||
|
info.trgHeight = height;
|
||||||
|
|
||||||
|
return info;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Can be used to transform the file (for example, resize an image if necessary).
|
||||||
|
*
|
||||||
|
* The default implementation uses `resizeWidth` and `resizeHeight` (if provided) and resizes
|
||||||
|
* images according to those dimensions.
|
||||||
|
*
|
||||||
|
* Gets the `file` as the first parameter, and a `done()` function as the second, that needs
|
||||||
|
* to be invoked with the file when the transformation is done.
|
||||||
|
*/
|
||||||
|
transformFile(file, done) {
|
||||||
|
if (
|
||||||
|
(this.options.resizeWidth || this.options.resizeHeight) &&
|
||||||
|
file.type.match(/image.*/)
|
||||||
|
) {
|
||||||
|
return this.resizeImage(
|
||||||
|
file,
|
||||||
|
this.options.resizeWidth,
|
||||||
|
this.options.resizeHeight,
|
||||||
|
this.options.resizeMethod,
|
||||||
|
done
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return done(file);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A string that contains the template used for each dropped
|
||||||
|
* file. Change it to fulfill your needs but make sure to properly
|
||||||
|
* provide all elements.
|
||||||
|
*
|
||||||
|
* If you want to use an actual HTML element instead of providing a String
|
||||||
|
* as a config option, you could create a div with the id `tpl`,
|
||||||
|
* put the template inside it and provide the element like this:
|
||||||
|
*
|
||||||
|
* document
|
||||||
|
* .querySelector('#tpl')
|
||||||
|
* .innerHTML
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
previewTemplate: defaultPreviewTemplate,
|
||||||
|
|
||||||
|
/*
|
||||||
|
Those functions register themselves to the events on init and handle all
|
||||||
|
the user interface specific stuff. Overwriting them won't break the upload
|
||||||
|
but can break the way it's displayed.
|
||||||
|
You can overwrite them if you don't like the default behavior. If you just
|
||||||
|
want to add an additional event handler, register it on the dropzone object
|
||||||
|
and don't overwrite those options.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Those are self explanatory and simply concern the DragnDrop.
|
||||||
|
drop(e) {
|
||||||
|
return this.element.classList.remove("dz-drag-hover");
|
||||||
|
},
|
||||||
|
dragstart(e) {},
|
||||||
|
dragend(e) {
|
||||||
|
return this.element.classList.remove("dz-drag-hover");
|
||||||
|
},
|
||||||
|
dragenter(e) {
|
||||||
|
return this.element.classList.add("dz-drag-hover");
|
||||||
|
},
|
||||||
|
dragover(e) {
|
||||||
|
return this.element.classList.add("dz-drag-hover");
|
||||||
|
},
|
||||||
|
dragleave(e) {
|
||||||
|
return this.element.classList.remove("dz-drag-hover");
|
||||||
|
},
|
||||||
|
|
||||||
|
paste(e) {},
|
||||||
|
|
||||||
|
// Called whenever there are no files left in the dropzone anymore, and the
|
||||||
|
// dropzone should be displayed as if in the initial state.
|
||||||
|
reset() {
|
||||||
|
return this.element.classList.remove("dz-started");
|
||||||
|
},
|
||||||
|
|
||||||
|
// Called when a file is added to the queue
|
||||||
|
// Receives `file`
|
||||||
|
addedfile(file) {
|
||||||
|
if (this.element === this.previewsContainer) {
|
||||||
|
this.element.classList.add("dz-started");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.previewsContainer && !this.options.disablePreviews) {
|
||||||
|
file.previewElement = Dropzone.createElement(
|
||||||
|
this.options.previewTemplate.trim()
|
||||||
|
);
|
||||||
|
file.previewTemplate = file.previewElement; // Backwards compatibility
|
||||||
|
|
||||||
|
this.previewsContainer.appendChild(file.previewElement);
|
||||||
|
for (var node of file.previewElement.querySelectorAll("[data-dz-name]")) {
|
||||||
|
node.textContent = file.name;
|
||||||
|
}
|
||||||
|
for (node of file.previewElement.querySelectorAll("[data-dz-size]")) {
|
||||||
|
node.innerHTML = this.filesize(file.size);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.options.addRemoveLinks) {
|
||||||
|
file._removeLink = Dropzone.createElement(
|
||||||
|
`<a class="dz-remove" href="javascript:undefined;" data-dz-remove>${this.options.dictRemoveFile}</a>`
|
||||||
|
);
|
||||||
|
file.previewElement.appendChild(file._removeLink);
|
||||||
|
}
|
||||||
|
|
||||||
|
let removeFileEvent = (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
if (file.status === Dropzone.UPLOADING) {
|
||||||
|
return Dropzone.confirm(
|
||||||
|
this.options.dictCancelUploadConfirmation,
|
||||||
|
() => this.removeFile(file)
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
if (this.options.dictRemoveFileConfirmation) {
|
||||||
|
return Dropzone.confirm(
|
||||||
|
this.options.dictRemoveFileConfirmation,
|
||||||
|
() => this.removeFile(file)
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return this.removeFile(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
for (let removeLink of file.previewElement.querySelectorAll(
|
||||||
|
"[data-dz-remove]"
|
||||||
|
)) {
|
||||||
|
removeLink.addEventListener("click", removeFileEvent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Called whenever a file is removed.
|
||||||
|
removedfile(file) {
|
||||||
|
if (file.previewElement != null && file.previewElement.parentNode != null) {
|
||||||
|
file.previewElement.parentNode.removeChild(file.previewElement);
|
||||||
|
}
|
||||||
|
return this._updateMaxFilesReachedClass();
|
||||||
|
},
|
||||||
|
|
||||||
|
// Called when a thumbnail has been generated
|
||||||
|
// Receives `file` and `dataUrl`
|
||||||
|
thumbnail(file, dataUrl) {
|
||||||
|
if (file.previewElement) {
|
||||||
|
file.previewElement.classList.remove("dz-file-preview");
|
||||||
|
for (let thumbnailElement of file.previewElement.querySelectorAll(
|
||||||
|
"[data-dz-thumbnail]"
|
||||||
|
)) {
|
||||||
|
thumbnailElement.alt = file.name;
|
||||||
|
thumbnailElement.src = dataUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
return setTimeout(
|
||||||
|
() => file.previewElement.classList.add("dz-image-preview"),
|
||||||
|
1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Called whenever an error occurs
|
||||||
|
// Receives `file` and `message`
|
||||||
|
error(file, message) {
|
||||||
|
if (file.previewElement) {
|
||||||
|
file.previewElement.classList.add("dz-error");
|
||||||
|
if (typeof message !== "string" && message.error) {
|
||||||
|
message = message.error;
|
||||||
|
}
|
||||||
|
for (let node of file.previewElement.querySelectorAll(
|
||||||
|
"[data-dz-errormessage]"
|
||||||
|
)) {
|
||||||
|
node.textContent = message;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
errormultiple() {},
|
||||||
|
|
||||||
|
// Called when a file gets processed. Since there is a cue, not all added
|
||||||
|
// files are processed immediately.
|
||||||
|
// Receives `file`
|
||||||
|
processing(file) {
|
||||||
|
if (file.previewElement) {
|
||||||
|
file.previewElement.classList.add("dz-processing");
|
||||||
|
if (file._removeLink) {
|
||||||
|
return (file._removeLink.innerHTML = this.options.dictCancelUpload);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
processingmultiple() {},
|
||||||
|
|
||||||
|
// Called whenever the upload progress gets updated.
|
||||||
|
// Receives `file`, `progress` (percentage 0-100) and `bytesSent`.
|
||||||
|
// To get the total number of bytes of the file, use `file.size`
|
||||||
|
uploadprogress(file, progress, bytesSent) {
|
||||||
|
if (file.previewElement) {
|
||||||
|
for (let node of file.previewElement.querySelectorAll(
|
||||||
|
"[data-dz-uploadprogress]"
|
||||||
|
)) {
|
||||||
|
node.nodeName === "PROGRESS"
|
||||||
|
? (node.value = progress)
|
||||||
|
: (node.style.width = `${progress}%`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Called whenever the total upload progress gets updated.
|
||||||
|
// Called with totalUploadProgress (0-100), totalBytes and totalBytesSent
|
||||||
|
totaluploadprogress() {},
|
||||||
|
|
||||||
|
// Called just before the file is sent. Gets the `xhr` object as second
|
||||||
|
// parameter, so you can modify it (for example to add a CSRF token) and a
|
||||||
|
// `formData` object to add additional information.
|
||||||
|
sending() {},
|
||||||
|
|
||||||
|
sendingmultiple() {},
|
||||||
|
|
||||||
|
// When the complete upload is finished and successful
|
||||||
|
// Receives `file`
|
||||||
|
success(file) {
|
||||||
|
if (file.previewElement) {
|
||||||
|
return file.previewElement.classList.add("dz-success");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
successmultiple() {},
|
||||||
|
|
||||||
|
// When the upload is canceled.
|
||||||
|
canceled(file) {
|
||||||
|
return this.emit("error", file, this.options.dictUploadCanceled);
|
||||||
|
},
|
||||||
|
|
||||||
|
canceledmultiple() {},
|
||||||
|
|
||||||
|
// When the upload is finished, either with success or an error.
|
||||||
|
// Receives `file`
|
||||||
|
complete(file) {
|
||||||
|
if (file._removeLink) {
|
||||||
|
file._removeLink.innerHTML = this.options.dictRemoveFile;
|
||||||
|
}
|
||||||
|
if (file.previewElement) {
|
||||||
|
return file.previewElement.classList.add("dz-complete");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
completemultiple() {},
|
||||||
|
|
||||||
|
maxfilesexceeded() {},
|
||||||
|
|
||||||
|
maxfilesreached() {},
|
||||||
|
|
||||||
|
queuecomplete() {},
|
||||||
|
|
||||||
|
addedfiles() {},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default defaultOptions;
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
<div class="dz-preview dz-file-preview">
|
||||||
|
<div class="dz-image"><img data-dz-thumbnail /></div>
|
||||||
|
<div class="dz-details">
|
||||||
|
<div class="dz-size"><span data-dz-size></span></div>
|
||||||
|
<div class="dz-filename"><span data-dz-name></span></div>
|
||||||
|
</div>
|
||||||
|
<div class="dz-progress">
|
||||||
|
<span class="dz-upload" data-dz-uploadprogress></span>
|
||||||
|
</div>
|
||||||
|
<div class="dz-error-message"><span data-dz-errormessage></span></div>
|
||||||
|
<div class="dz-success-mark">
|
||||||
|
<svg
|
||||||
|
width="54px"
|
||||||
|
height="54px"
|
||||||
|
viewBox="0 0 54 54"
|
||||||
|
version="1.1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
>
|
||||||
|
<title>Check</title>
|
||||||
|
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||||
|
<path
|
||||||
|
d="M23.5,31.8431458 L17.5852419,25.9283877 C16.0248253,24.3679711 13.4910294,24.366835 11.9289322,25.9289322 C10.3700136,27.4878508 10.3665912,30.0234455 11.9283877,31.5852419 L20.4147581,40.0716123 C20.5133999,40.1702541 20.6159315,40.2626649 20.7218615,40.3488435 C22.2835669,41.8725651 24.794234,41.8626202 26.3461564,40.3106978 L43.3106978,23.3461564 C44.8771021,21.7797521 44.8758057,19.2483887 43.3137085,17.6862915 C41.7547899,16.1273729 39.2176035,16.1255422 37.6538436,17.6893022 L23.5,31.8431458 Z M27,53 C41.3594035,53 53,41.3594035 53,27 C53,12.6405965 41.3594035,1 27,1 C12.6405965,1 1,12.6405965 1,27 C1,41.3594035 12.6405965,53 27,53 Z"
|
||||||
|
stroke-opacity="0.198794158"
|
||||||
|
stroke="#747474"
|
||||||
|
fill-opacity="0.816519475"
|
||||||
|
fill="#FFFFFF"
|
||||||
|
></path>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<div class="dz-error-mark">
|
||||||
|
<svg
|
||||||
|
width="54px"
|
||||||
|
height="54px"
|
||||||
|
viewBox="0 0 54 54"
|
||||||
|
version="1.1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
>
|
||||||
|
<title>Error</title>
|
||||||
|
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||||
|
<g
|
||||||
|
stroke="#747474"
|
||||||
|
stroke-opacity="0.198794158"
|
||||||
|
fill="#FFFFFF"
|
||||||
|
fill-opacity="0.816519475"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M32.6568542,29 L38.3106978,23.3461564 C39.8771021,21.7797521 39.8758057,19.2483887 38.3137085,17.6862915 C36.7547899,16.1273729 34.2176035,16.1255422 32.6538436,17.6893022 L27,23.3431458 L21.3461564,17.6893022 C19.7823965,16.1255422 17.2452101,16.1273729 15.6862915,17.6862915 C14.1241943,19.2483887 14.1228979,21.7797521 15.6893022,23.3461564 L21.3431458,29 L15.6893022,34.6538436 C14.1228979,36.2202479 14.1241943,38.7516113 15.6862915,40.3137085 C17.2452101,41.8726271 19.7823965,41.8744578 21.3461564,40.3106978 L27,34.6568542 L32.6538436,40.3106978 C34.2176035,41.8744578 36.7547899,41.8726271 38.3137085,40.3137085 C39.8758057,38.7516113 39.8771021,36.2202479 38.3106978,34.6538436 L32.6568542,29 Z M27,53 C41.3594035,53 53,41.3594035 53,27 C53,12.6405965 41.3594035,1 27,1 C12.6405965,1 1,12.6405965 1,27 C1,41.3594035 12.6405965,53 27,53 Z"
|
||||||
|
></path>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
test-prebuilt.js
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
module.exports = function (config) {
|
||||||
|
config.set({
|
||||||
|
frameworks: ["mocha", "sinon-chai"],
|
||||||
|
// files: ["test/**/*.js"],
|
||||||
|
files: ["test.js"],
|
||||||
|
preprocessors: {
|
||||||
|
"test.js": ["rollup"],
|
||||||
|
},
|
||||||
|
rollupPreprocessor: {
|
||||||
|
/**
|
||||||
|
* This is just a normal Rollup config object,
|
||||||
|
* except that `input` is handled for you.
|
||||||
|
*/
|
||||||
|
plugins: [require("rollup-plugin-html")()],
|
||||||
|
output: {
|
||||||
|
// format: 'iife', // Helps prevent naming collisions.
|
||||||
|
// name: '<your_project>', // Required for 'iife' format.
|
||||||
|
// sourcemap: 'inline', // Sensible for testing.
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
reporters: ["spec"],
|
||||||
|
specReporter: {
|
||||||
|
maxLogLines: 5, // limit number of lines logged per test
|
||||||
|
suppressErrorSummary: false, // do not print error summary
|
||||||
|
suppressFailed: false, // do not print information about failed tests
|
||||||
|
suppressPassed: false, // do not print information about passed tests
|
||||||
|
suppressSkipped: true, // do not print information about skipped tests
|
||||||
|
showSpecTiming: false, // print the time elapsed for each spec
|
||||||
|
failFast: true, // test would finish with error when a first fail occurs.
|
||||||
|
},
|
||||||
|
|
||||||
|
port: 9876, // karma web server port
|
||||||
|
colors: true,
|
||||||
|
logLevel: config.LOG_INFO,
|
||||||
|
browsers: ["ChromeHeadless"],
|
||||||
|
autoWatch: false,
|
||||||
|
// singleRun: false, // Karma captures browsers, runs the tests and exits
|
||||||
|
concurrency: Infinity,
|
||||||
|
});
|
||||||
|
};
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
|||||||
|
import Dropzone from "../src/dropzone.js";
|
||||||
|
|
||||||
|
/// Make Dropzone a global variable.
|
||||||
|
window.Dropzone = Dropzone;
|
||||||
|
|
||||||
|
export default Dropzone;
|
||||||
|
export { Dropzone };
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
const path = require("path");
|
||||||
|
const WebpackShellPluginNext = require("webpack-shell-plugin-next");
|
||||||
|
|
||||||
|
let getJsConfig = (minimize) => {
|
||||||
|
return {
|
||||||
|
entry: ["./tool/dropzone.dist.js"],
|
||||||
|
mode: "production",
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.js$/,
|
||||||
|
exclude: [
|
||||||
|
/(node_modules|bower_components)/,
|
||||||
|
/\bcore-js\b/,
|
||||||
|
/\bwebpack\/buildin\b/,
|
||||||
|
],
|
||||||
|
use: {
|
||||||
|
loader: "babel-loader",
|
||||||
|
options: {
|
||||||
|
babelrc: false,
|
||||||
|
configFile: path.resolve(__dirname, "babel.config.js"),
|
||||||
|
compact: false,
|
||||||
|
cacheDirectory: true,
|
||||||
|
sourceMaps: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// Load .html files as string
|
||||||
|
test: /\.html$/i,
|
||||||
|
loader: "html-loader",
|
||||||
|
options: {
|
||||||
|
sources: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
optimization: {
|
||||||
|
minimize: minimize,
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
libraryTarget: "umd",
|
||||||
|
path: path.resolve(__dirname, minimize ? "dist/min" : "dist"),
|
||||||
|
filename: minimize ? "dropzone.min.js" : "dropzone.js",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
let getCssConfig = (minimize) => {
|
||||||
|
return {
|
||||||
|
entry: ["./src/dropzone.scss", "./src/basic.scss"],
|
||||||
|
mode: "production",
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.scss$/,
|
||||||
|
use: [
|
||||||
|
{
|
||||||
|
loader: "file-loader",
|
||||||
|
options: {
|
||||||
|
name: minimize ? "[name].min.css" : "[name].css",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
loader: "extract-loader",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
loader: "css-loader",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
loader: "sass-loader",
|
||||||
|
options: {
|
||||||
|
sassOptions: {
|
||||||
|
outputStyle: minimize ? "compressed" : "expanded",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
optimization: {
|
||||||
|
minimize: false,
|
||||||
|
},
|
||||||
|
output: {
|
||||||
|
path: path.resolve(__dirname, minimize ? "dist/min" : "dist"),
|
||||||
|
filename: "delete-me",
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
new WebpackShellPluginNext({
|
||||||
|
onBuildEnd: {
|
||||||
|
scripts: ["rm -f dist/delete-me && rm -f dist/min/delete-me"],
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = [
|
||||||
|
getJsConfig(false),
|
||||||
|
getJsConfig(true),
|
||||||
|
getCssConfig(false),
|
||||||
|
getCssConfig(true),
|
||||||
|
];
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"name": "font-awesome",
|
||||||
|
"description": "Font Awesome",
|
||||||
|
"keywords": [],
|
||||||
|
"homepage": "http://fontawesome.io",
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
|
"license": [
|
||||||
|
"OFL-1.1",
|
||||||
|
"MIT",
|
||||||
|
"CC-BY-3.0"
|
||||||
|
],
|
||||||
|
"main": [
|
||||||
|
"less/font-awesome.less",
|
||||||
|
"scss/font-awesome.scss"
|
||||||
|
],
|
||||||
|
"ignore": [
|
||||||
|
"*/.*",
|
||||||
|
"*.json",
|
||||||
|
"src",
|
||||||
|
"*.yml",
|
||||||
|
"Gemfile",
|
||||||
|
"Gemfile.lock",
|
||||||
|
"*.md"
|
||||||
|
],
|
||||||
|
"version": "4.7.0",
|
||||||
|
"_release": "4.7.0",
|
||||||
|
"_resolution": {
|
||||||
|
"type": "version",
|
||||||
|
"tag": "v4.7.0",
|
||||||
|
"commit": "a3fe90fa5f6fac55d197f9cbd18e3f57dafb716c"
|
||||||
|
},
|
||||||
|
"_source": "https://github.com/FortAwesome/Font-Awesome.git",
|
||||||
|
"_target": "4.7.0",
|
||||||
|
"_originalSource": "fontawesome"
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
*.pyc
|
||||||
|
*.egg-info
|
||||||
|
*.db
|
||||||
|
*.db.old
|
||||||
|
*.swp
|
||||||
|
*.db-journal
|
||||||
|
|
||||||
|
.coverage
|
||||||
|
.DS_Store
|
||||||
|
.installed.cfg
|
||||||
|
_gh_pages/*
|
||||||
|
|
||||||
|
.idea/*
|
||||||
|
.svn/*
|
||||||
|
src/website/static/*
|
||||||
|
src/website/media/*
|
||||||
|
|
||||||
|
bin
|
||||||
|
cfcache
|
||||||
|
develop-eggs
|
||||||
|
dist
|
||||||
|
downloads
|
||||||
|
eggs
|
||||||
|
parts
|
||||||
|
tmp
|
||||||
|
.sass-cache
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
src/website/settingslocal.py
|
||||||
|
stunnel.log
|
||||||
|
|
||||||
|
.ruby-version
|
||||||
|
.bundle
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
*.pyc
|
||||||
|
*.egg-info
|
||||||
|
*.db
|
||||||
|
*.db.old
|
||||||
|
*.swp
|
||||||
|
*.db-journal
|
||||||
|
|
||||||
|
.coverage
|
||||||
|
.DS_Store
|
||||||
|
.installed.cfg
|
||||||
|
_gh_pages/*
|
||||||
|
|
||||||
|
.idea/*
|
||||||
|
.svn/*
|
||||||
|
src/website/static/*
|
||||||
|
src/website/media/*
|
||||||
|
|
||||||
|
bin
|
||||||
|
cfcache
|
||||||
|
develop-eggs
|
||||||
|
dist
|
||||||
|
downloads
|
||||||
|
eggs
|
||||||
|
parts
|
||||||
|
tmp
|
||||||
|
.sass-cache
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
src/website/settingslocal.py
|
||||||
|
stunnel.log
|
||||||
|
|
||||||
|
.ruby-version
|
||||||
|
|
||||||
|
# don't need these in the npm package.
|
||||||
|
src/
|
||||||
|
_config.yml
|
||||||
|
bower.json
|
||||||
|
component.json
|
||||||
|
composer.json
|
||||||
|
CONTRIBUTING.md
|
||||||
|
Gemfile
|
||||||
|
Gemfile.lock
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"name": "font-awesome",
|
||||||
|
"description": "Font Awesome",
|
||||||
|
"keywords": [],
|
||||||
|
"homepage": "http://fontawesome.io",
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
|
"license": ["OFL-1.1", "MIT", "CC-BY-3.0"],
|
||||||
|
"main": [
|
||||||
|
"less/font-awesome.less",
|
||||||
|
"scss/font-awesome.scss"
|
||||||
|
],
|
||||||
|
"ignore": [
|
||||||
|
"*/.*",
|
||||||
|
"*.json",
|
||||||
|
"src",
|
||||||
|
"*.yml",
|
||||||
|
"Gemfile",
|
||||||
|
"Gemfile.lock",
|
||||||
|
"*.md"
|
||||||
|
]
|
||||||
|
}
|
||||||
+2337
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 434 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
+34
@@ -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; }
|
||||||
|
}
|
||||||
+12
@@ -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.7.0 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";
|
||||||
+789
@@ -0,0 +1,789 @@
|
|||||||
|
/* 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: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; }
|
||||||
|
.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }
|
||||||
|
.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }
|
||||||
|
.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }
|
||||||
|
.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }
|
||||||
|
.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }
|
||||||
|
.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }
|
||||||
|
.@{fa-css-prefix}-vcard:before,
|
||||||
|
.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }
|
||||||
|
.@{fa-css-prefix}-vcard-o:before,
|
||||||
|
.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }
|
||||||
|
.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }
|
||||||
|
.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }
|
||||||
|
.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }
|
||||||
|
.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }
|
||||||
|
.@{fa-css-prefix}-drivers-license:before,
|
||||||
|
.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }
|
||||||
|
.@{fa-css-prefix}-drivers-license-o:before,
|
||||||
|
.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }
|
||||||
|
.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }
|
||||||
|
.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }
|
||||||
|
.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }
|
||||||
|
.@{fa-css-prefix}-thermometer-4:before,
|
||||||
|
.@{fa-css-prefix}-thermometer:before,
|
||||||
|
.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }
|
||||||
|
.@{fa-css-prefix}-thermometer-3:before,
|
||||||
|
.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }
|
||||||
|
.@{fa-css-prefix}-thermometer-2:before,
|
||||||
|
.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }
|
||||||
|
.@{fa-css-prefix}-thermometer-1:before,
|
||||||
|
.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }
|
||||||
|
.@{fa-css-prefix}-thermometer-0:before,
|
||||||
|
.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }
|
||||||
|
.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }
|
||||||
|
.@{fa-css-prefix}-bathtub:before,
|
||||||
|
.@{fa-css-prefix}-s15:before,
|
||||||
|
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
|
||||||
|
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
|
||||||
|
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
|
||||||
|
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
|
||||||
|
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
|
||||||
|
.@{fa-css-prefix}-times-rectangle:before,
|
||||||
|
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
|
||||||
|
.@{fa-css-prefix}-times-rectangle-o:before,
|
||||||
|
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
|
||||||
|
.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }
|
||||||
|
.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }
|
||||||
|
.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }
|
||||||
|
.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }
|
||||||
|
.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }
|
||||||
|
.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }
|
||||||
|
.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }
|
||||||
|
.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }
|
||||||
|
.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }
|
||||||
|
.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }
|
||||||
|
.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }
|
||||||
+13
@@ -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; }
|
||||||
+19
@@ -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));
|
||||||
|
}
|
||||||
|
}
|
||||||
+60
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
+15
@@ -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(); }
|
||||||
+20
@@ -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; }
|
||||||
+800
@@ -0,0 +1,800 @@
|
|||||||
|
// Variables
|
||||||
|
// --------------------------
|
||||||
|
|
||||||
|
@fa-font-path: "../fonts";
|
||||||
|
@fa-font-size-base: 14px;
|
||||||
|
@fa-line-height-base: 1;
|
||||||
|
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly
|
||||||
|
@fa-css-prefix: fa;
|
||||||
|
@fa-version: "4.7.0";
|
||||||
|
@fa-border-color: #eee;
|
||||||
|
@fa-inverse: #fff;
|
||||||
|
@fa-li-width: (30em / 14);
|
||||||
|
|
||||||
|
@fa-var-500px: "\f26e";
|
||||||
|
@fa-var-address-book: "\f2b9";
|
||||||
|
@fa-var-address-book-o: "\f2ba";
|
||||||
|
@fa-var-address-card: "\f2bb";
|
||||||
|
@fa-var-address-card-o: "\f2bc";
|
||||||
|
@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-bandcamp: "\f2d5";
|
||||||
|
@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-bath: "\f2cd";
|
||||||
|
@fa-var-bathtub: "\f2cd";
|
||||||
|
@fa-var-battery: "\f240";
|
||||||
|
@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-drivers-license: "\f2c2";
|
||||||
|
@fa-var-drivers-license-o: "\f2c3";
|
||||||
|
@fa-var-dropbox: "\f16b";
|
||||||
|
@fa-var-drupal: "\f1a9";
|
||||||
|
@fa-var-edge: "\f282";
|
||||||
|
@fa-var-edit: "\f044";
|
||||||
|
@fa-var-eercast: "\f2da";
|
||||||
|
@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-open: "\f2b6";
|
||||||
|
@fa-var-envelope-open-o: "\f2b7";
|
||||||
|
@fa-var-envelope-square: "\f199";
|
||||||
|
@fa-var-envira: "\f299";
|
||||||
|
@fa-var-eraser: "\f12d";
|
||||||
|
@fa-var-etsy: "\f2d7";
|
||||||
|
@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-free-code-camp: "\f2c5";
|
||||||
|
@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-grav: "\f2d6";
|
||||||
|
@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-handshake-o: "\f2b5";
|
||||||
|
@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-id-badge: "\f2c1";
|
||||||
|
@fa-var-id-card: "\f2c2";
|
||||||
|
@fa-var-id-card-o: "\f2c3";
|
||||||
|
@fa-var-ils: "\f20b";
|
||||||
|
@fa-var-image: "\f03e";
|
||||||
|
@fa-var-imdb: "\f2d8";
|
||||||
|
@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-linode: "\f2b8";
|
||||||
|
@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-meetup: "\f2e0";
|
||||||
|
@fa-var-meh-o: "\f11a";
|
||||||
|
@fa-var-mercury: "\f223";
|
||||||
|
@fa-var-microchip: "\f2db";
|
||||||
|
@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-podcast: "\f2ce";
|
||||||
|
@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-quora: "\f2c4";
|
||||||
|
@fa-var-quote-left: "\f10d";
|
||||||
|
@fa-var-quote-right: "\f10e";
|
||||||
|
@fa-var-ra: "\f1d0";
|
||||||
|
@fa-var-random: "\f074";
|
||||||
|
@fa-var-ravelry: "\f2d9";
|
||||||
|
@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-s15: "\f2cd";
|
||||||
|
@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-shower: "\f2cc";
|
||||||
|
@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-snowflake-o: "\f2dc";
|
||||||
|
@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-superpowers: "\f2dd";
|
||||||
|
@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-telegram: "\f2c6";
|
||||||
|
@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-thermometer: "\f2c7";
|
||||||
|
@fa-var-thermometer-0: "\f2cb";
|
||||||
|
@fa-var-thermometer-1: "\f2ca";
|
||||||
|
@fa-var-thermometer-2: "\f2c9";
|
||||||
|
@fa-var-thermometer-3: "\f2c8";
|
||||||
|
@fa-var-thermometer-4: "\f2c7";
|
||||||
|
@fa-var-thermometer-empty: "\f2cb";
|
||||||
|
@fa-var-thermometer-full: "\f2c7";
|
||||||
|
@fa-var-thermometer-half: "\f2c9";
|
||||||
|
@fa-var-thermometer-quarter: "\f2ca";
|
||||||
|
@fa-var-thermometer-three-quarters: "\f2c8";
|
||||||
|
@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-times-rectangle: "\f2d3";
|
||||||
|
@fa-var-times-rectangle-o: "\f2d4";
|
||||||
|
@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-circle: "\f2bd";
|
||||||
|
@fa-var-user-circle-o: "\f2be";
|
||||||
|
@fa-var-user-md: "\f0f0";
|
||||||
|
@fa-var-user-o: "\f2c0";
|
||||||
|
@fa-var-user-plus: "\f234";
|
||||||
|
@fa-var-user-secret: "\f21b";
|
||||||
|
@fa-var-user-times: "\f235";
|
||||||
|
@fa-var-users: "\f0c0";
|
||||||
|
@fa-var-vcard: "\f2bb";
|
||||||
|
@fa-var-vcard-o: "\f2bc";
|
||||||
|
@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-window-close: "\f2d3";
|
||||||
|
@fa-var-window-close-o: "\f2d4";
|
||||||
|
@fa-var-window-maximize: "\f2d0";
|
||||||
|
@fa-var-window-minimize: "\f2d1";
|
||||||
|
@fa-var-window-restore: "\f2d2";
|
||||||
|
@fa-var-windows: "\f17a";
|
||||||
|
@fa-var-won: "\f159";
|
||||||
|
@fa-var-wordpress: "\f19a";
|
||||||
|
@fa-var-wpbeginner: "\f297";
|
||||||
|
@fa-var-wpexplorer: "\f2de";
|
||||||
|
@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";
|
||||||
|
|
||||||
+34
@@ -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; }
|
||||||
|
}
|
||||||
+12
@@ -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;
|
||||||
|
}
|
||||||
+789
@@ -0,0 +1,789 @@
|
|||||||
|
/* 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: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; }
|
||||||
|
.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; }
|
||||||
|
.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; }
|
||||||
|
.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; }
|
||||||
|
.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; }
|
||||||
|
.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; }
|
||||||
|
.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; }
|
||||||
|
.#{$fa-css-prefix}-vcard:before,
|
||||||
|
.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; }
|
||||||
|
.#{$fa-css-prefix}-vcard-o:before,
|
||||||
|
.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; }
|
||||||
|
.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; }
|
||||||
|
.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; }
|
||||||
|
.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; }
|
||||||
|
.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; }
|
||||||
|
.#{$fa-css-prefix}-drivers-license:before,
|
||||||
|
.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; }
|
||||||
|
.#{$fa-css-prefix}-drivers-license-o:before,
|
||||||
|
.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; }
|
||||||
|
.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; }
|
||||||
|
.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; }
|
||||||
|
.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; }
|
||||||
|
.#{$fa-css-prefix}-thermometer-4:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; }
|
||||||
|
.#{$fa-css-prefix}-thermometer-3:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; }
|
||||||
|
.#{$fa-css-prefix}-thermometer-2:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; }
|
||||||
|
.#{$fa-css-prefix}-thermometer-1:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; }
|
||||||
|
.#{$fa-css-prefix}-thermometer-0:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; }
|
||||||
|
.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; }
|
||||||
|
.#{$fa-css-prefix}-bathtub:before,
|
||||||
|
.#{$fa-css-prefix}-s15:before,
|
||||||
|
.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; }
|
||||||
|
.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; }
|
||||||
|
.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; }
|
||||||
|
.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; }
|
||||||
|
.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; }
|
||||||
|
.#{$fa-css-prefix}-times-rectangle:before,
|
||||||
|
.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; }
|
||||||
|
.#{$fa-css-prefix}-times-rectangle-o:before,
|
||||||
|
.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; }
|
||||||
|
.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; }
|
||||||
|
.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; }
|
||||||
|
.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; }
|
||||||
|
.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; }
|
||||||
|
.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; }
|
||||||
|
.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; }
|
||||||
|
.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; }
|
||||||
|
.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; }
|
||||||
|
.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; }
|
||||||
|
.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; }
|
||||||
|
.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; }
|
||||||
+13
@@ -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; }
|
||||||
+19
@@ -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);
|
||||||
|
}
|
||||||
|
}
|
||||||
+60
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
+15
@@ -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(); }
|
||||||
+20
@@ -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; }
|
||||||
+800
@@ -0,0 +1,800 @@
|
|||||||
|
// 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.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly
|
||||||
|
$fa-css-prefix: fa !default;
|
||||||
|
$fa-version: "4.7.0" !default;
|
||||||
|
$fa-border-color: #eee !default;
|
||||||
|
$fa-inverse: #fff !default;
|
||||||
|
$fa-li-width: (30em / 14) !default;
|
||||||
|
|
||||||
|
$fa-var-500px: "\f26e";
|
||||||
|
$fa-var-address-book: "\f2b9";
|
||||||
|
$fa-var-address-book-o: "\f2ba";
|
||||||
|
$fa-var-address-card: "\f2bb";
|
||||||
|
$fa-var-address-card-o: "\f2bc";
|
||||||
|
$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-bandcamp: "\f2d5";
|
||||||
|
$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-bath: "\f2cd";
|
||||||
|
$fa-var-bathtub: "\f2cd";
|
||||||
|
$fa-var-battery: "\f240";
|
||||||
|
$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-drivers-license: "\f2c2";
|
||||||
|
$fa-var-drivers-license-o: "\f2c3";
|
||||||
|
$fa-var-dropbox: "\f16b";
|
||||||
|
$fa-var-drupal: "\f1a9";
|
||||||
|
$fa-var-edge: "\f282";
|
||||||
|
$fa-var-edit: "\f044";
|
||||||
|
$fa-var-eercast: "\f2da";
|
||||||
|
$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-open: "\f2b6";
|
||||||
|
$fa-var-envelope-open-o: "\f2b7";
|
||||||
|
$fa-var-envelope-square: "\f199";
|
||||||
|
$fa-var-envira: "\f299";
|
||||||
|
$fa-var-eraser: "\f12d";
|
||||||
|
$fa-var-etsy: "\f2d7";
|
||||||
|
$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-free-code-camp: "\f2c5";
|
||||||
|
$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-grav: "\f2d6";
|
||||||
|
$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-handshake-o: "\f2b5";
|
||||||
|
$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-id-badge: "\f2c1";
|
||||||
|
$fa-var-id-card: "\f2c2";
|
||||||
|
$fa-var-id-card-o: "\f2c3";
|
||||||
|
$fa-var-ils: "\f20b";
|
||||||
|
$fa-var-image: "\f03e";
|
||||||
|
$fa-var-imdb: "\f2d8";
|
||||||
|
$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-linode: "\f2b8";
|
||||||
|
$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-meetup: "\f2e0";
|
||||||
|
$fa-var-meh-o: "\f11a";
|
||||||
|
$fa-var-mercury: "\f223";
|
||||||
|
$fa-var-microchip: "\f2db";
|
||||||
|
$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-podcast: "\f2ce";
|
||||||
|
$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-quora: "\f2c4";
|
||||||
|
$fa-var-quote-left: "\f10d";
|
||||||
|
$fa-var-quote-right: "\f10e";
|
||||||
|
$fa-var-ra: "\f1d0";
|
||||||
|
$fa-var-random: "\f074";
|
||||||
|
$fa-var-ravelry: "\f2d9";
|
||||||
|
$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-s15: "\f2cd";
|
||||||
|
$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-shower: "\f2cc";
|
||||||
|
$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-snowflake-o: "\f2dc";
|
||||||
|
$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-superpowers: "\f2dd";
|
||||||
|
$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-telegram: "\f2c6";
|
||||||
|
$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-thermometer: "\f2c7";
|
||||||
|
$fa-var-thermometer-0: "\f2cb";
|
||||||
|
$fa-var-thermometer-1: "\f2ca";
|
||||||
|
$fa-var-thermometer-2: "\f2c9";
|
||||||
|
$fa-var-thermometer-3: "\f2c8";
|
||||||
|
$fa-var-thermometer-4: "\f2c7";
|
||||||
|
$fa-var-thermometer-empty: "\f2cb";
|
||||||
|
$fa-var-thermometer-full: "\f2c7";
|
||||||
|
$fa-var-thermometer-half: "\f2c9";
|
||||||
|
$fa-var-thermometer-quarter: "\f2ca";
|
||||||
|
$fa-var-thermometer-three-quarters: "\f2c8";
|
||||||
|
$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-times-rectangle: "\f2d3";
|
||||||
|
$fa-var-times-rectangle-o: "\f2d4";
|
||||||
|
$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-circle: "\f2bd";
|
||||||
|
$fa-var-user-circle-o: "\f2be";
|
||||||
|
$fa-var-user-md: "\f0f0";
|
||||||
|
$fa-var-user-o: "\f2c0";
|
||||||
|
$fa-var-user-plus: "\f234";
|
||||||
|
$fa-var-user-secret: "\f21b";
|
||||||
|
$fa-var-user-times: "\f235";
|
||||||
|
$fa-var-users: "\f0c0";
|
||||||
|
$fa-var-vcard: "\f2bb";
|
||||||
|
$fa-var-vcard-o: "\f2bc";
|
||||||
|
$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-window-close: "\f2d3";
|
||||||
|
$fa-var-window-close-o: "\f2d4";
|
||||||
|
$fa-var-window-maximize: "\f2d0";
|
||||||
|
$fa-var-window-minimize: "\f2d1";
|
||||||
|
$fa-var-window-restore: "\f2d2";
|
||||||
|
$fa-var-windows: "\f17a";
|
||||||
|
$fa-var-won: "\f159";
|
||||||
|
$fa-var-wordpress: "\f19a";
|
||||||
|
$fa-var-wpbeginner: "\f297";
|
||||||
|
$fa-var-wpexplorer: "\f2de";
|
||||||
|
$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.7.0 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";
|
||||||
+19
File diff suppressed because one or more lines are too long
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"name": "jquery-mask-plugin",
|
||||||
|
"version": "1.14.16",
|
||||||
|
"main": "dist/jquery.mask.js",
|
||||||
|
"ignore": [
|
||||||
|
"deploy.rb",
|
||||||
|
"jquery.mask.json",
|
||||||
|
"Gruntfile.js",
|
||||||
|
"test/*",
|
||||||
|
".*"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/igorescobar/jQuery-Mask-Plugin",
|
||||||
|
"_release": "1.14.16",
|
||||||
|
"_resolution": {
|
||||||
|
"type": "version",
|
||||||
|
"tag": "v1.14.16",
|
||||||
|
"commit": "0933428d196b18a08325d53cfeaf57e68d1c6d98"
|
||||||
|
},
|
||||||
|
"_source": "https://github.com/igorescobar/jQuery-Mask-Plugin.git",
|
||||||
|
"_target": "1.14.16",
|
||||||
|
"_originalSource": "jquery-mask-plugin"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user