├── img ├── favicon.ico ├── sample.jpg ├── blue_light.png ├── red_light.png ├── green_light.png └── yellow_light.png ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── font-awesome-4.1.0 ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── less │ ├── fixed-width.less │ ├── core.less │ ├── bordered-pulled.less │ ├── rotated-flipped.less │ ├── larger.less │ ├── list.less │ ├── font-awesome.less │ ├── stacked.less │ ├── path.less │ ├── mixins.less │ ├── spinning.less │ ├── variables.less │ └── icons.less ├── scss │ ├── _fixed-width.scss │ ├── _core.scss │ ├── _bordered-pulled.scss │ ├── _larger.scss │ ├── _rotated-flipped.scss │ ├── _list.scss │ ├── font-awesome.scss │ ├── _stacked.scss │ ├── _path.scss │ ├── _mixins.scss │ ├── _spinning.scss │ └── _variables.scss └── css │ └── font-awesome.min.css ├── CHANGELOG.md ├── js ├── sb-admin-2.js ├── menu.js ├── cti.js └── bootstrap.min.js ├── css ├── menu.css └── sb-admin-2.css ├── LICENSE ├── CONTRIBUTING.rst ├── README.rst └── index.html /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/img/sample.jpg -------------------------------------------------------------------------------- /img/blue_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/img/blue_light.png -------------------------------------------------------------------------------- /img/red_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/img/red_light.png -------------------------------------------------------------------------------- /img/green_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/img/green_light.png -------------------------------------------------------------------------------- /img/yellow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/img/yellow_light.png -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /font-awesome-4.1.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/font-awesome-4.1.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /font-awesome-4.1.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/font-awesome-4.1.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /font-awesome-4.1.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /font-awesome-4.1.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/telephony-example-cti-dashboard/HEAD/font-awesome-4.1.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Changelog 2 | ========= 3 | 4 | ## 1.2.0 (2015-04-08) initial release 5 | 6 | - [feature] Token login authentification 7 | - [feature] Line event management 8 | - [feature] Call queuing event management 9 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: ~"url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}')"; 7 | src: ~"url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype')", 8 | ~"url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff')", 9 | ~"url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype')", 10 | ~"url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg')"; 11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon-rotate(@degrees, @rotation) { 5 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); 6 | -webkit-transform: rotate(@degrees); 7 | -moz-transform: rotate(@degrees); 8 | -ms-transform: rotate(@degrees); 9 | -o-transform: rotate(@degrees); 10 | transform: rotate(@degrees); 11 | } 12 | 13 | .fa-icon-flip(@horiz, @vert, @rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); 15 | -webkit-transform: scale(@horiz, @vert); 16 | -moz-transform: scale(@horiz, @vert); 17 | -ms-transform: scale(@horiz, @vert); 18 | -o-transform: scale(@horiz, @vert); 19 | transform: scale(@horiz, @vert); 20 | } 21 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon-rotate($degrees, $rotation) { 5 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 6 | -webkit-transform: rotate($degrees); 7 | -moz-transform: rotate($degrees); 8 | -ms-transform: rotate($degrees); 9 | -o-transform: rotate($degrees); 10 | transform: rotate($degrees); 11 | } 12 | 13 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 15 | -webkit-transform: scale($horiz, $vert); 16 | -moz-transform: scale($horiz, $vert); 17 | -ms-transform: scale($horiz, $vert); 18 | -o-transform: scale($horiz, $vert); 19 | transform: scale($horiz, $vert); 20 | } 21 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: spin 2s infinite linear; 6 | -moz-animation: spin 2s infinite linear; 7 | -o-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | } 10 | 11 | @-moz-keyframes spin { 12 | 0% { -moz-transform: rotate(0deg); } 13 | 100% { -moz-transform: rotate(359deg); } 14 | } 15 | @-webkit-keyframes spin { 16 | 0% { -webkit-transform: rotate(0deg); } 17 | 100% { -webkit-transform: rotate(359deg); } 18 | } 19 | @-o-keyframes spin { 20 | 0% { -o-transform: rotate(0deg); } 21 | 100% { -o-transform: rotate(359deg); } 22 | } 23 | @keyframes spin { 24 | 0% { 25 | -webkit-transform: rotate(0deg); 26 | transform: rotate(0deg); 27 | } 28 | 100% { 29 | -webkit-transform: rotate(359deg); 30 | transform: rotate(359deg); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: spin 2s infinite linear; 6 | -moz-animation: spin 2s infinite linear; 7 | -o-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | } 10 | 11 | @-moz-keyframes spin { 12 | 0% { -moz-transform: rotate(0deg); } 13 | 100% { -moz-transform: rotate(359deg); } 14 | } 15 | @-webkit-keyframes spin { 16 | 0% { -webkit-transform: rotate(0deg); } 17 | 100% { -webkit-transform: rotate(359deg); } 18 | } 19 | @-o-keyframes spin { 20 | 0% { -o-transform: rotate(0deg); } 21 | 100% { -o-transform: rotate(359deg); } 22 | } 23 | @keyframes spin { 24 | 0% { 25 | -webkit-transform: rotate(0deg); 26 | transform: rotate(0deg); 27 | } 28 | 100% { 29 | -webkit-transform: rotate(359deg); 30 | transform: rotate(359deg); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /js/sb-admin-2.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $('#side-menu').metisMenu(); 4 | 5 | }); 6 | 7 | //Loads the correct sidebar on window load, 8 | //collapses the sidebar on window resize. 9 | // Sets the min-height of #page-wrapper to window size 10 | $(function() { 11 | $(window).bind("load resize", function() { 12 | topOffset = 50; 13 | width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width; 14 | if (width < 768) { 15 | $('div.navbar-collapse').addClass('collapse') 16 | topOffset = 100; // 2-row-menu 17 | } else { 18 | $('div.navbar-collapse').removeClass('collapse') 19 | } 20 | 21 | height = (this.window.innerHeight > 0) ? this.window.innerHeight : this.screen.height; 22 | height = height - topOffset; 23 | if (height < 1) height = 1; 24 | if (height > topOffset) { 25 | $("#page-wrapper").css("min-height", (height) + "px"); 26 | } 27 | }) 28 | }); 29 | -------------------------------------------------------------------------------- /css/menu.css: -------------------------------------------------------------------------------- 1 | /* 2 | * metismenu - v1.0.3 3 | * Easy menu jQuery plugin for Twitter Bootstrap 3 4 | * https://github.com/onokumus/metisMenu 5 | * 6 | * Made by Osman Nuri Okumuş 7 | * Under MIT License 8 | */ 9 | .arrow { 10 | float: right; 11 | } 12 | 13 | .glyphicon.arrow:before { 14 | content: "\e079"; 15 | } 16 | 17 | .active > a > .glyphicon.arrow:before { 18 | content: "\e114"; 19 | } 20 | 21 | 22 | /* 23 | * Require Font-Awesome 24 | * http://fortawesome.github.io/Font-Awesome/ 25 | */ 26 | 27 | 28 | .fa.arrow:before { 29 | content: "\f104"; 30 | } 31 | 32 | .active > a > .fa.arrow:before { 33 | content: "\f107"; 34 | } 35 | 36 | .plus-times { 37 | float: right; 38 | } 39 | 40 | .fa.plus-times:before { 41 | content: "\f067"; 42 | } 43 | 44 | .active > a > .fa.plus-times { 45 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 46 | -webkit-transform: rotate(45deg); 47 | -moz-transform: rotate(45deg); 48 | -ms-transform: rotate(45deg); 49 | -o-transform: rotate(45deg); 50 | transform: rotate(45deg); 51 | } 52 | 53 | .plus-minus { 54 | float: right; 55 | } 56 | 57 | .fa.plus-minus:before { 58 | content: "\f067"; 59 | } 60 | 61 | .active > a > .fa.plus-minus:before { 62 | content: "\f068"; 63 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013-2014, OVH SAS. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | * Redistributions in binary form must reproduce the above copyright 10 | notice, this list of conditions and the following disclaimer in the 11 | documentation and/or other materials provided with the distribution. 12 | * Neither the name of OVH SAS nor the 13 | names of its contributors may be used to endorse or promote products 14 | derived from this software without specific prior written permission. 15 | 16 | THIS SOFTWARE IS PROVIDED BY OVH SAS AND CONTRIBUTORS ``AS IS'' AND ANY 17 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 18 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 19 | DISCLAIMED. IN NO EVENT SHALL OVH SAS AND CONTRIBUTORS BE LIABLE FOR ANY 20 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 21 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 23 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 25 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | -------------------------------------------------------------------------------- /js/menu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * metismenu - v1.0.3 3 | * Easy menu jQuery plugin for Twitter Bootstrap 3 4 | * https://github.com/onokumus/metisMenu 5 | * 6 | * Made by Osman Nuri Okumuş 7 | * Under MIT License 8 | */ 9 | ;(function ($, window, document, undefined) { 10 | 11 | var pluginName = "metisMenu", 12 | defaults = { 13 | toggle: true 14 | }; 15 | 16 | function Plugin(element, options) { 17 | this.element = element; 18 | this.settings = $.extend({}, defaults, options); 19 | this._defaults = defaults; 20 | this._name = pluginName; 21 | this.init(); 22 | } 23 | 24 | Plugin.prototype = { 25 | init: function () { 26 | 27 | var $this = $(this.element), 28 | $toggle = this.settings.toggle; 29 | 30 | if (this.isIE() <= 9) { 31 | $this.find("li.active").has("ul").children("ul").collapse("show"); 32 | $this.find("li").not(".active").has("ul").children("ul").collapse("hide"); 33 | } else { 34 | $this.find("li.active").has("ul").children("ul").addClass("collapse in"); 35 | $this.find("li").not(".active").has("ul").children("ul").addClass("collapse"); 36 | } 37 | 38 | $this.find("li").has("ul").children("a").on("click", function (e) { 39 | e.preventDefault(); 40 | 41 | $(this).parent("li").toggleClass("active").children("ul").collapse("toggle"); 42 | 43 | if ($toggle) { 44 | $(this).parent("li").siblings().removeClass("active").children("ul.in").collapse("hide"); 45 | } 46 | }); 47 | }, 48 | 49 | isIE: function() {//https://gist.github.com/padolsey/527683 50 | var undef, 51 | v = 3, 52 | div = document.createElement("div"), 53 | all = div.getElementsByTagName("i"); 54 | 55 | while ( 56 | div.innerHTML = "", 57 | all[0] 58 | ) { 59 | return v > 4 ? v : undef; 60 | } 61 | } 62 | }; 63 | 64 | $.fn[ pluginName ] = function (options) { 65 | return this.each(function () { 66 | if (!$.data(this, "plugin_" + pluginName)) { 67 | $.data(this, "plugin_" + pluginName, new Plugin(this, options)); 68 | } 69 | }); 70 | }; 71 | 72 | })(jQuery, window, document); 73 | -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- 1 | Contributing to PHP-OVH 2 | ========================== 3 | 4 | This project accepts contributions. In order to contribute, you should 5 | pay attention to a few things: 6 | 7 | 1. your code must follow the coding style rules 8 | 2. your code must be fully (100% coverage) unit-tested 9 | 3. your code must be fully documented 10 | 4. your work must be signed 11 | 5. the format of the submission must be email patches or GitHub Pull Requests 12 | 13 | 14 | Submitting Modifications: 15 | ------------------------- 16 | 17 | The contributions should be email patches. The guidelines are the same 18 | as the patch submission for the Linux kernel except for the DCO which 19 | is defined below. The guidelines are defined in the 20 | 'SubmittingPatches' file, available in the directory 'Documentation' 21 | of the Linux kernel source tree. 22 | 23 | It can be accessed online too: 24 | 25 | https://www.kernel.org/doc/Documentation/SubmittingPatches 26 | 27 | You can submit your patches via GitHub 28 | 29 | Licensing for new files: 30 | ------------------------ 31 | 32 | OVH Telephony CTI Dashboard is licensed under a MIT license. 33 | Anything contributed to OVH Telephony CTI Dashboard must be released 34 | under this license. 35 | 36 | Json metismenu - v1.0.3 plugin, made by Osman Nuri Okumuş, is 37 | licensed under a MIT license. 38 | https://github.com/onokumus/metisMenu 39 | 40 | When introducing a new file into the project, please make sure it has a 41 | copyright header making clear under which license it's being released. 42 | 43 | Developer Certificate of Origin: 44 | -------------------------------- 45 | 46 | To improve tracking of contributions to this project we will use a 47 | process modeled on the modified DCO 1.1 and use a "sign-off" procedure 48 | on patches that are being emailed around or contributed in any other 49 | way. 50 | 51 | The sign-off is a simple line at the end of the explanation for the 52 | patch, which certifies that you wrote it or otherwise have the right 53 | to pass it on as an open-source patch. The rules are pretty simple: 54 | if you can certify the below: 55 | 56 | By making a contribution to this project, I certify that: 57 | 58 | (a) The contribution was created in whole or in part by me and I have 59 | the right to submit it under the open source license indicated in 60 | the file; or 61 | 62 | (b) The contribution is based upon previous work that, to the best of 63 | my knowledge, is covered under an appropriate open source License 64 | and I have the right under that license to submit that work with 65 | modifications, whether created in whole or in part by me, under 66 | the same open source license (unless I am permitted to submit 67 | under a different license), as indicated in the file; or 68 | 69 | (c) The contribution was provided directly to me by some other person 70 | who certified (a), (b) or (c) and I have not modified it. 71 | 72 | (d) The contribution is made free of any other party's intellectual 73 | property claims or rights. 74 | 75 | (e) I understand and agree that this project and the contribution are 76 | public and that a record of the contribution (including all 77 | personal information I submit with it, including my sign-off) is 78 | maintained indefinitely and may be redistributed consistent with 79 | this project or the open source license(s) involved. 80 | 81 | 82 | then you just add a line saying 83 | 84 | Signed-off-by: Random J Developer 85 | 86 | using your real name (sorry, no pseudonyms or anonymous contributions.) 87 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | Description 2 | =========== 3 | 4 | **Computer Telephony Integration:** Programatically manage phone calls. 5 | 6 | This project shows signal events provided by the CTI from ``OVH France`` telephony services. 7 | 8 | .. image:: https://github.com/ovh/telephony-example-cti-dashboard/raw/master/img/sample.jpg 9 | :alt: Telephony CTI Dashboard 10 | :target: https://www.ovhtelecom.fr/telephonie/services_inclus/cti.xml 11 | 12 | Scope 13 | ===== 14 | 15 | This dashboard works on SIP (sipCirpack) and hunting numbers (easyHunting and cloudHunting). It also works on some MGCP phones except for the following cases: 16 | * MGCP to OVH SIP number or external numbers. 17 | 18 | Features 19 | ======== 20 | 21 | This control panel can be used to display: 22 | * call setup 23 | * call duration 24 | * call queuing events 25 | 26 | from your ``OVH billing account``. It can be used as a starting point for a custom solution. It also allows the use of url callbacks to display user details or other needs. 27 | 28 | How does it work ? 29 | -------------------- 30 | 31 | This demo is a frontend-only application. The JavaScript processes long-polling requests against the following url: 32 | 33 | .. code:: bash 34 | 35 | https://events.voip.ovh.net/?token=[TOKEN] 36 | 37 | Getting started 38 | ================= 39 | 40 | Get your `token group `_ or `token number `_ from the API. 41 | 42 | .. code:: text 43 | 44 | POST /telephony/{billingAccount}/eventToken 45 | 46 | This will give you a token of the form ``ABCDEFAB-CDEF-ABCD-EFAB-CDEFABCDEFAB``. You can 47 | now use it to fetch events with a ``curl`` request like: 48 | 49 | .. code:: bash 50 | 51 | curl https://events.voip.ovh.net/?token=ABCDEFAB-CDEF-ABCD-EFAB-CDEFABCDEFAB 52 | 53 | 54 | Deployment 55 | ---------- 56 | 57 | A live demo of this dashboard is available ` here` 58 | 59 | If you want to host it by yourself: 60 | 61 | * Using ``Python``: `python -m SimpleHTTPServer` 62 | * Using ``Apache``: copy all files of the project in your favorite web 63 | server document root. Usually : `/var/www`. 64 | 65 | Supported Events 66 | ================ 67 | 68 | CTI events are triggered by the followings: 69 | 70 | Line (sip/mgcp) 71 | --------------- 72 | 73 | - **start_ringing** Start ringing 74 | - **end_ringing** End ringing 75 | - **start_calling** Start calling 76 | - **end_calling** End calling 77 | - **registered** In case of register announcement 78 | 79 | Hunting (easy/cloud) 80 | -------------------- 81 | 82 | - **member-queue-start** Member entering a queue 83 | - **member-queue-end** Member leaving a queue 84 | - **agent-offering** Member ringing 85 | - **bridge-agent-start** Agent start bridging 86 | - **bridge-agent-end** Agent end bridging 87 | - **bridge-agent-end** Agent end bridging 88 | - **member-count** Member queue size changing 89 | 90 | json:: 91 | 92 | >Data: { 93 | > Billing: "0033912312312" (OVH number) 94 | > Body: "SIP/2.0 200 OK" (Header SIP packet) 95 | > CallId: "N2ZkZmEyNGMxZWM0N2VhN2M4NGJkMTY4ZGYwZmU2OTY." (CallId identifier) 96 | > Called: "0033912312312" (calling number) 97 | > Calling: "0033912312312" (L'appelant) 98 | > Cseq: "181 REGISTER" (Le code CSeq du paquet SIP) 99 | > DateStart: Thu Mar 05 2015 12:44:30 GMT+0100 (CET) (La date) 100 | > Dialed: "0033912312312" (Le numéro composé) 101 | > Event: "registered" (Le type d'évenement) 102 | > Protocol: "sip" (Le type de protocole, sip ou mgcp) 103 | > RelevantInfo: "" (Information importante) 104 | > Ts: 1425554670.102 105 | > TsGet: 1425554670238926800 (Le timestamp de l'évenement en nanoseconde) 106 | >} 107 | >Date: "2015-03-05T12:24:30.255954 (CET)" 108 | >Details: { 109 | > Description: "Gaelle Becquet" (Description du numéro OVH) 110 | > Id: "295670" (Identifiant de la ligne du numéro OVH) 111 | > IdBillingAccount: "59415" (Identifiant du groupe du numéro OVH) 112 | > SimultaneousLine: "2" (Nombre de lignes simultannées) 113 | > Type: "sipCirpack" (Type de ligne) 114 | >} 115 | >Event: "registered" (Le type d'évenement) 116 | >Ressource: "0033912312312" (Le numéro OVH) 117 | >Service: "sip" (Le protocole) 118 | >Timestamp: 1425554670255954700 (Le timestamp de l'évenement en nanoseconde) 119 | >Token: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" (Le token) 120 | 121 | 122 | Interfaces 123 | ========== 124 | 125 | CTI Dashboard 126 | -------------- 127 | 128 | "Configuration => Appel du CGI" 129 | 130 | Then specify the CGI URL and the execution type. Some dynamic values can be specified in the URL: 131 | 132 | * *CALLING* => Calling number 133 | * *CALLED* => Called number 134 | * *EVENT* => Event name 135 | 136 | Example : http://monsite.com?number=*CALLING* 137 | 138 | Related Links 139 | ============= 140 | 141 | * **API endpoint**: https://events.voip.ovh.net/ 142 | * **Live demo**: https://events.voip.ovh.net/demo/cti 143 | * **Documentation**: [French] http://www.ovhtelecom.fr/pdf/telephony/guides/g1725.cti 144 | * **Official website**: [French] https://www.ovhtelecom.fr/telephonie/services_inclus/ 145 | 146 | License 147 | ======= 148 | 149 | MIT 150 | -------------------------------------------------------------------------------- /css/sb-admin-2.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com) 3 | * Code licensed under the Apache License v2.0. 4 | * For details, see http://www.apache.org/licenses/LICENSE-2.0. 5 | */ 6 | 7 | body { 8 | background-color: #f8f8f8; 9 | } 10 | 11 | #wrapper { 12 | width: 100%; 13 | } 14 | 15 | #page-wrapper { 16 | padding: 0 15px; 17 | min-height: 568px; 18 | background-color: #fff; 19 | } 20 | 21 | @media(min-width:768px) { 22 | #page-wrapper { 23 | position: inherit; 24 | margin: 0 0 0 250px; 25 | padding: 0 30px; 26 | border-left: 1px solid #e7e7e7; 27 | } 28 | } 29 | 30 | .navbar-top-links { 31 | margin-right: 0; 32 | } 33 | 34 | .navbar-top-links li { 35 | display: inline-block; 36 | } 37 | 38 | .navbar-top-links li:last-child { 39 | margin-right: 15px; 40 | } 41 | 42 | .navbar-top-links li a { 43 | padding: 15px; 44 | min-height: 50px; 45 | } 46 | 47 | .navbar-top-links .dropdown-menu li { 48 | display: block; 49 | } 50 | 51 | .navbar-top-links .dropdown-menu li:last-child { 52 | margin-right: 0; 53 | } 54 | 55 | .navbar-top-links .dropdown-menu li a { 56 | padding: 3px 20px; 57 | min-height: 0; 58 | } 59 | 60 | .navbar-top-links .dropdown-menu li a div { 61 | white-space: normal; 62 | } 63 | 64 | .navbar-top-links .dropdown-messages, 65 | .navbar-top-links .dropdown-tasks, 66 | .navbar-top-links .dropdown-alerts { 67 | width: 310px; 68 | min-width: 0; 69 | } 70 | 71 | .navbar-top-links .dropdown-messages { 72 | margin-left: 5px; 73 | } 74 | 75 | .navbar-top-links .dropdown-tasks { 76 | margin-left: -59px; 77 | } 78 | 79 | .navbar-top-links .dropdown-alerts { 80 | margin-left: -123px; 81 | } 82 | 83 | .navbar-top-links .dropdown-user { 84 | right: 0; 85 | left: auto; 86 | } 87 | 88 | .sidebar .sidebar-nav.navbar-collapse { 89 | padding-right: 0; 90 | padding-left: 0; 91 | } 92 | 93 | .sidebar .sidebar-search { 94 | padding: 15px; 95 | } 96 | 97 | .sidebar ul li { 98 | border-bottom: 1px solid #e7e7e7; 99 | } 100 | 101 | .sidebar ul li a.active { 102 | background-color: #eee; 103 | } 104 | 105 | .sidebar .arrow { 106 | float: right; 107 | } 108 | 109 | .sidebar .fa.arrow:before { 110 | content: "\f104"; 111 | } 112 | 113 | .sidebar .active>a>.fa.arrow:before { 114 | content: "\f107"; 115 | } 116 | 117 | .sidebar .nav-second-level li, 118 | .sidebar .nav-third-level li { 119 | border-bottom: 0!important; 120 | } 121 | 122 | .sidebar .nav-second-level li a { 123 | padding-left: 37px; 124 | } 125 | 126 | .sidebar .nav-third-level li a { 127 | padding-left: 52px; 128 | } 129 | 130 | @media(min-width:768px) { 131 | .sidebar { 132 | z-index: 1; 133 | position: absolute; 134 | width: 250px; 135 | margin-top: 51px; 136 | } 137 | 138 | .navbar-top-links .dropdown-messages, 139 | .navbar-top-links .dropdown-tasks, 140 | .navbar-top-links .dropdown-alerts { 141 | margin-left: auto; 142 | } 143 | } 144 | 145 | .btn-outline { 146 | color: inherit; 147 | background-color: transparent; 148 | transition: all .5s; 149 | } 150 | 151 | .btn-primary.btn-outline { 152 | color: #428bca; 153 | } 154 | 155 | .btn-success.btn-outline { 156 | color: #5cb85c; 157 | } 158 | 159 | .btn-info.btn-outline { 160 | color: #5bc0de; 161 | } 162 | 163 | .btn-warning.btn-outline { 164 | color: #f0ad4e; 165 | } 166 | 167 | .btn-danger.btn-outline { 168 | color: #d9534f; 169 | } 170 | 171 | .btn-primary.btn-outline:hover, 172 | .btn-success.btn-outline:hover, 173 | .btn-info.btn-outline:hover, 174 | .btn-warning.btn-outline:hover, 175 | .btn-danger.btn-outline:hover { 176 | color: #fff; 177 | } 178 | 179 | .chat { 180 | margin: 0; 181 | padding: 0; 182 | list-style: none; 183 | } 184 | 185 | .chat li { 186 | margin-bottom: 10px; 187 | padding-bottom: 5px; 188 | border-bottom: 1px dotted #999; 189 | } 190 | 191 | .chat li.left .chat-body { 192 | margin-left: 60px; 193 | } 194 | 195 | .chat li.right .chat-body { 196 | margin-right: 60px; 197 | } 198 | 199 | .chat li .chat-body p { 200 | margin: 0; 201 | } 202 | 203 | .panel .slidedown .glyphicon, 204 | .chat .glyphicon { 205 | margin-right: 5px; 206 | } 207 | 208 | .chat-panel .panel-body { 209 | height: 350px; 210 | overflow-y: scroll; 211 | } 212 | 213 | .login-panel { 214 | margin-top: 25%; 215 | } 216 | 217 | .flot-chart { 218 | display: block; 219 | height: 400px; 220 | } 221 | 222 | .flot-chart-content { 223 | width: 100%; 224 | height: 100%; 225 | } 226 | 227 | table.dataTable thead .sorting, 228 | table.dataTable thead .sorting_asc, 229 | table.dataTable thead .sorting_desc, 230 | table.dataTable thead .sorting_asc_disabled, 231 | table.dataTable thead .sorting_desc_disabled { 232 | background: 0 0; 233 | } 234 | 235 | table.dataTable thead .sorting_asc:after { 236 | content: "\f0de"; 237 | float: right; 238 | font-family: fontawesome; 239 | } 240 | 241 | table.dataTable thead .sorting_desc:after { 242 | content: "\f0dd"; 243 | float: right; 244 | font-family: fontawesome; 245 | } 246 | 247 | table.dataTable thead .sorting:after { 248 | content: "\f0dc"; 249 | float: right; 250 | font-family: fontawesome; 251 | color: rgba(50,50,50,.5); 252 | } 253 | 254 | .btn-circle { 255 | width: 30px; 256 | height: 30px; 257 | padding: 6px 0; 258 | border-radius: 15px; 259 | text-align: center; 260 | font-size: 12px; 261 | line-height: 1.428571429; 262 | } 263 | 264 | .btn-circle.btn-lg { 265 | width: 50px; 266 | height: 50px; 267 | padding: 10px 16px; 268 | border-radius: 25px; 269 | font-size: 18px; 270 | line-height: 1.33; 271 | } 272 | 273 | .btn-circle.btn-xl { 274 | width: 70px; 275 | height: 70px; 276 | padding: 10px 16px; 277 | border-radius: 35px; 278 | font-size: 24px; 279 | line-height: 1.33; 280 | } 281 | 282 | .show-grid [class^=col-] { 283 | padding-top: 10px; 284 | padding-bottom: 10px; 285 | border: 1px solid #ddd; 286 | background-color: #eee!important; 287 | } 288 | 289 | .show-grid { 290 | margin: 15px 0; 291 | } 292 | 293 | .huge { 294 | font-size: 40px; 295 | } 296 | 297 | .panel-green { 298 | border-color: #5cb85c; 299 | } 300 | 301 | .panel-green .panel-heading { 302 | border-color: #5cb85c; 303 | color: #fff; 304 | background-color: #5cb85c; 305 | } 306 | 307 | .panel-green a { 308 | color: #5cb85c; 309 | } 310 | 311 | .panel-green a:hover { 312 | color: #3d8b3d; 313 | } 314 | 315 | .panel-red { 316 | border-color: #d9534f; 317 | } 318 | 319 | .panel-red .panel-heading { 320 | border-color: #d9534f; 321 | color: #fff; 322 | background-color: #d9534f; 323 | } 324 | 325 | .panel-red a { 326 | color: #d9534f; 327 | } 328 | 329 | .panel-red a:hover { 330 | color: #b52b27; 331 | } 332 | 333 | .panel-yellow { 334 | border-color: #f0ad4e; 335 | } 336 | 337 | .panel-yellow .panel-heading { 338 | border-color: #f0ad4e; 339 | color: #fff; 340 | background-color: #f0ad4e; 341 | } 342 | 343 | .panel-yellow a { 344 | color: #f0ad4e; 345 | } 346 | 347 | .panel-yellow a:hover { 348 | color: #df8a13; 349 | } -------------------------------------------------------------------------------- /font-awesome-4.1.0/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | @fa-font-path: "../fonts"; 5 | //@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.1.0/fonts"; // for referencing Bootstrap CDN font files directly 6 | @fa-css-prefix: fa; 7 | @fa-version: "4.1.0"; 8 | @fa-border-color: #eee; 9 | @fa-inverse: #fff; 10 | @fa-li-width: (30em / 14); 11 | 12 | @fa-var-adjust: "\f042"; 13 | @fa-var-adn: "\f170"; 14 | @fa-var-align-center: "\f037"; 15 | @fa-var-align-justify: "\f039"; 16 | @fa-var-align-left: "\f036"; 17 | @fa-var-align-right: "\f038"; 18 | @fa-var-ambulance: "\f0f9"; 19 | @fa-var-anchor: "\f13d"; 20 | @fa-var-android: "\f17b"; 21 | @fa-var-angle-double-down: "\f103"; 22 | @fa-var-angle-double-left: "\f100"; 23 | @fa-var-angle-double-right: "\f101"; 24 | @fa-var-angle-double-up: "\f102"; 25 | @fa-var-angle-down: "\f107"; 26 | @fa-var-angle-left: "\f104"; 27 | @fa-var-angle-right: "\f105"; 28 | @fa-var-angle-up: "\f106"; 29 | @fa-var-apple: "\f179"; 30 | @fa-var-archive: "\f187"; 31 | @fa-var-arrow-circle-down: "\f0ab"; 32 | @fa-var-arrow-circle-left: "\f0a8"; 33 | @fa-var-arrow-circle-o-down: "\f01a"; 34 | @fa-var-arrow-circle-o-left: "\f190"; 35 | @fa-var-arrow-circle-o-right: "\f18e"; 36 | @fa-var-arrow-circle-o-up: "\f01b"; 37 | @fa-var-arrow-circle-right: "\f0a9"; 38 | @fa-var-arrow-circle-up: "\f0aa"; 39 | @fa-var-arrow-down: "\f063"; 40 | @fa-var-arrow-left: "\f060"; 41 | @fa-var-arrow-right: "\f061"; 42 | @fa-var-arrow-up: "\f062"; 43 | @fa-var-arrows: "\f047"; 44 | @fa-var-arrows-alt: "\f0b2"; 45 | @fa-var-arrows-h: "\f07e"; 46 | @fa-var-arrows-v: "\f07d"; 47 | @fa-var-asterisk: "\f069"; 48 | @fa-var-automobile: "\f1b9"; 49 | @fa-var-backward: "\f04a"; 50 | @fa-var-ban: "\f05e"; 51 | @fa-var-bank: "\f19c"; 52 | @fa-var-bar-chart-o: "\f080"; 53 | @fa-var-barcode: "\f02a"; 54 | @fa-var-bars: "\f0c9"; 55 | @fa-var-beer: "\f0fc"; 56 | @fa-var-behance: "\f1b4"; 57 | @fa-var-behance-square: "\f1b5"; 58 | @fa-var-bell: "\f0f3"; 59 | @fa-var-bell-o: "\f0a2"; 60 | @fa-var-bitbucket: "\f171"; 61 | @fa-var-bitbucket-square: "\f172"; 62 | @fa-var-bitcoin: "\f15a"; 63 | @fa-var-bold: "\f032"; 64 | @fa-var-bolt: "\f0e7"; 65 | @fa-var-bomb: "\f1e2"; 66 | @fa-var-book: "\f02d"; 67 | @fa-var-bookmark: "\f02e"; 68 | @fa-var-bookmark-o: "\f097"; 69 | @fa-var-briefcase: "\f0b1"; 70 | @fa-var-btc: "\f15a"; 71 | @fa-var-bug: "\f188"; 72 | @fa-var-building: "\f1ad"; 73 | @fa-var-building-o: "\f0f7"; 74 | @fa-var-bullhorn: "\f0a1"; 75 | @fa-var-bullseye: "\f140"; 76 | @fa-var-cab: "\f1ba"; 77 | @fa-var-calendar: "\f073"; 78 | @fa-var-calendar-o: "\f133"; 79 | @fa-var-camera: "\f030"; 80 | @fa-var-camera-retro: "\f083"; 81 | @fa-var-car: "\f1b9"; 82 | @fa-var-caret-down: "\f0d7"; 83 | @fa-var-caret-left: "\f0d9"; 84 | @fa-var-caret-right: "\f0da"; 85 | @fa-var-caret-square-o-down: "\f150"; 86 | @fa-var-caret-square-o-left: "\f191"; 87 | @fa-var-caret-square-o-right: "\f152"; 88 | @fa-var-caret-square-o-up: "\f151"; 89 | @fa-var-caret-up: "\f0d8"; 90 | @fa-var-certificate: "\f0a3"; 91 | @fa-var-chain: "\f0c1"; 92 | @fa-var-chain-broken: "\f127"; 93 | @fa-var-check: "\f00c"; 94 | @fa-var-check-circle: "\f058"; 95 | @fa-var-check-circle-o: "\f05d"; 96 | @fa-var-check-square: "\f14a"; 97 | @fa-var-check-square-o: "\f046"; 98 | @fa-var-chevron-circle-down: "\f13a"; 99 | @fa-var-chevron-circle-left: "\f137"; 100 | @fa-var-chevron-circle-right: "\f138"; 101 | @fa-var-chevron-circle-up: "\f139"; 102 | @fa-var-chevron-down: "\f078"; 103 | @fa-var-chevron-left: "\f053"; 104 | @fa-var-chevron-right: "\f054"; 105 | @fa-var-chevron-up: "\f077"; 106 | @fa-var-child: "\f1ae"; 107 | @fa-var-circle: "\f111"; 108 | @fa-var-circle-o: "\f10c"; 109 | @fa-var-circle-o-notch: "\f1ce"; 110 | @fa-var-circle-thin: "\f1db"; 111 | @fa-var-clipboard: "\f0ea"; 112 | @fa-var-clock-o: "\f017"; 113 | @fa-var-cloud: "\f0c2"; 114 | @fa-var-cloud-download: "\f0ed"; 115 | @fa-var-cloud-upload: "\f0ee"; 116 | @fa-var-cny: "\f157"; 117 | @fa-var-code: "\f121"; 118 | @fa-var-code-fork: "\f126"; 119 | @fa-var-codepen: "\f1cb"; 120 | @fa-var-coffee: "\f0f4"; 121 | @fa-var-cog: "\f013"; 122 | @fa-var-cogs: "\f085"; 123 | @fa-var-columns: "\f0db"; 124 | @fa-var-comment: "\f075"; 125 | @fa-var-comment-o: "\f0e5"; 126 | @fa-var-comments: "\f086"; 127 | @fa-var-comments-o: "\f0e6"; 128 | @fa-var-compass: "\f14e"; 129 | @fa-var-compress: "\f066"; 130 | @fa-var-copy: "\f0c5"; 131 | @fa-var-credit-card: "\f09d"; 132 | @fa-var-crop: "\f125"; 133 | @fa-var-crosshairs: "\f05b"; 134 | @fa-var-css3: "\f13c"; 135 | @fa-var-cube: "\f1b2"; 136 | @fa-var-cubes: "\f1b3"; 137 | @fa-var-cut: "\f0c4"; 138 | @fa-var-cutlery: "\f0f5"; 139 | @fa-var-dashboard: "\f0e4"; 140 | @fa-var-database: "\f1c0"; 141 | @fa-var-dedent: "\f03b"; 142 | @fa-var-delicious: "\f1a5"; 143 | @fa-var-desktop: "\f108"; 144 | @fa-var-deviantart: "\f1bd"; 145 | @fa-var-digg: "\f1a6"; 146 | @fa-var-dollar: "\f155"; 147 | @fa-var-dot-circle-o: "\f192"; 148 | @fa-var-download: "\f019"; 149 | @fa-var-dribbble: "\f17d"; 150 | @fa-var-dropbox: "\f16b"; 151 | @fa-var-drupal: "\f1a9"; 152 | @fa-var-edit: "\f044"; 153 | @fa-var-eject: "\f052"; 154 | @fa-var-ellipsis-h: "\f141"; 155 | @fa-var-ellipsis-v: "\f142"; 156 | @fa-var-empire: "\f1d1"; 157 | @fa-var-envelope: "\f0e0"; 158 | @fa-var-envelope-o: "\f003"; 159 | @fa-var-envelope-square: "\f199"; 160 | @fa-var-eraser: "\f12d"; 161 | @fa-var-eur: "\f153"; 162 | @fa-var-euro: "\f153"; 163 | @fa-var-exchange: "\f0ec"; 164 | @fa-var-exclamation: "\f12a"; 165 | @fa-var-exclamation-circle: "\f06a"; 166 | @fa-var-exclamation-triangle: "\f071"; 167 | @fa-var-expand: "\f065"; 168 | @fa-var-external-link: "\f08e"; 169 | @fa-var-external-link-square: "\f14c"; 170 | @fa-var-eye: "\f06e"; 171 | @fa-var-eye-slash: "\f070"; 172 | @fa-var-facebook: "\f09a"; 173 | @fa-var-facebook-square: "\f082"; 174 | @fa-var-fast-backward: "\f049"; 175 | @fa-var-fast-forward: "\f050"; 176 | @fa-var-fax: "\f1ac"; 177 | @fa-var-female: "\f182"; 178 | @fa-var-fighter-jet: "\f0fb"; 179 | @fa-var-file: "\f15b"; 180 | @fa-var-file-archive-o: "\f1c6"; 181 | @fa-var-file-audio-o: "\f1c7"; 182 | @fa-var-file-code-o: "\f1c9"; 183 | @fa-var-file-excel-o: "\f1c3"; 184 | @fa-var-file-image-o: "\f1c5"; 185 | @fa-var-file-movie-o: "\f1c8"; 186 | @fa-var-file-o: "\f016"; 187 | @fa-var-file-pdf-o: "\f1c1"; 188 | @fa-var-file-photo-o: "\f1c5"; 189 | @fa-var-file-picture-o: "\f1c5"; 190 | @fa-var-file-powerpoint-o: "\f1c4"; 191 | @fa-var-file-sound-o: "\f1c7"; 192 | @fa-var-file-text: "\f15c"; 193 | @fa-var-file-text-o: "\f0f6"; 194 | @fa-var-file-video-o: "\f1c8"; 195 | @fa-var-file-word-o: "\f1c2"; 196 | @fa-var-file-zip-o: "\f1c6"; 197 | @fa-var-files-o: "\f0c5"; 198 | @fa-var-film: "\f008"; 199 | @fa-var-filter: "\f0b0"; 200 | @fa-var-fire: "\f06d"; 201 | @fa-var-fire-extinguisher: "\f134"; 202 | @fa-var-flag: "\f024"; 203 | @fa-var-flag-checkered: "\f11e"; 204 | @fa-var-flag-o: "\f11d"; 205 | @fa-var-flash: "\f0e7"; 206 | @fa-var-flask: "\f0c3"; 207 | @fa-var-flickr: "\f16e"; 208 | @fa-var-floppy-o: "\f0c7"; 209 | @fa-var-folder: "\f07b"; 210 | @fa-var-folder-o: "\f114"; 211 | @fa-var-folder-open: "\f07c"; 212 | @fa-var-folder-open-o: "\f115"; 213 | @fa-var-font: "\f031"; 214 | @fa-var-forward: "\f04e"; 215 | @fa-var-foursquare: "\f180"; 216 | @fa-var-frown-o: "\f119"; 217 | @fa-var-gamepad: "\f11b"; 218 | @fa-var-gavel: "\f0e3"; 219 | @fa-var-gbp: "\f154"; 220 | @fa-var-ge: "\f1d1"; 221 | @fa-var-gear: "\f013"; 222 | @fa-var-gears: "\f085"; 223 | @fa-var-gift: "\f06b"; 224 | @fa-var-git: "\f1d3"; 225 | @fa-var-git-square: "\f1d2"; 226 | @fa-var-github: "\f09b"; 227 | @fa-var-github-alt: "\f113"; 228 | @fa-var-github-square: "\f092"; 229 | @fa-var-gittip: "\f184"; 230 | @fa-var-glass: "\f000"; 231 | @fa-var-globe: "\f0ac"; 232 | @fa-var-google: "\f1a0"; 233 | @fa-var-google-plus: "\f0d5"; 234 | @fa-var-google-plus-square: "\f0d4"; 235 | @fa-var-graduation-cap: "\f19d"; 236 | @fa-var-group: "\f0c0"; 237 | @fa-var-h-square: "\f0fd"; 238 | @fa-var-hacker-news: "\f1d4"; 239 | @fa-var-hand-o-down: "\f0a7"; 240 | @fa-var-hand-o-left: "\f0a5"; 241 | @fa-var-hand-o-right: "\f0a4"; 242 | @fa-var-hand-o-up: "\f0a6"; 243 | @fa-var-hdd-o: "\f0a0"; 244 | @fa-var-header: "\f1dc"; 245 | @fa-var-headphones: "\f025"; 246 | @fa-var-heart: "\f004"; 247 | @fa-var-heart-o: "\f08a"; 248 | @fa-var-history: "\f1da"; 249 | @fa-var-home: "\f015"; 250 | @fa-var-hospital-o: "\f0f8"; 251 | @fa-var-html5: "\f13b"; 252 | @fa-var-image: "\f03e"; 253 | @fa-var-inbox: "\f01c"; 254 | @fa-var-indent: "\f03c"; 255 | @fa-var-info: "\f129"; 256 | @fa-var-info-circle: "\f05a"; 257 | @fa-var-inr: "\f156"; 258 | @fa-var-instagram: "\f16d"; 259 | @fa-var-institution: "\f19c"; 260 | @fa-var-italic: "\f033"; 261 | @fa-var-joomla: "\f1aa"; 262 | @fa-var-jpy: "\f157"; 263 | @fa-var-jsfiddle: "\f1cc"; 264 | @fa-var-key: "\f084"; 265 | @fa-var-keyboard-o: "\f11c"; 266 | @fa-var-krw: "\f159"; 267 | @fa-var-language: "\f1ab"; 268 | @fa-var-laptop: "\f109"; 269 | @fa-var-leaf: "\f06c"; 270 | @fa-var-legal: "\f0e3"; 271 | @fa-var-lemon-o: "\f094"; 272 | @fa-var-level-down: "\f149"; 273 | @fa-var-level-up: "\f148"; 274 | @fa-var-life-bouy: "\f1cd"; 275 | @fa-var-life-ring: "\f1cd"; 276 | @fa-var-life-saver: "\f1cd"; 277 | @fa-var-lightbulb-o: "\f0eb"; 278 | @fa-var-link: "\f0c1"; 279 | @fa-var-linkedin: "\f0e1"; 280 | @fa-var-linkedin-square: "\f08c"; 281 | @fa-var-linux: "\f17c"; 282 | @fa-var-list: "\f03a"; 283 | @fa-var-list-alt: "\f022"; 284 | @fa-var-list-ol: "\f0cb"; 285 | @fa-var-list-ul: "\f0ca"; 286 | @fa-var-location-arrow: "\f124"; 287 | @fa-var-lock: "\f023"; 288 | @fa-var-long-arrow-down: "\f175"; 289 | @fa-var-long-arrow-left: "\f177"; 290 | @fa-var-long-arrow-right: "\f178"; 291 | @fa-var-long-arrow-up: "\f176"; 292 | @fa-var-magic: "\f0d0"; 293 | @fa-var-magnet: "\f076"; 294 | @fa-var-mail-forward: "\f064"; 295 | @fa-var-mail-reply: "\f112"; 296 | @fa-var-mail-reply-all: "\f122"; 297 | @fa-var-male: "\f183"; 298 | @fa-var-map-marker: "\f041"; 299 | @fa-var-maxcdn: "\f136"; 300 | @fa-var-medkit: "\f0fa"; 301 | @fa-var-meh-o: "\f11a"; 302 | @fa-var-microphone: "\f130"; 303 | @fa-var-microphone-slash: "\f131"; 304 | @fa-var-minus: "\f068"; 305 | @fa-var-minus-circle: "\f056"; 306 | @fa-var-minus-square: "\f146"; 307 | @fa-var-minus-square-o: "\f147"; 308 | @fa-var-mobile: "\f10b"; 309 | @fa-var-mobile-phone: "\f10b"; 310 | @fa-var-money: "\f0d6"; 311 | @fa-var-moon-o: "\f186"; 312 | @fa-var-mortar-board: "\f19d"; 313 | @fa-var-music: "\f001"; 314 | @fa-var-navicon: "\f0c9"; 315 | @fa-var-openid: "\f19b"; 316 | @fa-var-outdent: "\f03b"; 317 | @fa-var-pagelines: "\f18c"; 318 | @fa-var-paper-plane: "\f1d8"; 319 | @fa-var-paper-plane-o: "\f1d9"; 320 | @fa-var-paperclip: "\f0c6"; 321 | @fa-var-paragraph: "\f1dd"; 322 | @fa-var-paste: "\f0ea"; 323 | @fa-var-pause: "\f04c"; 324 | @fa-var-paw: "\f1b0"; 325 | @fa-var-pencil: "\f040"; 326 | @fa-var-pencil-square: "\f14b"; 327 | @fa-var-pencil-square-o: "\f044"; 328 | @fa-var-phone: "\f095"; 329 | @fa-var-phone-square: "\f098"; 330 | @fa-var-photo: "\f03e"; 331 | @fa-var-picture-o: "\f03e"; 332 | @fa-var-pied-piper: "\f1a7"; 333 | @fa-var-pied-piper-alt: "\f1a8"; 334 | @fa-var-pied-piper-square: "\f1a7"; 335 | @fa-var-pinterest: "\f0d2"; 336 | @fa-var-pinterest-square: "\f0d3"; 337 | @fa-var-plane: "\f072"; 338 | @fa-var-play: "\f04b"; 339 | @fa-var-play-circle: "\f144"; 340 | @fa-var-play-circle-o: "\f01d"; 341 | @fa-var-plus: "\f067"; 342 | @fa-var-plus-circle: "\f055"; 343 | @fa-var-plus-square: "\f0fe"; 344 | @fa-var-plus-square-o: "\f196"; 345 | @fa-var-power-off: "\f011"; 346 | @fa-var-print: "\f02f"; 347 | @fa-var-puzzle-piece: "\f12e"; 348 | @fa-var-qq: "\f1d6"; 349 | @fa-var-qrcode: "\f029"; 350 | @fa-var-question: "\f128"; 351 | @fa-var-question-circle: "\f059"; 352 | @fa-var-quote-left: "\f10d"; 353 | @fa-var-quote-right: "\f10e"; 354 | @fa-var-ra: "\f1d0"; 355 | @fa-var-random: "\f074"; 356 | @fa-var-rebel: "\f1d0"; 357 | @fa-var-recycle: "\f1b8"; 358 | @fa-var-reddit: "\f1a1"; 359 | @fa-var-reddit-square: "\f1a2"; 360 | @fa-var-refresh: "\f021"; 361 | @fa-var-renren: "\f18b"; 362 | @fa-var-reorder: "\f0c9"; 363 | @fa-var-repeat: "\f01e"; 364 | @fa-var-reply: "\f112"; 365 | @fa-var-reply-all: "\f122"; 366 | @fa-var-retweet: "\f079"; 367 | @fa-var-rmb: "\f157"; 368 | @fa-var-road: "\f018"; 369 | @fa-var-rocket: "\f135"; 370 | @fa-var-rotate-left: "\f0e2"; 371 | @fa-var-rotate-right: "\f01e"; 372 | @fa-var-rouble: "\f158"; 373 | @fa-var-rss: "\f09e"; 374 | @fa-var-rss-square: "\f143"; 375 | @fa-var-rub: "\f158"; 376 | @fa-var-ruble: "\f158"; 377 | @fa-var-rupee: "\f156"; 378 | @fa-var-save: "\f0c7"; 379 | @fa-var-scissors: "\f0c4"; 380 | @fa-var-search: "\f002"; 381 | @fa-var-search-minus: "\f010"; 382 | @fa-var-search-plus: "\f00e"; 383 | @fa-var-send: "\f1d8"; 384 | @fa-var-send-o: "\f1d9"; 385 | @fa-var-share: "\f064"; 386 | @fa-var-share-alt: "\f1e0"; 387 | @fa-var-share-alt-square: "\f1e1"; 388 | @fa-var-share-square: "\f14d"; 389 | @fa-var-share-square-o: "\f045"; 390 | @fa-var-shield: "\f132"; 391 | @fa-var-shopping-cart: "\f07a"; 392 | @fa-var-sign-in: "\f090"; 393 | @fa-var-sign-out: "\f08b"; 394 | @fa-var-signal: "\f012"; 395 | @fa-var-sitemap: "\f0e8"; 396 | @fa-var-skype: "\f17e"; 397 | @fa-var-slack: "\f198"; 398 | @fa-var-sliders: "\f1de"; 399 | @fa-var-smile-o: "\f118"; 400 | @fa-var-sort: "\f0dc"; 401 | @fa-var-sort-alpha-asc: "\f15d"; 402 | @fa-var-sort-alpha-desc: "\f15e"; 403 | @fa-var-sort-amount-asc: "\f160"; 404 | @fa-var-sort-amount-desc: "\f161"; 405 | @fa-var-sort-asc: "\f0de"; 406 | @fa-var-sort-desc: "\f0dd"; 407 | @fa-var-sort-down: "\f0dd"; 408 | @fa-var-sort-numeric-asc: "\f162"; 409 | @fa-var-sort-numeric-desc: "\f163"; 410 | @fa-var-sort-up: "\f0de"; 411 | @fa-var-soundcloud: "\f1be"; 412 | @fa-var-space-shuttle: "\f197"; 413 | @fa-var-spinner: "\f110"; 414 | @fa-var-spoon: "\f1b1"; 415 | @fa-var-spotify: "\f1bc"; 416 | @fa-var-square: "\f0c8"; 417 | @fa-var-square-o: "\f096"; 418 | @fa-var-stack-exchange: "\f18d"; 419 | @fa-var-stack-overflow: "\f16c"; 420 | @fa-var-star: "\f005"; 421 | @fa-var-star-half: "\f089"; 422 | @fa-var-star-half-empty: "\f123"; 423 | @fa-var-star-half-full: "\f123"; 424 | @fa-var-star-half-o: "\f123"; 425 | @fa-var-star-o: "\f006"; 426 | @fa-var-steam: "\f1b6"; 427 | @fa-var-steam-square: "\f1b7"; 428 | @fa-var-step-backward: "\f048"; 429 | @fa-var-step-forward: "\f051"; 430 | @fa-var-stethoscope: "\f0f1"; 431 | @fa-var-stop: "\f04d"; 432 | @fa-var-strikethrough: "\f0cc"; 433 | @fa-var-stumbleupon: "\f1a4"; 434 | @fa-var-stumbleupon-circle: "\f1a3"; 435 | @fa-var-subscript: "\f12c"; 436 | @fa-var-suitcase: "\f0f2"; 437 | @fa-var-sun-o: "\f185"; 438 | @fa-var-superscript: "\f12b"; 439 | @fa-var-support: "\f1cd"; 440 | @fa-var-table: "\f0ce"; 441 | @fa-var-tablet: "\f10a"; 442 | @fa-var-tachometer: "\f0e4"; 443 | @fa-var-tag: "\f02b"; 444 | @fa-var-tags: "\f02c"; 445 | @fa-var-tasks: "\f0ae"; 446 | @fa-var-taxi: "\f1ba"; 447 | @fa-var-tencent-weibo: "\f1d5"; 448 | @fa-var-terminal: "\f120"; 449 | @fa-var-text-height: "\f034"; 450 | @fa-var-text-width: "\f035"; 451 | @fa-var-th: "\f00a"; 452 | @fa-var-th-large: "\f009"; 453 | @fa-var-th-list: "\f00b"; 454 | @fa-var-thumb-tack: "\f08d"; 455 | @fa-var-thumbs-down: "\f165"; 456 | @fa-var-thumbs-o-down: "\f088"; 457 | @fa-var-thumbs-o-up: "\f087"; 458 | @fa-var-thumbs-up: "\f164"; 459 | @fa-var-ticket: "\f145"; 460 | @fa-var-times: "\f00d"; 461 | @fa-var-times-circle: "\f057"; 462 | @fa-var-times-circle-o: "\f05c"; 463 | @fa-var-tint: "\f043"; 464 | @fa-var-toggle-down: "\f150"; 465 | @fa-var-toggle-left: "\f191"; 466 | @fa-var-toggle-right: "\f152"; 467 | @fa-var-toggle-up: "\f151"; 468 | @fa-var-trash-o: "\f014"; 469 | @fa-var-tree: "\f1bb"; 470 | @fa-var-trello: "\f181"; 471 | @fa-var-trophy: "\f091"; 472 | @fa-var-truck: "\f0d1"; 473 | @fa-var-try: "\f195"; 474 | @fa-var-tumblr: "\f173"; 475 | @fa-var-tumblr-square: "\f174"; 476 | @fa-var-turkish-lira: "\f195"; 477 | @fa-var-twitter: "\f099"; 478 | @fa-var-twitter-square: "\f081"; 479 | @fa-var-umbrella: "\f0e9"; 480 | @fa-var-underline: "\f0cd"; 481 | @fa-var-undo: "\f0e2"; 482 | @fa-var-university: "\f19c"; 483 | @fa-var-unlink: "\f127"; 484 | @fa-var-unlock: "\f09c"; 485 | @fa-var-unlock-alt: "\f13e"; 486 | @fa-var-unsorted: "\f0dc"; 487 | @fa-var-upload: "\f093"; 488 | @fa-var-usd: "\f155"; 489 | @fa-var-user: "\f007"; 490 | @fa-var-user-md: "\f0f0"; 491 | @fa-var-users: "\f0c0"; 492 | @fa-var-video-camera: "\f03d"; 493 | @fa-var-vimeo-square: "\f194"; 494 | @fa-var-vine: "\f1ca"; 495 | @fa-var-vk: "\f189"; 496 | @fa-var-volume-down: "\f027"; 497 | @fa-var-volume-off: "\f026"; 498 | @fa-var-volume-up: "\f028"; 499 | @fa-var-warning: "\f071"; 500 | @fa-var-wechat: "\f1d7"; 501 | @fa-var-weibo: "\f18a"; 502 | @fa-var-weixin: "\f1d7"; 503 | @fa-var-wheelchair: "\f193"; 504 | @fa-var-windows: "\f17a"; 505 | @fa-var-won: "\f159"; 506 | @fa-var-wordpress: "\f19a"; 507 | @fa-var-wrench: "\f0ad"; 508 | @fa-var-xing: "\f168"; 509 | @fa-var-xing-square: "\f169"; 510 | @fa-var-yahoo: "\f19e"; 511 | @fa-var-yen: "\f157"; 512 | @fa-var-youtube: "\f167"; 513 | @fa-var-youtube-play: "\f16a"; 514 | @fa-var-youtube-square: "\f166"; 515 | 516 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | $fa-font-path: "../fonts" !default; 5 | //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.1.0/fonts" !default; // for referencing Bootstrap CDN font files directly 6 | $fa-css-prefix: fa !default; 7 | $fa-version: "4.1.0" !default; 8 | $fa-border-color: #eee !default; 9 | $fa-inverse: #fff !default; 10 | $fa-li-width: (30em / 14) !default; 11 | 12 | $fa-var-adjust: "\f042"; 13 | $fa-var-adn: "\f170"; 14 | $fa-var-align-center: "\f037"; 15 | $fa-var-align-justify: "\f039"; 16 | $fa-var-align-left: "\f036"; 17 | $fa-var-align-right: "\f038"; 18 | $fa-var-ambulance: "\f0f9"; 19 | $fa-var-anchor: "\f13d"; 20 | $fa-var-android: "\f17b"; 21 | $fa-var-angle-double-down: "\f103"; 22 | $fa-var-angle-double-left: "\f100"; 23 | $fa-var-angle-double-right: "\f101"; 24 | $fa-var-angle-double-up: "\f102"; 25 | $fa-var-angle-down: "\f107"; 26 | $fa-var-angle-left: "\f104"; 27 | $fa-var-angle-right: "\f105"; 28 | $fa-var-angle-up: "\f106"; 29 | $fa-var-apple: "\f179"; 30 | $fa-var-archive: "\f187"; 31 | $fa-var-arrow-circle-down: "\f0ab"; 32 | $fa-var-arrow-circle-left: "\f0a8"; 33 | $fa-var-arrow-circle-o-down: "\f01a"; 34 | $fa-var-arrow-circle-o-left: "\f190"; 35 | $fa-var-arrow-circle-o-right: "\f18e"; 36 | $fa-var-arrow-circle-o-up: "\f01b"; 37 | $fa-var-arrow-circle-right: "\f0a9"; 38 | $fa-var-arrow-circle-up: "\f0aa"; 39 | $fa-var-arrow-down: "\f063"; 40 | $fa-var-arrow-left: "\f060"; 41 | $fa-var-arrow-right: "\f061"; 42 | $fa-var-arrow-up: "\f062"; 43 | $fa-var-arrows: "\f047"; 44 | $fa-var-arrows-alt: "\f0b2"; 45 | $fa-var-arrows-h: "\f07e"; 46 | $fa-var-arrows-v: "\f07d"; 47 | $fa-var-asterisk: "\f069"; 48 | $fa-var-automobile: "\f1b9"; 49 | $fa-var-backward: "\f04a"; 50 | $fa-var-ban: "\f05e"; 51 | $fa-var-bank: "\f19c"; 52 | $fa-var-bar-chart-o: "\f080"; 53 | $fa-var-barcode: "\f02a"; 54 | $fa-var-bars: "\f0c9"; 55 | $fa-var-beer: "\f0fc"; 56 | $fa-var-behance: "\f1b4"; 57 | $fa-var-behance-square: "\f1b5"; 58 | $fa-var-bell: "\f0f3"; 59 | $fa-var-bell-o: "\f0a2"; 60 | $fa-var-bitbucket: "\f171"; 61 | $fa-var-bitbucket-square: "\f172"; 62 | $fa-var-bitcoin: "\f15a"; 63 | $fa-var-bold: "\f032"; 64 | $fa-var-bolt: "\f0e7"; 65 | $fa-var-bomb: "\f1e2"; 66 | $fa-var-book: "\f02d"; 67 | $fa-var-bookmark: "\f02e"; 68 | $fa-var-bookmark-o: "\f097"; 69 | $fa-var-briefcase: "\f0b1"; 70 | $fa-var-btc: "\f15a"; 71 | $fa-var-bug: "\f188"; 72 | $fa-var-building: "\f1ad"; 73 | $fa-var-building-o: "\f0f7"; 74 | $fa-var-bullhorn: "\f0a1"; 75 | $fa-var-bullseye: "\f140"; 76 | $fa-var-cab: "\f1ba"; 77 | $fa-var-calendar: "\f073"; 78 | $fa-var-calendar-o: "\f133"; 79 | $fa-var-camera: "\f030"; 80 | $fa-var-camera-retro: "\f083"; 81 | $fa-var-car: "\f1b9"; 82 | $fa-var-caret-down: "\f0d7"; 83 | $fa-var-caret-left: "\f0d9"; 84 | $fa-var-caret-right: "\f0da"; 85 | $fa-var-caret-square-o-down: "\f150"; 86 | $fa-var-caret-square-o-left: "\f191"; 87 | $fa-var-caret-square-o-right: "\f152"; 88 | $fa-var-caret-square-o-up: "\f151"; 89 | $fa-var-caret-up: "\f0d8"; 90 | $fa-var-certificate: "\f0a3"; 91 | $fa-var-chain: "\f0c1"; 92 | $fa-var-chain-broken: "\f127"; 93 | $fa-var-check: "\f00c"; 94 | $fa-var-check-circle: "\f058"; 95 | $fa-var-check-circle-o: "\f05d"; 96 | $fa-var-check-square: "\f14a"; 97 | $fa-var-check-square-o: "\f046"; 98 | $fa-var-chevron-circle-down: "\f13a"; 99 | $fa-var-chevron-circle-left: "\f137"; 100 | $fa-var-chevron-circle-right: "\f138"; 101 | $fa-var-chevron-circle-up: "\f139"; 102 | $fa-var-chevron-down: "\f078"; 103 | $fa-var-chevron-left: "\f053"; 104 | $fa-var-chevron-right: "\f054"; 105 | $fa-var-chevron-up: "\f077"; 106 | $fa-var-child: "\f1ae"; 107 | $fa-var-circle: "\f111"; 108 | $fa-var-circle-o: "\f10c"; 109 | $fa-var-circle-o-notch: "\f1ce"; 110 | $fa-var-circle-thin: "\f1db"; 111 | $fa-var-clipboard: "\f0ea"; 112 | $fa-var-clock-o: "\f017"; 113 | $fa-var-cloud: "\f0c2"; 114 | $fa-var-cloud-download: "\f0ed"; 115 | $fa-var-cloud-upload: "\f0ee"; 116 | $fa-var-cny: "\f157"; 117 | $fa-var-code: "\f121"; 118 | $fa-var-code-fork: "\f126"; 119 | $fa-var-codepen: "\f1cb"; 120 | $fa-var-coffee: "\f0f4"; 121 | $fa-var-cog: "\f013"; 122 | $fa-var-cogs: "\f085"; 123 | $fa-var-columns: "\f0db"; 124 | $fa-var-comment: "\f075"; 125 | $fa-var-comment-o: "\f0e5"; 126 | $fa-var-comments: "\f086"; 127 | $fa-var-comments-o: "\f0e6"; 128 | $fa-var-compass: "\f14e"; 129 | $fa-var-compress: "\f066"; 130 | $fa-var-copy: "\f0c5"; 131 | $fa-var-credit-card: "\f09d"; 132 | $fa-var-crop: "\f125"; 133 | $fa-var-crosshairs: "\f05b"; 134 | $fa-var-css3: "\f13c"; 135 | $fa-var-cube: "\f1b2"; 136 | $fa-var-cubes: "\f1b3"; 137 | $fa-var-cut: "\f0c4"; 138 | $fa-var-cutlery: "\f0f5"; 139 | $fa-var-dashboard: "\f0e4"; 140 | $fa-var-database: "\f1c0"; 141 | $fa-var-dedent: "\f03b"; 142 | $fa-var-delicious: "\f1a5"; 143 | $fa-var-desktop: "\f108"; 144 | $fa-var-deviantart: "\f1bd"; 145 | $fa-var-digg: "\f1a6"; 146 | $fa-var-dollar: "\f155"; 147 | $fa-var-dot-circle-o: "\f192"; 148 | $fa-var-download: "\f019"; 149 | $fa-var-dribbble: "\f17d"; 150 | $fa-var-dropbox: "\f16b"; 151 | $fa-var-drupal: "\f1a9"; 152 | $fa-var-edit: "\f044"; 153 | $fa-var-eject: "\f052"; 154 | $fa-var-ellipsis-h: "\f141"; 155 | $fa-var-ellipsis-v: "\f142"; 156 | $fa-var-empire: "\f1d1"; 157 | $fa-var-envelope: "\f0e0"; 158 | $fa-var-envelope-o: "\f003"; 159 | $fa-var-envelope-square: "\f199"; 160 | $fa-var-eraser: "\f12d"; 161 | $fa-var-eur: "\f153"; 162 | $fa-var-euro: "\f153"; 163 | $fa-var-exchange: "\f0ec"; 164 | $fa-var-exclamation: "\f12a"; 165 | $fa-var-exclamation-circle: "\f06a"; 166 | $fa-var-exclamation-triangle: "\f071"; 167 | $fa-var-expand: "\f065"; 168 | $fa-var-external-link: "\f08e"; 169 | $fa-var-external-link-square: "\f14c"; 170 | $fa-var-eye: "\f06e"; 171 | $fa-var-eye-slash: "\f070"; 172 | $fa-var-facebook: "\f09a"; 173 | $fa-var-facebook-square: "\f082"; 174 | $fa-var-fast-backward: "\f049"; 175 | $fa-var-fast-forward: "\f050"; 176 | $fa-var-fax: "\f1ac"; 177 | $fa-var-female: "\f182"; 178 | $fa-var-fighter-jet: "\f0fb"; 179 | $fa-var-file: "\f15b"; 180 | $fa-var-file-archive-o: "\f1c6"; 181 | $fa-var-file-audio-o: "\f1c7"; 182 | $fa-var-file-code-o: "\f1c9"; 183 | $fa-var-file-excel-o: "\f1c3"; 184 | $fa-var-file-image-o: "\f1c5"; 185 | $fa-var-file-movie-o: "\f1c8"; 186 | $fa-var-file-o: "\f016"; 187 | $fa-var-file-pdf-o: "\f1c1"; 188 | $fa-var-file-photo-o: "\f1c5"; 189 | $fa-var-file-picture-o: "\f1c5"; 190 | $fa-var-file-powerpoint-o: "\f1c4"; 191 | $fa-var-file-sound-o: "\f1c7"; 192 | $fa-var-file-text: "\f15c"; 193 | $fa-var-file-text-o: "\f0f6"; 194 | $fa-var-file-video-o: "\f1c8"; 195 | $fa-var-file-word-o: "\f1c2"; 196 | $fa-var-file-zip-o: "\f1c6"; 197 | $fa-var-files-o: "\f0c5"; 198 | $fa-var-film: "\f008"; 199 | $fa-var-filter: "\f0b0"; 200 | $fa-var-fire: "\f06d"; 201 | $fa-var-fire-extinguisher: "\f134"; 202 | $fa-var-flag: "\f024"; 203 | $fa-var-flag-checkered: "\f11e"; 204 | $fa-var-flag-o: "\f11d"; 205 | $fa-var-flash: "\f0e7"; 206 | $fa-var-flask: "\f0c3"; 207 | $fa-var-flickr: "\f16e"; 208 | $fa-var-floppy-o: "\f0c7"; 209 | $fa-var-folder: "\f07b"; 210 | $fa-var-folder-o: "\f114"; 211 | $fa-var-folder-open: "\f07c"; 212 | $fa-var-folder-open-o: "\f115"; 213 | $fa-var-font: "\f031"; 214 | $fa-var-forward: "\f04e"; 215 | $fa-var-foursquare: "\f180"; 216 | $fa-var-frown-o: "\f119"; 217 | $fa-var-gamepad: "\f11b"; 218 | $fa-var-gavel: "\f0e3"; 219 | $fa-var-gbp: "\f154"; 220 | $fa-var-ge: "\f1d1"; 221 | $fa-var-gear: "\f013"; 222 | $fa-var-gears: "\f085"; 223 | $fa-var-gift: "\f06b"; 224 | $fa-var-git: "\f1d3"; 225 | $fa-var-git-square: "\f1d2"; 226 | $fa-var-github: "\f09b"; 227 | $fa-var-github-alt: "\f113"; 228 | $fa-var-github-square: "\f092"; 229 | $fa-var-gittip: "\f184"; 230 | $fa-var-glass: "\f000"; 231 | $fa-var-globe: "\f0ac"; 232 | $fa-var-google: "\f1a0"; 233 | $fa-var-google-plus: "\f0d5"; 234 | $fa-var-google-plus-square: "\f0d4"; 235 | $fa-var-graduation-cap: "\f19d"; 236 | $fa-var-group: "\f0c0"; 237 | $fa-var-h-square: "\f0fd"; 238 | $fa-var-hacker-news: "\f1d4"; 239 | $fa-var-hand-o-down: "\f0a7"; 240 | $fa-var-hand-o-left: "\f0a5"; 241 | $fa-var-hand-o-right: "\f0a4"; 242 | $fa-var-hand-o-up: "\f0a6"; 243 | $fa-var-hdd-o: "\f0a0"; 244 | $fa-var-header: "\f1dc"; 245 | $fa-var-headphones: "\f025"; 246 | $fa-var-heart: "\f004"; 247 | $fa-var-heart-o: "\f08a"; 248 | $fa-var-history: "\f1da"; 249 | $fa-var-home: "\f015"; 250 | $fa-var-hospital-o: "\f0f8"; 251 | $fa-var-html5: "\f13b"; 252 | $fa-var-image: "\f03e"; 253 | $fa-var-inbox: "\f01c"; 254 | $fa-var-indent: "\f03c"; 255 | $fa-var-info: "\f129"; 256 | $fa-var-info-circle: "\f05a"; 257 | $fa-var-inr: "\f156"; 258 | $fa-var-instagram: "\f16d"; 259 | $fa-var-institution: "\f19c"; 260 | $fa-var-italic: "\f033"; 261 | $fa-var-joomla: "\f1aa"; 262 | $fa-var-jpy: "\f157"; 263 | $fa-var-jsfiddle: "\f1cc"; 264 | $fa-var-key: "\f084"; 265 | $fa-var-keyboard-o: "\f11c"; 266 | $fa-var-krw: "\f159"; 267 | $fa-var-language: "\f1ab"; 268 | $fa-var-laptop: "\f109"; 269 | $fa-var-leaf: "\f06c"; 270 | $fa-var-legal: "\f0e3"; 271 | $fa-var-lemon-o: "\f094"; 272 | $fa-var-level-down: "\f149"; 273 | $fa-var-level-up: "\f148"; 274 | $fa-var-life-bouy: "\f1cd"; 275 | $fa-var-life-ring: "\f1cd"; 276 | $fa-var-life-saver: "\f1cd"; 277 | $fa-var-lightbulb-o: "\f0eb"; 278 | $fa-var-link: "\f0c1"; 279 | $fa-var-linkedin: "\f0e1"; 280 | $fa-var-linkedin-square: "\f08c"; 281 | $fa-var-linux: "\f17c"; 282 | $fa-var-list: "\f03a"; 283 | $fa-var-list-alt: "\f022"; 284 | $fa-var-list-ol: "\f0cb"; 285 | $fa-var-list-ul: "\f0ca"; 286 | $fa-var-location-arrow: "\f124"; 287 | $fa-var-lock: "\f023"; 288 | $fa-var-long-arrow-down: "\f175"; 289 | $fa-var-long-arrow-left: "\f177"; 290 | $fa-var-long-arrow-right: "\f178"; 291 | $fa-var-long-arrow-up: "\f176"; 292 | $fa-var-magic: "\f0d0"; 293 | $fa-var-magnet: "\f076"; 294 | $fa-var-mail-forward: "\f064"; 295 | $fa-var-mail-reply: "\f112"; 296 | $fa-var-mail-reply-all: "\f122"; 297 | $fa-var-male: "\f183"; 298 | $fa-var-map-marker: "\f041"; 299 | $fa-var-maxcdn: "\f136"; 300 | $fa-var-medkit: "\f0fa"; 301 | $fa-var-meh-o: "\f11a"; 302 | $fa-var-microphone: "\f130"; 303 | $fa-var-microphone-slash: "\f131"; 304 | $fa-var-minus: "\f068"; 305 | $fa-var-minus-circle: "\f056"; 306 | $fa-var-minus-square: "\f146"; 307 | $fa-var-minus-square-o: "\f147"; 308 | $fa-var-mobile: "\f10b"; 309 | $fa-var-mobile-phone: "\f10b"; 310 | $fa-var-money: "\f0d6"; 311 | $fa-var-moon-o: "\f186"; 312 | $fa-var-mortar-board: "\f19d"; 313 | $fa-var-music: "\f001"; 314 | $fa-var-navicon: "\f0c9"; 315 | $fa-var-openid: "\f19b"; 316 | $fa-var-outdent: "\f03b"; 317 | $fa-var-pagelines: "\f18c"; 318 | $fa-var-paper-plane: "\f1d8"; 319 | $fa-var-paper-plane-o: "\f1d9"; 320 | $fa-var-paperclip: "\f0c6"; 321 | $fa-var-paragraph: "\f1dd"; 322 | $fa-var-paste: "\f0ea"; 323 | $fa-var-pause: "\f04c"; 324 | $fa-var-paw: "\f1b0"; 325 | $fa-var-pencil: "\f040"; 326 | $fa-var-pencil-square: "\f14b"; 327 | $fa-var-pencil-square-o: "\f044"; 328 | $fa-var-phone: "\f095"; 329 | $fa-var-phone-square: "\f098"; 330 | $fa-var-photo: "\f03e"; 331 | $fa-var-picture-o: "\f03e"; 332 | $fa-var-pied-piper: "\f1a7"; 333 | $fa-var-pied-piper-alt: "\f1a8"; 334 | $fa-var-pied-piper-square: "\f1a7"; 335 | $fa-var-pinterest: "\f0d2"; 336 | $fa-var-pinterest-square: "\f0d3"; 337 | $fa-var-plane: "\f072"; 338 | $fa-var-play: "\f04b"; 339 | $fa-var-play-circle: "\f144"; 340 | $fa-var-play-circle-o: "\f01d"; 341 | $fa-var-plus: "\f067"; 342 | $fa-var-plus-circle: "\f055"; 343 | $fa-var-plus-square: "\f0fe"; 344 | $fa-var-plus-square-o: "\f196"; 345 | $fa-var-power-off: "\f011"; 346 | $fa-var-print: "\f02f"; 347 | $fa-var-puzzle-piece: "\f12e"; 348 | $fa-var-qq: "\f1d6"; 349 | $fa-var-qrcode: "\f029"; 350 | $fa-var-question: "\f128"; 351 | $fa-var-question-circle: "\f059"; 352 | $fa-var-quote-left: "\f10d"; 353 | $fa-var-quote-right: "\f10e"; 354 | $fa-var-ra: "\f1d0"; 355 | $fa-var-random: "\f074"; 356 | $fa-var-rebel: "\f1d0"; 357 | $fa-var-recycle: "\f1b8"; 358 | $fa-var-reddit: "\f1a1"; 359 | $fa-var-reddit-square: "\f1a2"; 360 | $fa-var-refresh: "\f021"; 361 | $fa-var-renren: "\f18b"; 362 | $fa-var-reorder: "\f0c9"; 363 | $fa-var-repeat: "\f01e"; 364 | $fa-var-reply: "\f112"; 365 | $fa-var-reply-all: "\f122"; 366 | $fa-var-retweet: "\f079"; 367 | $fa-var-rmb: "\f157"; 368 | $fa-var-road: "\f018"; 369 | $fa-var-rocket: "\f135"; 370 | $fa-var-rotate-left: "\f0e2"; 371 | $fa-var-rotate-right: "\f01e"; 372 | $fa-var-rouble: "\f158"; 373 | $fa-var-rss: "\f09e"; 374 | $fa-var-rss-square: "\f143"; 375 | $fa-var-rub: "\f158"; 376 | $fa-var-ruble: "\f158"; 377 | $fa-var-rupee: "\f156"; 378 | $fa-var-save: "\f0c7"; 379 | $fa-var-scissors: "\f0c4"; 380 | $fa-var-search: "\f002"; 381 | $fa-var-search-minus: "\f010"; 382 | $fa-var-search-plus: "\f00e"; 383 | $fa-var-send: "\f1d8"; 384 | $fa-var-send-o: "\f1d9"; 385 | $fa-var-share: "\f064"; 386 | $fa-var-share-alt: "\f1e0"; 387 | $fa-var-share-alt-square: "\f1e1"; 388 | $fa-var-share-square: "\f14d"; 389 | $fa-var-share-square-o: "\f045"; 390 | $fa-var-shield: "\f132"; 391 | $fa-var-shopping-cart: "\f07a"; 392 | $fa-var-sign-in: "\f090"; 393 | $fa-var-sign-out: "\f08b"; 394 | $fa-var-signal: "\f012"; 395 | $fa-var-sitemap: "\f0e8"; 396 | $fa-var-skype: "\f17e"; 397 | $fa-var-slack: "\f198"; 398 | $fa-var-sliders: "\f1de"; 399 | $fa-var-smile-o: "\f118"; 400 | $fa-var-sort: "\f0dc"; 401 | $fa-var-sort-alpha-asc: "\f15d"; 402 | $fa-var-sort-alpha-desc: "\f15e"; 403 | $fa-var-sort-amount-asc: "\f160"; 404 | $fa-var-sort-amount-desc: "\f161"; 405 | $fa-var-sort-asc: "\f0de"; 406 | $fa-var-sort-desc: "\f0dd"; 407 | $fa-var-sort-down: "\f0dd"; 408 | $fa-var-sort-numeric-asc: "\f162"; 409 | $fa-var-sort-numeric-desc: "\f163"; 410 | $fa-var-sort-up: "\f0de"; 411 | $fa-var-soundcloud: "\f1be"; 412 | $fa-var-space-shuttle: "\f197"; 413 | $fa-var-spinner: "\f110"; 414 | $fa-var-spoon: "\f1b1"; 415 | $fa-var-spotify: "\f1bc"; 416 | $fa-var-square: "\f0c8"; 417 | $fa-var-square-o: "\f096"; 418 | $fa-var-stack-exchange: "\f18d"; 419 | $fa-var-stack-overflow: "\f16c"; 420 | $fa-var-star: "\f005"; 421 | $fa-var-star-half: "\f089"; 422 | $fa-var-star-half-empty: "\f123"; 423 | $fa-var-star-half-full: "\f123"; 424 | $fa-var-star-half-o: "\f123"; 425 | $fa-var-star-o: "\f006"; 426 | $fa-var-steam: "\f1b6"; 427 | $fa-var-steam-square: "\f1b7"; 428 | $fa-var-step-backward: "\f048"; 429 | $fa-var-step-forward: "\f051"; 430 | $fa-var-stethoscope: "\f0f1"; 431 | $fa-var-stop: "\f04d"; 432 | $fa-var-strikethrough: "\f0cc"; 433 | $fa-var-stumbleupon: "\f1a4"; 434 | $fa-var-stumbleupon-circle: "\f1a3"; 435 | $fa-var-subscript: "\f12c"; 436 | $fa-var-suitcase: "\f0f2"; 437 | $fa-var-sun-o: "\f185"; 438 | $fa-var-superscript: "\f12b"; 439 | $fa-var-support: "\f1cd"; 440 | $fa-var-table: "\f0ce"; 441 | $fa-var-tablet: "\f10a"; 442 | $fa-var-tachometer: "\f0e4"; 443 | $fa-var-tag: "\f02b"; 444 | $fa-var-tags: "\f02c"; 445 | $fa-var-tasks: "\f0ae"; 446 | $fa-var-taxi: "\f1ba"; 447 | $fa-var-tencent-weibo: "\f1d5"; 448 | $fa-var-terminal: "\f120"; 449 | $fa-var-text-height: "\f034"; 450 | $fa-var-text-width: "\f035"; 451 | $fa-var-th: "\f00a"; 452 | $fa-var-th-large: "\f009"; 453 | $fa-var-th-list: "\f00b"; 454 | $fa-var-thumb-tack: "\f08d"; 455 | $fa-var-thumbs-down: "\f165"; 456 | $fa-var-thumbs-o-down: "\f088"; 457 | $fa-var-thumbs-o-up: "\f087"; 458 | $fa-var-thumbs-up: "\f164"; 459 | $fa-var-ticket: "\f145"; 460 | $fa-var-times: "\f00d"; 461 | $fa-var-times-circle: "\f057"; 462 | $fa-var-times-circle-o: "\f05c"; 463 | $fa-var-tint: "\f043"; 464 | $fa-var-toggle-down: "\f150"; 465 | $fa-var-toggle-left: "\f191"; 466 | $fa-var-toggle-right: "\f152"; 467 | $fa-var-toggle-up: "\f151"; 468 | $fa-var-trash-o: "\f014"; 469 | $fa-var-tree: "\f1bb"; 470 | $fa-var-trello: "\f181"; 471 | $fa-var-trophy: "\f091"; 472 | $fa-var-truck: "\f0d1"; 473 | $fa-var-try: "\f195"; 474 | $fa-var-tumblr: "\f173"; 475 | $fa-var-tumblr-square: "\f174"; 476 | $fa-var-turkish-lira: "\f195"; 477 | $fa-var-twitter: "\f099"; 478 | $fa-var-twitter-square: "\f081"; 479 | $fa-var-umbrella: "\f0e9"; 480 | $fa-var-underline: "\f0cd"; 481 | $fa-var-undo: "\f0e2"; 482 | $fa-var-university: "\f19c"; 483 | $fa-var-unlink: "\f127"; 484 | $fa-var-unlock: "\f09c"; 485 | $fa-var-unlock-alt: "\f13e"; 486 | $fa-var-unsorted: "\f0dc"; 487 | $fa-var-upload: "\f093"; 488 | $fa-var-usd: "\f155"; 489 | $fa-var-user: "\f007"; 490 | $fa-var-user-md: "\f0f0"; 491 | $fa-var-users: "\f0c0"; 492 | $fa-var-video-camera: "\f03d"; 493 | $fa-var-vimeo-square: "\f194"; 494 | $fa-var-vine: "\f1ca"; 495 | $fa-var-vk: "\f189"; 496 | $fa-var-volume-down: "\f027"; 497 | $fa-var-volume-off: "\f026"; 498 | $fa-var-volume-up: "\f028"; 499 | $fa-var-warning: "\f071"; 500 | $fa-var-wechat: "\f1d7"; 501 | $fa-var-weibo: "\f18a"; 502 | $fa-var-weixin: "\f1d7"; 503 | $fa-var-wheelchair: "\f193"; 504 | $fa-var-windows: "\f17a"; 505 | $fa-var-won: "\f159"; 506 | $fa-var-wordpress: "\f19a"; 507 | $fa-var-wrench: "\f0ad"; 508 | $fa-var-xing: "\f168"; 509 | $fa-var-xing-square: "\f169"; 510 | $fa-var-yahoo: "\f19e"; 511 | $fa-var-yen: "\f157"; 512 | $fa-var-youtube: "\f167"; 513 | $fa-var-youtube-play: "\f16a"; 514 | $fa-var-youtube-square: "\f166"; 515 | 516 | -------------------------------------------------------------------------------- /font-awesome-4.1.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"} -------------------------------------------------------------------------------- /js/cti.js: -------------------------------------------------------------------------------- 1 | /* 2 | cti.js 3 | 4 | This Javascript library is used to deals with long-polling requests from "https://events.voip.ovh.net" URL. It also contains angularJS 5 | controller for the CTI dashboard and basic javascript timer functions to count live call duration. 6 | 7 | License : 8 | MIT 9 | 10 | */ 11 | 12 | var timer; 13 | 14 | function timerFunc() { 15 | timer = setInterval(timerEvent, 1000); 16 | } 17 | 18 | function timerEvent() { 19 | var fieldsToUpdate = $("[name=fieldToUpdate]"); 20 | 21 | // var ts2 = Date().getTime(); 22 | // console.log(ts2); 23 | 24 | for (var i = 0; ithis.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i="next"==b?"first":"last",j=this;if(!f.length){if(!this.options.wrap)return;f=this.$element.find(".item")[i]()}if(f.hasClass("active"))return this.sliding=!1;var k=f[0],l=a.Event("slide.bs.carousel",{relatedTarget:k,direction:h});if(this.$element.trigger(l),!l.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var m=a(this.$indicators.children()[this.getItemIndex(f)]);m&&m.addClass("active")}var n=a.Event("slid.bs.carousel",{relatedTarget:k,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),j.sliding=!1,setTimeout(function(){j.$element.trigger(n)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(n)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a(this.options.trigger).filter('[href="#'+b.id+'"], [data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.0",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0,trigger:'[data-toggle="collapse"]'},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.find("> .panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":a.extend({},e.data(),{trigger:this});c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.0",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('