├── src ├── lib │ ├── socicon │ │ ├── font │ │ │ ├── .empty │ │ │ ├── socicon-webfont.eot │ │ │ ├── socicon-webfont.ttf │ │ │ ├── socicon-webfont.woff │ │ │ └── socicon-webfont.woff2 │ │ └── css │ │ │ ├── socicon.min.css │ │ │ └── socicon.css │ ├── octicons │ │ ├── octicons.eot │ │ ├── octicons.ttf │ │ ├── octicons.woff │ │ ├── octicons-local.ttf │ │ ├── README.md │ │ ├── LICENSE.txt │ │ ├── octicons.min.css │ │ ├── sprockets-octicons.scss │ │ ├── octicons.less │ │ └── octicons.css │ ├── icofont │ │ └── fonts │ │ │ ├── icofont.eot │ │ │ ├── icofont.ttf │ │ │ └── icofont.woff │ ├── typicons │ │ ├── font │ │ │ ├── typicons.eot │ │ │ ├── typicons.ttf │ │ │ └── typicons.woff │ │ └── css │ │ │ ├── typicons.min.css │ │ │ └── typicons.css │ ├── openiconic │ │ ├── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ └── css │ │ │ ├── open-iconic-bootstrap.min.css │ │ │ └── open-iconic-bootstrap.css │ ├── whhg │ │ └── font │ │ │ ├── webhostinghub-glyphs.eot │ │ │ └── webhostinghub-glyphs.ttf │ ├── elusive │ │ ├── fonts │ │ │ ├── elusiveicons-webfont.eot │ │ │ ├── elusiveicons-webfont.ttf │ │ │ └── elusiveicons-webfont.woff │ │ └── css │ │ │ ├── elusive-icons.min.css │ │ │ └── elusive-icons.css │ └── uni │ │ └── css │ │ └── kv-unicode-icons.min.css ├── UniAsset.php ├── SociconAsset.php ├── TypiconsAsset.php ├── WhhgAsset.php ├── JuiAsset.php ├── OcticonsAsset.php ├── IcoFontAsset.php ├── OpenIconicAsset.php ├── ElusiveAsset.php ├── FlagIconAsset.php ├── FontAwesomeAsset.php └── Icon.php ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml ├── ISSUE_TEMPLATE.md └── CONTRIBUTING.md ├── composer.json ├── LICENSE.md ├── CHANGE.md └── README.md /src/lib/socicon/font/.empty: -------------------------------------------------------------------------------- 1 | I'm a folder! -------------------------------------------------------------------------------- /src/lib/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/octicons/octicons.eot -------------------------------------------------------------------------------- /src/lib/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/octicons/octicons.ttf -------------------------------------------------------------------------------- /src/lib/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/octicons/octicons.woff -------------------------------------------------------------------------------- /src/lib/icofont/fonts/icofont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/icofont/fonts/icofont.eot -------------------------------------------------------------------------------- /src/lib/icofont/fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/icofont/fonts/icofont.ttf -------------------------------------------------------------------------------- /src/lib/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /src/lib/typicons/font/typicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/typicons/font/typicons.eot -------------------------------------------------------------------------------- /src/lib/typicons/font/typicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/typicons/font/typicons.ttf -------------------------------------------------------------------------------- /src/lib/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /src/lib/typicons/font/typicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/typicons/font/typicons.woff -------------------------------------------------------------------------------- /src/lib/openiconic/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/openiconic/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/lib/openiconic/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/openiconic/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/lib/openiconic/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/openiconic/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/lib/openiconic/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/openiconic/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/lib/socicon/font/socicon-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/socicon/font/socicon-webfont.eot -------------------------------------------------------------------------------- /src/lib/socicon/font/socicon-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/socicon/font/socicon-webfont.ttf -------------------------------------------------------------------------------- /src/lib/socicon/font/socicon-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/socicon/font/socicon-webfont.woff -------------------------------------------------------------------------------- /src/lib/socicon/font/socicon-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/socicon/font/socicon-webfont.woff2 -------------------------------------------------------------------------------- /src/lib/whhg/font/webhostinghub-glyphs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/whhg/font/webhostinghub-glyphs.eot -------------------------------------------------------------------------------- /src/lib/whhg/font/webhostinghub-glyphs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/whhg/font/webhostinghub-glyphs.ttf -------------------------------------------------------------------------------- /src/lib/elusive/fonts/elusiveicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/elusive/fonts/elusiveicons-webfont.eot -------------------------------------------------------------------------------- /src/lib/elusive/fonts/elusiveicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/elusive/fonts/elusiveicons-webfont.ttf -------------------------------------------------------------------------------- /src/lib/elusive/fonts/elusiveicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kartik-v/yii2-icons/HEAD/src/lib/elusive/fonts/elusiveicons-webfont.woff -------------------------------------------------------------------------------- /src/lib/octicons/README.md: -------------------------------------------------------------------------------- 1 | If you intend to install Octicons locally, install `octicons-local.ttf`. It should appear as “github-octicons” in your font list. It is specially designed not to conflict with GitHub's web fonts. 2 | -------------------------------------------------------------------------------- /src/lib/octicons/LICENSE.txt: -------------------------------------------------------------------------------- 1 | (c) 2012-2014 GitHub 2 | 3 | When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos) 4 | 5 | Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) 6 | Applies to all font files 7 | 8 | Code License: MIT (http://choosealicense.com/licenses/mit/) 9 | Applies to all other files 10 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Scope 2 | This pull request includes a 3 | 4 | - [ ] Bug fix 5 | - [ ] New feature 6 | - [ ] Translation 7 | 8 | ## Changes 9 | The following changes were made (this change is also documented in the [change log](https://github.com/kartik-v/yii2-icons/blob/master/CHANGE.md)): 10 | 11 | - 12 | - 13 | - 14 | 15 | ## Related Issues 16 | If this is related to an existing ticket, include a link to it as well. -------------------------------------------------------------------------------- /src/UniAsset.php: -------------------------------------------------------------------------------- 1 | 17 | * @since 1.0 18 | */ 19 | class UniAsset extends BaseAssetBundle 20 | { 21 | /** 22 | * @inheritdoc 23 | */ 24 | public function init() 25 | { 26 | $this->setSourcePath(__DIR__ . '/lib/uni'); 27 | $this->setupAssets('css', ['css/kv-unicode-icons']); 28 | parent::init(); 29 | } 30 | } -------------------------------------------------------------------------------- /src/SociconAsset.php: -------------------------------------------------------------------------------- 1 | 16 | * @since 1.0 17 | */ 18 | 19 | class SociconAsset extends \kartik\base\AssetBundle 20 | { 21 | /** 22 | * @inheritdoc 23 | */ 24 | public function init() 25 | { 26 | $this->setSourcePath(__DIR__ . '/lib/socicon'); 27 | $this->setupAssets('css', ['css/socicon']); 28 | parent::init(); 29 | } 30 | 31 | } -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 60 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - bug 8 | - enhancement 9 | - pinned 10 | - security 11 | # Label to use when marking an issue as stale 12 | staleLabel: wontfix 13 | # Comment to post when marking an issue as stale. Set to `false` to disable 14 | markComment: > 15 | This issue has been automatically marked as stale because it has not had 16 | recent activity. It will be closed if no further activity occurs. Thank you 17 | for your contributions. 18 | # Comment to post when closing a stale issue. Set to `false` to disable 19 | closeComment: false -------------------------------------------------------------------------------- /src/TypiconsAsset.php: -------------------------------------------------------------------------------- 1 | 19 | * @since 1.0 20 | */ 21 | class TypiconsAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public function init() 27 | { 28 | $this->setSourcePath(__DIR__ . '/lib/typicons'); 29 | $this->setupAssets('css', ['css/typicons']); 30 | parent::init(); 31 | } 32 | } -------------------------------------------------------------------------------- /src/WhhgAsset.php: -------------------------------------------------------------------------------- 1 | 19 | * @since 1.0 20 | */ 21 | class WhhgAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public function init() 27 | { 28 | $this->setSourcePath(__DIR__ . '/lib/whhg'); 29 | $this->setupAssets('css', ['css/whhg']); 30 | parent::init(); 31 | } 32 | } -------------------------------------------------------------------------------- /src/JuiAsset.php: -------------------------------------------------------------------------------- 1 | 19 | * @since 1.0 20 | */ 21 | class JuiAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public $sourcePath = '@bower/jquery-ui'; 27 | /** 28 | * @inheritdoc 29 | */ 30 | public $css = [ 31 | 'themes/smoothness/jquery-ui.css', 32 | ]; 33 | 34 | } -------------------------------------------------------------------------------- /src/OcticonsAsset.php: -------------------------------------------------------------------------------- 1 | 18 | * @since 1.0 19 | */ 20 | 21 | class OcticonsAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public function init() 27 | { 28 | $this->setSourcePath(__DIR__ . '/lib/octicons'); 29 | $this->setupAssets('css', ['octicons']); 30 | parent::init(); 31 | } 32 | 33 | } -------------------------------------------------------------------------------- /src/IcoFontAsset.php: -------------------------------------------------------------------------------- 1 | 17 | * @author Kartik Visweswaran 18 | * @since 1.4.8 19 | */ 20 | 21 | class IcoFontAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public function init() 27 | { 28 | $this->setSourcePath(__DIR__ . '/lib/icofont'); 29 | $this->setupAssets('css', ['css/icofont']); 30 | parent::init(); 31 | } 32 | } -------------------------------------------------------------------------------- /src/OpenIconicAsset.php: -------------------------------------------------------------------------------- 1 | 19 | * @since 1.0 20 | */ 21 | class OpenIconicAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public function init() 27 | { 28 | $this->setSourcePath(__DIR__ . '/lib/openiconic'); 29 | $this->setupAssets('css', ['css/open-iconic-bootstrap']); 30 | parent::init(); 31 | } 32 | } -------------------------------------------------------------------------------- /src/ElusiveAsset.php: -------------------------------------------------------------------------------- 1 | 19 | * @since 1.0 20 | * 21 | */ 22 | class ElusiveAsset extends BaseAssetBundle 23 | { 24 | /** 25 | * @inheritdoc 26 | */ 27 | public function init() 28 | { 29 | $this->setSourcePath(__DIR__ . '/lib/elusive'); 30 | $this->setupAssets('css', ['css/elusive-icons']); 31 | parent::init(); 32 | } 33 | } -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kartik-v/yii2-icons", 3 | "description": "Set of icon frameworks for use in Yii Framework 2.0", 4 | "keywords": [ 5 | "yii", 6 | "yii2", 7 | "extension", 8 | "icon", 9 | "font" 10 | ], 11 | "homepage": "https://github.com/kartik-v/yii2-icons", 12 | "type": "yii2-extension", 13 | "license": "BSD-3-Clause", 14 | "authors": [ 15 | { 16 | "name": "Kartik Visweswaran", 17 | "email": "kartikv2@gmail.com", 18 | "homepage": "http://demos.krajee.com/" 19 | } 20 | ], 21 | "require": { 22 | "kartik-v/yii2-krajee-base": ">=3.0.4", 23 | "yiisoft/yii2-jui": "*", 24 | "components/flag-icon-css": "*" 25 | }, 26 | "autoload": { 27 | "psr-4": { 28 | "kartik\\icons\\": "src" 29 | } 30 | }, 31 | "extra": { 32 | "branch-alias": { 33 | "dev-master": "1.4.x-dev" 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/FlagIconAsset.php: -------------------------------------------------------------------------------- 1 | 18 | * @author Kartik Visweswaran 19 | * @since 1.4 20 | */ 21 | class FlagIconAsset extends BaseAssetBundle 22 | { 23 | /** 24 | * @inheritdoc 25 | */ 26 | public $sourcePath = '@vendor/components/flag-icon-css'; 27 | 28 | /** 29 | * @inheritdoc 30 | */ 31 | public function init() 32 | { 33 | $this->setupAssets('css', ['css/flag-icons']); 34 | parent::init(); 35 | } 36 | } -------------------------------------------------------------------------------- /src/FontAwesomeAsset.php: -------------------------------------------------------------------------------- 1 | 20 | * @since 1.0 21 | */ 22 | class FontAwesomeAsset extends AssetBundle 23 | { 24 | /** 25 | * @inheritdoc 26 | */ 27 | public $js = [ 28 | // font awesome free version (can be overridden from yii2 asset manager) 29 | 'https://use.fontawesome.com/releases/v5.15.1/js/all.js' 30 | ]; 31 | 32 | /** 33 | * @inheritdoc 34 | */ 35 | public $jsOptions = [ 36 | 'position' => View::POS_HEAD, 37 | 'defer' => true, 38 | 'crossorigin' => 'anonymous' 39 | ]; 40 | } 41 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Prerequisites 2 | 3 | - [ ] I have searched for similar issues in both open and closed tickets and cannot find a duplicate. 4 | - [ ] The issue still exists against the latest `master` branch of yii2-icons. 5 | - [ ] This is not an usage question. I confirm having gone through and read the [documentation and demos](http://demos.krajee.com/icons). 6 | - [ ] This is not a general programming / coding question. (Those should be directed to the [webtips Q & A forum](http://webtips.krajee.com/questions)). 7 | - [ ] I have attempted to find the simplest possible steps to reproduce the issue. 8 | - [ ] I have included a failing test as a pull request (Optional). 9 | 10 | ## Steps to reproduce the issue 11 | 12 | 1. 13 | 2. 14 | 3. 15 | 16 | ## Expected behavior and actual behavior 17 | 18 | When I follow those steps, I see... 19 | 20 | I was expecting... 21 | 22 | ## Environment 23 | 24 | #### Browsers 25 | 26 | - [ ] Google Chrome 27 | - [ ] Mozilla Firefox 28 | - [ ] Internet Explorer 29 | - [ ] Safari 30 | 31 | #### Operating System 32 | 33 | - [ ] Windows 34 | - [ ] Mac OS X 35 | - [ ] Linux 36 | - [ ] Mobile 37 | 38 | #### Libraries 39 | 40 | - jQuery version: 41 | - yii2-icons version: 42 | 43 | ## Isolating the problem 44 | 45 | - [ ] This bug happens [on the demos page](https://demos.krajee.com/icons) 46 | - [ ] The bug happens consistently across all tested browsers 47 | - [ ] This bug happens when using yii2-icons without other plugins. -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 - 2022, Kartik Visweswaran 2 | Krajee.com 3 | All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without modification, 6 | are permitted provided that the following conditions are met: 7 | 8 | * Redistributions of source code must retain the above copyright notice, this 9 | list of conditions and the following disclaimer. 10 | 11 | * Redistributions in binary form must reproduce the above copyright notice, this 12 | list of conditions and the following disclaimer in the documentation and/or 13 | other materials provided with the distribution. 14 | 15 | * Neither the names of Kartik Visweswaran or Krajee nor the names of its 16 | contributors may be used to endorse or promote products derived from 17 | this software without specific prior written permission. 18 | 19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 20 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 21 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 22 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 23 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 24 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 25 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 26 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | -------------------------------------------------------------------------------- /CHANGE.md: -------------------------------------------------------------------------------- 1 | Change Log: `yii2-icons` 2 | ======================== 3 | 4 | ## Version 1.4.8 5 | 6 | **Date:** 04-Mar-2022 7 | 8 | - (enh #49, #50): Enhance compatibility for PHP 8.1. 9 | - Enhance & standardize php docs for new website https://docs.krajee.com. 10 | 11 | ## Version 1.4.7 12 | 13 | **Date:** 08-Apr-2021 14 | 15 | - (enh #45): Revert to use default Font Awesome CDN. 16 | 17 | ## Version 1.4.6 18 | 19 | **Date:** 12-Jan-2021 20 | 21 | - (enh #43): Use CDN link to avoid impact China sites. 22 | - (enh #42): Update FontAwesome to use v5.13.0. 23 | - (enh #41): Support for Font Awesome duotone and any other Pro icons. 24 | - (enh #39): Correct deprecated params use for Icon::show. 25 | - (enh #36): Update FontAwesome to use v5.0.13. 26 | 27 | ## Version 1.4.5 28 | 29 | **Date:** 20-Sep-2018 30 | 31 | - Enhancements for Font Awesome 5.x layering features. 32 | - Ability to override Font Awesome Free 5.x asset load via Yii2 Asset Manager. 33 | - Remove Font Awesome 4.x support and include load Font Awesome Free 5.x JS/SVG asset 34 | - Enhancements to support Bootstrap 4.x 35 | - Move all source code to `src` directory 36 | 37 | ## Version 1.4.4 38 | 39 | **Date:** 09-Mar-2018 40 | 41 | - (enh #34, #35): Add support for Font Awesome 5 (Free & Pro versions) and icon layering. 42 | 43 | ## Version 1.4.4 44 | 45 | **Date:** 10-Nov-2017 46 | 47 | - Cleanup composer and update dev-master alias. 48 | - (enh #30, #33): Update Elusive Icons library source 49 | - (enh #28): Correct Font Awesome Asset rendering 50 | 51 | ## Version 1.4.2 52 | 53 | **Date:** 22-Feb-2017 54 | 55 | - (enh #26): Add IcoFont icons set. 56 | - (enh #25): Enable publishOptions for Font Awesome Asset Bundle for reducing size of assets published. 57 | - (enh #24): Eliminate icon asset bundle dependencies on Jquery or Bootstrap Assets. 58 | - Add github contribution and PR templates. 59 | 60 | ## Version 1.4.1 61 | 62 | **Date:** 13-Dec-2015 63 | 64 | - (enh #23): Add support for [Open Iconic Icons](https://useiconic.com/open#icons). 65 | - (enh #19): Update to add custom icon sets. 66 | - (enh #17): Added method `getFrameworkPrefix`. 67 | 68 | ## Version 1.4.0 69 | 70 | **Date:** 20-Apr-2015 71 | 72 | - (enh #16): Add [Flag Icons](http://lipis.github.io/flag-icon-css/) 73 | - (enh #15): Add [Octicons](https://octicons.github.com/) 74 | - (enh #13): Add [Socicon Icons](http://www.socicon.com/) 75 | 76 | ## Version 1.3.0 77 | 78 | **Date:** 18-Dec-2014 79 | 80 | - (enh #10): Add `showStack` method for displaying stacked icons like in FA 81 | 82 | ## Version 1.2.0 83 | 84 | **Date:** 08-Dec-2014 85 | 86 | - (enh #9): Update WHHG icons to latest version. 87 | - (enh #8): Update elusive icons to latest version. 88 | - (enh #7): Update typicons to latest version. 89 | - (enh #6): Create a new JUI asset for core yii\jui package change. 90 | 91 | ## Version 1.1.0 92 | 93 | **Date:** 10-Nov-2014 94 | 95 | - Set dependency on Krajee base components 96 | - Set release to stable 97 | 98 | ## Version 1.0.0 99 | 100 | **Date:** 01-Mar-2014 101 | 102 | - Initial release 103 | - PSR4 alias change 104 | -------------------------------------------------------------------------------- /src/lib/socicon/css/socicon.min.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8';@font-face{font-family:socicon;src:url(../font/socicon-webfont.eot);src:url(../font/socicon-webfont.eot?#iefix) format('embedded-opentype'),url(../font/socicon-webfont.woff) format('woff'),url(../font/socicon-webfont.woff2) format('woff2'),url(../font/socicon-webfont.ttf) format('truetype'),url(../font/socicon-webfont.svg#sociconregular) format('svg');font-weight:400;font-style:normal;text-transform:initial}.socicon{position:relative;top:1px;display:inline-block;font-family:socicon;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased}.socicon-twitter:before{content:"a"}.socicon-facebook:before{content:"b"}.socicon-google:before{content:"c"}.socicon-pinterest:before{content:"d"}.socicon-foursquare:before{content:"e"}.socicon-yahoo:before{content:"f"}.socicon-skype:before{content:"g"}.socicon-yelp:before{content:"h"}.socicon-feedburner:before{content:"i"}.socicon-linkedin:before{content:"j"}.socicon-viadeo:before{content:"k"}.socicon-xing:before{content:"l"}.socicon-myspace:before{content:"m"}.socicon-soundcloud:before{content:"n"}.socicon-spotify:before{content:"o"}.socicon-grooveshark:before{content:"p"}.socicon-lastfm:before{content:"q"}.socicon-youtube:before{content:"r"}.socicon-vimeo:before{content:"s"}.socicon-dailymotion:before{content:"t"}.socicon-vine:before{content:"u"}.socicon-flickr:before{content:"v"}.socicon-500px:before{content:"w"}.socicon-instagram:before{content:"x"}.socicon-wordpress:before{content:"y"}.socicon-tumblr:before{content:"z"}.socicon-blogger:before{content:"A"}.socicon-technorati:before{content:"B"}.socicon-reddit:before{content:"C"}.socicon-dribbble:before{content:"D"}.socicon-stumbleupon:before{content:"E"}.socicon-digg:before{content:"F"}.socicon-envato:before{content:"G"}.socicon-behance:before{content:"H"}.socicon-delicious:before{content:"I"}.socicon-deviantart:before{content:"J"}.socicon-forrst:before{content:"K"}.socicon-playstore:before{content:"L"}.socicon-zerply:before{content:"M"}.socicon-wikipedia:before{content:"N"}.socicon-apple:before{content:"O"}.socicon-flattr:before{content:"P"}.socicon-github:before{content:"Q"}.socicon-chimein:before{content:"R"}.socicon-friendfeed:before{content:"S"}.socicon-newsvine:before{content:"T"}.socicon-identica:before{content:"U"}.socicon-bebo:before{content:"V"}.socicon-zynga:before{content:"W"}.socicon-steam:before{content:"X"}.socicon-xbox:before{content:"Y"}.socicon-windows:before{content:"Z"}.socicon-outlook:before{content:"1"}.socicon-coderwall:before{content:"2"}.socicon-tripadvisor:before{content:"3"}.socicon-appnet:before{content:"4"}.socicon-goodreads:before{content:"5"}.socicon-tripit:before{content:"6"}.socicon-lanyrd:before{content:"7"}.socicon-slideshare:before{content:"8"}.socicon-buffer:before{content:"9"}.socicon-rss:before{content:","}.socicon-vkontakte:before{content:";"}.socicon-disqus:before{content:":"}.socicon-houzz:before{content:"+"}.socicon-mail:before{content:"@"}.socicon-patreon:before{content:"="}.socicon-paypal:before{content:"-"}.socicon-playstation:before{content:"^"}.socicon-smugmug:before{content:"¨"}.socicon-swarm:before{content:"$"}.socicon-triplej:before{content:"*"}.socicon-yammer:before{content:"&"}.socicon-stackoverflow:before{content:"("}.socicon-drupal:before{content:"#"}.socicon-odnoklassniki:before{content:"."} -------------------------------------------------------------------------------- /src/lib/socicon/css/socicon.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | @font-face { 4 | font-family: 'socicon'; 5 | src: url('../font/socicon-webfont.eot'); 6 | src: url('../font/socicon-webfont.eot?#iefix') format('embedded-opentype'), 7 | url('../font/socicon-webfont.woff') format('woff'), 8 | url('../font/socicon-webfont.woff2') format('woff2'), 9 | url('../font/socicon-webfont.ttf') format('truetype'), 10 | url('../font/socicon-webfont.svg#sociconregular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | text-transform: initial; 14 | } 15 | .socicon { 16 | position: relative; 17 | top: 1px; 18 | display: inline-block; 19 | font-family: 'socicon'; 20 | font-style: normal; 21 | font-weight: normal; 22 | -webkit-font-smoothing: antialiased; 23 | } 24 | .socicon-twitter:before { content: "a"; } 25 | .socicon-facebook:before { content: "b"; } 26 | .socicon-google:before { content: "c"; } 27 | .socicon-pinterest:before { content: "d"; } 28 | .socicon-foursquare:before { content: "e"; } 29 | .socicon-yahoo:before { content: "f"; } 30 | .socicon-skype:before { content: "g"; } 31 | .socicon-yelp:before { content: "h"; } 32 | .socicon-feedburner:before { content: "i"; } 33 | .socicon-linkedin:before { content: "j"; } 34 | .socicon-viadeo:before { content: "k"; } 35 | .socicon-xing:before { content: "l"; } 36 | .socicon-myspace:before { content: "m"; } 37 | .socicon-soundcloud:before { content: "n"; } 38 | .socicon-spotify:before { content: "o"; } 39 | .socicon-grooveshark:before { content: "p"; } 40 | .socicon-lastfm:before { content: "q"; } 41 | .socicon-youtube:before { content: "r"; } 42 | .socicon-vimeo:before { content: "s"; } 43 | .socicon-dailymotion:before { content: "t"; } 44 | .socicon-vine:before { content: "u"; } 45 | .socicon-flickr:before { content: "v"; } 46 | .socicon-500px:before { content: "w"; } 47 | .socicon-instagram:before { content: "x"; } 48 | .socicon-wordpress:before { content: "y"; } 49 | .socicon-tumblr:before { content: "z"; } 50 | .socicon-blogger:before { content: "A"; } 51 | .socicon-technorati:before { content: "B"; } 52 | .socicon-reddit:before { content: "C"; } 53 | .socicon-dribbble:before { content: "D"; } 54 | .socicon-stumbleupon:before { content: "E"; } 55 | .socicon-digg:before { content: "F"; } 56 | .socicon-envato:before { content: "G"; } 57 | .socicon-behance:before { content: "H"; } 58 | .socicon-delicious:before { content: "I"; } 59 | .socicon-deviantart:before { content: "J"; } 60 | .socicon-forrst:before { content: "K"; } 61 | .socicon-playstore:before { content: "L"; } 62 | .socicon-zerply:before { content: "M"; } 63 | .socicon-wikipedia:before { content: "N"; } 64 | .socicon-apple:before { content: "O"; } 65 | .socicon-flattr:before { content: "P"; } 66 | .socicon-github:before { content: "Q"; } 67 | .socicon-chimein:before { content: "R"; } 68 | .socicon-friendfeed:before { content: "S"; } 69 | .socicon-newsvine:before { content: "T"; } 70 | .socicon-identica:before { content: "U"; } 71 | .socicon-bebo:before { content: "V"; } 72 | .socicon-zynga:before { content: "W"; } 73 | .socicon-steam:before { content: "X"; } 74 | .socicon-xbox:before { content: "Y"; } 75 | .socicon-windows:before { content: "Z"; } 76 | .socicon-outlook:before { content: "1"; } 77 | .socicon-coderwall:before { content: "2"; } 78 | .socicon-tripadvisor:before { content: "3"; } 79 | .socicon-appnet:before { content: "4"; } 80 | .socicon-goodreads:before { content: "5"; } 81 | .socicon-tripit:before { content: "6"; } 82 | .socicon-lanyrd:before { content: "7"; } 83 | .socicon-slideshare:before { content: "8"; } 84 | .socicon-buffer:before { content: "9"; } 85 | .socicon-rss:before { content: ","; } 86 | .socicon-vkontakte:before { content: ";"; } 87 | .socicon-disqus:before { content: ":"; } 88 | .socicon-houzz:before { content: "+"; } 89 | .socicon-mail:before { content: "@"; } 90 | .socicon-patreon:before { content: "="; } 91 | .socicon-paypal:before { content: "-"; } 92 | .socicon-playstation:before { content: "^"; } 93 | .socicon-smugmug:before { content: "¨"; } 94 | .socicon-swarm:before { content: "$"; } 95 | .socicon-triplej:before { content: "*"; } 96 | .socicon-yammer:before { content: "&"; } 97 | .socicon-stackoverflow:before { content: "("; } 98 | .socicon-drupal:before { content: "#"; } 99 | .socicon-odnoklassniki:before { content : ".";} -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing to yii2-icons 2 | ========================== 3 | Looking to contribute something to yii2-icons? **Here's how you can help.** 4 | 5 | Please take a moment to review this document in order to make the contribution 6 | process easy and effective for everyone involved. 7 | 8 | Following these guidelines helps to communicate that you respect the time of 9 | the developers managing and developing this open source project. In return, 10 | they should reciprocate that respect in addressing your issue or assessing 11 | patches and features. 12 | 13 | Using the issue tracker 14 | ----------------------- 15 | When [reporting bugs][reporting-bugs] or 16 | [requesting features][requesting-features], the 17 | [issue tracker on GitHub][issue-tracker] is the recommended channel to use. 18 | 19 | The issue tracker **is not** a place for support requests. Refer the 20 | [extension documentation and demos](http://demos.krajee.com/icons) and/or refer to the 21 | [webtips Q & A forum](http://webtips.krajee.com/questions) which are the better places to get help. 22 | 23 | Reporting bugs with yii2-icons 24 | -------------------------------- 25 | We really appreciate clear bug reports that _consistently_ show an issue 26 | _within yii2-icons_. 27 | 28 | The ideal bug report follows these guidelines: 29 | 30 | 1. **Use the [GitHub issue search][issue-search]** — Check if the issue 31 | has already been reported. 32 | 2. **Check if the issue has been fixed** — Try to reproduce the problem 33 | using the code in the `master` branch. 34 | 3. **Isolate the problem** — Try to share a demo or a test case that 35 | consistently reproduces the problem. 36 | 37 | Please try to be as detailed as possible in your bug report, especially if an 38 | isolated test case cannot be made. Some useful questions to include the answer 39 | to are: 40 | 41 | - What steps can be used to reproduce the issue? 42 | - What is the bug and what is the expected outcome? 43 | - What browser(s) and Operating System have you tested with? 44 | - Does the bug happen consistently across all tested browsers? 45 | - What version of jQuery are you using? And what version of yii2-icons? 46 | - Are you using yii2-icons with other plugins? 47 | 48 | All of these questions will help others fix and identify any potential bugs. 49 | 50 | Requesting features in yii2-icons 51 | ------------------------------------------ 52 | Before starting work on a major feature for yii2-icons, **read the 53 | [documentation](http://demos.krajee.com/icons) first** or you may risk spending a considerable amount of 54 | time on something which the project developers are not interested in bringing into the project. 55 | 56 | ### Submitting a pull request 57 | 58 | We use GitHub's pull request system for submitting patches. Here are some 59 | guidelines to follow when creating the pull request for your fix. 60 | 61 | 1. Make sure to create a ticket for your pull request. This will serve as the 62 | bug ticket, and any discussion about the bug will take place there. Your pull 63 | request will be focused on the specific changes that fix the bug. 64 | 2. Make sure to reference the ticket you are fixing within your pull request. 65 | This will allow us to close off the ticket once we merge the pull request, or 66 | follow up on the ticket if there are any related blocking issues. 67 | 3. Explain why the specific change was made. Not everyone who is reviewing your 68 | pull request will be familiar with the problem it is fixing. 69 | 4. Run your tests first. If your tests aren't passing, the pull request won't 70 | be able to be merged. If you're breaking existing tests, make sure that you 71 | aren't causing any breaking changes. 72 | 5. Only include source changes. While it's not required, only including changes 73 | from the `src` directory will prevent merge conflicts from occuring. Making 74 | this happen can be as a simple as not committing changes from the `dist` 75 | directory. 76 | 77 | By following these steps, you will make it easier for your pull request to be 78 | reviewed and eventually merged. 79 | 80 | Triaging issues and pull requests 81 | --------------------------------- 82 | Anyone can help the project maintainers triage issues and review pull requests. 83 | 84 | ### Handling new issues 85 | 86 | yii2-icons regularly receives new issues which need to be tested and organized. 87 | 88 | When a new issue that comes in that is similar to another existing issue, it 89 | should be checked to make sure it is not a duplicate. Duplicates issues should 90 | be marked by replying to the issue with "Duplicate of #[issue number]" where 91 | `[issue number]` is the url or issue number for the existing issue. This will 92 | allow the project maintainers to quickly close off additional issues and keep 93 | the discussion focused within a single issue. 94 | 95 | If you can test issues that are reported to yii2-icons that contain test cases and 96 | confirm under what conditions bugs happen, that will allow others to identify 97 | what causes a bug quicker. 98 | 99 | ### Reviewing pull requests 100 | 101 | It is very common for pull requests to be opened for issues that contain a clear 102 | solution to the problem. These pull requests should be rigorously reviewed by 103 | the community before being accepted. If you are not sure about a piece of 104 | submitted code, or know of a better way to do something, do not hesitate to make 105 | a comment on the pull request. 106 | 107 | ### Reviving old tickets 108 | 109 | If you come across tickets which have not been updated for a while, you are 110 | encouraged to revive them. While this can be as simple as saying `:+1:`, it is 111 | best if you can include more information on the issue. Common bugs and feature 112 | requests are more likely to be fixed, whether it is by the community or the 113 | developers, so keeping tickets up to date is encouraged. 114 | 115 | Licensing 116 | --------- 117 | 118 | It should also be made clear that **all code contributed to yii2-icons** must be 119 | licensable under the [BSD-3 license][licensing]. Code that cannot be released 120 | under this license **cannot be accepted** into the project. 121 | 122 | [issue-search]: https://github.com/kartik-v/yii2-icons/search?q=&type=Issues 123 | [issue-tracker]: https://github.com/kartik-v/yii2-icons/issues 124 | [licensing]: https://github.com/kartik-v/yii2-icons/blob/master/LICENSE.md 125 | [reporting-bugs]: #reporting-bugs-with-yii2-icons 126 | [requesting-features]: #requesting-features-in-yii2-icons -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | Krajee Logo 4 | 5 |
6 | yii2-icons 7 |
8 | Donate 10 |       11 | kartikv 12 |

13 | 14 | [![Latest Stable Version](https://poser.pugx.org/kartik-v/yii2-icons/v/stable)](https://packagist.org/packages/kartik-v/yii2-icons) 15 | [![Latest Unstable Version](https://poser.pugx.org/kartik-v/yii2-icons/v/unstable)](https://packagist.org/packages/kartik-v/yii2-icons) 16 | [![License](https://poser.pugx.org/kartik-v/yii2-icons/license)](https://packagist.org/packages/kartik-v/yii2-icons) 17 | [![Total Downloads](https://poser.pugx.org/kartik-v/yii2-icons/downloads)](https://packagist.org/packages/kartik-v/yii2-icons) 18 | [![Monthly Downloads](https://poser.pugx.org/kartik-v/yii2-icons/d/monthly)](https://packagist.org/packages/kartik-v/yii2-icons) 19 | [![Daily Downloads](https://poser.pugx.org/kartik-v/yii2-icons/d/daily)](https://packagist.org/packages/kartik-v/yii2-icons) 20 | 21 | This extension offers an easy method to setup various icon frameworks to work with Yii Framework 2.0. Most popular and free icon frameworks available are currently supported. This list may be extended in future based on demand and feedback. 22 | 23 | 1. [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons) 24 | 2. [Font Awesome](https://fontawesome.com/icons) 25 | 3. [Unicode Icons](http://demos.krajee.com/uni-icons/): A collection of unicode symbols made available as CSS icons by Krajee 26 | 4. [Elusive Icons](http://elusiveicons.com/icons/) 27 | 5. [Typicons](http://typicons.com/) 28 | 6. [Web Hosting Hub Glyphs](http://www.webhostinghub.com/glyphs/) 29 | 7. [JQuery UI Icons](http://api.jqueryui.com/theming/icons/) 30 | 8. [Socicon Icons](http://www.socicon.com/): Needs you to add attribution to the icon source. 31 | 9. [Octicons](https://octicons.github.com/): The Github icons collection. 32 | 10. [Flag-Icons](https://lipis.github.io/flag-icons/) 33 | 11. [Open Iconic Icons](https://useiconic.com/open#icons) 34 | 12. [IcoFont Icons](http://icofont.com/) 35 | 36 | ### Demo 37 | 38 | You can see a [demonstration here](http://demos.krajee.com/icons) and [API Code Documentation](https://docs.krajee.com/kartik-icons-icon) on usage of this extension with documentation and examples. 39 | 40 | ## Installation 41 | 42 | The preferred way to install this extension is through [composer](http://getcomposer.org/download/). 43 | 44 | > Note: Check the [composer.json](https://github.com/kartik-v/yii2-icons/blob/master/composer.json) for this extension's requirements and dependencies. 45 | Read this [web tip /wiki](http://webtips.krajee.com/setting-composer-minimum-stability-application/) on setting the `minimum-stability` settings for your application's composer.json. 46 | 47 | Either run 48 | 49 | ``` 50 | $ php composer.phar require kartik-v/yii2-icons "@dev" 51 | ``` 52 | 53 | or add 54 | 55 | ``` 56 | "kartik-v/yii2-icons": "@dev" 57 | ``` 58 | 59 | to the `require` section of your `composer.json` file. 60 | 61 | ## Usage 62 | 63 | ### Global Setup 64 | 65 | In case you wish to setup one Icon framework globally, set the parameter `icon-framework` in the `params` array of your Yii Configuration File. 66 | 67 | ```php 68 | 'params' => [ 69 | 'icon-framework' => \kartik\icons\Icon::FAS, // Font Awesome Icon framework 70 | ] 71 | ``` 72 | To initialize the globally setup framework in your view, call this code in your view or view layout file. 73 | 74 | ```php 75 | use kartik\icons\Icon; 76 | Icon::map($this); 77 | ``` 78 | 79 | ### Per View Setup 80 | 81 | You can also call each icon-framework individually in your view or view layout like below. Map any icon framework within each view as in the example below. 82 | 83 | ```php 84 | use kartik\icons\Icon; 85 | Icon::map($this, Icon::EL); // Maps the Elusive icon font framework 86 | ``` 87 | 88 | ### Displaying Icons 89 | 90 | After mapping your icon framework with one of the options above, you can display icons using `Icon::show` method. Icons can be displayed using one of the options below: 91 | 92 | ```php 93 | use kartik\icons\Icon; 94 | 95 | // Option 1: Uses the `icon-framework` setup in Yii config params. 96 | echo Icon::show('user'); 97 | 98 | // Option 2: Specific Icon Call in a view. Additional options can also be passed to style the icon. 99 | echo Icon::show('user', ['class'=>'fa-2x', 'framework' => Icon::FAS]); 100 | ``` 101 | 102 | > NOTE: 103 | > The `kartik\icons\Icon::show` method outputs a HTML formatted text. So in order to display icons in Yii-2 components like Navbar or Nav, you must set `encodeLabels` to false. 104 | 105 | ```php 106 | $items = [ 107 | ['label' => Icon::show('home') . 'Home', 'url' => ['/site/index']], 108 | ]; 109 | 110 | // Your other code 111 | 112 | /* Note you must encodeLabels to false to display icons in labels */ 113 | echo \kartik\nav\NavX::widget([ 114 | 'items' => $items, 115 | 'encodeLabels' => false 116 | ]); 117 | 118 | // Your other code 119 | ``` 120 | 121 | ### Displaying Stacked Icons 122 | 123 | You can also display stacked icons for frameworks like Font Awesome, where this is supported. For example: 124 | 125 | ```php 126 | use kartik\icons\Icon; 127 | // fa-twitter on fa-square 128 | Icon::showStack('twitter', 'square', ['class'=>'fa-lg'], ['framework' => Icon::FAB], ['framework' => Icon::FAR]) 129 | 130 | // fa-flag on fa-circle 131 | Icon::showStack('flag', 'circle', ['class'=>'fa-lg'], ['class'=>'fa-inverse']); 132 | ``` 133 | 134 | ### Add Custom Icons 135 | 136 | You can add custom icon sets to the list of available frameworks. 137 | 138 | ```php 139 | use kartik\icons\Icon; 140 | // add framework 141 | Icon::addFramework('custom', [ 142 | 'class' => '\common\icons\CustomIconAsset', 143 | 'prefix' => 'custom-icon', 144 | ]); 145 | 146 | // map to view file 147 | Icon::map($this, 'custom'); 148 | 149 | // show the icon 150 | echo Icon::show('menu',['framework' => 'custom']); 151 | ``` 152 | 153 | ```php 154 | namespace common\icons; 155 | class CustomIconAsset extends \yii\web\AssetBundle 156 | { 157 | public $sourcePath = '@common/icons/assets/custom'; 158 | public $depends = array( 159 | 'yii\web\YiiAsset', 160 | 'yii\bootstrap4\BootstrapAsset' 161 | ); 162 | public $css=[ 163 | 'css/animation.css', 164 | 'css/custom-codes.css', 165 | 'css/custom-embedded.css', 166 | 'css/custom-ie7.css', 167 | 'css/custom-ie7-codes.css', 168 | 'css/custom.css', 169 | ]; 170 | } 171 | ``` 172 | The above asset bundle uses files genereted by http://fontello.com/. 173 | 174 | ## License 175 | 176 | **yii2-icons** is released under the BSD-3-Clause License. See the bundled `LICENSE.md` for details. 177 | -------------------------------------------------------------------------------- /src/lib/octicons/octicons.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:octicons;src:url(octicons.eot?#iefix) format('embedded-opentype'),url(octicons.woff) format('woff'),url(octicons.ttf) format('truetype'),url(octicons.svg#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'} -------------------------------------------------------------------------------- /src/lib/openiconic/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi{position:relative;top:1px;display:inline-block;speak:none;font-family:Icons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi.oi-align-center:before{text-align:center}.oi.oi-align-left:before{text-align:left}.oi.oi-align-right:before{text-align:right}.oi.oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi.oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi.oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi-account-login:before{content:'\e000'}.oi-account-logout:before{content:'\e001'}.oi-action-redo:before{content:'\e002'}.oi-action-undo:before{content:'\e003'}.oi-align-center:before{content:'\e004'}.oi-align-left:before{content:'\e005'}.oi-align-right:before{content:'\e006'}.oi-aperture:before{content:'\e007'}.oi-arrow-bottom:before{content:'\e008'}.oi-arrow-circle-bottom:before{content:'\e009'}.oi-arrow-circle-left:before{content:'\e00a'}.oi-arrow-circle-right:before{content:'\e00b'}.oi-arrow-circle-top:before{content:'\e00c'}.oi-arrow-left:before{content:'\e00d'}.oi-arrow-right:before{content:'\e00e'}.oi-arrow-thick-bottom:before{content:'\e00f'}.oi-arrow-thick-left:before{content:'\e010'}.oi-arrow-thick-right:before{content:'\e011'}.oi-arrow-thick-top:before{content:'\e012'}.oi-arrow-top:before{content:'\e013'}.oi-audio-spectrum:before{content:'\e014'}.oi-audio:before{content:'\e015'}.oi-badge:before{content:'\e016'}.oi-ban:before{content:'\e017'}.oi-bar-chart:before{content:'\e018'}.oi-basket:before{content:'\e019'}.oi-battery-empty:before{content:'\e01a'}.oi-battery-full:before{content:'\e01b'}.oi-beaker:before{content:'\e01c'}.oi-bell:before{content:'\e01d'}.oi-bluetooth:before{content:'\e01e'}.oi-bold:before{content:'\e01f'}.oi-bolt:before{content:'\e020'}.oi-book:before{content:'\e021'}.oi-bookmark:before{content:'\e022'}.oi-box:before{content:'\e023'}.oi-briefcase:before{content:'\e024'}.oi-british-pound:before{content:'\e025'}.oi-browser:before{content:'\e026'}.oi-brush:before{content:'\e027'}.oi-bug:before{content:'\e028'}.oi-bullhorn:before{content:'\e029'}.oi-calculator:before{content:'\e02a'}.oi-calendar:before{content:'\e02b'}.oi-camera-slr:before{content:'\e02c'}.oi-caret-bottom:before{content:'\e02d'}.oi-caret-left:before{content:'\e02e'}.oi-caret-right:before{content:'\e02f'}.oi-caret-top:before{content:'\e030'}.oi-cart:before{content:'\e031'}.oi-chat:before{content:'\e032'}.oi-check:before{content:'\e033'}.oi-chevron-bottom:before{content:'\e034'}.oi-chevron-left:before{content:'\e035'}.oi-chevron-right:before{content:'\e036'}.oi-chevron-top:before{content:'\e037'}.oi-circle-check:before{content:'\e038'}.oi-circle-x:before{content:'\e039'}.oi-clipboard:before{content:'\e03a'}.oi-clock:before{content:'\e03b'}.oi-cloud-download:before{content:'\e03c'}.oi-cloud-upload:before{content:'\e03d'}.oi-cloud:before{content:'\e03e'}.oi-cloudy:before{content:'\e03f'}.oi-code:before{content:'\e040'}.oi-cog:before{content:'\e041'}.oi-collapse-down:before{content:'\e042'}.oi-collapse-left:before{content:'\e043'}.oi-collapse-right:before{content:'\e044'}.oi-collapse-up:before{content:'\e045'}.oi-command:before{content:'\e046'}.oi-comment-square:before{content:'\e047'}.oi-compass:before{content:'\e048'}.oi-contrast:before{content:'\e049'}.oi-copywriting:before{content:'\e04a'}.oi-credit-card:before{content:'\e04b'}.oi-crop:before{content:'\e04c'}.oi-dashboard:before{content:'\e04d'}.oi-data-transfer-download:before{content:'\e04e'}.oi-data-transfer-upload:before{content:'\e04f'}.oi-delete:before{content:'\e050'}.oi-dial:before{content:'\e051'}.oi-document:before{content:'\e052'}.oi-dollar:before{content:'\e053'}.oi-double-quote-sans-left:before{content:'\e054'}.oi-double-quote-sans-right:before{content:'\e055'}.oi-double-quote-serif-left:before{content:'\e056'}.oi-double-quote-serif-right:before{content:'\e057'}.oi-droplet:before{content:'\e058'}.oi-eject:before{content:'\e059'}.oi-elevator:before{content:'\e05a'}.oi-ellipses:before{content:'\e05b'}.oi-envelope-closed:before{content:'\e05c'}.oi-envelope-open:before{content:'\e05d'}.oi-euro:before{content:'\e05e'}.oi-excerpt:before{content:'\e05f'}.oi-expand-down:before{content:'\e060'}.oi-expand-left:before{content:'\e061'}.oi-expand-right:before{content:'\e062'}.oi-expand-up:before{content:'\e063'}.oi-external-link:before{content:'\e064'}.oi-eye:before{content:'\e065'}.oi-eyedropper:before{content:'\e066'}.oi-file:before{content:'\e067'}.oi-fire:before{content:'\e068'}.oi-flag:before{content:'\e069'}.oi-flash:before{content:'\e06a'}.oi-folder:before{content:'\e06b'}.oi-fork:before{content:'\e06c'}.oi-fullscreen-enter:before{content:'\e06d'}.oi-fullscreen-exit:before{content:'\e06e'}.oi-globe:before{content:'\e06f'}.oi-graph:before{content:'\e070'}.oi-grid-four-up:before{content:'\e071'}.oi-grid-three-up:before{content:'\e072'}.oi-grid-two-up:before{content:'\e073'}.oi-hard-drive:before{content:'\e074'}.oi-header:before{content:'\e075'}.oi-headphones:before{content:'\e076'}.oi-heart:before{content:'\e077'}.oi-home:before{content:'\e078'}.oi-image:before{content:'\e079'}.oi-inbox:before{content:'\e07a'}.oi-infinity:before{content:'\e07b'}.oi-info:before{content:'\e07c'}.oi-italic:before{content:'\e07d'}.oi-justify-center:before{content:'\e07e'}.oi-justify-left:before{content:'\e07f'}.oi-justify-right:before{content:'\e080'}.oi-key:before{content:'\e081'}.oi-laptop:before{content:'\e082'}.oi-layers:before{content:'\e083'}.oi-lightbulb:before{content:'\e084'}.oi-link-broken:before{content:'\e085'}.oi-link-intact:before{content:'\e086'}.oi-list-rich:before{content:'\e087'}.oi-list:before{content:'\e088'}.oi-location:before{content:'\e089'}.oi-lock-locked:before{content:'\e08a'}.oi-lock-unlocked:before{content:'\e08b'}.oi-loop-circular:before{content:'\e08c'}.oi-loop-square:before{content:'\e08d'}.oi-loop:before{content:'\e08e'}.oi-magnifying-glass:before{content:'\e08f'}.oi-map-marker:before{content:'\e090'}.oi-map:before{content:'\e091'}.oi-media-pause:before{content:'\e092'}.oi-media-play:before{content:'\e093'}.oi-media-record:before{content:'\e094'}.oi-media-skip-backward:before{content:'\e095'}.oi-media-skip-forward:before{content:'\e096'}.oi-media-step-backward:before{content:'\e097'}.oi-media-step-forward:before{content:'\e098'}.oi-media-stop:before{content:'\e099'}.oi-medical-cross:before{content:'\e09a'}.oi-menu:before{content:'\e09b'}.oi-microphone:before{content:'\e09c'}.oi-minus:before{content:'\e09d'}.oi-monitor:before{content:'\e09e'}.oi-moon:before{content:'\e09f'}.oi-move:before{content:'\e0a0'}.oi-musical-note:before{content:'\e0a1'}.oi-paperclip:before{content:'\e0a2'}.oi-pencil:before{content:'\e0a3'}.oi-people:before{content:'\e0a4'}.oi-person:before{content:'\e0a5'}.oi-phone:before{content:'\e0a6'}.oi-pie-chart:before{content:'\e0a7'}.oi-pin:before{content:'\e0a8'}.oi-play-circle:before{content:'\e0a9'}.oi-plus:before{content:'\e0aa'}.oi-power-standby:before{content:'\e0ab'}.oi-print:before{content:'\e0ac'}.oi-project:before{content:'\e0ad'}.oi-pulse:before{content:'\e0ae'}.oi-puzzle-piece:before{content:'\e0af'}.oi-question-mark:before{content:'\e0b0'}.oi-rain:before{content:'\e0b1'}.oi-random:before{content:'\e0b2'}.oi-reload:before{content:'\e0b3'}.oi-resize-both:before{content:'\e0b4'}.oi-resize-height:before{content:'\e0b5'}.oi-resize-width:before{content:'\e0b6'}.oi-rss-alt:before{content:'\e0b7'}.oi-rss:before{content:'\e0b8'}.oi-script:before{content:'\e0b9'}.oi-share-boxed:before{content:'\e0ba'}.oi-share:before{content:'\e0bb'}.oi-shield:before{content:'\e0bc'}.oi-signal:before{content:'\e0bd'}.oi-signpost:before{content:'\e0be'}.oi-sort-ascending:before{content:'\e0bf'}.oi-sort-descending:before{content:'\e0c0'}.oi-spreadsheet:before{content:'\e0c1'}.oi-star:before{content:'\e0c2'}.oi-sun:before{content:'\e0c3'}.oi-tablet:before{content:'\e0c4'}.oi-tag:before{content:'\e0c5'}.oi-tags:before{content:'\e0c6'}.oi-target:before{content:'\e0c7'}.oi-task:before{content:'\e0c8'}.oi-terminal:before{content:'\e0c9'}.oi-text:before{content:'\e0ca'}.oi-thumb-down:before{content:'\e0cb'}.oi-thumb-up:before{content:'\e0cc'}.oi-timer:before{content:'\e0cd'}.oi-transfer:before{content:'\e0ce'}.oi-trash:before{content:'\e0cf'}.oi-underline:before{content:'\e0d0'}.oi-vertical-align-bottom:before{content:'\e0d1'}.oi-vertical-align-center:before{content:'\e0d2'}.oi-vertical-align-top:before{content:'\e0d3'}.oi-video:before{content:'\e0d4'}.oi-volume-high:before{content:'\e0d5'}.oi-volume-low:before{content:'\e0d6'}.oi-volume-off:before{content:'\e0d7'}.oi-warning:before{content:'\e0d8'}.oi-wifi:before{content:'\e0d9'}.oi-wrench:before{content:'\e0da'}.oi-x:before{content:'\e0db'}.oi-yen:before{content:'\e0dc'}.oi-zoom-in:before{content:'\e0dd'}.oi-zoom-out:before{content:'\e0de'} -------------------------------------------------------------------------------- /src/lib/octicons/sprockets-octicons.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'octicons'; 3 | src: font-url('octicons.eot?#iefix') format('embedded-opentype'), 4 | font-url('octicons.woff') format('woff'), 5 | font-url('octicons.ttf') format('truetype'), 6 | font-url('octicons.svg#octicons') format('svg'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | // .octicon is optimized for 16px. 12 | // .mega-octicon is optimized for 32px but can be used larger. 13 | .octicon, .mega-octicon { 14 | font: normal normal normal 16px/1 octicons; 15 | display: inline-block; 16 | text-decoration: none; 17 | text-rendering: auto; 18 | -webkit-font-smoothing: antialiased; 19 | -moz-osx-font-smoothing: grayscale; 20 | -webkit-user-select: none; 21 | -moz-user-select: none; 22 | -ms-user-select: none; 23 | user-select: none; 24 | } 25 | .mega-octicon { font-size: 32px; } 26 | 27 | .octicon-alert:before { content: '\f02d'} /*  */ 28 | .octicon-alignment-align:before { content: '\f08a'} /*  */ 29 | .octicon-alignment-aligned-to:before { content: '\f08e'} /*  */ 30 | .octicon-alignment-unalign:before { content: '\f08b'} /*  */ 31 | .octicon-arrow-down:before { content: '\f03f'} /*  */ 32 | .octicon-arrow-left:before { content: '\f040'} /*  */ 33 | .octicon-arrow-right:before { content: '\f03e'} /*  */ 34 | .octicon-arrow-small-down:before { content: '\f0a0'} /*  */ 35 | .octicon-arrow-small-left:before { content: '\f0a1'} /*  */ 36 | .octicon-arrow-small-right:before { content: '\f071'} /*  */ 37 | .octicon-arrow-small-up:before { content: '\f09f'} /*  */ 38 | .octicon-arrow-up:before { content: '\f03d'} /*  */ 39 | .octicon-beer:before { content: '\f069'} /*  */ 40 | .octicon-book:before { content: '\f007'} /*  */ 41 | .octicon-bookmark:before { content: '\f07b'} /*  */ 42 | .octicon-briefcase:before { content: '\f0d3'} /*  */ 43 | .octicon-broadcast:before { content: '\f048'} /*  */ 44 | .octicon-browser:before { content: '\f0c5'} /*  */ 45 | .octicon-bug:before { content: '\f091'} /*  */ 46 | .octicon-calendar:before { content: '\f068'} /*  */ 47 | .octicon-check:before { content: '\f03a'} /*  */ 48 | .octicon-checklist:before { content: '\f076'} /*  */ 49 | .octicon-chevron-down:before { content: '\f0a3'} /*  */ 50 | .octicon-chevron-left:before { content: '\f0a4'} /*  */ 51 | .octicon-chevron-right:before { content: '\f078'} /*  */ 52 | .octicon-chevron-up:before { content: '\f0a2'} /*  */ 53 | .octicon-circle-slash:before { content: '\f084'} /*  */ 54 | .octicon-circuit-board:before { content: '\f0d6'} /*  */ 55 | .octicon-clippy:before { content: '\f035'} /*  */ 56 | .octicon-clock:before { content: '\f046'} /*  */ 57 | .octicon-cloud-download:before { content: '\f00b'} /*  */ 58 | .octicon-cloud-upload:before { content: '\f00c'} /*  */ 59 | .octicon-code:before { content: '\f05f'} /*  */ 60 | .octicon-color-mode:before { content: '\f065'} /*  */ 61 | .octicon-comment-add:before, 62 | .octicon-comment:before { content: '\f02b'} /*  */ 63 | .octicon-comment-discussion:before { content: '\f04f'} /*  */ 64 | .octicon-credit-card:before { content: '\f045'} /*  */ 65 | .octicon-dash:before { content: '\f0ca'} /*  */ 66 | .octicon-dashboard:before { content: '\f07d'} /*  */ 67 | .octicon-database:before { content: '\f096'} /*  */ 68 | .octicon-device-camera:before { content: '\f056'} /*  */ 69 | .octicon-device-camera-video:before { content: '\f057'} /*  */ 70 | .octicon-device-desktop:before { content: '\f27c'} /*  */ 71 | .octicon-device-mobile:before { content: '\f038'} /*  */ 72 | .octicon-diff:before { content: '\f04d'} /*  */ 73 | .octicon-diff-added:before { content: '\f06b'} /*  */ 74 | .octicon-diff-ignored:before { content: '\f099'} /*  */ 75 | .octicon-diff-modified:before { content: '\f06d'} /*  */ 76 | .octicon-diff-removed:before { content: '\f06c'} /*  */ 77 | .octicon-diff-renamed:before { content: '\f06e'} /*  */ 78 | .octicon-ellipsis:before { content: '\f09a'} /*  */ 79 | .octicon-eye-unwatch:before, 80 | .octicon-eye-watch:before, 81 | .octicon-eye:before { content: '\f04e'} /*  */ 82 | .octicon-file-binary:before { content: '\f094'} /*  */ 83 | .octicon-file-code:before { content: '\f010'} /*  */ 84 | .octicon-file-directory:before { content: '\f016'} /*  */ 85 | .octicon-file-media:before { content: '\f012'} /*  */ 86 | .octicon-file-pdf:before { content: '\f014'} /*  */ 87 | .octicon-file-submodule:before { content: '\f017'} /*  */ 88 | .octicon-file-symlink-directory:before { content: '\f0b1'} /*  */ 89 | .octicon-file-symlink-file:before { content: '\f0b0'} /*  */ 90 | .octicon-file-text:before { content: '\f011'} /*  */ 91 | .octicon-file-zip:before { content: '\f013'} /*  */ 92 | .octicon-flame:before { content: '\f0d2'} /*  */ 93 | .octicon-fold:before { content: '\f0cc'} /*  */ 94 | .octicon-gear:before { content: '\f02f'} /*  */ 95 | .octicon-gift:before { content: '\f042'} /*  */ 96 | .octicon-gist:before { content: '\f00e'} /*  */ 97 | .octicon-gist-secret:before { content: '\f08c'} /*  */ 98 | .octicon-git-branch-create:before, 99 | .octicon-git-branch-delete:before, 100 | .octicon-git-branch:before { content: '\f020'} /*  */ 101 | .octicon-git-commit:before { content: '\f01f'} /*  */ 102 | .octicon-git-compare:before { content: '\f0ac'} /*  */ 103 | .octicon-git-merge:before { content: '\f023'} /*  */ 104 | .octicon-git-pull-request-abandoned:before, 105 | .octicon-git-pull-request:before { content: '\f009'} /*  */ 106 | .octicon-globe:before { content: '\f0b6'} /*  */ 107 | .octicon-graph:before { content: '\f043'} /*  */ 108 | .octicon-heart:before { content: '\2665'} /* ♥ */ 109 | .octicon-history:before { content: '\f07e'} /*  */ 110 | .octicon-home:before { content: '\f08d'} /*  */ 111 | .octicon-horizontal-rule:before { content: '\f070'} /*  */ 112 | .octicon-hourglass:before { content: '\f09e'} /*  */ 113 | .octicon-hubot:before { content: '\f09d'} /*  */ 114 | .octicon-inbox:before { content: '\f0cf'} /*  */ 115 | .octicon-info:before { content: '\f059'} /*  */ 116 | .octicon-issue-closed:before { content: '\f028'} /*  */ 117 | .octicon-issue-opened:before { content: '\f026'} /*  */ 118 | .octicon-issue-reopened:before { content: '\f027'} /*  */ 119 | .octicon-jersey:before { content: '\f019'} /*  */ 120 | .octicon-jump-down:before { content: '\f072'} /*  */ 121 | .octicon-jump-left:before { content: '\f0a5'} /*  */ 122 | .octicon-jump-right:before { content: '\f0a6'} /*  */ 123 | .octicon-jump-up:before { content: '\f073'} /*  */ 124 | .octicon-key:before { content: '\f049'} /*  */ 125 | .octicon-keyboard:before { content: '\f00d'} /*  */ 126 | .octicon-law:before { content: '\f0d8'} /* */ 127 | .octicon-light-bulb:before { content: '\f000'} /*  */ 128 | .octicon-link:before { content: '\f05c'} /*  */ 129 | .octicon-link-external:before { content: '\f07f'} /*  */ 130 | .octicon-list-ordered:before { content: '\f062'} /*  */ 131 | .octicon-list-unordered:before { content: '\f061'} /*  */ 132 | .octicon-location:before { content: '\f060'} /*  */ 133 | .octicon-gist-private:before, 134 | .octicon-mirror-private:before, 135 | .octicon-git-fork-private:before, 136 | .octicon-lock:before { content: '\f06a'} /*  */ 137 | .octicon-logo-github:before { content: '\f092'} /*  */ 138 | .octicon-mail:before { content: '\f03b'} /*  */ 139 | .octicon-mail-read:before { content: '\f03c'} /*  */ 140 | .octicon-mail-reply:before { content: '\f051'} /*  */ 141 | .octicon-mark-github:before { content: '\f00a'} /*  */ 142 | .octicon-markdown:before { content: '\f0c9'} /*  */ 143 | .octicon-megaphone:before { content: '\f077'} /*  */ 144 | .octicon-mention:before { content: '\f0be'} /*  */ 145 | .octicon-microscope:before { content: '\f089'} /*  */ 146 | .octicon-milestone:before { content: '\f075'} /*  */ 147 | .octicon-mirror-public:before, 148 | .octicon-mirror:before { content: '\f024'} /*  */ 149 | .octicon-mortar-board:before { content: '\f0d7'} /* */ 150 | .octicon-move-down:before { content: '\f0a8'} /*  */ 151 | .octicon-move-left:before { content: '\f074'} /*  */ 152 | .octicon-move-right:before { content: '\f0a9'} /*  */ 153 | .octicon-move-up:before { content: '\f0a7'} /*  */ 154 | .octicon-mute:before { content: '\f080'} /*  */ 155 | .octicon-no-newline:before { content: '\f09c'} /*  */ 156 | .octicon-octoface:before { content: '\f008'} /*  */ 157 | .octicon-organization:before { content: '\f037'} /*  */ 158 | .octicon-package:before { content: '\f0c4'} /*  */ 159 | .octicon-paintcan:before { content: '\f0d1'} /*  */ 160 | .octicon-pencil:before { content: '\f058'} /*  */ 161 | .octicon-person-add:before, 162 | .octicon-person-follow:before, 163 | .octicon-person:before { content: '\f018'} /*  */ 164 | .octicon-pin:before { content: '\f041'} /*  */ 165 | .octicon-playback-fast-forward:before { content: '\f0bd'} /*  */ 166 | .octicon-playback-pause:before { content: '\f0bb'} /*  */ 167 | .octicon-playback-play:before { content: '\f0bf'} /*  */ 168 | .octicon-playback-rewind:before { content: '\f0bc'} /*  */ 169 | .octicon-plug:before { content: '\f0d4'} /*  */ 170 | .octicon-repo-create:before, 171 | .octicon-gist-new:before, 172 | .octicon-file-directory-create:before, 173 | .octicon-file-add:before, 174 | .octicon-plus:before { content: '\f05d'} /*  */ 175 | .octicon-podium:before { content: '\f0af'} /*  */ 176 | .octicon-primitive-dot:before { content: '\f052'} /*  */ 177 | .octicon-primitive-square:before { content: '\f053'} /*  */ 178 | .octicon-pulse:before { content: '\f085'} /*  */ 179 | .octicon-puzzle:before { content: '\f0c0'} /*  */ 180 | .octicon-question:before { content: '\f02c'} /*  */ 181 | .octicon-quote:before { content: '\f063'} /*  */ 182 | .octicon-radio-tower:before { content: '\f030'} /*  */ 183 | .octicon-repo-delete:before, 184 | .octicon-repo:before { content: '\f001'} /*  */ 185 | .octicon-repo-clone:before { content: '\f04c'} /*  */ 186 | .octicon-repo-force-push:before { content: '\f04a'} /*  */ 187 | .octicon-gist-fork:before, 188 | .octicon-repo-forked:before { content: '\f002'} /*  */ 189 | .octicon-repo-pull:before { content: '\f006'} /*  */ 190 | .octicon-repo-push:before { content: '\f005'} /*  */ 191 | .octicon-rocket:before { content: '\f033'} /*  */ 192 | .octicon-rss:before { content: '\f034'} /*  */ 193 | .octicon-ruby:before { content: '\f047'} /*  */ 194 | .octicon-screen-full:before { content: '\f066'} /*  */ 195 | .octicon-screen-normal:before { content: '\f067'} /*  */ 196 | .octicon-search-save:before, 197 | .octicon-search:before { content: '\f02e'} /*  */ 198 | .octicon-server:before { content: '\f097'} /*  */ 199 | .octicon-settings:before { content: '\f07c'} /*  */ 200 | .octicon-log-in:before, 201 | .octicon-sign-in:before { content: '\f036'} /*  */ 202 | .octicon-log-out:before, 203 | .octicon-sign-out:before { content: '\f032'} /*  */ 204 | .octicon-split:before { content: '\f0c6'} /*  */ 205 | .octicon-squirrel:before { content: '\f0b2'} /*  */ 206 | .octicon-star-add:before, 207 | .octicon-star-delete:before, 208 | .octicon-star:before { content: '\f02a'} /*  */ 209 | .octicon-steps:before { content: '\f0c7'} /*  */ 210 | .octicon-stop:before { content: '\f08f'} /*  */ 211 | .octicon-repo-sync:before, 212 | .octicon-sync:before { content: '\f087'} /*  */ 213 | .octicon-tag-remove:before, 214 | .octicon-tag-add:before, 215 | .octicon-tag:before { content: '\f015'} /*  */ 216 | .octicon-telescope:before { content: '\f088'} /*  */ 217 | .octicon-terminal:before { content: '\f0c8'} /*  */ 218 | .octicon-three-bars:before { content: '\f05e'} /*  */ 219 | .octicon-tools:before { content: '\f031'} /*  */ 220 | .octicon-trashcan:before { content: '\f0d0'} /*  */ 221 | .octicon-triangle-down:before { content: '\f05b'} /*  */ 222 | .octicon-triangle-left:before { content: '\f044'} /*  */ 223 | .octicon-triangle-right:before { content: '\f05a'} /*  */ 224 | .octicon-triangle-up:before { content: '\f0aa'} /*  */ 225 | .octicon-unfold:before { content: '\f039'} /*  */ 226 | .octicon-unmute:before { content: '\f0ba'} /*  */ 227 | .octicon-versions:before { content: '\f064'} /*  */ 228 | .octicon-remove-close:before, 229 | .octicon-x:before { content: '\f081'} /*  */ 230 | .octicon-zap:before { content: '\26A1'} /* ⚡ */ 231 | -------------------------------------------------------------------------------- /src/lib/octicons/octicons.less: -------------------------------------------------------------------------------- 1 | @octicons-font-path: "."; 2 | @octicons-version: "a594b5fd4cae0b2afd156bca8dad8d27ac3d7594"; 3 | 4 | @font-face { 5 | font-family: 'octicons'; 6 | src: ~"url('@{octicons-font-path}/octicons.eot?#iefix&v=@{octicons-version}') format('embedded-opentype')", 7 | ~"url('@{octicons-font-path}/octicons.woff?v=@{octicons-version}') format('woff')", 8 | ~"url('@{octicons-font-path}/octicons.ttf?v=@{octicons-version}') format('truetype')", 9 | ~"url('@{octicons-font-path}/octicons.svg?v=@{octicons-version}#octicons') format('svg')"; 10 | font-weight: normal; 11 | font-style: normal; 12 | } 13 | 14 | // .octicon is optimized for 16px. 15 | // .mega-octicon is optimized for 32px but can be used larger. 16 | .octicon, .mega-octicon { 17 | font: normal normal normal 16px/1 octicons; 18 | display: inline-block; 19 | text-decoration: none; 20 | text-rendering: auto; 21 | -webkit-font-smoothing: antialiased; 22 | -moz-osx-font-smoothing: grayscale; 23 | -webkit-user-select: none; 24 | -moz-user-select: none; 25 | -ms-user-select: none; 26 | user-select: none; 27 | } 28 | .mega-octicon { font-size: 32px; } 29 | 30 | .octicon-alert:before { content: '\f02d'} /*  */ 31 | .octicon-alignment-align:before { content: '\f08a'} /*  */ 32 | .octicon-alignment-aligned-to:before { content: '\f08e'} /*  */ 33 | .octicon-alignment-unalign:before { content: '\f08b'} /*  */ 34 | .octicon-arrow-down:before { content: '\f03f'} /*  */ 35 | .octicon-arrow-left:before { content: '\f040'} /*  */ 36 | .octicon-arrow-right:before { content: '\f03e'} /*  */ 37 | .octicon-arrow-small-down:before { content: '\f0a0'} /*  */ 38 | .octicon-arrow-small-left:before { content: '\f0a1'} /*  */ 39 | .octicon-arrow-small-right:before { content: '\f071'} /*  */ 40 | .octicon-arrow-small-up:before { content: '\f09f'} /*  */ 41 | .octicon-arrow-up:before { content: '\f03d'} /*  */ 42 | .octicon-beer:before { content: '\f069'} /*  */ 43 | .octicon-book:before { content: '\f007'} /*  */ 44 | .octicon-bookmark:before { content: '\f07b'} /*  */ 45 | .octicon-briefcase:before { content: '\f0d3'} /*  */ 46 | .octicon-broadcast:before { content: '\f048'} /*  */ 47 | .octicon-browser:before { content: '\f0c5'} /*  */ 48 | .octicon-bug:before { content: '\f091'} /*  */ 49 | .octicon-calendar:before { content: '\f068'} /*  */ 50 | .octicon-check:before { content: '\f03a'} /*  */ 51 | .octicon-checklist:before { content: '\f076'} /*  */ 52 | .octicon-chevron-down:before { content: '\f0a3'} /*  */ 53 | .octicon-chevron-left:before { content: '\f0a4'} /*  */ 54 | .octicon-chevron-right:before { content: '\f078'} /*  */ 55 | .octicon-chevron-up:before { content: '\f0a2'} /*  */ 56 | .octicon-circle-slash:before { content: '\f084'} /*  */ 57 | .octicon-circuit-board:before { content: '\f0d6'} /*  */ 58 | .octicon-clippy:before { content: '\f035'} /*  */ 59 | .octicon-clock:before { content: '\f046'} /*  */ 60 | .octicon-cloud-download:before { content: '\f00b'} /*  */ 61 | .octicon-cloud-upload:before { content: '\f00c'} /*  */ 62 | .octicon-code:before { content: '\f05f'} /*  */ 63 | .octicon-color-mode:before { content: '\f065'} /*  */ 64 | .octicon-comment-add:before, 65 | .octicon-comment:before { content: '\f02b'} /*  */ 66 | .octicon-comment-discussion:before { content: '\f04f'} /*  */ 67 | .octicon-credit-card:before { content: '\f045'} /*  */ 68 | .octicon-dash:before { content: '\f0ca'} /*  */ 69 | .octicon-dashboard:before { content: '\f07d'} /*  */ 70 | .octicon-database:before { content: '\f096'} /*  */ 71 | .octicon-device-camera:before { content: '\f056'} /*  */ 72 | .octicon-device-camera-video:before { content: '\f057'} /*  */ 73 | .octicon-device-desktop:before { content: '\f27c'} /*  */ 74 | .octicon-device-mobile:before { content: '\f038'} /*  */ 75 | .octicon-diff:before { content: '\f04d'} /*  */ 76 | .octicon-diff-added:before { content: '\f06b'} /*  */ 77 | .octicon-diff-ignored:before { content: '\f099'} /*  */ 78 | .octicon-diff-modified:before { content: '\f06d'} /*  */ 79 | .octicon-diff-removed:before { content: '\f06c'} /*  */ 80 | .octicon-diff-renamed:before { content: '\f06e'} /*  */ 81 | .octicon-ellipsis:before { content: '\f09a'} /*  */ 82 | .octicon-eye-unwatch:before, 83 | .octicon-eye-watch:before, 84 | .octicon-eye:before { content: '\f04e'} /*  */ 85 | .octicon-file-binary:before { content: '\f094'} /*  */ 86 | .octicon-file-code:before { content: '\f010'} /*  */ 87 | .octicon-file-directory:before { content: '\f016'} /*  */ 88 | .octicon-file-media:before { content: '\f012'} /*  */ 89 | .octicon-file-pdf:before { content: '\f014'} /*  */ 90 | .octicon-file-submodule:before { content: '\f017'} /*  */ 91 | .octicon-file-symlink-directory:before { content: '\f0b1'} /*  */ 92 | .octicon-file-symlink-file:before { content: '\f0b0'} /*  */ 93 | .octicon-file-text:before { content: '\f011'} /*  */ 94 | .octicon-file-zip:before { content: '\f013'} /*  */ 95 | .octicon-flame:before { content: '\f0d2'} /*  */ 96 | .octicon-fold:before { content: '\f0cc'} /*  */ 97 | .octicon-gear:before { content: '\f02f'} /*  */ 98 | .octicon-gift:before { content: '\f042'} /*  */ 99 | .octicon-gist:before { content: '\f00e'} /*  */ 100 | .octicon-gist-secret:before { content: '\f08c'} /*  */ 101 | .octicon-git-branch-create:before, 102 | .octicon-git-branch-delete:before, 103 | .octicon-git-branch:before { content: '\f020'} /*  */ 104 | .octicon-git-commit:before { content: '\f01f'} /*  */ 105 | .octicon-git-compare:before { content: '\f0ac'} /*  */ 106 | .octicon-git-merge:before { content: '\f023'} /*  */ 107 | .octicon-git-pull-request-abandoned:before, 108 | .octicon-git-pull-request:before { content: '\f009'} /*  */ 109 | .octicon-globe:before { content: '\f0b6'} /*  */ 110 | .octicon-graph:before { content: '\f043'} /*  */ 111 | .octicon-heart:before { content: '\2665'} /* ♥ */ 112 | .octicon-history:before { content: '\f07e'} /*  */ 113 | .octicon-home:before { content: '\f08d'} /*  */ 114 | .octicon-horizontal-rule:before { content: '\f070'} /*  */ 115 | .octicon-hourglass:before { content: '\f09e'} /*  */ 116 | .octicon-hubot:before { content: '\f09d'} /*  */ 117 | .octicon-inbox:before { content: '\f0cf'} /*  */ 118 | .octicon-info:before { content: '\f059'} /*  */ 119 | .octicon-issue-closed:before { content: '\f028'} /*  */ 120 | .octicon-issue-opened:before { content: '\f026'} /*  */ 121 | .octicon-issue-reopened:before { content: '\f027'} /*  */ 122 | .octicon-jersey:before { content: '\f019'} /*  */ 123 | .octicon-jump-down:before { content: '\f072'} /*  */ 124 | .octicon-jump-left:before { content: '\f0a5'} /*  */ 125 | .octicon-jump-right:before { content: '\f0a6'} /*  */ 126 | .octicon-jump-up:before { content: '\f073'} /*  */ 127 | .octicon-key:before { content: '\f049'} /*  */ 128 | .octicon-keyboard:before { content: '\f00d'} /*  */ 129 | .octicon-law:before { content: '\f0d8'} /* */ 130 | .octicon-light-bulb:before { content: '\f000'} /*  */ 131 | .octicon-link:before { content: '\f05c'} /*  */ 132 | .octicon-link-external:before { content: '\f07f'} /*  */ 133 | .octicon-list-ordered:before { content: '\f062'} /*  */ 134 | .octicon-list-unordered:before { content: '\f061'} /*  */ 135 | .octicon-location:before { content: '\f060'} /*  */ 136 | .octicon-gist-private:before, 137 | .octicon-mirror-private:before, 138 | .octicon-git-fork-private:before, 139 | .octicon-lock:before { content: '\f06a'} /*  */ 140 | .octicon-logo-github:before { content: '\f092'} /*  */ 141 | .octicon-mail:before { content: '\f03b'} /*  */ 142 | .octicon-mail-read:before { content: '\f03c'} /*  */ 143 | .octicon-mail-reply:before { content: '\f051'} /*  */ 144 | .octicon-mark-github:before { content: '\f00a'} /*  */ 145 | .octicon-markdown:before { content: '\f0c9'} /*  */ 146 | .octicon-megaphone:before { content: '\f077'} /*  */ 147 | .octicon-mention:before { content: '\f0be'} /*  */ 148 | .octicon-microscope:before { content: '\f089'} /*  */ 149 | .octicon-milestone:before { content: '\f075'} /*  */ 150 | .octicon-mirror-public:before, 151 | .octicon-mirror:before { content: '\f024'} /*  */ 152 | .octicon-mortar-board:before { content: '\f0d7'} /* */ 153 | .octicon-move-down:before { content: '\f0a8'} /*  */ 154 | .octicon-move-left:before { content: '\f074'} /*  */ 155 | .octicon-move-right:before { content: '\f0a9'} /*  */ 156 | .octicon-move-up:before { content: '\f0a7'} /*  */ 157 | .octicon-mute:before { content: '\f080'} /*  */ 158 | .octicon-no-newline:before { content: '\f09c'} /*  */ 159 | .octicon-octoface:before { content: '\f008'} /*  */ 160 | .octicon-organization:before { content: '\f037'} /*  */ 161 | .octicon-package:before { content: '\f0c4'} /*  */ 162 | .octicon-paintcan:before { content: '\f0d1'} /*  */ 163 | .octicon-pencil:before { content: '\f058'} /*  */ 164 | .octicon-person-add:before, 165 | .octicon-person-follow:before, 166 | .octicon-person:before { content: '\f018'} /*  */ 167 | .octicon-pin:before { content: '\f041'} /*  */ 168 | .octicon-playback-fast-forward:before { content: '\f0bd'} /*  */ 169 | .octicon-playback-pause:before { content: '\f0bb'} /*  */ 170 | .octicon-playback-play:before { content: '\f0bf'} /*  */ 171 | .octicon-playback-rewind:before { content: '\f0bc'} /*  */ 172 | .octicon-plug:before { content: '\f0d4'} /*  */ 173 | .octicon-repo-create:before, 174 | .octicon-gist-new:before, 175 | .octicon-file-directory-create:before, 176 | .octicon-file-add:before, 177 | .octicon-plus:before { content: '\f05d'} /*  */ 178 | .octicon-podium:before { content: '\f0af'} /*  */ 179 | .octicon-primitive-dot:before { content: '\f052'} /*  */ 180 | .octicon-primitive-square:before { content: '\f053'} /*  */ 181 | .octicon-pulse:before { content: '\f085'} /*  */ 182 | .octicon-puzzle:before { content: '\f0c0'} /*  */ 183 | .octicon-question:before { content: '\f02c'} /*  */ 184 | .octicon-quote:before { content: '\f063'} /*  */ 185 | .octicon-radio-tower:before { content: '\f030'} /*  */ 186 | .octicon-repo-delete:before, 187 | .octicon-repo:before { content: '\f001'} /*  */ 188 | .octicon-repo-clone:before { content: '\f04c'} /*  */ 189 | .octicon-repo-force-push:before { content: '\f04a'} /*  */ 190 | .octicon-gist-fork:before, 191 | .octicon-repo-forked:before { content: '\f002'} /*  */ 192 | .octicon-repo-pull:before { content: '\f006'} /*  */ 193 | .octicon-repo-push:before { content: '\f005'} /*  */ 194 | .octicon-rocket:before { content: '\f033'} /*  */ 195 | .octicon-rss:before { content: '\f034'} /*  */ 196 | .octicon-ruby:before { content: '\f047'} /*  */ 197 | .octicon-screen-full:before { content: '\f066'} /*  */ 198 | .octicon-screen-normal:before { content: '\f067'} /*  */ 199 | .octicon-search-save:before, 200 | .octicon-search:before { content: '\f02e'} /*  */ 201 | .octicon-server:before { content: '\f097'} /*  */ 202 | .octicon-settings:before { content: '\f07c'} /*  */ 203 | .octicon-log-in:before, 204 | .octicon-sign-in:before { content: '\f036'} /*  */ 205 | .octicon-log-out:before, 206 | .octicon-sign-out:before { content: '\f032'} /*  */ 207 | .octicon-split:before { content: '\f0c6'} /*  */ 208 | .octicon-squirrel:before { content: '\f0b2'} /*  */ 209 | .octicon-star-add:before, 210 | .octicon-star-delete:before, 211 | .octicon-star:before { content: '\f02a'} /*  */ 212 | .octicon-steps:before { content: '\f0c7'} /*  */ 213 | .octicon-stop:before { content: '\f08f'} /*  */ 214 | .octicon-repo-sync:before, 215 | .octicon-sync:before { content: '\f087'} /*  */ 216 | .octicon-tag-remove:before, 217 | .octicon-tag-add:before, 218 | .octicon-tag:before { content: '\f015'} /*  */ 219 | .octicon-telescope:before { content: '\f088'} /*  */ 220 | .octicon-terminal:before { content: '\f0c8'} /*  */ 221 | .octicon-three-bars:before { content: '\f05e'} /*  */ 222 | .octicon-tools:before { content: '\f031'} /*  */ 223 | .octicon-trashcan:before { content: '\f0d0'} /*  */ 224 | .octicon-triangle-down:before { content: '\f05b'} /*  */ 225 | .octicon-triangle-left:before { content: '\f044'} /*  */ 226 | .octicon-triangle-right:before { content: '\f05a'} /*  */ 227 | .octicon-triangle-up:before { content: '\f0aa'} /*  */ 228 | .octicon-unfold:before { content: '\f039'} /*  */ 229 | .octicon-unmute:before { content: '\f0ba'} /*  */ 230 | .octicon-versions:before { content: '\f064'} /*  */ 231 | .octicon-remove-close:before, 232 | .octicon-x:before { content: '\f081'} /*  */ 233 | .octicon-zap:before { content: '\26A1'} /* ⚡ */ 234 | -------------------------------------------------------------------------------- /src/lib/elusive/css/elusive-icons.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Elusive Icons 2.0.0 by @ReduxFramework - http://elusiveicons.com - @reduxframework 3 | * License - http://elusiveicons.com/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'Elusive-Icons';src:url('../fonts/elusiveicons-webfont.eot?v=2.0.0');src:url('../fonts/elusiveicons-webfont.eot?#iefix&v=2.0.0') format('embedded-opentype'),url('../fonts/elusiveicons-webfont.woff?v=2.0.0') format('woff'),url('../fonts/elusiveicons-webfont.ttf?v=2.0.0') format('truetype'),url('../fonts/elusiveicons-webfont.svg?v=2.0.0#elusiveiconsregular') format('svg');font-weight:normal;font-style:normal}.el{display:inline-block;font:normal normal normal 14px/1 'Elusive-Icons';font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.el-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.el-2x{font-size:2em}.el-3x{font-size:3em}.el-4x{font-size:4em}.el-5x{font-size:5em}.el-fw{width:1.28571429em;text-align:center}.el-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.el-ul>li{position:relative}.el-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.el-li.el-lg{left:-1.85714286em}.el-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.el.pull-left{margin-right:.3em}.el.pull-right{margin-left:.3em}.el-spin{-webkit-animation:el-spin 2s infinite linear;animation:el-spin 2s infinite linear}.el-pulse{-webkit-animation:el-spin 1s infinite steps(8);animation:el-spin 1s infinite steps(8)}@-webkit-keyframes el-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes el-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.el-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.el-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.el-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.el-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.el-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .el-rotate-90,:root .el-rotate-180,:root .el-rotate-270,:root .el-flip-horizontal,:root .el-flip-vertical{filter:none}.el-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.el-stack-1x,.el-stack-2x{position:absolute;left:0;width:100%;text-align:center}.el-stack-1x{line-height:inherit}.el-stack-2x{font-size:2em}.el-inverse{color:#fff}.el-address-book-alt:before{content:"\f101"}.el-address-book:before{content:"\f102"}.el-adjust-alt:before{content:"\f103"}.el-adjust:before{content:"\f104"}.el-adult:before{content:"\f105"}.el-align-center:before{content:"\f106"}.el-align-justify:before{content:"\f107"}.el-align-left:before{content:"\f108"}.el-align-right:before{content:"\f109"}.el-arrow-down:before{content:"\f10a"}.el-arrow-left:before{content:"\f10b"}.el-arrow-right:before{content:"\f10c"}.el-arrow-up:before{content:"\f10d"}.el-asl:before{content:"\f10e"}.el-asterisk:before{content:"\f10f"}.el-backward:before{content:"\f110"}.el-ban-circle:before{content:"\f111"}.el-barcode:before{content:"\f112"}.el-behance:before{content:"\f113"}.el-bell:before{content:"\f114"}.el-blind:before{content:"\f115"}.el-blogger:before{content:"\f116"}.el-bold:before{content:"\f117"}.el-book:before{content:"\f118"}.el-bookmark-empty:before{content:"\f119"}.el-bookmark:before{content:"\f11a"}.el-braille:before{content:"\f11b"}.el-briefcase:before{content:"\f11c"}.el-broom:before{content:"\f11d"}.el-brush:before{content:"\f11e"}.el-bulb:before{content:"\f11f"}.el-bullhorn:before{content:"\f120"}.el-calendar-sign:before{content:"\f121"}.el-calendar:before{content:"\f122"}.el-camera:before{content:"\f123"}.el-car:before{content:"\f124"}.el-caret-down:before{content:"\f125"}.el-caret-left:before{content:"\f126"}.el-caret-right:before{content:"\f127"}.el-caret-up:before{content:"\f128"}.el-cc:before{content:"\f129"}.el-certificate:before{content:"\f12a"}.el-check-empty:before{content:"\f12b"}.el-check:before{content:"\f12c"}.el-chevron-down:before{content:"\f12d"}.el-chevron-left:before{content:"\f12e"}.el-chevron-right:before{content:"\f12f"}.el-chevron-up:before{content:"\f130"}.el-child:before{content:"\f131"}.el-circle-arrow-down:before{content:"\f132"}.el-circle-arrow-left:before{content:"\f133"}.el-circle-arrow-right:before{content:"\f134"}.el-circle-arrow-up:before{content:"\f135"}.el-cloud-alt:before{content:"\f136"}.el-cloud:before{content:"\f137"}.el-cog-alt:before{content:"\f138"}.el-cog:before{content:"\f139"}.el-cogs:before{content:"\f13a"}.el-comment-alt:before{content:"\f13b"}.el-comment:before{content:"\f13c"}.el-compass-alt:before{content:"\f13d"}.el-compass:before{content:"\f13e"}.el-credit-card:before{content:"\f13f"}.el-css:before{content:"\f140"}.el-dashboard:before{content:"\f141"}.el-delicious:before{content:"\f142"}.el-deviantart:before{content:"\f143"}.el-digg:before{content:"\f144"}.el-download-alt:before{content:"\f145"}.el-download:before{content:"\f146"}.el-dribbble:before{content:"\f147"}.el-edit:before{content:"\f148"}.el-eject:before{content:"\f149"}.el-envelope-alt:before{content:"\f14a"}.el-envelope:before{content:"\f14b"}.el-error-alt:before{content:"\f14c"}.el-error:before{content:"\f14d"}.el-eur:before{content:"\f14e"}.el-exclamation-sign:before{content:"\f14f"}.el-eye-close:before{content:"\f150"}.el-eye-open:before{content:"\f151"}.el-facebook:before{content:"\f152"}.el-facetime-video:before{content:"\f153"}.el-fast-backward:before{content:"\f154"}.el-fast-forward:before{content:"\f155"}.el-female:before{content:"\f156"}.el-file-alt:before{content:"\f157"}.el-file-edit-alt:before{content:"\f158"}.el-file-edit:before{content:"\f159"}.el-file-new-alt:before{content:"\f15a"}.el-file-new:before{content:"\f15b"}.el-file:before{content:"\f15c"}.el-film:before{content:"\f15d"}.el-filter:before{content:"\f15e"}.el-fire:before{content:"\f15f"}.el-flag-alt:before{content:"\f160"}.el-flag:before{content:"\f161"}.el-flickr:before{content:"\f162"}.el-folder-close:before{content:"\f163"}.el-folder-open:before{content:"\f164"}.el-folder-sign:before{content:"\f165"}.el-folder:before{content:"\f166"}.el-font:before{content:"\f167"}.el-fontsize:before{content:"\f168"}.el-fork:before{content:"\f169"}.el-forward-alt:before{content:"\f16a"}.el-forward:before{content:"\f16b"}.el-foursquare:before{content:"\f16c"}.el-friendfeed-rect:before{content:"\f16d"}.el-friendfeed:before{content:"\f16e"}.el-fullscreen:before{content:"\f16f"}.el-gbp:before{content:"\f170"}.el-gift:before{content:"\f171"}.el-github-text:before{content:"\f172"}.el-github:before{content:"\f173"}.el-glass:before{content:"\f174"}.el-glasses:before{content:"\f175"}.el-globe-alt:before{content:"\f176"}.el-globe:before{content:"\f177"}.el-googleplus:before{content:"\f178"}.el-graph-alt:before{content:"\f179"}.el-graph:before{content:"\f17a"}.el-group-alt:before{content:"\f17b"}.el-group:before{content:"\f17c"}.el-guidedog:before{content:"\f17d"}.el-hand-down:before{content:"\f17e"}.el-hand-left:before{content:"\f17f"}.el-hand-right:before{content:"\f180"}.el-hand-up:before{content:"\f181"}.el-hdd:before{content:"\f182"}.el-headphones:before{content:"\f183"}.el-hearing-impaired:before{content:"\f184"}.el-heart-alt:before{content:"\f185"}.el-heart-empty:before{content:"\f186"}.el-heart:before{content:"\f187"}.el-home-alt:before{content:"\f188"}.el-home:before{content:"\f189"}.el-hourglass:before{content:"\f18a"}.el-idea-alt:before{content:"\f18b"}.el-idea:before{content:"\f18c"}.el-inbox-alt:before{content:"\f18d"}.el-inbox-box:before{content:"\f18e"}.el-inbox:before{content:"\f18f"}.el-indent-left:before{content:"\f190"}.el-indent-right:before{content:"\f191"}.el-info-circle:before{content:"\f192"}.el-instagram:before{content:"\f193"}.el-iphone-home:before{content:"\f194"}.el-italic:before{content:"\f195"}.el-key:before{content:"\f196"}.el-laptop-alt:before{content:"\f197"}.el-laptop:before{content:"\f198"}.el-lastfm:before{content:"\f199"}.el-leaf:before{content:"\f19a"}.el-lines:before{content:"\f19b"}.el-link:before{content:"\f19c"}.el-linkedin:before{content:"\f19d"}.el-list-alt:before{content:"\f19e"}.el-list:before{content:"\f19f"}.el-livejournal:before{content:"\f1a0"}.el-lock-alt:before{content:"\f1a1"}.el-lock:before{content:"\f1a2"}.el-magic:before{content:"\f1a3"}.el-magnet:before{content:"\f1a4"}.el-male:before{content:"\f1a5"}.el-map-marker-alt:before{content:"\f1a6"}.el-map-marker:before{content:"\f1a7"}.el-mic-alt:before{content:"\f1a8"}.el-mic:before{content:"\f1a9"}.el-minus-sign:before{content:"\f1aa"}.el-minus:before{content:"\f1ab"}.el-move:before{content:"\f1ac"}.el-music:before{content:"\f1ad"}.el-myspace:before{content:"\f1ae"}.el-network:before{content:"\f1af"}.el-off:before{content:"\f1b0"}.el-ok-circle:before{content:"\f1b1"}.el-ok-sign:before{content:"\f1b2"}.el-ok:before{content:"\f1b3"}.el-opensource:before{content:"\f1b4"}.el-paper-clip-alt:before{content:"\f1b5"}.el-paper-clip:before{content:"\f1b6"}.el-path:before{content:"\f1b7"}.el-pause-alt:before{content:"\f1b8"}.el-pause:before{content:"\f1b9"}.el-pencil-alt:before{content:"\f1ba"}.el-pencil:before{content:"\f1bb"}.el-person:before{content:"\f1bc"}.el-phone-alt:before{content:"\f1bd"}.el-phone:before{content:"\f1be"}.el-photo-alt:before{content:"\f1bf"}.el-photo:before{content:"\f1c0"}.el-picasa:before{content:"\f1c1"}.el-picture:before{content:"\f1c2"}.el-pinterest:before{content:"\f1c3"}.el-plane:before{content:"\f1c4"}.el-play-alt:before{content:"\f1c5"}.el-play-circle:before{content:"\f1c6"}.el-play:before{content:"\f1c7"}.el-plurk-alt:before{content:"\f1c8"}.el-plurk:before{content:"\f1c9"}.el-plus-sign:before{content:"\f1ca"}.el-plus:before{content:"\f1cb"}.el-podcast:before{content:"\f1cc"}.el-print:before{content:"\f1cd"}.el-puzzle:before{content:"\f1ce"}.el-qrcode:before{content:"\f1cf"}.el-question-sign:before{content:"\f1d0"}.el-question:before{content:"\f1d1"}.el-quote-alt:before{content:"\f1d2"}.el-quote-right-alt:before{content:"\f1d3"}.el-quote-right:before{content:"\f1d4"}.el-quotes:before{content:"\f1d5"}.el-random:before{content:"\f1d6"}.el-record:before{content:"\f1d7"}.el-reddit:before{content:"\f1d8"}.el-redux:before{content:"\f1d9"}.el-refresh:before{content:"\f1da"}.el-remove-circle:before{content:"\f1db"}.el-remove-sign:before{content:"\f1dc"}.el-remove:before{content:"\f1dd"}.el-repeat-alt:before{content:"\f1de"}.el-repeat:before{content:"\f1df"}.el-resize-full:before{content:"\f1e0"}.el-resize-horizontal:before{content:"\f1e1"}.el-resize-small:before{content:"\f1e2"}.el-resize-vertical:before{content:"\f1e3"}.el-return-key:before{content:"\f1e4"}.el-retweet:before{content:"\f1e5"}.el-reverse-alt:before{content:"\f1e6"}.el-road:before{content:"\f1e7"}.el-rss:before{content:"\f1e8"}.el-scissors:before{content:"\f1e9"}.el-screen-alt:before{content:"\f1ea"}.el-screen:before{content:"\f1eb"}.el-screenshot:before{content:"\f1ec"}.el-search-alt:before{content:"\f1ed"}.el-search:before{content:"\f1ee"}.el-share-alt:before{content:"\f1ef"}.el-share:before{content:"\f1f0"}.el-shopping-cart-sign:before{content:"\f1f1"}.el-shopping-cart:before{content:"\f1f2"}.el-signal:before{content:"\f1f3"}.el-skype:before{content:"\f1f4"}.el-slideshare:before{content:"\f1f5"}.el-smiley-alt:before{content:"\f1f6"}.el-smiley:before{content:"\f1f7"}.el-soundcloud:before{content:"\f1f8"}.el-speaker:before{content:"\f1f9"}.el-spotify:before{content:"\f1fa"}.el-stackoverflow:before{content:"\f1fb"}.el-star-alt:before{content:"\f1fc"}.el-star-empty:before{content:"\f1fd"}.el-star:before{content:"\f1fe"}.el-step-backward:before{content:"\f1ff"}.el-step-forward:before{content:"\f200"}.el-stop-alt:before{content:"\f201"}.el-stop:before{content:"\f202"}.el-stumbleupon:before{content:"\f203"}.el-tag:before{content:"\f204"}.el-tags:before{content:"\f205"}.el-tasks:before{content:"\f206"}.el-text-height:before{content:"\f207"}.el-text-width:before{content:"\f208"}.el-th-large:before{content:"\f209"}.el-th-list:before{content:"\f20a"}.el-th:before{content:"\f20b"}.el-thumbs-down:before{content:"\f20c"}.el-thumbs-up:before{content:"\f20d"}.el-time-alt:before{content:"\f20e"}.el-time:before{content:"\f20f"}.el-tint:before{content:"\f210"}.el-torso:before{content:"\f211"}.el-trash-alt:before{content:"\f212"}.el-trash:before{content:"\f213"}.el-tumblr:before{content:"\f214"}.el-twitter:before{content:"\f215"}.el-universal-access:before{content:"\f216"}.el-unlock-alt:before{content:"\f217"}.el-unlock:before{content:"\f218"}.el-upload:before{content:"\f219"}.el-usd:before{content:"\f21a"}.el-user:before{content:"\f21b"}.el-viadeo:before{content:"\f21c"}.el-video-alt:before{content:"\f21d"}.el-video-chat:before{content:"\f21e"}.el-video:before{content:"\f21f"}.el-view-mode:before{content:"\f220"}.el-vimeo:before{content:"\f221"}.el-vkontakte:before{content:"\f222"}.el-volume-down:before{content:"\f223"}.el-volume-off:before{content:"\f224"}.el-volume-up:before{content:"\f225"}.el-w3c:before{content:"\f226"}.el-warning-sign:before{content:"\f227"}.el-website-alt:before{content:"\f228"}.el-website:before{content:"\f229"}.el-wheelchair:before{content:"\f22a"}.el-wordpress:before{content:"\f22b"}.el-wrench-alt:before{content:"\f22c"}.el-wrench:before{content:"\f22d"}.el-youtube:before{content:"\f22e"}.el-zoom-in:before{content:"\f22f"}.el-zoom-out:before{content:"\f230"} 5 | -------------------------------------------------------------------------------- /src/lib/typicons/css/typicons.min.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8';@font-face{font-family:typicons;font-weight:400;font-style:normal;src:url(../font/typicons.eot);src:url(../font/typicons.eot?#iefix) format('embedded-opentype'),url(../font/typicons.woff) format('woff'),url(../font/typicons.ttf) format('truetype'),url(../font/typicons.svg#typicons) format('svg')}.typcn:before{font-family:typicons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;height:1em;font-size:1em;text-align:center;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}.typcn-adjust-brightness:before{content:'\e000'}.typcn-adjust-contrast:before{content:'\e001'}.typcn-anchor-outline:before{content:'\e002'}.typcn-anchor:before{content:'\e003'}.typcn-archive:before{content:'\e004'}.typcn-arrow-back-outline:before{content:'\e005'}.typcn-arrow-back:before{content:'\e006'}.typcn-arrow-down-outline:before{content:'\e007'}.typcn-arrow-down-thick:before{content:'\e008'}.typcn-arrow-down:before{content:'\e009'}.typcn-arrow-forward-outline:before{content:'\e00a'}.typcn-arrow-forward:before{content:'\e00b'}.typcn-arrow-left-outline:before{content:'\e00c'}.typcn-arrow-left-thick:before{content:'\e00d'}.typcn-arrow-left:before{content:'\e00e'}.typcn-arrow-loop-outline:before{content:'\e00f'}.typcn-arrow-loop:before{content:'\e010'}.typcn-arrow-maximise-outline:before{content:'\e011'}.typcn-arrow-maximise:before{content:'\e012'}.typcn-arrow-minimise-outline:before{content:'\e013'}.typcn-arrow-minimise:before{content:'\e014'}.typcn-arrow-move-outline:before{content:'\e015'}.typcn-arrow-move:before{content:'\e016'}.typcn-arrow-repeat-outline:before{content:'\e017'}.typcn-arrow-repeat:before{content:'\e018'}.typcn-arrow-right-outline:before{content:'\e019'}.typcn-arrow-right-thick:before{content:'\e01a'}.typcn-arrow-right:before{content:'\e01b'}.typcn-arrow-shuffle:before{content:'\e01c'}.typcn-arrow-sorted-down:before{content:'\e01d'}.typcn-arrow-sorted-up:before{content:'\e01e'}.typcn-arrow-sync-outline:before{content:'\e01f'}.typcn-arrow-sync:before{content:'\e020'}.typcn-arrow-unsorted:before{content:'\e021'}.typcn-arrow-up-outline:before{content:'\e022'}.typcn-arrow-up-thick:before{content:'\e023'}.typcn-arrow-up:before{content:'\e024'}.typcn-at:before{content:'\e025'}.typcn-attachment-outline:before{content:'\e026'}.typcn-attachment:before{content:'\e027'}.typcn-backspace-outline:before{content:'\e028'}.typcn-backspace:before{content:'\e029'}.typcn-battery-charge:before{content:'\e02a'}.typcn-battery-full:before{content:'\e02b'}.typcn-battery-high:before{content:'\e02c'}.typcn-battery-low:before{content:'\e02d'}.typcn-battery-mid:before{content:'\e02e'}.typcn-beaker:before{content:'\e02f'}.typcn-beer:before{content:'\e030'}.typcn-bell:before{content:'\e031'}.typcn-book:before{content:'\e032'}.typcn-bookmark:before{content:'\e033'}.typcn-briefcase:before{content:'\e034'}.typcn-brush:before{content:'\e035'}.typcn-business-card:before{content:'\e036'}.typcn-calculator:before{content:'\e037'}.typcn-calendar-outline:before{content:'\e038'}.typcn-calendar:before{content:'\e039'}.typcn-camera-outline:before{content:'\e03a'}.typcn-camera:before{content:'\e03b'}.typcn-cancel-outline:before{content:'\e03c'}.typcn-cancel:before{content:'\e03d'}.typcn-chart-area-outline:before{content:'\e03e'}.typcn-chart-area:before{content:'\e03f'}.typcn-chart-bar-outline:before{content:'\e040'}.typcn-chart-bar:before{content:'\e041'}.typcn-chart-line-outline:before{content:'\e042'}.typcn-chart-line:before{content:'\e043'}.typcn-chart-pie-outline:before{content:'\e044'}.typcn-chart-pie:before{content:'\e045'}.typcn-chevron-left-outline:before{content:'\e046'}.typcn-chevron-left:before{content:'\e047'}.typcn-chevron-right-outline:before{content:'\e048'}.typcn-chevron-right:before{content:'\e049'}.typcn-clipboard:before{content:'\e04a'}.typcn-cloud-storage:before{content:'\e04b'}.typcn-cloud-storage-outline:before{content:'\e054'}.typcn-code-outline:before{content:'\e04c'}.typcn-code:before{content:'\e04d'}.typcn-coffee:before{content:'\e04e'}.typcn-cog-outline:before{content:'\e04f'}.typcn-cog:before{content:'\e050'}.typcn-compass:before{content:'\e051'}.typcn-contacts:before{content:'\e052'}.typcn-credit-card:before{content:'\e053'}.typcn-css3:before{content:'\e055'}.typcn-database:before{content:'\e056'}.typcn-delete-outline:before{content:'\e057'}.typcn-delete:before{content:'\e058'}.typcn-device-desktop:before{content:'\e059'}.typcn-device-laptop:before{content:'\e05a'}.typcn-device-phone:before{content:'\e05b'}.typcn-device-tablet:before{content:'\e05c'}.typcn-directions:before{content:'\e05d'}.typcn-divide-outline:before{content:'\e05e'}.typcn-divide:before{content:'\e05f'}.typcn-document-add:before{content:'\e060'}.typcn-document-delete:before{content:'\e061'}.typcn-document-text:before{content:'\e062'}.typcn-document:before{content:'\e063'}.typcn-download-outline:before{content:'\e064'}.typcn-download:before{content:'\e065'}.typcn-dropbox:before{content:'\e066'}.typcn-edit:before{content:'\e067'}.typcn-eject-outline:before{content:'\e068'}.typcn-eject:before{content:'\e069'}.typcn-equals-outline:before{content:'\e06a'}.typcn-equals:before{content:'\e06b'}.typcn-export-outline:before{content:'\e06c'}.typcn-export:before{content:'\e06d'}.typcn-eye-outline:before{content:'\e06e'}.typcn-eye:before{content:'\e06f'}.typcn-feather:before{content:'\e070'}.typcn-film:before{content:'\e071'}.typcn-filter:before{content:'\e072'}.typcn-flag-outline:before{content:'\e073'}.typcn-flag:before{content:'\e074'}.typcn-flash-outline:before{content:'\e075'}.typcn-flash:before{content:'\e076'}.typcn-flow-children:before{content:'\e077'}.typcn-flow-merge:before{content:'\e078'}.typcn-flow-parallel:before{content:'\e079'}.typcn-flow-switch:before{content:'\e07a'}.typcn-folder-add:before{content:'\e07b'}.typcn-folder-delete:before{content:'\e07c'}.typcn-folder-open:before{content:'\e07d'}.typcn-folder:before{content:'\e07e'}.typcn-gift:before{content:'\e07f'}.typcn-globe-outline:before{content:'\e080'}.typcn-globe:before{content:'\e081'}.typcn-group-outline:before{content:'\e082'}.typcn-group:before{content:'\e083'}.typcn-headphones:before{content:'\e084'}.typcn-heart-full-outline:before{content:'\e085'}.typcn-heart-half-outline:before{content:'\e086'}.typcn-heart-outline:before{content:'\e087'}.typcn-heart:before{content:'\e088'}.typcn-home-outline:before{content:'\e089'}.typcn-home:before{content:'\e08a'}.typcn-html5:before{content:'\e08b'}.typcn-image-outline:before{content:'\e08c'}.typcn-image:before{content:'\e08d'}.typcn-infinity-outline:before{content:'\e08e'}.typcn-infinity:before{content:'\e08f'}.typcn-info-large-outline:before{content:'\e090'}.typcn-info-large:before{content:'\e091'}.typcn-info-outline:before{content:'\e092'}.typcn-info:before{content:'\e093'}.typcn-input-checked-outline:before{content:'\e094'}.typcn-input-checked:before{content:'\e095'}.typcn-key-outline:before{content:'\e096'}.typcn-key:before{content:'\e097'}.typcn-keyboard:before{content:'\e098'}.typcn-leaf:before{content:'\e099'}.typcn-lightbulb:before{content:'\e09a'}.typcn-link-outline:before{content:'\e09b'}.typcn-link:before{content:'\e09c'}.typcn-location-arrow-outline:before{content:'\e09d'}.typcn-location-arrow:before{content:'\e09e'}.typcn-location-outline:before{content:'\e09f'}.typcn-location:before{content:'\e0a0'}.typcn-lock-closed-outline:before{content:'\e0a1'}.typcn-lock-closed:before{content:'\e0a2'}.typcn-lock-open-outline:before{content:'\e0a3'}.typcn-lock-open:before{content:'\e0a4'}.typcn-mail:before{content:'\e0a5'}.typcn-map:before{content:'\e0a6'}.typcn-media-eject-outline:before{content:'\e0a7'}.typcn-media-eject:before{content:'\e0a8'}.typcn-media-fast-forward-outline:before{content:'\e0a9'}.typcn-media-fast-forward:before{content:'\e0aa'}.typcn-media-pause-outline:before{content:'\e0ab'}.typcn-media-pause:before{content:'\e0ac'}.typcn-media-play-outline:before{content:'\e0ad'}.typcn-media-play-reverse-outline:before{content:'\e0ae'}.typcn-media-play-reverse:before{content:'\e0af'}.typcn-media-play:before{content:'\e0b0'}.typcn-media-record-outline:before{content:'\e0b1'}.typcn-media-record:before{content:'\e0b2'}.typcn-media-rewind-outline:before{content:'\e0b3'}.typcn-media-rewind:before{content:'\e0b4'}.typcn-media-stop-outline:before{content:'\e0b5'}.typcn-media-stop:before{content:'\e0b6'}.typcn-message-typing:before{content:'\e0b7'}.typcn-message:before{content:'\e0b8'}.typcn-messages:before{content:'\e0b9'}.typcn-microphone-outline:before{content:'\e0ba'}.typcn-microphone:before{content:'\e0bb'}.typcn-minus-outline:before{content:'\e0bc'}.typcn-minus:before{content:'\e0bd'}.typcn-mortar-board:before{content:'\e0be'}.typcn-news:before{content:'\e0bf'}.typcn-notes-outline:before{content:'\e0c0'}.typcn-notes:before{content:'\e0c1'}.typcn-pen:before{content:'\e0c2'}.typcn-pencil:before{content:'\e0c3'}.typcn-phone-outline:before{content:'\e0c4'}.typcn-phone:before{content:'\e0c5'}.typcn-pi-outline:before{content:'\e0c6'}.typcn-pi:before{content:'\e0c7'}.typcn-pin-outline:before{content:'\e0c8'}.typcn-pin:before{content:'\e0c9'}.typcn-pipette:before{content:'\e0ca'}.typcn-plane-outline:before{content:'\e0cb'}.typcn-plane:before{content:'\e0cc'}.typcn-plug:before{content:'\e0cd'}.typcn-plus-outline:before{content:'\e0ce'}.typcn-plus:before{content:'\e0cf'}.typcn-point-of-interest-outline:before{content:'\e0d0'}.typcn-point-of-interest:before{content:'\e0d1'}.typcn-power-outline:before{content:'\e0d2'}.typcn-power:before{content:'\e0d3'}.typcn-printer:before{content:'\e0d4'}.typcn-puzzle-outline:before{content:'\e0d5'}.typcn-puzzle:before{content:'\e0d6'}.typcn-radar-outline:before{content:'\e0d7'}.typcn-radar:before{content:'\e0d8'}.typcn-refresh-outline:before{content:'\e0d9'}.typcn-refresh:before{content:'\e0da'}.typcn-rss-outline:before{content:'\e0db'}.typcn-rss:before{content:'\e0dc'}.typcn-scissors-outline:before{content:'\e0dd'}.typcn-scissors:before{content:'\e0de'}.typcn-shopping-bag:before{content:'\e0df'}.typcn-shopping-cart:before{content:'\e0e0'}.typcn-social-at-circular:before{content:'\e0e1'}.typcn-social-dribbble-circular:before{content:'\e0e2'}.typcn-social-dribbble:before{content:'\e0e3'}.typcn-social-facebook-circular:before{content:'\e0e4'}.typcn-social-facebook:before{content:'\e0e5'}.typcn-social-flickr-circular:before{content:'\e0e6'}.typcn-social-flickr:before{content:'\e0e7'}.typcn-social-github-circular:before{content:'\e0e8'}.typcn-social-github:before{content:'\e0e9'}.typcn-social-google-plus-circular:before{content:'\e0ea'}.typcn-social-google-plus:before{content:'\e0eb'}.typcn-social-instagram-circular:before{content:'\e0ec'}.typcn-social-instagram:before{content:'\e0ed'}.typcn-social-last-fm-circular:before{content:'\e0ee'}.typcn-social-last-fm:before{content:'\e0ef'}.typcn-social-linkedin-circular:before{content:'\e0f0'}.typcn-social-linkedin:before{content:'\e0f1'}.typcn-social-pinterest-circular:before{content:'\e0f2'}.typcn-social-pinterest:before{content:'\e0f3'}.typcn-social-skype-outline:before{content:'\e0f4'}.typcn-social-skype:before{content:'\e0f5'}.typcn-social-tumbler-circular:before{content:'\e0f6'}.typcn-social-tumbler:before{content:'\e0f7'}.typcn-social-twitter-circular:before{content:'\e0f8'}.typcn-social-twitter:before{content:'\e0f9'}.typcn-social-vimeo-circular:before{content:'\e0fa'}.typcn-social-vimeo:before{content:'\e0fb'}.typcn-social-youtube-circular:before{content:'\e0fc'}.typcn-social-youtube:before{content:'\e0fd'}.typcn-sort-alphabetically-outline:before{content:'\e0fe'}.typcn-sort-alphabetically:before{content:'\e0ff'}.typcn-sort-numerically-outline:before{content:'\e100'}.typcn-sort-numerically:before{content:'\e101'}.typcn-spanner-outline:before{content:'\e102'}.typcn-spanner:before{content:'\e103'}.typcn-spiral:before{content:'\e104'}.typcn-star-full-outline:before{content:'\e105'}.typcn-star-half-outline:before{content:'\e106'}.typcn-star-half:before{content:'\e107'}.typcn-star-outline:before{content:'\e108'}.typcn-star:before{content:'\e109'}.typcn-starburst-outline:before{content:'\e10a'}.typcn-starburst:before{content:'\e10b'}.typcn-stopwatch:before{content:'\e10c'}.typcn-support:before{content:'\e10d'}.typcn-tabs-outline:before{content:'\e10e'}.typcn-tag:before{content:'\e10f'}.typcn-tags:before{content:'\e110'}.typcn-th-large-outline:before{content:'\e111'}.typcn-th-large:before{content:'\e112'}.typcn-th-list-outline:before{content:'\e113'}.typcn-th-list:before{content:'\e114'}.typcn-th-menu-outline:before{content:'\e115'}.typcn-th-menu:before{content:'\e116'}.typcn-th-small-outline:before{content:'\e117'}.typcn-th-small:before{content:'\e118'}.typcn-thermometer:before{content:'\e119'}.typcn-thumbs-down:before{content:'\e11a'}.typcn-thumbs-ok:before{content:'\e11b'}.typcn-thumbs-up:before{content:'\e11c'}.typcn-tick-outline:before{content:'\e11d'}.typcn-tick:before{content:'\e11e'}.typcn-ticket:before{content:'\e11f'}.typcn-time:before{content:'\e120'}.typcn-times-outline:before{content:'\e121'}.typcn-times:before{content:'\e122'}.typcn-trash:before{content:'\e123'}.typcn-tree:before{content:'\e124'}.typcn-upload-outline:before{content:'\e125'}.typcn-upload:before{content:'\e126'}.typcn-user-add-outline:before{content:'\e127'}.typcn-user-add:before{content:'\e128'}.typcn-user-delete-outline:before{content:'\e129'}.typcn-user-delete:before{content:'\e12a'}.typcn-user-outline:before{content:'\e12b'}.typcn-user:before{content:'\e12c'}.typcn-vendor-android:before{content:'\e12d'}.typcn-vendor-apple:before{content:'\e12e'}.typcn-vendor-microsoft:before{content:'\e12f'}.typcn-video-outline:before{content:'\e130'}.typcn-video:before{content:'\e131'}.typcn-volume-down:before{content:'\e132'}.typcn-volume-mute:before{content:'\e133'}.typcn-volume-up:before{content:'\e134'}.typcn-volume:before{content:'\e135'}.typcn-warning-outline:before{content:'\e136'}.typcn-warning:before{content:'\e137'}.typcn-watch:before{content:'\e138'}.typcn-waves-outline:before{content:'\e139'}.typcn-waves:before{content:'\e13a'}.typcn-weather-cloudy:before{content:'\e13b'}.typcn-weather-downpour:before{content:'\e13c'}.typcn-weather-night:before{content:'\e13d'}.typcn-weather-partly-sunny:before{content:'\e13e'}.typcn-weather-shower:before{content:'\e13f'}.typcn-weather-snow:before{content:'\e140'}.typcn-weather-stormy:before{content:'\e141'}.typcn-weather-sunny:before{content:'\e142'}.typcn-weather-windy-cloudy:before{content:'\e143'}.typcn-weather-windy:before{content:'\e144'}.typcn-wi-fi-outline:before{content:'\e145'}.typcn-wi-fi:before{content:'\e146'}.typcn-wine:before{content:'\e147'}.typcn-world-outline:before{content:'\e148'}.typcn-world:before{content:'\e149'}.typcn-zoom-in-outline:before{content:'\e14a'}.typcn-zoom-in:before{content:'\e14b'}.typcn-zoom-out-outline:before{content:'\e14c'}.typcn-zoom-out:before{content:'\e14d'}.typcn-zoom-outline:before{content:'\e14e'}.typcn-zoom:before{content:'\e14f'} -------------------------------------------------------------------------------- /src/lib/uni/css/kv-unicode-icons.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Unicode symbols made available as CSS 3 | * @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2022 4 | * @package yii2-icons 5 | * @version 1.4.8 6 | */[class^="uni-"],[class*=" uni-"]{background:0;width:auto;height:auto;font-style:normal}.uni{font-size:1.4em;margin-right:.5em}.uni-rtl{margin-left:.5em}.uni-chess-king-white:before{content:'\2654'}.uni-chess-queen-white:before{content:'\2655'}.uni-chess-rook-white:before{content:'\2656'}.uni-chess-bishop-white:before{content:'\2657'}.uni-chess-knight-white:before{content:'\2658'}.uni-chess-pawn-white:before{content:'\2659'}.uni-chess-king:before{content:'\265A'}.uni-chess-queen:before{content:'\265B'}.uni-chess-rook:before{content:'\265C'}.uni-chess-bishop:before{content:'\265D'}.uni-chess-knight:before{content:'\265E'}.uni-chess-pawn:before{content:'\265F'}.uni-shogi-white:before{content:'\2616'}.uni-shogi:before{content:'\2617'}.uni-spades-white:before{content:'\2664'}.uni-clubs-white:before{content:'\2667'}.uni-hearts-white:before{content:'\2661'}.uni-diamonds-white:before{content:'\2662'}.uni-spades:before{content:'\2660'}.uni-clubs:before{content:'\2663'}.uni-hearts:before{content:'\2665'}.uni-diamonds:before{content:'\2666'}.uni-dollar:before{content:'\0024'}.uni-cent:before{content:'\00A2'}.uni-pound:before{content:'\00A3'}.uni-currency:before{content:'\00A4'}.uni-yen:before{content:'\00A5'}.uni-baht:before{content:'\0E3F'}.uni-euro-unit:before{content:'\20A0'}.uni-colon:before{content:'\20A1'}.uni-naira:before{content:'\20A6'}.uni-won:before{content:'\20A9'}.uni-euro:before{content:'\20AC'}.uni-peso:before{content:'\20B1'}.uni-guarani:before{content:'\20B2'}.uni-austral:before{content:'\20B3'}.uni-hryvnia:before{content:'\20B4'}.uni-cedi:before{content:'\20B5'}.uni-tenge:before{content:'\20B8'}.uni-indian-rupee:before{content:'\20B9'}.uni-rial:before{content:'\FDFC'}.uni-dollar-small:before{content:'\FE69'}.uni-dollar-full:before{content:'\FF04'}.uni-cent-full:before{content:'\FFE0'}.uni-pound-full:before{content:'\FFE1'}.uni-yen-full:before{content:'\FFE5'}.uni-won-full:before{content:'\FFE6'}.uni-arrow-l:before{content:'\2190'}.uni-arrow-u:before{content:'\2191'}.uni-arrow-r:before{content:'\2192'}.uni-arrow-d:before{content:'\2193'}.uni-arrow-lr:before{content:'\2194'}.uni-arrow-ud:before{content:'\2195'}.uni-arrow-nw:before{content:'\2196'}.uni-arrow-ne:before{content:'\2197'}.uni-arrow-se:before{content:'\2198'}.uni-arrow-sw:before{content:'\2199'}.uni-arrow-stroke-l:before{content:'\219A'}.uni-arrow-stroke-r:before{content:'\219B'}.uni-arrow-stroke-lr:before{content:'\21AE'}.uni-arrow-wave-l:before{content:'\219C'}.uni-arrow-wave-r:before{content:'\219D'}.uni-arrow-wave-lr:before{content:'\21AD'}.uni-arrow-2head-l:before{content:'\219E'}.uni-arrow-2head-u:before{content:'\219F'}.uni-arrow-2head-r:before{content:'\21A0'}.uni-arrow-2head-d:before{content:'\21A1'}.uni-arrow-tail-l:before{content:'\21A2'}.uni-arrow-tail-r:before{content:'\21A3'}.uni-arrow-bar-l:before{content:'\21A4'}.uni-arrow-bar-u:before{content:'\21A5'}.uni-arrow-bar-r:before{content:'\21A6'}.uni-arrow-bar-d:before{content:'\21A7'}.uni-arrow-hook-l:before{content:'\21A9'}.uni-arrow-hook-r:before{content:'\21AA'}.uni-arrow-loop-l:before{content:'\21AB'}.uni-arrow-loop-r:before{content:'\21AC'}.uni-arrow-zigzag-d:before{content:'\21AF'}.uni-arrow-ul:before{content:'\21B0'}.uni-arrow-ur:before{content:'\21B1'}.uni-arrow-dl:before{content:'\21B2'}.uni-arrow-dr:before{content:'\21B3'}.uni-arrow-rd:before{content:'\21B4'}.uni-arrow-ld:before{content:'\21B5'}.uni-arrow-double-u:before{content:'\21D1'}.uni-arrow-double-r:before{content:'\21D2'}.uni-arrow-double-d:before{content:'\21D3'}.uni-arrow-double-lr:before{content:'\21D4'}.uni-arrow-double-ud:before{content:'\21D5'}.uni-arrow-double-nw:before{content:'\21D6'}.uni-arrow-double-ne:before{content:'\21D7'}.uni-arrow-double-se:before{content:'\21D8'}.uni-arrow-double-sw:before{content:'\21D9'}.uni-arrow-triple-l:before{content:'\21DA'}.uni-arrow-triple-r:before{content:'\21DB'}.uni-arrow-squiggle-l:before{content:'\21DC'}.uni-arrow-squiggle-r:before{content:'\21DD'}.uni-arrow-double-stroke-u:before{content:'\21DE'}.uni-arrow-double-stroke-d:before{content:'\21DF'}.uni-arrow-dashed-l:before{content:'\21E0'}.uni-arrow-dashed-u:before{content:'\21E1'}.uni-arrow-dashed-r:before{content:'\21E2'}.uni-arrow-dashed-d:before{content:'\21E3'}.uni-arrow-tobar-l:before{content:'\21E4'}.uni-arrow-tobar-r:before{content:'\21E5'}.uni-arrow-l-white:before{content:'\21E6'}.uni-arrow-u-white:before{content:'\21E7'}.uni-arrow-r-white:before{content:'\21E8'}.uni-arrow-d-white:before{content:'\21E9'}.uni-arrow-curved-dr:before{content:'\27A5'}.uni-arrow-curved-ur:before{content:'\27A6'}.uni-arrow-notched-r:before{content:'\27B1'}.uni-arrow-circle-r:before{content:'\27B2'}.uni-arrow-feather-r-alt:before{content:'\27B3'}.uni-arrow-feather-r:before{content:'\27B5'}.uni-arrow-feather-se:before{content:'\27B4'}.uni-arrow-feather-ne:before{content:'\27B6'}.uni-triangle-u:before{content:'\25B2'}.uni-triangle-r:before{content:'\25B6'}.uni-triangle-l:before{content:'\25C0'}.uni-triangle-d:before{content:'\25BC'}.uni-triangle-u-alt:before{content:'\25B3'}.uni-triangle-d-alt:before{content:'\25BD'}.uni-triangle-90:before{content:'\22BF'}.uni-rhombus:before{content:'\2662'}.uni-angle:before{content:'\2220'}.uni-angle-msd:before{content:'\2221'}.uni-angle-sph:before{content:'\2222'}.uni-square:before{content:'\25A0'}.uni-square-alt:before{content:'\25A1'}.uni-square-round:before{content:'\25A2'}.uni-square-bullet:before{content:'\25A3'}.uni-square-hfill:before{content:'\25A4'}.uni-square-vfill:before{content:'\25A5'}.uni-square-xfill:before{content:'\25A6'}.uni-square-diagfill:before{content:'\25A7'}.uni-square-diagfill-alt:before{content:'\25A8'}.uni-square-xdiagfill:before{content:'\25A9'}.uni-square-small-alt:before{content:'\25AA'}.uni-square-small:before{content:'\25AB'}.uni-rectangle-alt:before{content:'\25AC'}.uni-rectangle:before{content:'\25AD'}.uni-rectangle-v-alt:before{content:'\25AE'}.uni-rectangle-v:before{content:'\25AF'}.uni-parallelogram:before{content:'\25B0'}.uni-parallelogram-alt:before{content:'\25B1'}.uni-circle:before{content:'\25CB'}.uni-circle-dotted:before{content:'\25CC'}.uni-circle-vfill:before{content:'\25CD'}.uni-circle-bulleye:before{content:'\25CE'}.uni-circle-alt:before{content:'\25CF'}.uni-circle-lfill:before{content:'\25D0'}.uni-circle-rfill:before{content:'\25D1'}.uni-circle-bfill:before{content:'\25D2'}.uni-circle-ufill:before{content:'\25D3'}.uni-quadrant:before{content:'\25D4'}.uni-quadrant-alt:before{content:'\25D5'}.uni-semi-circle-left:before{content:'\25D6'}.uni-semi-circle-right:before{content:'\25D7'}.uni-circle-large:before{content:'\25EF'}.uni-undo:before{content:'\21B6'}.uni-redo:before{content:'\21B7'}.uni-arrow-anti-cw:before{content:'\21BA'}.uni-arrow-cw:before{content:'\21BB'}.uni-undo-alt:before{content:'\27F2'}.uni-redo-alt:before{content:'\27F3'}.uni-arrow-harpoon-lu:before{content:'\21BC'}.uni-arrow-harpoon-ld:before{content:'\21BD'}.uni-arrow-harpoon-ur:before{content:'\21BE'}.uni-arrow-harpoon-ul:before{content:'\21BF'}.uni-arrow-harpoon-ru:before{content:'\21C0'}.uni-arrow-harpoon-rd:before{content:'\21C1'}.uni-arrow-harpoon-dr:before{content:'\21C2'}.uni-arrow-harpoon-dl:before{content:'\21C3'}.uni-arrow-pair-rl:before{content:'\21C4'}.uni-arrow-pair-ud:before{content:'\21C5'}.uni-arrow-pair-lr:before{content:'\21C6'}.uni-arrow-pair-ll:before{content:'\21C7'}.uni-arrow-pair-uu:before{content:'\21C8'}.uni-arrow-pair-rr:before{content:'\21C9'}.uni-arrow-pair-dd:before{content:'\21CA'}.uni-arrow-harpoon-pair-lr:before{content:'\21CB'}.uni-arrow-harpoon-pair-rl:before{content:'\21CC'}.uni-hand-left-alt:before{content:'\261A'}.uni-hand-right-alt:before{content:'\261B'}.uni-hand-left:before{content:'\261C'}.uni-hand-up:before{content:'\261D'}.uni-hand-right:before{content:'\261E'}.uni-hand-down:before{content:'\261F'}.uni-poison:before{content:'\2620'}.uni-caution:before{content:'\2621'}.uni-radioactive:before{content:'\2622'}.uni-biohazard:before{content:'\2623'}.uni-caduceus:before{content:'\2624'}.uni-ankh:before{content:'\2625'}.uni-note-quarter:before{content:'\2669'}.uni-note-8:before{content:'\266A'}.uni-note-beamed-8:before{content:'\266B'}.uni-note-beamed-16:before{content:'\266C'}.uni-music-flat:before{content:'\266D'}.uni-music-natural:before{content:'\266E'}.uni-music-sharp:before{content:'\266F'}.uni-sun:before{content:'\2600'}.uni-cloud:before{content:'\2601'}.uni-umbrella:before{content:'\2602'}.uni-umbrella-alt:before{content:'\2614'}.uni-snowman:before{content:'\2603'}.uni-comet:before{content:'\2604'}.uni-star:before{content:'\2605'}.uni-star-white:before{content:'\2606'}.uni-quote-single-alt:before{content:'\275B'}.uni-quote-single:before{content:'\275C'}.uni-quote-double-alt:before{content:'\275D'}.uni-quote-double:before{content:'\275E'}.uni-watch:before{content:'\231A'}.uni-hourglass:before{content:'\231B'}.uni-hourglass-alt:before{content:'\23F3'}.uni-alarm-clock:before{content:'\23F0'}.uni-phone:before{content:'\260F'}.uni-phone-alt:before{content:'\260E'}.uni-keyboard:before{content:'\2328'}.uni-return:before{content:'\23CE'}.uni-eject:before{content:'\23CF'}.uni-ballot:before{content:'\2610'}.uni-ballot-v:before{content:'\2611'}.uni-ballot-x:before{content:'\2612'}.uni-beverage:before{content:'\2615'}.uni-frown:before{content:'\2639'}.uni-smile:before{content:'\263A'}.uni-smile-alt:before{content:'\263B'}.uni-sun-white:before{content:'\263C'}.uni-moon-right:before{content:'\263D'}.uni-moon-left:before{content:'\263E'}.uni-hot-springs:before{content:'\2668'}.uni-scissor-u:before{content:'\2701'}.uni-scissor:before{content:'\2702'}.uni-scissor-l:before{content:'\2703'}.uni-scissor-white:before{content:'\2704'}.uni-phone-sign:before{content:'\2706'}.uni-tape-drive:before{content:'\2707'}.uni-airplane:before{content:'\2708'}.uni-envelope:before{content:'\2709'}.uni-fist-raised:before{content:'\270A'}.uni-hand-raised:before{content:'\270B'}.uni-hand-victory:before{content:'\270C'}.uni-hand-writing:before{content:'\270D'}.uni-pencil-down:before{content:'\270E'}.uni-pencil:before{content:'\270F'}.uni-pencil-up:before{content:'\2710'}.uni-nib-white:before{content:'\2711'}.uni-nib:before{content:'\2712'}.uni-checkmark:before{content:'\2713'}.uni-checkmark-heavy:before{content:'\2714'}.uni-x:before{content:'\2715'}.uni-x-heavy:before{content:'\2716'}.uni-x-ballot:before{content:'\2717'}.uni-x-ballot-heavy:before{content:'\2718'}.uni-wheel:before{content:'\2638'}.uni-cross-greek:before{content:'\2719'}.uni-cross-greek-alt:before{content:'\271A'}.uni-cross-open-center:before{content:'\271B'}.uni-cross-open-center-alt:before{content:'\271C'}.uni-cross-latin:before{content:'\271F'}.uni-cross-latin-white:before{content:'\271F'}.uni-cross-latin-alt:before{content:'\271D'}.uni-cross-maltese:before{content:'\2720'}.uni-cross-o:before{content:'\2626'}.uni-cross-c:before{content:'\2627'}.uni-cross-l:before{content:'\2628'}.uni-cross-j:before{content:'\2629'}.uni-star-crescent:before{content:'\262A'}.uni-farsi:before{content:'\262B'}.uni-adi-shakti:before{content:'\262C'}.uni-hammer-sickle:before{content:'\262D'}.uni-peace:before{content:'\262E'}.uni-yin-yang:before{content:'\262F'}.uni-star-david:before{content:'\2721'}.uni-teardrop-4:before{content:'\2722'}.uni-balloon-4:before{content:'\2723'}.uni-balloon-4-alt:before{content:'\2724'}.uni-club-4:before{content:'\2725'}.uni-star-4-alt:before{content:'\2726'}.uni-star-4:before{content:'\2727'}.uni-sparkles:before{content:'\2728'}.uni-star-outline-stress:before{content:'\2729'}.uni-star-circled:before{content:'\272A'}.uni-star-white-center:before{content:'\272B'}.uni-star-black-center:before{content:'\272C'}.uni-star-outline:before{content:'\272D'}.uni-star-outline-alt:before{content:'\272E'}.uni-star-pinwheel:before{content:'\272F'}.uni-star-shadow:before{content:'\2730'}.uni-asterisk-alt:before{content:'\2731'}.uni-asterisk-oc:before{content:'\2732'}.uni-asterisk-spoke:before{content:'\2733'}.uni-star-8:before{content:'\2734'}.uni-star-8-pinwheel:before{content:'\2735'}.uni-star-6:before{content:'\2736'}.uni-star-8-rect:before{content:'\2737'}.uni-star-8-rect-alt:before{content:'\2738'}.uni-star-12:before{content:'\2739'}.uni-asterisk-16:before{content:'\273A'}.uni-asterisk-t:before{content:'\273B'}.uni-asterisk-ts:before{content:'\273C'}.uni-asterisk-t-alt:before{content:'\273D'}.uni-flower-6:before{content:'\273E'}.uni-flower-alt:before{content:'\273F'}.uni-flower:before{content:'\2740'}.uni-flower-8:before{content:'\2741'}.uni-star-8-circle:before{content:'\2742'}.uni-asterisk-6-pinwheel:before{content:'\2743'}.uni-snowflake:before{content:'\2744'}.uni-snowflake-t:before{content:'\2745'}.uni-snowflake-alt:before{content:'\2746'}.uni-sparkle:before{content:'\2747'}.uni-sparkle-alt:before{content:'\2748'}.uni-asterisk-bs:before{content:'\2749'}.uni-asterisk-ts:before{content:'\274A'}.uni-asterisk-ts-alt:before{content:'\274B'}.uni-mercury:before{content:'\263F'}.uni-venus:before,.uni-female:before{content:'\2640'}.uni-earth:before{content:'\2641'}.uni-mars:before,.uni-male:before{content:'\2642'}.uni-jupiter:before{content:'\2643'}.uni-saturn:before{content:'\2644'}.uni-uranus:before{content:'\2645'}.uni-neptune:before{content:'\2646'}.uni-pluto:before{content:'\2647'}.uni-aries:before{content:'\2648'}.uni-taurus:before{content:'\2649'}.uni-gemini:before{content:'\264A'}.uni-cancer:before{content:'\264B'}.uni-leo:before{content:'\264C'}.uni-virgo:before{content:'\264D'}.uni-libra:before{content:'\264E'}.uni-scorpio:before{content:'\264F'}.uni-saggitarius:before{content:'\2650'}.uni-capricorn:before{content:'\2651'}.uni-aquarius:before{content:'\2652'}.uni-pisces:before{content:'\2653'}.uni-roman-1:before{content:'\2160'}.uni-roman-2:before{content:'\2161'}.uni-roman-3:before{content:'\2162'}.uni-roman-4:before{content:'\2163'}.uni-roman-5:before{content:'\2164'}.uni-roman-6:before{content:'\2165'}.uni-roman-7:before{content:'\2166'}.uni-roman-8:before{content:'\2167'}.uni-roman-9:before{content:'\2168'}.uni-roman-10:before{content:'\2169'}.uni-roman-11:before{content:'\216A'}.uni-roman-12:before{content:'\216B'}.uni-roman-50:before{content:'\216C'}.uni-roman-100:before{content:'\216D'}.uni-roman-500:before{content:'\216E'}.uni-roman-1000:before{content:'\216F'}.uni-roman-1-sm:before{content:'\2170'}.uni-roman-2-sm:before{content:'\2171'}.uni-roman-3-sm:before{content:'\2172'}.uni-roman-4-sm:before{content:'\2173'}.uni-roman-5-sm:before{content:'\2174'}.uni-roman-6-sm:before{content:'\2175'}.uni-roman-7-sm:before{content:'\2176'}.uni-roman-8-sm:before{content:'\2177'}.uni-roman-9-sm:before{content:'\2178'}.uni-roman-10-sm:before{content:'\2179'}.uni-roman-11-sm:before{content:'\217A'}.uni-roman-12-sm:before{content:'\217B'}.uni-roman-50-sm:before{content:'\217C'}.uni-roman-100-sm:before{content:'\217D'}.uni-roman-500-sm:before{content:'\217E'}.uni-roman-1000-sm:before{content:'\217F'} -------------------------------------------------------------------------------- /src/Icon.php: -------------------------------------------------------------------------------- 1 | 38 | */ 39 | class Icon 40 | { 41 | /** 42 | * @var string Icons Namespace 43 | */ 44 | const NS = '\\kartik\\icons\\'; 45 | /** 46 | * @var string Exception message displayed when `icon-framework` has not been setup in Yii2 Params Configuration file. 47 | */ 48 | const PARAM_NOT_SET = "The 'icon-framework' option has not been setup in Yii params. Check your configuration file."; 49 | /** 50 | * @var string Exception message displayed when `icon-framework` has an invalid configuration in Yii2 Params Configuration file. 51 | */ 52 | const PARAM_INVALID = "Invalid or non-recognized 'icon-framework' has been setup in Yii params. Check your configuration file."; 53 | /** 54 | * @var string Exception message displayed when an invalid icon framework has been detected by the [[getFramework]] method. 55 | */ 56 | const FRAMEWORK_INVALID = "Invalid or non-existing framework '{framework}' called in your {method}() method."; 57 | /** 58 | * @var string Bootstrap Glyphicons 59 | */ 60 | const BSG = 'bsg'; 61 | /** 62 | * @var string Font Awesome Icons Solid 63 | */ 64 | const FA = 'fa'; 65 | /** 66 | * @var string Font Awesome Icons Solid 67 | */ 68 | const FAS = 'fas'; 69 | /** 70 | * @var string Font Awesome Icons Regular 71 | */ 72 | const FAR = 'far'; 73 | /** 74 | * @var string Font Awesome Icons Brand 75 | */ 76 | const FAB = 'fab'; 77 | /** 78 | * @var string Font Awesome Icons Duotone 79 | */ 80 | const FAD = 'faD'; 81 | /** 82 | * @var string Font Awesome Icons Light 83 | */ 84 | const FAL = 'fal'; 85 | /** 86 | * @var string Elusive Icons 87 | */ 88 | const EL = 'el'; 89 | /** 90 | * @var string TypIcon Icons 91 | */ 92 | const TYP = 'typ'; 93 | /** 94 | * @var string Web Hosting Hub Glyphs 95 | */ 96 | const WHHG = 'whhg'; 97 | /** 98 | * @var string JQuery UI Icons 99 | */ 100 | const JUI = 'jui'; 101 | /** 102 | * @var string Krajee Unicode Icons 103 | */ 104 | const UNI = 'uni'; 105 | /** 106 | * @var string SocIcon Icons 107 | */ 108 | const SI = 'si'; 109 | /** 110 | * @var string Github Octicons 111 | */ 112 | const OCT = 'oct'; 113 | /** 114 | * @var string FlagIcon Icons 115 | */ 116 | const FI = 'fi'; 117 | /** 118 | * @var string OpenIconic Icons 119 | */ 120 | const OI = 'oi'; 121 | /** 122 | * @var string IcoFont Icons 123 | */ 124 | const ICF = 'icf'; 125 | /** 126 | * @var string Icon framework configurations 127 | */ 128 | private static $_frameworks = [ 129 | self::BSG => ['prefix' => 'glyphicon glyphicon-', 'class' => '\\yii\\bootstrap\\BootstrapAsset'], 130 | self::FA => ['prefix' => 'fa fa-', 'class' => 'FontAwesomeAsset'], 131 | self::FAS => ['prefix' => 'fas fa-', 'class' => 'FontAwesomeAsset'], 132 | self::FAR => ['prefix' => 'far fa-', 'class' => 'FontAwesomeAsset'], 133 | self::FAB => ['prefix' => 'fab fa-', 'class' => 'FontAwesomeAsset'], 134 | self::FAD => ['prefix' => 'fad fa-', 'class' => 'FontAwesomeAsset'], 135 | self::FAL => ['prefix' => 'fal fa-', 'class' => 'FontAwesomeAsset'], 136 | self::EL => ['prefix' => 'el el-', 'class' => 'ElusiveAsset'], 137 | self::TYP => ['prefix' => 'typcn typcn-', 'class' => 'TypiconsAsset'], 138 | self::WHHG => ['prefix' => 'icon-', 'class' => 'WhhgAsset'], 139 | self::JUI => ['prefix' => 'ui-icon ui-icon-', 'class' => 'JuiAsset'], 140 | self::UNI => ['prefix' => 'uni uni-', 'class' => 'UniAsset'], 141 | self::SI => ['prefix' => 'socicon socicon-', 'class' => 'SociconAsset'], 142 | self::OCT => ['prefix' => 'octicon octicon-', 'class' => 'OcticonsAsset'], 143 | self::FI => ['prefix' => 'fi fi-', 'class' => 'FlagIconAsset'], 144 | self::OI => ['prefix' => 'oi oi-', 'class' => 'OpenIconicAsset'], 145 | self::ICF => ['prefix' => 'icofont icofont-', 'class' => 'IcoFontAsset'], 146 | ]; 147 | 148 | /** 149 | * Add a custom icon set to the icon frameworks 150 | * 151 | * @param string $key the key used to identify the icon set 152 | * @param array $config the icon configuration 153 | */ 154 | public static function addFramework($key, $config) 155 | { 156 | self::$_frameworks[$key] = $config; 157 | } 158 | 159 | /** 160 | * Returns the key for css framework set (or parses framework setup in Yii parameters) 161 | * 162 | * @var string $framework the framework to be used with the application 163 | * @var string $method the method in the Icon class (defaults to `show`) 164 | * @returns string the icon framework key 165 | * @throws InvalidConfigException 166 | * @return string 167 | */ 168 | protected static function getFramework($framework = null, $method = 'show') 169 | { 170 | $len = Lib::strlen($framework); 171 | if ($len > 0 && !in_array($framework, array_keys(self::$_frameworks))) { 172 | $replace = ['{framework}' => $framework, '{method}' => 'Icon::' . $method]; 173 | throw new InvalidConfigException(Lib::strtr(self::FRAMEWORK_INVALID, $replace)); 174 | } 175 | if ($len > 0) { 176 | return $framework; 177 | } 178 | if ($len === 0 && empty(Yii::$app->params['icon-framework'])) { 179 | throw new InvalidConfigException(self::PARAM_NOT_SET); 180 | } 181 | if (!in_array(Yii::$app->params['icon-framework'], array_keys(self::$_frameworks))) { 182 | throw new InvalidConfigException(self::PARAM_INVALID); 183 | } 184 | return Yii::$app->params['icon-framework']; 185 | } 186 | 187 | /** 188 | * Returns the prefix for the css framework set (or parses framework setup in Yii parameters) 189 | * 190 | * @var string the framework to be used with the application 191 | * @var string $method the method in the Icon class (defaults to `show`) 192 | * @return string the icon framework key 193 | * @throws InvalidConfigException 194 | */ 195 | public static function getFrameworkPrefix($framework = null, $method = 'show') 196 | { 197 | $key = static::getFramework($framework, $method); 198 | return self::$_frameworks[$key]['prefix']; 199 | } 200 | 201 | /** 202 | * Maps the icon framework to the current view. Call this in your view or layout file. 203 | * 204 | * @param View $view the view object 205 | * @param string $framework the name of the framework, if not passed it will default to 206 | * the Yii config param 'icon-framework' 207 | * @throws InvalidConfigException 208 | */ 209 | public static function map($view, $framework = null) 210 | { 211 | $key = static::getFramework($framework, 'map'); 212 | $class = self::$_frameworks[$key]['class']; 213 | if (Lib::substr($class, 0, 1) != '\\') { 214 | $class = self::NS . $class; 215 | } 216 | /** 217 | * @var AssetBundle $class 218 | */ 219 | $class::register($view); 220 | } 221 | 222 | /** 223 | * Displays an icon for a specific framework. 224 | * 225 | * @param string $name the icon name 226 | * @param array $options the HTML attributes for the icon. The following special attributes are supported: 227 | * - `framework`: string, the icon framework name. If not passed will default to the `icon-framework` param set 228 | * in Yii Configuration file. Will throw an InvalidConfigException if neither of the two is available. 229 | * - `space`: _boolean_, whether to place a space after the icon, defaults to true 230 | * - `tag`: _string_, the HTML tag to wrap the icon (defaults to `i`). 231 | * @param string $framework deprecated since v1.4.5 (use/see $options above) 232 | * @param bool $space deprecated since v1.4.5 (use/see $options above) 233 | * @param string $tag deprecated since v1.4.5 (use/see $options above) 234 | * @param string $fa5 deprecated since v1.4.5 235 | * 236 | * @return string the HTML formatted icon 237 | * @throws InvalidConfigException 238 | */ 239 | public static function show($name, $options = [], $framework = null, $space = true, $tag = 'i', $fa5 = 'fas') 240 | { 241 | $framework = ArrayHelper::remove($options, 'framework', $framework); 242 | $space = ArrayHelper::remove($options, 'space', $space); 243 | $tag = ArrayHelper::remove($options, 'tag', $tag); 244 | $class = self::getFrameworkPrefix($framework) . $name; 245 | Html::addCssClass($options, $class); 246 | return Html::tag($tag, '', $options) . ($space ? ' ' : ''); 247 | } 248 | 249 | /** 250 | * Displays an icon stack as supported by frameworks like Font Awesome 251 | * 252 | * @see http://fontawesome.io/examples/#stacked 253 | * 254 | * @param string $name1 the icon name in stack 1x 255 | * @param string $name2 the icon name in stack 2x 256 | * @param array $options the HTML attributes for the icon stack container. The following special attributes 257 | * are supported: 258 | * - `invert`: _bool_, whether to invert the order of stack 2x and 1x and place stack-1x before stack-2x. 259 | * Defaults to `false`. 260 | * - `tag`: _string_, the html tag to wrap the stack container (defaults to `span`). 261 | * - `prefix`: _string_, the CSS prefix string for the stack container (defaults to `fa-stack`). 262 | * - `space`: _boolean_, whether to place a space after the icon, defaults to true 263 | * @param array $options1 the HTML attributes for the icon in stack 1x. The following special attributes 264 | * are supported: 265 | * - `framework`: string, the icon framework name. If not passed will default to the `icon-framework` param set 266 | * in Yii Configuration file. Will throw an InvalidConfigException if neither of the two is available. 267 | * - `space`: _boolean_, whether to place a space after the icon, defaults to `true`. 268 | * - `tag`: _string_, the HTML tag to wrap the icon (defaults to `i`). 269 | * @param array $options2 the HTML attributes for the icon in stack 2x. The following special attributes 270 | * are supported: 271 | * - `framework`: string, the icon framework name. If not passed will default to the `icon-framework` param set 272 | * in Yii Configuration file. Will throw an InvalidConfigException if neither of the two is available. 273 | * - `space`: _boolean_, whether to place a space after the icon, defaults to `true`. 274 | * - `tag`: _string_, the HTML tag to wrap the icon (defaults to `i`). 275 | * @return string the html formatted icon 276 | * @throws InvalidConfigException 277 | */ 278 | public static function showStack($name1, $name2, $options = [], $options1 = [], $options2 = []) { 279 | $invert = ArrayHelper::remove($options, 'invert', false); 280 | $space = ArrayHelper::remove($options, 'space', false); 281 | $prefix = ArrayHelper::remove($options, 'prefix', 'fa-stack'); 282 | $tag = ArrayHelper::remove($options, 'tag', 'span'); 283 | Html::addCssClass($options1, $prefix . '-1x'); 284 | Html::addCssClass($options2, $prefix . '-2x'); 285 | Html::addCssClass($options, $prefix); 286 | $icon1 = static::show($name1, $options1); 287 | $icon2 = static::show($name2, $options2); 288 | $icon = $invert ? $icon1 . "\n" . $icon2 : $icon2 . "\n" . $icon1; 289 | return Html::tag($tag, $icon, $options) . ($space ? ' ' : ''); 290 | } 291 | 292 | /** 293 | * Displays an icon layer stack as supported by Font Awesome 5 294 | * 295 | * @see https://fontawesome.com/how-to-use/svg-with-js#layering 296 | * 297 | * @param array $items the icons to be displayed in the layer, each of which is an array consisting of following 298 | * configuration e.g. `['name'=>'play', 'framework' => Icon::FAS, 'options' => [], 'text' => NULL, 'tag' => NULL]`: 299 | * - `name`: _string_, the name for the icon; or layers-text for text or layers-counter for counter 300 | * - `text`: _string_, the text within the span container 301 | * - `framework`: string, the icon framework name to use for determining icon prefixes. If not set will default to 302 | * `Icon::FAS`. Will throw an InvalidConfigException if the framework set is invalid. 303 | * - `tag`: _string_, the HTML tag for the icon, defaults to `i` for non-text layers and `span` for text layers 304 | * - `options`: _array_, the html attributes for the layer item container 305 | * @param array $options the html attributes for the layers main container. The following special attributes 306 | * are supported: 307 | * - `space`: _boolean_, whether to place a space after the icon, defaults to `true`. 308 | * - `tag`: _string_, the HTML tag to wrap the icon (defaults to `span`). 309 | * 310 | * @return string the html formatted icon 311 | * @throws InvalidConfigException 312 | */ 313 | public static function showLayers($items = [], $options = []) 314 | { 315 | if (empty($items)) { 316 | return ''; 317 | } 318 | $layers = ''; 319 | foreach ($items as $item) { 320 | $name = ArrayHelper::getValue($item, 'name', ''); 321 | $text = ArrayHelper::getValue($item, 'text', ''); 322 | if (empty($name) && empty($text)) { 323 | continue; 324 | } 325 | $framework = ArrayHelper::remove($item, 'framework', Icon::FAS); 326 | $prefix = static::getFrameworkPrefix($framework); 327 | $itemTag = ArrayHelper::getValue($item, 'tag', empty($text) ? 'i' : 'span'); 328 | $itemOptions = ArrayHelper::getValue($item, 'options', []); 329 | if (!empty($text) && !isset($itemOptions['class'])) { 330 | $itemOptions['class'] = 'fa-layers-text'; 331 | } 332 | if (empty($text)) { 333 | Html::addCssClass($itemOptions, $prefix . $name); 334 | } 335 | $layers .= Html::tag($itemTag, $text, $itemOptions) . "\n"; 336 | } 337 | $tag = ArrayHelper::remove($options, 'tag', 'span'); 338 | $space = ArrayHelper::remove($options, 'space', true); 339 | Html::addCssClass($options, ['fa-layers', 'fa-fw']); 340 | return Html::tag($tag, $layers, $options) . ($space ? ' ' : ''); 341 | } 342 | } -------------------------------------------------------------------------------- /src/lib/openiconic/css/open-iconic-bootstrap.css: -------------------------------------------------------------------------------- 1 | /* Bootstrap */ 2 | 3 | @font-face { 4 | font-family: 'Icons'; 5 | src: url('../fonts/open-iconic.eot'); 6 | src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | .oi { 12 | position: relative; 13 | top: 1px; 14 | display: inline-block; 15 | speak:none; 16 | font-family: 'Icons'; 17 | font-style: normal; 18 | font-weight: normal; 19 | line-height: 1; 20 | -webkit-font-smoothing: antialiased; 21 | -moz-osx-font-smoothing: grayscale; 22 | } 23 | 24 | .oi:empty:before { 25 | width: 1em; 26 | text-align: center; 27 | box-sizing: content-box; 28 | } 29 | 30 | .oi.oi-align-center:before { 31 | text-align: center; 32 | } 33 | 34 | .oi.oi-align-left:before { 35 | text-align: left; 36 | } 37 | 38 | .oi.oi-align-right:before { 39 | text-align: right; 40 | } 41 | 42 | 43 | .oi.oi-flip-horizontal:before { 44 | -webkit-transform: scale(-1, 1); 45 | -ms-transform: scale(-1, 1); 46 | transform: scale(-1, 1); 47 | } 48 | 49 | .oi.oi-flip-vertical:before { 50 | -webkit-transform: scale(1, -1); 51 | -ms-transform: scale(-1, 1); 52 | transform: scale(1, -1); 53 | } 54 | 55 | .oi.oi-flip-horizontal-vertical:before { 56 | -webkit-transform: scale(-1, -1); 57 | -ms-transform: scale(-1, 1); 58 | transform: scale(-1, -1); 59 | } 60 | 61 | 62 | .oi-account-login:before { 63 | content:'\e000'; 64 | } 65 | 66 | .oi-account-logout:before { 67 | content:'\e001'; 68 | } 69 | 70 | .oi-action-redo:before { 71 | content:'\e002'; 72 | } 73 | 74 | .oi-action-undo:before { 75 | content:'\e003'; 76 | } 77 | 78 | .oi-align-center:before { 79 | content:'\e004'; 80 | } 81 | 82 | .oi-align-left:before { 83 | content:'\e005'; 84 | } 85 | 86 | .oi-align-right:before { 87 | content:'\e006'; 88 | } 89 | 90 | .oi-aperture:before { 91 | content:'\e007'; 92 | } 93 | 94 | .oi-arrow-bottom:before { 95 | content:'\e008'; 96 | } 97 | 98 | .oi-arrow-circle-bottom:before { 99 | content:'\e009'; 100 | } 101 | 102 | .oi-arrow-circle-left:before { 103 | content:'\e00a'; 104 | } 105 | 106 | .oi-arrow-circle-right:before { 107 | content:'\e00b'; 108 | } 109 | 110 | .oi-arrow-circle-top:before { 111 | content:'\e00c'; 112 | } 113 | 114 | .oi-arrow-left:before { 115 | content:'\e00d'; 116 | } 117 | 118 | .oi-arrow-right:before { 119 | content:'\e00e'; 120 | } 121 | 122 | .oi-arrow-thick-bottom:before { 123 | content:'\e00f'; 124 | } 125 | 126 | .oi-arrow-thick-left:before { 127 | content:'\e010'; 128 | } 129 | 130 | .oi-arrow-thick-right:before { 131 | content:'\e011'; 132 | } 133 | 134 | .oi-arrow-thick-top:before { 135 | content:'\e012'; 136 | } 137 | 138 | .oi-arrow-top:before { 139 | content:'\e013'; 140 | } 141 | 142 | .oi-audio-spectrum:before { 143 | content:'\e014'; 144 | } 145 | 146 | .oi-audio:before { 147 | content:'\e015'; 148 | } 149 | 150 | .oi-badge:before { 151 | content:'\e016'; 152 | } 153 | 154 | .oi-ban:before { 155 | content:'\e017'; 156 | } 157 | 158 | .oi-bar-chart:before { 159 | content:'\e018'; 160 | } 161 | 162 | .oi-basket:before { 163 | content:'\e019'; 164 | } 165 | 166 | .oi-battery-empty:before { 167 | content:'\e01a'; 168 | } 169 | 170 | .oi-battery-full:before { 171 | content:'\e01b'; 172 | } 173 | 174 | .oi-beaker:before { 175 | content:'\e01c'; 176 | } 177 | 178 | .oi-bell:before { 179 | content:'\e01d'; 180 | } 181 | 182 | .oi-bluetooth:before { 183 | content:'\e01e'; 184 | } 185 | 186 | .oi-bold:before { 187 | content:'\e01f'; 188 | } 189 | 190 | .oi-bolt:before { 191 | content:'\e020'; 192 | } 193 | 194 | .oi-book:before { 195 | content:'\e021'; 196 | } 197 | 198 | .oi-bookmark:before { 199 | content:'\e022'; 200 | } 201 | 202 | .oi-box:before { 203 | content:'\e023'; 204 | } 205 | 206 | .oi-briefcase:before { 207 | content:'\e024'; 208 | } 209 | 210 | .oi-british-pound:before { 211 | content:'\e025'; 212 | } 213 | 214 | .oi-browser:before { 215 | content:'\e026'; 216 | } 217 | 218 | .oi-brush:before { 219 | content:'\e027'; 220 | } 221 | 222 | .oi-bug:before { 223 | content:'\e028'; 224 | } 225 | 226 | .oi-bullhorn:before { 227 | content:'\e029'; 228 | } 229 | 230 | .oi-calculator:before { 231 | content:'\e02a'; 232 | } 233 | 234 | .oi-calendar:before { 235 | content:'\e02b'; 236 | } 237 | 238 | .oi-camera-slr:before { 239 | content:'\e02c'; 240 | } 241 | 242 | .oi-caret-bottom:before { 243 | content:'\e02d'; 244 | } 245 | 246 | .oi-caret-left:before { 247 | content:'\e02e'; 248 | } 249 | 250 | .oi-caret-right:before { 251 | content:'\e02f'; 252 | } 253 | 254 | .oi-caret-top:before { 255 | content:'\e030'; 256 | } 257 | 258 | .oi-cart:before { 259 | content:'\e031'; 260 | } 261 | 262 | .oi-chat:before { 263 | content:'\e032'; 264 | } 265 | 266 | .oi-check:before { 267 | content:'\e033'; 268 | } 269 | 270 | .oi-chevron-bottom:before { 271 | content:'\e034'; 272 | } 273 | 274 | .oi-chevron-left:before { 275 | content:'\e035'; 276 | } 277 | 278 | .oi-chevron-right:before { 279 | content:'\e036'; 280 | } 281 | 282 | .oi-chevron-top:before { 283 | content:'\e037'; 284 | } 285 | 286 | .oi-circle-check:before { 287 | content:'\e038'; 288 | } 289 | 290 | .oi-circle-x:before { 291 | content:'\e039'; 292 | } 293 | 294 | .oi-clipboard:before { 295 | content:'\e03a'; 296 | } 297 | 298 | .oi-clock:before { 299 | content:'\e03b'; 300 | } 301 | 302 | .oi-cloud-download:before { 303 | content:'\e03c'; 304 | } 305 | 306 | .oi-cloud-upload:before { 307 | content:'\e03d'; 308 | } 309 | 310 | .oi-cloud:before { 311 | content:'\e03e'; 312 | } 313 | 314 | .oi-cloudy:before { 315 | content:'\e03f'; 316 | } 317 | 318 | .oi-code:before { 319 | content:'\e040'; 320 | } 321 | 322 | .oi-cog:before { 323 | content:'\e041'; 324 | } 325 | 326 | .oi-collapse-down:before { 327 | content:'\e042'; 328 | } 329 | 330 | .oi-collapse-left:before { 331 | content:'\e043'; 332 | } 333 | 334 | .oi-collapse-right:before { 335 | content:'\e044'; 336 | } 337 | 338 | .oi-collapse-up:before { 339 | content:'\e045'; 340 | } 341 | 342 | .oi-command:before { 343 | content:'\e046'; 344 | } 345 | 346 | .oi-comment-square:before { 347 | content:'\e047'; 348 | } 349 | 350 | .oi-compass:before { 351 | content:'\e048'; 352 | } 353 | 354 | .oi-contrast:before { 355 | content:'\e049'; 356 | } 357 | 358 | .oi-copywriting:before { 359 | content:'\e04a'; 360 | } 361 | 362 | .oi-credit-card:before { 363 | content:'\e04b'; 364 | } 365 | 366 | .oi-crop:before { 367 | content:'\e04c'; 368 | } 369 | 370 | .oi-dashboard:before { 371 | content:'\e04d'; 372 | } 373 | 374 | .oi-data-transfer-download:before { 375 | content:'\e04e'; 376 | } 377 | 378 | .oi-data-transfer-upload:before { 379 | content:'\e04f'; 380 | } 381 | 382 | .oi-delete:before { 383 | content:'\e050'; 384 | } 385 | 386 | .oi-dial:before { 387 | content:'\e051'; 388 | } 389 | 390 | .oi-document:before { 391 | content:'\e052'; 392 | } 393 | 394 | .oi-dollar:before { 395 | content:'\e053'; 396 | } 397 | 398 | .oi-double-quote-sans-left:before { 399 | content:'\e054'; 400 | } 401 | 402 | .oi-double-quote-sans-right:before { 403 | content:'\e055'; 404 | } 405 | 406 | .oi-double-quote-serif-left:before { 407 | content:'\e056'; 408 | } 409 | 410 | .oi-double-quote-serif-right:before { 411 | content:'\e057'; 412 | } 413 | 414 | .oi-droplet:before { 415 | content:'\e058'; 416 | } 417 | 418 | .oi-eject:before { 419 | content:'\e059'; 420 | } 421 | 422 | .oi-elevator:before { 423 | content:'\e05a'; 424 | } 425 | 426 | .oi-ellipses:before { 427 | content:'\e05b'; 428 | } 429 | 430 | .oi-envelope-closed:before { 431 | content:'\e05c'; 432 | } 433 | 434 | .oi-envelope-open:before { 435 | content:'\e05d'; 436 | } 437 | 438 | .oi-euro:before { 439 | content:'\e05e'; 440 | } 441 | 442 | .oi-excerpt:before { 443 | content:'\e05f'; 444 | } 445 | 446 | .oi-expand-down:before { 447 | content:'\e060'; 448 | } 449 | 450 | .oi-expand-left:before { 451 | content:'\e061'; 452 | } 453 | 454 | .oi-expand-right:before { 455 | content:'\e062'; 456 | } 457 | 458 | .oi-expand-up:before { 459 | content:'\e063'; 460 | } 461 | 462 | .oi-external-link:before { 463 | content:'\e064'; 464 | } 465 | 466 | .oi-eye:before { 467 | content:'\e065'; 468 | } 469 | 470 | .oi-eyedropper:before { 471 | content:'\e066'; 472 | } 473 | 474 | .oi-file:before { 475 | content:'\e067'; 476 | } 477 | 478 | .oi-fire:before { 479 | content:'\e068'; 480 | } 481 | 482 | .oi-flag:before { 483 | content:'\e069'; 484 | } 485 | 486 | .oi-flash:before { 487 | content:'\e06a'; 488 | } 489 | 490 | .oi-folder:before { 491 | content:'\e06b'; 492 | } 493 | 494 | .oi-fork:before { 495 | content:'\e06c'; 496 | } 497 | 498 | .oi-fullscreen-enter:before { 499 | content:'\e06d'; 500 | } 501 | 502 | .oi-fullscreen-exit:before { 503 | content:'\e06e'; 504 | } 505 | 506 | .oi-globe:before { 507 | content:'\e06f'; 508 | } 509 | 510 | .oi-graph:before { 511 | content:'\e070'; 512 | } 513 | 514 | .oi-grid-four-up:before { 515 | content:'\e071'; 516 | } 517 | 518 | .oi-grid-three-up:before { 519 | content:'\e072'; 520 | } 521 | 522 | .oi-grid-two-up:before { 523 | content:'\e073'; 524 | } 525 | 526 | .oi-hard-drive:before { 527 | content:'\e074'; 528 | } 529 | 530 | .oi-header:before { 531 | content:'\e075'; 532 | } 533 | 534 | .oi-headphones:before { 535 | content:'\e076'; 536 | } 537 | 538 | .oi-heart:before { 539 | content:'\e077'; 540 | } 541 | 542 | .oi-home:before { 543 | content:'\e078'; 544 | } 545 | 546 | .oi-image:before { 547 | content:'\e079'; 548 | } 549 | 550 | .oi-inbox:before { 551 | content:'\e07a'; 552 | } 553 | 554 | .oi-infinity:before { 555 | content:'\e07b'; 556 | } 557 | 558 | .oi-info:before { 559 | content:'\e07c'; 560 | } 561 | 562 | .oi-italic:before { 563 | content:'\e07d'; 564 | } 565 | 566 | .oi-justify-center:before { 567 | content:'\e07e'; 568 | } 569 | 570 | .oi-justify-left:before { 571 | content:'\e07f'; 572 | } 573 | 574 | .oi-justify-right:before { 575 | content:'\e080'; 576 | } 577 | 578 | .oi-key:before { 579 | content:'\e081'; 580 | } 581 | 582 | .oi-laptop:before { 583 | content:'\e082'; 584 | } 585 | 586 | .oi-layers:before { 587 | content:'\e083'; 588 | } 589 | 590 | .oi-lightbulb:before { 591 | content:'\e084'; 592 | } 593 | 594 | .oi-link-broken:before { 595 | content:'\e085'; 596 | } 597 | 598 | .oi-link-intact:before { 599 | content:'\e086'; 600 | } 601 | 602 | .oi-list-rich:before { 603 | content:'\e087'; 604 | } 605 | 606 | .oi-list:before { 607 | content:'\e088'; 608 | } 609 | 610 | .oi-location:before { 611 | content:'\e089'; 612 | } 613 | 614 | .oi-lock-locked:before { 615 | content:'\e08a'; 616 | } 617 | 618 | .oi-lock-unlocked:before { 619 | content:'\e08b'; 620 | } 621 | 622 | .oi-loop-circular:before { 623 | content:'\e08c'; 624 | } 625 | 626 | .oi-loop-square:before { 627 | content:'\e08d'; 628 | } 629 | 630 | .oi-loop:before { 631 | content:'\e08e'; 632 | } 633 | 634 | .oi-magnifying-glass:before { 635 | content:'\e08f'; 636 | } 637 | 638 | .oi-map-marker:before { 639 | content:'\e090'; 640 | } 641 | 642 | .oi-map:before { 643 | content:'\e091'; 644 | } 645 | 646 | .oi-media-pause:before { 647 | content:'\e092'; 648 | } 649 | 650 | .oi-media-play:before { 651 | content:'\e093'; 652 | } 653 | 654 | .oi-media-record:before { 655 | content:'\e094'; 656 | } 657 | 658 | .oi-media-skip-backward:before { 659 | content:'\e095'; 660 | } 661 | 662 | .oi-media-skip-forward:before { 663 | content:'\e096'; 664 | } 665 | 666 | .oi-media-step-backward:before { 667 | content:'\e097'; 668 | } 669 | 670 | .oi-media-step-forward:before { 671 | content:'\e098'; 672 | } 673 | 674 | .oi-media-stop:before { 675 | content:'\e099'; 676 | } 677 | 678 | .oi-medical-cross:before { 679 | content:'\e09a'; 680 | } 681 | 682 | .oi-menu:before { 683 | content:'\e09b'; 684 | } 685 | 686 | .oi-microphone:before { 687 | content:'\e09c'; 688 | } 689 | 690 | .oi-minus:before { 691 | content:'\e09d'; 692 | } 693 | 694 | .oi-monitor:before { 695 | content:'\e09e'; 696 | } 697 | 698 | .oi-moon:before { 699 | content:'\e09f'; 700 | } 701 | 702 | .oi-move:before { 703 | content:'\e0a0'; 704 | } 705 | 706 | .oi-musical-note:before { 707 | content:'\e0a1'; 708 | } 709 | 710 | .oi-paperclip:before { 711 | content:'\e0a2'; 712 | } 713 | 714 | .oi-pencil:before { 715 | content:'\e0a3'; 716 | } 717 | 718 | .oi-people:before { 719 | content:'\e0a4'; 720 | } 721 | 722 | .oi-person:before { 723 | content:'\e0a5'; 724 | } 725 | 726 | .oi-phone:before { 727 | content:'\e0a6'; 728 | } 729 | 730 | .oi-pie-chart:before { 731 | content:'\e0a7'; 732 | } 733 | 734 | .oi-pin:before { 735 | content:'\e0a8'; 736 | } 737 | 738 | .oi-play-circle:before { 739 | content:'\e0a9'; 740 | } 741 | 742 | .oi-plus:before { 743 | content:'\e0aa'; 744 | } 745 | 746 | .oi-power-standby:before { 747 | content:'\e0ab'; 748 | } 749 | 750 | .oi-print:before { 751 | content:'\e0ac'; 752 | } 753 | 754 | .oi-project:before { 755 | content:'\e0ad'; 756 | } 757 | 758 | .oi-pulse:before { 759 | content:'\e0ae'; 760 | } 761 | 762 | .oi-puzzle-piece:before { 763 | content:'\e0af'; 764 | } 765 | 766 | .oi-question-mark:before { 767 | content:'\e0b0'; 768 | } 769 | 770 | .oi-rain:before { 771 | content:'\e0b1'; 772 | } 773 | 774 | .oi-random:before { 775 | content:'\e0b2'; 776 | } 777 | 778 | .oi-reload:before { 779 | content:'\e0b3'; 780 | } 781 | 782 | .oi-resize-both:before { 783 | content:'\e0b4'; 784 | } 785 | 786 | .oi-resize-height:before { 787 | content:'\e0b5'; 788 | } 789 | 790 | .oi-resize-width:before { 791 | content:'\e0b6'; 792 | } 793 | 794 | .oi-rss-alt:before { 795 | content:'\e0b7'; 796 | } 797 | 798 | .oi-rss:before { 799 | content:'\e0b8'; 800 | } 801 | 802 | .oi-script:before { 803 | content:'\e0b9'; 804 | } 805 | 806 | .oi-share-boxed:before { 807 | content:'\e0ba'; 808 | } 809 | 810 | .oi-share:before { 811 | content:'\e0bb'; 812 | } 813 | 814 | .oi-shield:before { 815 | content:'\e0bc'; 816 | } 817 | 818 | .oi-signal:before { 819 | content:'\e0bd'; 820 | } 821 | 822 | .oi-signpost:before { 823 | content:'\e0be'; 824 | } 825 | 826 | .oi-sort-ascending:before { 827 | content:'\e0bf'; 828 | } 829 | 830 | .oi-sort-descending:before { 831 | content:'\e0c0'; 832 | } 833 | 834 | .oi-spreadsheet:before { 835 | content:'\e0c1'; 836 | } 837 | 838 | .oi-star:before { 839 | content:'\e0c2'; 840 | } 841 | 842 | .oi-sun:before { 843 | content:'\e0c3'; 844 | } 845 | 846 | .oi-tablet:before { 847 | content:'\e0c4'; 848 | } 849 | 850 | .oi-tag:before { 851 | content:'\e0c5'; 852 | } 853 | 854 | .oi-tags:before { 855 | content:'\e0c6'; 856 | } 857 | 858 | .oi-target:before { 859 | content:'\e0c7'; 860 | } 861 | 862 | .oi-task:before { 863 | content:'\e0c8'; 864 | } 865 | 866 | .oi-terminal:before { 867 | content:'\e0c9'; 868 | } 869 | 870 | .oi-text:before { 871 | content:'\e0ca'; 872 | } 873 | 874 | .oi-thumb-down:before { 875 | content:'\e0cb'; 876 | } 877 | 878 | .oi-thumb-up:before { 879 | content:'\e0cc'; 880 | } 881 | 882 | .oi-timer:before { 883 | content:'\e0cd'; 884 | } 885 | 886 | .oi-transfer:before { 887 | content:'\e0ce'; 888 | } 889 | 890 | .oi-trash:before { 891 | content:'\e0cf'; 892 | } 893 | 894 | .oi-underline:before { 895 | content:'\e0d0'; 896 | } 897 | 898 | .oi-vertical-align-bottom:before { 899 | content:'\e0d1'; 900 | } 901 | 902 | .oi-vertical-align-center:before { 903 | content:'\e0d2'; 904 | } 905 | 906 | .oi-vertical-align-top:before { 907 | content:'\e0d3'; 908 | } 909 | 910 | .oi-video:before { 911 | content:'\e0d4'; 912 | } 913 | 914 | .oi-volume-high:before { 915 | content:'\e0d5'; 916 | } 917 | 918 | .oi-volume-low:before { 919 | content:'\e0d6'; 920 | } 921 | 922 | .oi-volume-off:before { 923 | content:'\e0d7'; 924 | } 925 | 926 | .oi-warning:before { 927 | content:'\e0d8'; 928 | } 929 | 930 | .oi-wifi:before { 931 | content:'\e0d9'; 932 | } 933 | 934 | .oi-wrench:before { 935 | content:'\e0da'; 936 | } 937 | 938 | .oi-x:before { 939 | content:'\e0db'; 940 | } 941 | 942 | .oi-yen:before { 943 | content:'\e0dc'; 944 | } 945 | 946 | .oi-zoom-in:before { 947 | content:'\e0dd'; 948 | } 949 | 950 | .oi-zoom-out:before { 951 | content:'\e0de'; 952 | } 953 | -------------------------------------------------------------------------------- /src/lib/octicons/octicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'octicons'; 3 | src: url('octicons.eot?#iefix') format('embedded-opentype'), 4 | url('octicons.woff') format('woff'), 5 | url('octicons.ttf') format('truetype'), 6 | url('octicons.svg#octicons') format('svg'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | /* 12 | .octicon is optimized for 16px. 13 | .mega-octicon is optimized for 32px but can be used larger. 14 | */ 15 | .octicon, .mega-octicon { 16 | font: normal normal normal 16px/1 octicons; 17 | display: inline-block; 18 | text-decoration: none; 19 | text-rendering: auto; 20 | -webkit-font-smoothing: antialiased; 21 | -moz-osx-font-smoothing: grayscale; 22 | -webkit-user-select: none; 23 | -moz-user-select: none; 24 | -ms-user-select: none; 25 | user-select: none; 26 | } 27 | 28 | .mega-octicon { 29 | font-size: 32px; 30 | } 31 | 32 | .octicon-alert:before { 33 | content: '\f02d' 34 | } 35 | 36 | /*  */ 37 | .octicon-alignment-align:before { 38 | content: '\f08a' 39 | } 40 | 41 | /*  */ 42 | .octicon-alignment-aligned-to:before { 43 | content: '\f08e' 44 | } 45 | 46 | /*  */ 47 | .octicon-alignment-unalign:before { 48 | content: '\f08b' 49 | } 50 | 51 | /*  */ 52 | .octicon-arrow-down:before { 53 | content: '\f03f' 54 | } 55 | 56 | /*  */ 57 | .octicon-arrow-left:before { 58 | content: '\f040' 59 | } 60 | 61 | /*  */ 62 | .octicon-arrow-right:before { 63 | content: '\f03e' 64 | } 65 | 66 | /*  */ 67 | .octicon-arrow-small-down:before { 68 | content: '\f0a0' 69 | } 70 | 71 | /*  */ 72 | .octicon-arrow-small-left:before { 73 | content: '\f0a1' 74 | } 75 | 76 | /*  */ 77 | .octicon-arrow-small-right:before { 78 | content: '\f071' 79 | } 80 | 81 | /*  */ 82 | .octicon-arrow-small-up:before { 83 | content: '\f09f' 84 | } 85 | 86 | /*  */ 87 | .octicon-arrow-up:before { 88 | content: '\f03d' 89 | } 90 | 91 | /*  */ 92 | .octicon-beer:before { 93 | content: '\f069' 94 | } 95 | 96 | /*  */ 97 | .octicon-book:before { 98 | content: '\f007' 99 | } 100 | 101 | /*  */ 102 | .octicon-bookmark:before { 103 | content: '\f07b' 104 | } 105 | 106 | /*  */ 107 | .octicon-briefcase:before { 108 | content: '\f0d3' 109 | } 110 | 111 | /*  */ 112 | .octicon-broadcast:before { 113 | content: '\f048' 114 | } 115 | 116 | /*  */ 117 | .octicon-browser:before { 118 | content: '\f0c5' 119 | } 120 | 121 | /*  */ 122 | .octicon-bug:before { 123 | content: '\f091' 124 | } 125 | 126 | /*  */ 127 | .octicon-calendar:before { 128 | content: '\f068' 129 | } 130 | 131 | /*  */ 132 | .octicon-check:before { 133 | content: '\f03a' 134 | } 135 | 136 | /*  */ 137 | .octicon-checklist:before { 138 | content: '\f076' 139 | } 140 | 141 | /*  */ 142 | .octicon-chevron-down:before { 143 | content: '\f0a3' 144 | } 145 | 146 | /*  */ 147 | .octicon-chevron-left:before { 148 | content: '\f0a4' 149 | } 150 | 151 | /*  */ 152 | .octicon-chevron-right:before { 153 | content: '\f078' 154 | } 155 | 156 | /*  */ 157 | .octicon-chevron-up:before { 158 | content: '\f0a2' 159 | } 160 | 161 | /*  */ 162 | .octicon-circle-slash:before { 163 | content: '\f084' 164 | } 165 | 166 | /*  */ 167 | .octicon-circuit-board:before { 168 | content: '\f0d6' 169 | } 170 | 171 | /*  */ 172 | .octicon-clippy:before { 173 | content: '\f035' 174 | } 175 | 176 | /*  */ 177 | .octicon-clock:before { 178 | content: '\f046' 179 | } 180 | 181 | /*  */ 182 | .octicon-cloud-download:before { 183 | content: '\f00b' 184 | } 185 | 186 | /*  */ 187 | .octicon-cloud-upload:before { 188 | content: '\f00c' 189 | } 190 | 191 | /*  */ 192 | .octicon-code:before { 193 | content: '\f05f' 194 | } 195 | 196 | /*  */ 197 | .octicon-color-mode:before { 198 | content: '\f065' 199 | } 200 | 201 | /*  */ 202 | .octicon-comment-add:before, 203 | .octicon-comment:before { 204 | content: '\f02b' 205 | } 206 | 207 | /*  */ 208 | .octicon-comment-discussion:before { 209 | content: '\f04f' 210 | } 211 | 212 | /*  */ 213 | .octicon-credit-card:before { 214 | content: '\f045' 215 | } 216 | 217 | /*  */ 218 | .octicon-dash:before { 219 | content: '\f0ca' 220 | } 221 | 222 | /*  */ 223 | .octicon-dashboard:before { 224 | content: '\f07d' 225 | } 226 | 227 | /*  */ 228 | .octicon-database:before { 229 | content: '\f096' 230 | } 231 | 232 | /*  */ 233 | .octicon-device-camera:before { 234 | content: '\f056' 235 | } 236 | 237 | /*  */ 238 | .octicon-device-camera-video:before { 239 | content: '\f057' 240 | } 241 | 242 | /*  */ 243 | .octicon-device-desktop:before { 244 | content: '\f27c' 245 | } 246 | 247 | /*  */ 248 | .octicon-device-mobile:before { 249 | content: '\f038' 250 | } 251 | 252 | /*  */ 253 | .octicon-diff:before { 254 | content: '\f04d' 255 | } 256 | 257 | /*  */ 258 | .octicon-diff-added:before { 259 | content: '\f06b' 260 | } 261 | 262 | /*  */ 263 | .octicon-diff-ignored:before { 264 | content: '\f099' 265 | } 266 | 267 | /*  */ 268 | .octicon-diff-modified:before { 269 | content: '\f06d' 270 | } 271 | 272 | /*  */ 273 | .octicon-diff-removed:before { 274 | content: '\f06c' 275 | } 276 | 277 | /*  */ 278 | .octicon-diff-renamed:before { 279 | content: '\f06e' 280 | } 281 | 282 | /*  */ 283 | .octicon-ellipsis:before { 284 | content: '\f09a' 285 | } 286 | 287 | /*  */ 288 | .octicon-eye-unwatch:before, 289 | .octicon-eye-watch:before, 290 | .octicon-eye:before { 291 | content: '\f04e' 292 | } 293 | 294 | /*  */ 295 | .octicon-file-binary:before { 296 | content: '\f094' 297 | } 298 | 299 | /*  */ 300 | .octicon-file-code:before { 301 | content: '\f010' 302 | } 303 | 304 | /*  */ 305 | .octicon-file-directory:before { 306 | content: '\f016' 307 | } 308 | 309 | /*  */ 310 | .octicon-file-media:before { 311 | content: '\f012' 312 | } 313 | 314 | /*  */ 315 | .octicon-file-pdf:before { 316 | content: '\f014' 317 | } 318 | 319 | /*  */ 320 | .octicon-file-submodule:before { 321 | content: '\f017' 322 | } 323 | 324 | /*  */ 325 | .octicon-file-symlink-directory:before { 326 | content: '\f0b1' 327 | } 328 | 329 | /*  */ 330 | .octicon-file-symlink-file:before { 331 | content: '\f0b0' 332 | } 333 | 334 | /*  */ 335 | .octicon-file-text:before { 336 | content: '\f011' 337 | } 338 | 339 | /*  */ 340 | .octicon-file-zip:before { 341 | content: '\f013' 342 | } 343 | 344 | /*  */ 345 | .octicon-flame:before { 346 | content: '\f0d2' 347 | } 348 | 349 | /*  */ 350 | .octicon-fold:before { 351 | content: '\f0cc' 352 | } 353 | 354 | /*  */ 355 | .octicon-gear:before { 356 | content: '\f02f' 357 | } 358 | 359 | /*  */ 360 | .octicon-gift:before { 361 | content: '\f042' 362 | } 363 | 364 | /*  */ 365 | .octicon-gist:before { 366 | content: '\f00e' 367 | } 368 | 369 | /*  */ 370 | .octicon-gist-secret:before { 371 | content: '\f08c' 372 | } 373 | 374 | /*  */ 375 | .octicon-git-branch-create:before, 376 | .octicon-git-branch-delete:before, 377 | .octicon-git-branch:before { 378 | content: '\f020' 379 | } 380 | 381 | /*  */ 382 | .octicon-git-commit:before { 383 | content: '\f01f' 384 | } 385 | 386 | /*  */ 387 | .octicon-git-compare:before { 388 | content: '\f0ac' 389 | } 390 | 391 | /*  */ 392 | .octicon-git-merge:before { 393 | content: '\f023' 394 | } 395 | 396 | /*  */ 397 | .octicon-git-pull-request-abandoned:before, 398 | .octicon-git-pull-request:before { 399 | content: '\f009' 400 | } 401 | 402 | /*  */ 403 | .octicon-globe:before { 404 | content: '\f0b6' 405 | } 406 | 407 | /*  */ 408 | .octicon-graph:before { 409 | content: '\f043' 410 | } 411 | 412 | /*  */ 413 | .octicon-heart:before { 414 | content: '\2665' 415 | } 416 | 417 | /* ♥ */ 418 | .octicon-history:before { 419 | content: '\f07e' 420 | } 421 | 422 | /*  */ 423 | .octicon-home:before { 424 | content: '\f08d' 425 | } 426 | 427 | /*  */ 428 | .octicon-horizontal-rule:before { 429 | content: '\f070' 430 | } 431 | 432 | /*  */ 433 | .octicon-hourglass:before { 434 | content: '\f09e' 435 | } 436 | 437 | /*  */ 438 | .octicon-hubot:before { 439 | content: '\f09d' 440 | } 441 | 442 | /*  */ 443 | .octicon-inbox:before { 444 | content: '\f0cf' 445 | } 446 | 447 | /*  */ 448 | .octicon-info:before { 449 | content: '\f059' 450 | } 451 | 452 | /*  */ 453 | .octicon-issue-closed:before { 454 | content: '\f028' 455 | } 456 | 457 | /*  */ 458 | .octicon-issue-opened:before { 459 | content: '\f026' 460 | } 461 | 462 | /*  */ 463 | .octicon-issue-reopened:before { 464 | content: '\f027' 465 | } 466 | 467 | /*  */ 468 | .octicon-jersey:before { 469 | content: '\f019' 470 | } 471 | 472 | /*  */ 473 | .octicon-jump-down:before { 474 | content: '\f072' 475 | } 476 | 477 | /*  */ 478 | .octicon-jump-left:before { 479 | content: '\f0a5' 480 | } 481 | 482 | /*  */ 483 | .octicon-jump-right:before { 484 | content: '\f0a6' 485 | } 486 | 487 | /*  */ 488 | .octicon-jump-up:before { 489 | content: '\f073' 490 | } 491 | 492 | /*  */ 493 | .octicon-key:before { 494 | content: '\f049' 495 | } 496 | 497 | /*  */ 498 | .octicon-keyboard:before { 499 | content: '\f00d' 500 | } 501 | 502 | /*  */ 503 | .octicon-law:before { 504 | content: '\f0d8' 505 | } 506 | 507 | /* */ 508 | .octicon-light-bulb:before { 509 | content: '\f000' 510 | } 511 | 512 | /*  */ 513 | .octicon-link:before { 514 | content: '\f05c' 515 | } 516 | 517 | /*  */ 518 | .octicon-link-external:before { 519 | content: '\f07f' 520 | } 521 | 522 | /*  */ 523 | .octicon-list-ordered:before { 524 | content: '\f062' 525 | } 526 | 527 | /*  */ 528 | .octicon-list-unordered:before { 529 | content: '\f061' 530 | } 531 | 532 | /*  */ 533 | .octicon-location:before { 534 | content: '\f060' 535 | } 536 | 537 | /*  */ 538 | .octicon-gist-private:before, 539 | .octicon-mirror-private:before, 540 | .octicon-git-fork-private:before, 541 | .octicon-lock:before { 542 | content: '\f06a' 543 | } 544 | 545 | /*  */ 546 | .octicon-logo-github:before { 547 | content: '\f092' 548 | } 549 | 550 | /*  */ 551 | .octicon-mail:before { 552 | content: '\f03b' 553 | } 554 | 555 | /*  */ 556 | .octicon-mail-read:before { 557 | content: '\f03c' 558 | } 559 | 560 | /*  */ 561 | .octicon-mail-reply:before { 562 | content: '\f051' 563 | } 564 | 565 | /*  */ 566 | .octicon-mark-github:before { 567 | content: '\f00a' 568 | } 569 | 570 | /*  */ 571 | .octicon-markdown:before { 572 | content: '\f0c9' 573 | } 574 | 575 | /*  */ 576 | .octicon-megaphone:before { 577 | content: '\f077' 578 | } 579 | 580 | /*  */ 581 | .octicon-mention:before { 582 | content: '\f0be' 583 | } 584 | 585 | /*  */ 586 | .octicon-microscope:before { 587 | content: '\f089' 588 | } 589 | 590 | /*  */ 591 | .octicon-milestone:before { 592 | content: '\f075' 593 | } 594 | 595 | /*  */ 596 | .octicon-mirror-public:before, 597 | .octicon-mirror:before { 598 | content: '\f024' 599 | } 600 | 601 | /*  */ 602 | .octicon-mortar-board:before { 603 | content: '\f0d7' 604 | } 605 | 606 | /* */ 607 | .octicon-move-down:before { 608 | content: '\f0a8' 609 | } 610 | 611 | /*  */ 612 | .octicon-move-left:before { 613 | content: '\f074' 614 | } 615 | 616 | /*  */ 617 | .octicon-move-right:before { 618 | content: '\f0a9' 619 | } 620 | 621 | /*  */ 622 | .octicon-move-up:before { 623 | content: '\f0a7' 624 | } 625 | 626 | /*  */ 627 | .octicon-mute:before { 628 | content: '\f080' 629 | } 630 | 631 | /*  */ 632 | .octicon-no-newline:before { 633 | content: '\f09c' 634 | } 635 | 636 | /*  */ 637 | .octicon-octoface:before { 638 | content: '\f008' 639 | } 640 | 641 | /*  */ 642 | .octicon-organization:before { 643 | content: '\f037' 644 | } 645 | 646 | /*  */ 647 | .octicon-package:before { 648 | content: '\f0c4' 649 | } 650 | 651 | /*  */ 652 | .octicon-paintcan:before { 653 | content: '\f0d1' 654 | } 655 | 656 | /*  */ 657 | .octicon-pencil:before { 658 | content: '\f058' 659 | } 660 | 661 | /*  */ 662 | .octicon-person-add:before, 663 | .octicon-person-follow:before, 664 | .octicon-person:before { 665 | content: '\f018' 666 | } 667 | 668 | /*  */ 669 | .octicon-pin:before { 670 | content: '\f041' 671 | } 672 | 673 | /*  */ 674 | .octicon-playback-fast-forward:before { 675 | content: '\f0bd' 676 | } 677 | 678 | /*  */ 679 | .octicon-playback-pause:before { 680 | content: '\f0bb' 681 | } 682 | 683 | /*  */ 684 | .octicon-playback-play:before { 685 | content: '\f0bf' 686 | } 687 | 688 | /*  */ 689 | .octicon-playback-rewind:before { 690 | content: '\f0bc' 691 | } 692 | 693 | /*  */ 694 | .octicon-plug:before { 695 | content: '\f0d4' 696 | } 697 | 698 | /*  */ 699 | .octicon-repo-create:before, 700 | .octicon-gist-new:before, 701 | .octicon-file-directory-create:before, 702 | .octicon-file-add:before, 703 | .octicon-plus:before { 704 | content: '\f05d' 705 | } 706 | 707 | /*  */ 708 | .octicon-podium:before { 709 | content: '\f0af' 710 | } 711 | 712 | /*  */ 713 | .octicon-primitive-dot:before { 714 | content: '\f052' 715 | } 716 | 717 | /*  */ 718 | .octicon-primitive-square:before { 719 | content: '\f053' 720 | } 721 | 722 | /*  */ 723 | .octicon-pulse:before { 724 | content: '\f085' 725 | } 726 | 727 | /*  */ 728 | .octicon-puzzle:before { 729 | content: '\f0c0' 730 | } 731 | 732 | /*  */ 733 | .octicon-question:before { 734 | content: '\f02c' 735 | } 736 | 737 | /*  */ 738 | .octicon-quote:before { 739 | content: '\f063' 740 | } 741 | 742 | /*  */ 743 | .octicon-radio-tower:before { 744 | content: '\f030' 745 | } 746 | 747 | /*  */ 748 | .octicon-repo-delete:before, 749 | .octicon-repo:before { 750 | content: '\f001' 751 | } 752 | 753 | /*  */ 754 | .octicon-repo-clone:before { 755 | content: '\f04c' 756 | } 757 | 758 | /*  */ 759 | .octicon-repo-force-push:before { 760 | content: '\f04a' 761 | } 762 | 763 | /*  */ 764 | .octicon-gist-fork:before, 765 | .octicon-repo-forked:before { 766 | content: '\f002' 767 | } 768 | 769 | /*  */ 770 | .octicon-repo-pull:before { 771 | content: '\f006' 772 | } 773 | 774 | /*  */ 775 | .octicon-repo-push:before { 776 | content: '\f005' 777 | } 778 | 779 | /*  */ 780 | .octicon-rocket:before { 781 | content: '\f033' 782 | } 783 | 784 | /*  */ 785 | .octicon-rss:before { 786 | content: '\f034' 787 | } 788 | 789 | /*  */ 790 | .octicon-ruby:before { 791 | content: '\f047' 792 | } 793 | 794 | /*  */ 795 | .octicon-screen-full:before { 796 | content: '\f066' 797 | } 798 | 799 | /*  */ 800 | .octicon-screen-normal:before { 801 | content: '\f067' 802 | } 803 | 804 | /*  */ 805 | .octicon-search-save:before, 806 | .octicon-search:before { 807 | content: '\f02e' 808 | } 809 | 810 | /*  */ 811 | .octicon-server:before { 812 | content: '\f097' 813 | } 814 | 815 | /*  */ 816 | .octicon-settings:before { 817 | content: '\f07c' 818 | } 819 | 820 | /*  */ 821 | .octicon-log-in:before, 822 | .octicon-sign-in:before { 823 | content: '\f036' 824 | } 825 | 826 | /*  */ 827 | .octicon-log-out:before, 828 | .octicon-sign-out:before { 829 | content: '\f032' 830 | } 831 | 832 | /*  */ 833 | .octicon-split:before { 834 | content: '\f0c6' 835 | } 836 | 837 | /*  */ 838 | .octicon-squirrel:before { 839 | content: '\f0b2' 840 | } 841 | 842 | /*  */ 843 | .octicon-star-add:before, 844 | .octicon-star-delete:before, 845 | .octicon-star:before { 846 | content: '\f02a' 847 | } 848 | 849 | /*  */ 850 | .octicon-steps:before { 851 | content: '\f0c7' 852 | } 853 | 854 | /*  */ 855 | .octicon-stop:before { 856 | content: '\f08f' 857 | } 858 | 859 | /*  */ 860 | .octicon-repo-sync:before, 861 | .octicon-sync:before { 862 | content: '\f087' 863 | } 864 | 865 | /*  */ 866 | .octicon-tag-remove:before, 867 | .octicon-tag-add:before, 868 | .octicon-tag:before { 869 | content: '\f015' 870 | } 871 | 872 | /*  */ 873 | .octicon-telescope:before { 874 | content: '\f088' 875 | } 876 | 877 | /*  */ 878 | .octicon-terminal:before { 879 | content: '\f0c8' 880 | } 881 | 882 | /*  */ 883 | .octicon-three-bars:before { 884 | content: '\f05e' 885 | } 886 | 887 | /*  */ 888 | .octicon-tools:before { 889 | content: '\f031' 890 | } 891 | 892 | /*  */ 893 | .octicon-trashcan:before { 894 | content: '\f0d0' 895 | } 896 | 897 | /*  */ 898 | .octicon-triangle-down:before { 899 | content: '\f05b' 900 | } 901 | 902 | /*  */ 903 | .octicon-triangle-left:before { 904 | content: '\f044' 905 | } 906 | 907 | /*  */ 908 | .octicon-triangle-right:before { 909 | content: '\f05a' 910 | } 911 | 912 | /*  */ 913 | .octicon-triangle-up:before { 914 | content: '\f0aa' 915 | } 916 | 917 | /*  */ 918 | .octicon-unfold:before { 919 | content: '\f039' 920 | } 921 | 922 | /*  */ 923 | .octicon-unmute:before { 924 | content: '\f0ba' 925 | } 926 | 927 | /*  */ 928 | .octicon-versions:before { 929 | content: '\f064' 930 | } 931 | 932 | /*  */ 933 | .octicon-remove-close:before, 934 | .octicon-x:before { 935 | content: '\f081' 936 | } 937 | 938 | /*  */ 939 | .octicon-zap:before { 940 | content: '\26A1' 941 | } 942 | 943 | /* ⚡ */ 944 | -------------------------------------------------------------------------------- /src/lib/elusive/css/elusive-icons.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Elusive Icons 2.0.0 by @ReduxFramework - http://elusiveicons.com - @reduxframework 3 | * License - http://elusiveicons.com/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | /* FONT PATH 6 | * -------------------------- */ 7 | @font-face { 8 | font-family: 'Elusive-Icons'; 9 | src: url('../fonts/elusiveicons-webfont.eot?v=2.0.0'); 10 | src: url('../fonts/elusiveicons-webfont.eot?#iefix&v=2.0.0') format('embedded-opentype'), url('../fonts/elusiveicons-webfont.woff?v=2.0.0') format('woff'), url('../fonts/elusiveicons-webfont.ttf?v=2.0.0') format('truetype'), url('../fonts/elusiveicons-webfont.svg?v=2.0.0#elusiveiconsregular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | .el { 15 | display: inline-block; 16 | font: normal normal normal 14px/1 'Elusive-Icons'; 17 | font-size: inherit; 18 | text-rendering: auto; 19 | -webkit-font-smoothing: antialiased; 20 | -moz-osx-font-smoothing: grayscale; 21 | transform: translate(0, 0); 22 | } 23 | /* makes the font 33% larger relative to the icon container */ 24 | .el-lg { 25 | font-size: 1.33333333em; 26 | line-height: 0.75em; 27 | vertical-align: -15%; 28 | } 29 | .el-2x { 30 | font-size: 2em; 31 | } 32 | .el-3x { 33 | font-size: 3em; 34 | } 35 | .el-4x { 36 | font-size: 4em; 37 | } 38 | .el-5x { 39 | font-size: 5em; 40 | } 41 | .el-fw { 42 | width: 1.28571429em; 43 | text-align: center; 44 | } 45 | .el-ul { 46 | padding-left: 0; 47 | margin-left: 2.14285714em; 48 | list-style-type: none; 49 | } 50 | .el-ul > li { 51 | position: relative; 52 | } 53 | .el-li { 54 | position: absolute; 55 | left: -2.14285714em; 56 | width: 2.14285714em; 57 | top: 0.14285714em; 58 | text-align: center; 59 | } 60 | .el-li.el-lg { 61 | left: -1.85714286em; 62 | } 63 | .el-border { 64 | padding: .2em .25em .15em; 65 | border: solid 0.08em #eeeeee; 66 | border-radius: .1em; 67 | } 68 | .pull-right { 69 | float: right; 70 | } 71 | .pull-left { 72 | float: left; 73 | } 74 | .el.pull-left { 75 | margin-right: .3em; 76 | } 77 | .el.pull-right { 78 | margin-left: .3em; 79 | } 80 | .el-spin { 81 | -webkit-animation: el-spin 2s infinite linear; 82 | animation: el-spin 2s infinite linear; 83 | } 84 | .el-pulse { 85 | -webkit-animation: el-spin 1s infinite steps(8); 86 | animation: el-spin 1s infinite steps(8); 87 | } 88 | @-webkit-keyframes el-spin { 89 | 0% { 90 | -webkit-transform: rotate(0deg); 91 | transform: rotate(0deg); 92 | } 93 | 100% { 94 | -webkit-transform: rotate(359deg); 95 | transform: rotate(359deg); 96 | } 97 | } 98 | @keyframes el-spin { 99 | 0% { 100 | -webkit-transform: rotate(0deg); 101 | transform: rotate(0deg); 102 | } 103 | 100% { 104 | -webkit-transform: rotate(359deg); 105 | transform: rotate(359deg); 106 | } 107 | } 108 | .el-rotate-90 { 109 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 110 | -webkit-transform: rotate(90deg); 111 | -ms-transform: rotate(90deg); 112 | transform: rotate(90deg); 113 | } 114 | .el-rotate-180 { 115 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 116 | -webkit-transform: rotate(180deg); 117 | -ms-transform: rotate(180deg); 118 | transform: rotate(180deg); 119 | } 120 | .el-rotate-270 { 121 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 122 | -webkit-transform: rotate(270deg); 123 | -ms-transform: rotate(270deg); 124 | transform: rotate(270deg); 125 | } 126 | .el-flip-horizontal { 127 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); 128 | -webkit-transform: scale(-1, 1); 129 | -ms-transform: scale(-1, 1); 130 | transform: scale(-1, 1); 131 | } 132 | .el-flip-vertical { 133 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); 134 | -webkit-transform: scale(1, -1); 135 | -ms-transform: scale(1, -1); 136 | transform: scale(1, -1); 137 | } 138 | :root .el-rotate-90, 139 | :root .el-rotate-180, 140 | :root .el-rotate-270, 141 | :root .el-flip-horizontal, 142 | :root .el-flip-vertical { 143 | filter: none; 144 | } 145 | .el-stack { 146 | position: relative; 147 | display: inline-block; 148 | width: 2em; 149 | height: 2em; 150 | line-height: 2em; 151 | vertical-align: middle; 152 | } 153 | .el-stack-1x, 154 | .el-stack-2x { 155 | position: absolute; 156 | left: 0; 157 | width: 100%; 158 | text-align: center; 159 | } 160 | .el-stack-1x { 161 | line-height: inherit; 162 | } 163 | .el-stack-2x { 164 | font-size: 2em; 165 | } 166 | .el-inverse { 167 | color: #ffffff; 168 | } 169 | /* Elusive Icons uses the Unicode Private Use Area (PUA) to ensure screen 170 | readers do not read off random characters that represent icons */ 171 | .el-address-book-alt:before { 172 | content: "\f101"; 173 | } 174 | .el-address-book:before { 175 | content: "\f102"; 176 | } 177 | .el-adjust-alt:before { 178 | content: "\f103"; 179 | } 180 | .el-adjust:before { 181 | content: "\f104"; 182 | } 183 | .el-adult:before { 184 | content: "\f105"; 185 | } 186 | .el-align-center:before { 187 | content: "\f106"; 188 | } 189 | .el-align-justify:before { 190 | content: "\f107"; 191 | } 192 | .el-align-left:before { 193 | content: "\f108"; 194 | } 195 | .el-align-right:before { 196 | content: "\f109"; 197 | } 198 | .el-arrow-down:before { 199 | content: "\f10a"; 200 | } 201 | .el-arrow-left:before { 202 | content: "\f10b"; 203 | } 204 | .el-arrow-right:before { 205 | content: "\f10c"; 206 | } 207 | .el-arrow-up:before { 208 | content: "\f10d"; 209 | } 210 | .el-asl:before { 211 | content: "\f10e"; 212 | } 213 | .el-asterisk:before { 214 | content: "\f10f"; 215 | } 216 | .el-backward:before { 217 | content: "\f110"; 218 | } 219 | .el-ban-circle:before { 220 | content: "\f111"; 221 | } 222 | .el-barcode:before { 223 | content: "\f112"; 224 | } 225 | .el-behance:before { 226 | content: "\f113"; 227 | } 228 | .el-bell:before { 229 | content: "\f114"; 230 | } 231 | .el-blind:before { 232 | content: "\f115"; 233 | } 234 | .el-blogger:before { 235 | content: "\f116"; 236 | } 237 | .el-bold:before { 238 | content: "\f117"; 239 | } 240 | .el-book:before { 241 | content: "\f118"; 242 | } 243 | .el-bookmark-empty:before { 244 | content: "\f119"; 245 | } 246 | .el-bookmark:before { 247 | content: "\f11a"; 248 | } 249 | .el-braille:before { 250 | content: "\f11b"; 251 | } 252 | .el-briefcase:before { 253 | content: "\f11c"; 254 | } 255 | .el-broom:before { 256 | content: "\f11d"; 257 | } 258 | .el-brush:before { 259 | content: "\f11e"; 260 | } 261 | .el-bulb:before { 262 | content: "\f11f"; 263 | } 264 | .el-bullhorn:before { 265 | content: "\f120"; 266 | } 267 | .el-calendar-sign:before { 268 | content: "\f121"; 269 | } 270 | .el-calendar:before { 271 | content: "\f122"; 272 | } 273 | .el-camera:before { 274 | content: "\f123"; 275 | } 276 | .el-car:before { 277 | content: "\f124"; 278 | } 279 | .el-caret-down:before { 280 | content: "\f125"; 281 | } 282 | .el-caret-left:before { 283 | content: "\f126"; 284 | } 285 | .el-caret-right:before { 286 | content: "\f127"; 287 | } 288 | .el-caret-up:before { 289 | content: "\f128"; 290 | } 291 | .el-cc:before { 292 | content: "\f129"; 293 | } 294 | .el-certificate:before { 295 | content: "\f12a"; 296 | } 297 | .el-check-empty:before { 298 | content: "\f12b"; 299 | } 300 | .el-check:before { 301 | content: "\f12c"; 302 | } 303 | .el-chevron-down:before { 304 | content: "\f12d"; 305 | } 306 | .el-chevron-left:before { 307 | content: "\f12e"; 308 | } 309 | .el-chevron-right:before { 310 | content: "\f12f"; 311 | } 312 | .el-chevron-up:before { 313 | content: "\f130"; 314 | } 315 | .el-child:before { 316 | content: "\f131"; 317 | } 318 | .el-circle-arrow-down:before { 319 | content: "\f132"; 320 | } 321 | .el-circle-arrow-left:before { 322 | content: "\f133"; 323 | } 324 | .el-circle-arrow-right:before { 325 | content: "\f134"; 326 | } 327 | .el-circle-arrow-up:before { 328 | content: "\f135"; 329 | } 330 | .el-cloud-alt:before { 331 | content: "\f136"; 332 | } 333 | .el-cloud:before { 334 | content: "\f137"; 335 | } 336 | .el-cog-alt:before { 337 | content: "\f138"; 338 | } 339 | .el-cog:before { 340 | content: "\f139"; 341 | } 342 | .el-cogs:before { 343 | content: "\f13a"; 344 | } 345 | .el-comment-alt:before { 346 | content: "\f13b"; 347 | } 348 | .el-comment:before { 349 | content: "\f13c"; 350 | } 351 | .el-compass-alt:before { 352 | content: "\f13d"; 353 | } 354 | .el-compass:before { 355 | content: "\f13e"; 356 | } 357 | .el-credit-card:before { 358 | content: "\f13f"; 359 | } 360 | .el-css:before { 361 | content: "\f140"; 362 | } 363 | .el-dashboard:before { 364 | content: "\f141"; 365 | } 366 | .el-delicious:before { 367 | content: "\f142"; 368 | } 369 | .el-deviantart:before { 370 | content: "\f143"; 371 | } 372 | .el-digg:before { 373 | content: "\f144"; 374 | } 375 | .el-download-alt:before { 376 | content: "\f145"; 377 | } 378 | .el-download:before { 379 | content: "\f146"; 380 | } 381 | .el-dribbble:before { 382 | content: "\f147"; 383 | } 384 | .el-edit:before { 385 | content: "\f148"; 386 | } 387 | .el-eject:before { 388 | content: "\f149"; 389 | } 390 | .el-envelope-alt:before { 391 | content: "\f14a"; 392 | } 393 | .el-envelope:before { 394 | content: "\f14b"; 395 | } 396 | .el-error-alt:before { 397 | content: "\f14c"; 398 | } 399 | .el-error:before { 400 | content: "\f14d"; 401 | } 402 | .el-eur:before { 403 | content: "\f14e"; 404 | } 405 | .el-exclamation-sign:before { 406 | content: "\f14f"; 407 | } 408 | .el-eye-close:before { 409 | content: "\f150"; 410 | } 411 | .el-eye-open:before { 412 | content: "\f151"; 413 | } 414 | .el-facebook:before { 415 | content: "\f152"; 416 | } 417 | .el-facetime-video:before { 418 | content: "\f153"; 419 | } 420 | .el-fast-backward:before { 421 | content: "\f154"; 422 | } 423 | .el-fast-forward:before { 424 | content: "\f155"; 425 | } 426 | .el-female:before { 427 | content: "\f156"; 428 | } 429 | .el-file-alt:before { 430 | content: "\f157"; 431 | } 432 | .el-file-edit-alt:before { 433 | content: "\f158"; 434 | } 435 | .el-file-edit:before { 436 | content: "\f159"; 437 | } 438 | .el-file-new-alt:before { 439 | content: "\f15a"; 440 | } 441 | .el-file-new:before { 442 | content: "\f15b"; 443 | } 444 | .el-file:before { 445 | content: "\f15c"; 446 | } 447 | .el-film:before { 448 | content: "\f15d"; 449 | } 450 | .el-filter:before { 451 | content: "\f15e"; 452 | } 453 | .el-fire:before { 454 | content: "\f15f"; 455 | } 456 | .el-flag-alt:before { 457 | content: "\f160"; 458 | } 459 | .el-flag:before { 460 | content: "\f161"; 461 | } 462 | .el-flickr:before { 463 | content: "\f162"; 464 | } 465 | .el-folder-close:before { 466 | content: "\f163"; 467 | } 468 | .el-folder-open:before { 469 | content: "\f164"; 470 | } 471 | .el-folder-sign:before { 472 | content: "\f165"; 473 | } 474 | .el-folder:before { 475 | content: "\f166"; 476 | } 477 | .el-font:before { 478 | content: "\f167"; 479 | } 480 | .el-fontsize:before { 481 | content: "\f168"; 482 | } 483 | .el-fork:before { 484 | content: "\f169"; 485 | } 486 | .el-forward-alt:before { 487 | content: "\f16a"; 488 | } 489 | .el-forward:before { 490 | content: "\f16b"; 491 | } 492 | .el-foursquare:before { 493 | content: "\f16c"; 494 | } 495 | .el-friendfeed-rect:before { 496 | content: "\f16d"; 497 | } 498 | .el-friendfeed:before { 499 | content: "\f16e"; 500 | } 501 | .el-fullscreen:before { 502 | content: "\f16f"; 503 | } 504 | .el-gbp:before { 505 | content: "\f170"; 506 | } 507 | .el-gift:before { 508 | content: "\f171"; 509 | } 510 | .el-github-text:before { 511 | content: "\f172"; 512 | } 513 | .el-github:before { 514 | content: "\f173"; 515 | } 516 | .el-glass:before { 517 | content: "\f174"; 518 | } 519 | .el-glasses:before { 520 | content: "\f175"; 521 | } 522 | .el-globe-alt:before { 523 | content: "\f176"; 524 | } 525 | .el-globe:before { 526 | content: "\f177"; 527 | } 528 | .el-googleplus:before { 529 | content: "\f178"; 530 | } 531 | .el-graph-alt:before { 532 | content: "\f179"; 533 | } 534 | .el-graph:before { 535 | content: "\f17a"; 536 | } 537 | .el-group-alt:before { 538 | content: "\f17b"; 539 | } 540 | .el-group:before { 541 | content: "\f17c"; 542 | } 543 | .el-guidedog:before { 544 | content: "\f17d"; 545 | } 546 | .el-hand-down:before { 547 | content: "\f17e"; 548 | } 549 | .el-hand-left:before { 550 | content: "\f17f"; 551 | } 552 | .el-hand-right:before { 553 | content: "\f180"; 554 | } 555 | .el-hand-up:before { 556 | content: "\f181"; 557 | } 558 | .el-hdd:before { 559 | content: "\f182"; 560 | } 561 | .el-headphones:before { 562 | content: "\f183"; 563 | } 564 | .el-hearing-impaired:before { 565 | content: "\f184"; 566 | } 567 | .el-heart-alt:before { 568 | content: "\f185"; 569 | } 570 | .el-heart-empty:before { 571 | content: "\f186"; 572 | } 573 | .el-heart:before { 574 | content: "\f187"; 575 | } 576 | .el-home-alt:before { 577 | content: "\f188"; 578 | } 579 | .el-home:before { 580 | content: "\f189"; 581 | } 582 | .el-hourglass:before { 583 | content: "\f18a"; 584 | } 585 | .el-idea-alt:before { 586 | content: "\f18b"; 587 | } 588 | .el-idea:before { 589 | content: "\f18c"; 590 | } 591 | .el-inbox-alt:before { 592 | content: "\f18d"; 593 | } 594 | .el-inbox-box:before { 595 | content: "\f18e"; 596 | } 597 | .el-inbox:before { 598 | content: "\f18f"; 599 | } 600 | .el-indent-left:before { 601 | content: "\f190"; 602 | } 603 | .el-indent-right:before { 604 | content: "\f191"; 605 | } 606 | .el-info-circle:before { 607 | content: "\f192"; 608 | } 609 | .el-instagram:before { 610 | content: "\f193"; 611 | } 612 | .el-iphone-home:before { 613 | content: "\f194"; 614 | } 615 | .el-italic:before { 616 | content: "\f195"; 617 | } 618 | .el-key:before { 619 | content: "\f196"; 620 | } 621 | .el-laptop-alt:before { 622 | content: "\f197"; 623 | } 624 | .el-laptop:before { 625 | content: "\f198"; 626 | } 627 | .el-lastfm:before { 628 | content: "\f199"; 629 | } 630 | .el-leaf:before { 631 | content: "\f19a"; 632 | } 633 | .el-lines:before { 634 | content: "\f19b"; 635 | } 636 | .el-link:before { 637 | content: "\f19c"; 638 | } 639 | .el-linkedin:before { 640 | content: "\f19d"; 641 | } 642 | .el-list-alt:before { 643 | content: "\f19e"; 644 | } 645 | .el-list:before { 646 | content: "\f19f"; 647 | } 648 | .el-livejournal:before { 649 | content: "\f1a0"; 650 | } 651 | .el-lock-alt:before { 652 | content: "\f1a1"; 653 | } 654 | .el-lock:before { 655 | content: "\f1a2"; 656 | } 657 | .el-magic:before { 658 | content: "\f1a3"; 659 | } 660 | .el-magnet:before { 661 | content: "\f1a4"; 662 | } 663 | .el-male:before { 664 | content: "\f1a5"; 665 | } 666 | .el-map-marker-alt:before { 667 | content: "\f1a6"; 668 | } 669 | .el-map-marker:before { 670 | content: "\f1a7"; 671 | } 672 | .el-mic-alt:before { 673 | content: "\f1a8"; 674 | } 675 | .el-mic:before { 676 | content: "\f1a9"; 677 | } 678 | .el-minus-sign:before { 679 | content: "\f1aa"; 680 | } 681 | .el-minus:before { 682 | content: "\f1ab"; 683 | } 684 | .el-move:before { 685 | content: "\f1ac"; 686 | } 687 | .el-music:before { 688 | content: "\f1ad"; 689 | } 690 | .el-myspace:before { 691 | content: "\f1ae"; 692 | } 693 | .el-network:before { 694 | content: "\f1af"; 695 | } 696 | .el-off:before { 697 | content: "\f1b0"; 698 | } 699 | .el-ok-circle:before { 700 | content: "\f1b1"; 701 | } 702 | .el-ok-sign:before { 703 | content: "\f1b2"; 704 | } 705 | .el-ok:before { 706 | content: "\f1b3"; 707 | } 708 | .el-opensource:before { 709 | content: "\f1b4"; 710 | } 711 | .el-paper-clip-alt:before { 712 | content: "\f1b5"; 713 | } 714 | .el-paper-clip:before { 715 | content: "\f1b6"; 716 | } 717 | .el-path:before { 718 | content: "\f1b7"; 719 | } 720 | .el-pause-alt:before { 721 | content: "\f1b8"; 722 | } 723 | .el-pause:before { 724 | content: "\f1b9"; 725 | } 726 | .el-pencil-alt:before { 727 | content: "\f1ba"; 728 | } 729 | .el-pencil:before { 730 | content: "\f1bb"; 731 | } 732 | .el-person:before { 733 | content: "\f1bc"; 734 | } 735 | .el-phone-alt:before { 736 | content: "\f1bd"; 737 | } 738 | .el-phone:before { 739 | content: "\f1be"; 740 | } 741 | .el-photo-alt:before { 742 | content: "\f1bf"; 743 | } 744 | .el-photo:before { 745 | content: "\f1c0"; 746 | } 747 | .el-picasa:before { 748 | content: "\f1c1"; 749 | } 750 | .el-picture:before { 751 | content: "\f1c2"; 752 | } 753 | .el-pinterest:before { 754 | content: "\f1c3"; 755 | } 756 | .el-plane:before { 757 | content: "\f1c4"; 758 | } 759 | .el-play-alt:before { 760 | content: "\f1c5"; 761 | } 762 | .el-play-circle:before { 763 | content: "\f1c6"; 764 | } 765 | .el-play:before { 766 | content: "\f1c7"; 767 | } 768 | .el-plurk-alt:before { 769 | content: "\f1c8"; 770 | } 771 | .el-plurk:before { 772 | content: "\f1c9"; 773 | } 774 | .el-plus-sign:before { 775 | content: "\f1ca"; 776 | } 777 | .el-plus:before { 778 | content: "\f1cb"; 779 | } 780 | .el-podcast:before { 781 | content: "\f1cc"; 782 | } 783 | .el-print:before { 784 | content: "\f1cd"; 785 | } 786 | .el-puzzle:before { 787 | content: "\f1ce"; 788 | } 789 | .el-qrcode:before { 790 | content: "\f1cf"; 791 | } 792 | .el-question-sign:before { 793 | content: "\f1d0"; 794 | } 795 | .el-question:before { 796 | content: "\f1d1"; 797 | } 798 | .el-quote-alt:before { 799 | content: "\f1d2"; 800 | } 801 | .el-quote-right-alt:before { 802 | content: "\f1d3"; 803 | } 804 | .el-quote-right:before { 805 | content: "\f1d4"; 806 | } 807 | .el-quotes:before { 808 | content: "\f1d5"; 809 | } 810 | .el-random:before { 811 | content: "\f1d6"; 812 | } 813 | .el-record:before { 814 | content: "\f1d7"; 815 | } 816 | .el-reddit:before { 817 | content: "\f1d8"; 818 | } 819 | .el-redux:before { 820 | content: "\f1d9"; 821 | } 822 | .el-refresh:before { 823 | content: "\f1da"; 824 | } 825 | .el-remove-circle:before { 826 | content: "\f1db"; 827 | } 828 | .el-remove-sign:before { 829 | content: "\f1dc"; 830 | } 831 | .el-remove:before { 832 | content: "\f1dd"; 833 | } 834 | .el-repeat-alt:before { 835 | content: "\f1de"; 836 | } 837 | .el-repeat:before { 838 | content: "\f1df"; 839 | } 840 | .el-resize-full:before { 841 | content: "\f1e0"; 842 | } 843 | .el-resize-horizontal:before { 844 | content: "\f1e1"; 845 | } 846 | .el-resize-small:before { 847 | content: "\f1e2"; 848 | } 849 | .el-resize-vertical:before { 850 | content: "\f1e3"; 851 | } 852 | .el-return-key:before { 853 | content: "\f1e4"; 854 | } 855 | .el-retweet:before { 856 | content: "\f1e5"; 857 | } 858 | .el-reverse-alt:before { 859 | content: "\f1e6"; 860 | } 861 | .el-road:before { 862 | content: "\f1e7"; 863 | } 864 | .el-rss:before { 865 | content: "\f1e8"; 866 | } 867 | .el-scissors:before { 868 | content: "\f1e9"; 869 | } 870 | .el-screen-alt:before { 871 | content: "\f1ea"; 872 | } 873 | .el-screen:before { 874 | content: "\f1eb"; 875 | } 876 | .el-screenshot:before { 877 | content: "\f1ec"; 878 | } 879 | .el-search-alt:before { 880 | content: "\f1ed"; 881 | } 882 | .el-search:before { 883 | content: "\f1ee"; 884 | } 885 | .el-share-alt:before { 886 | content: "\f1ef"; 887 | } 888 | .el-share:before { 889 | content: "\f1f0"; 890 | } 891 | .el-shopping-cart-sign:before { 892 | content: "\f1f1"; 893 | } 894 | .el-shopping-cart:before { 895 | content: "\f1f2"; 896 | } 897 | .el-signal:before { 898 | content: "\f1f3"; 899 | } 900 | .el-skype:before { 901 | content: "\f1f4"; 902 | } 903 | .el-slideshare:before { 904 | content: "\f1f5"; 905 | } 906 | .el-smiley-alt:before { 907 | content: "\f1f6"; 908 | } 909 | .el-smiley:before { 910 | content: "\f1f7"; 911 | } 912 | .el-soundcloud:before { 913 | content: "\f1f8"; 914 | } 915 | .el-speaker:before { 916 | content: "\f1f9"; 917 | } 918 | .el-spotify:before { 919 | content: "\f1fa"; 920 | } 921 | .el-stackoverflow:before { 922 | content: "\f1fb"; 923 | } 924 | .el-star-alt:before { 925 | content: "\f1fc"; 926 | } 927 | .el-star-empty:before { 928 | content: "\f1fd"; 929 | } 930 | .el-star:before { 931 | content: "\f1fe"; 932 | } 933 | .el-step-backward:before { 934 | content: "\f1ff"; 935 | } 936 | .el-step-forward:before { 937 | content: "\f200"; 938 | } 939 | .el-stop-alt:before { 940 | content: "\f201"; 941 | } 942 | .el-stop:before { 943 | content: "\f202"; 944 | } 945 | .el-stumbleupon:before { 946 | content: "\f203"; 947 | } 948 | .el-tag:before { 949 | content: "\f204"; 950 | } 951 | .el-tags:before { 952 | content: "\f205"; 953 | } 954 | .el-tasks:before { 955 | content: "\f206"; 956 | } 957 | .el-text-height:before { 958 | content: "\f207"; 959 | } 960 | .el-text-width:before { 961 | content: "\f208"; 962 | } 963 | .el-th-large:before { 964 | content: "\f209"; 965 | } 966 | .el-th-list:before { 967 | content: "\f20a"; 968 | } 969 | .el-th:before { 970 | content: "\f20b"; 971 | } 972 | .el-thumbs-down:before { 973 | content: "\f20c"; 974 | } 975 | .el-thumbs-up:before { 976 | content: "\f20d"; 977 | } 978 | .el-time-alt:before { 979 | content: "\f20e"; 980 | } 981 | .el-time:before { 982 | content: "\f20f"; 983 | } 984 | .el-tint:before { 985 | content: "\f210"; 986 | } 987 | .el-torso:before { 988 | content: "\f211"; 989 | } 990 | .el-trash-alt:before { 991 | content: "\f212"; 992 | } 993 | .el-trash:before { 994 | content: "\f213"; 995 | } 996 | .el-tumblr:before { 997 | content: "\f214"; 998 | } 999 | .el-twitter:before { 1000 | content: "\f215"; 1001 | } 1002 | .el-universal-access:before { 1003 | content: "\f216"; 1004 | } 1005 | .el-unlock-alt:before { 1006 | content: "\f217"; 1007 | } 1008 | .el-unlock:before { 1009 | content: "\f218"; 1010 | } 1011 | .el-upload:before { 1012 | content: "\f219"; 1013 | } 1014 | .el-usd:before { 1015 | content: "\f21a"; 1016 | } 1017 | .el-user:before { 1018 | content: "\f21b"; 1019 | } 1020 | .el-viadeo:before { 1021 | content: "\f21c"; 1022 | } 1023 | .el-video-alt:before { 1024 | content: "\f21d"; 1025 | } 1026 | .el-video-chat:before { 1027 | content: "\f21e"; 1028 | } 1029 | .el-video:before { 1030 | content: "\f21f"; 1031 | } 1032 | .el-view-mode:before { 1033 | content: "\f220"; 1034 | } 1035 | .el-vimeo:before { 1036 | content: "\f221"; 1037 | } 1038 | .el-vkontakte:before { 1039 | content: "\f222"; 1040 | } 1041 | .el-volume-down:before { 1042 | content: "\f223"; 1043 | } 1044 | .el-volume-off:before { 1045 | content: "\f224"; 1046 | } 1047 | .el-volume-up:before { 1048 | content: "\f225"; 1049 | } 1050 | .el-w3c:before { 1051 | content: "\f226"; 1052 | } 1053 | .el-warning-sign:before { 1054 | content: "\f227"; 1055 | } 1056 | .el-website-alt:before { 1057 | content: "\f228"; 1058 | } 1059 | .el-website:before { 1060 | content: "\f229"; 1061 | } 1062 | .el-wheelchair:before { 1063 | content: "\f22a"; 1064 | } 1065 | .el-wordpress:before { 1066 | content: "\f22b"; 1067 | } 1068 | .el-wrench-alt:before { 1069 | content: "\f22c"; 1070 | } 1071 | .el-wrench:before { 1072 | content: "\f22d"; 1073 | } 1074 | .el-youtube:before { 1075 | content: "\f22e"; 1076 | } 1077 | .el-zoom-in:before { 1078 | content: "\f22f"; 1079 | } 1080 | .el-zoom-out:before { 1081 | content: "\f230"; 1082 | } 1083 | -------------------------------------------------------------------------------- /src/lib/typicons/css/typicons.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | /* @FONT-FACE loads font into browser */ 4 | @font-face { 5 | font-family: 'typicons'; 6 | font-weight: normal; 7 | font-style: normal; 8 | src: url('../font/typicons.eot'); 9 | src: url('../font/typicons.eot?#iefix') format('embedded-opentype'), 10 | url('../font/typicons.woff') format('woff'), 11 | url('../font/typicons.ttf') format('truetype'), 12 | url('../font/typicons.svg#typicons') format('svg'); 13 | } 14 | 15 | /* :before psuedo-selector inserts and styles icon */ 16 | .typcn:before { 17 | font-family: 'typicons'; 18 | font-style: normal; 19 | font-weight: normal; 20 | speak: none; 21 | display: inline-block; 22 | text-decoration: inherit; 23 | width: 1em; 24 | height: 1em; 25 | font-size: 1em; 26 | text-align: center; 27 | -webkit-font-smoothing: antialiased; 28 | font-smoothing: antialiased; 29 | text-rendering: optimizeLegibility; 30 | } 31 | 32 | /* Code for individual icons */ 33 | .typcn-adjust-brightness:before { 34 | content: '\e000'; /* '' */ 35 | } 36 | .typcn-adjust-contrast:before { 37 | content: '\e001'; /* '' */ 38 | } 39 | .typcn-anchor-outline:before { 40 | content: '\e002'; /* '' */ 41 | } 42 | .typcn-anchor:before { 43 | content: '\e003'; /* '' */ 44 | } 45 | .typcn-archive:before { 46 | content: '\e004'; /* '' */ 47 | } 48 | .typcn-arrow-back-outline:before { 49 | content: '\e005'; /* '' */ 50 | } 51 | .typcn-arrow-back:before { 52 | content: '\e006'; /* '' */ 53 | } 54 | .typcn-arrow-down-outline:before { 55 | content: '\e007'; /* '' */ 56 | } 57 | .typcn-arrow-down-thick:before { 58 | content: '\e008'; /* '' */ 59 | } 60 | .typcn-arrow-down:before { 61 | content: '\e009'; /* '' */ 62 | } 63 | .typcn-arrow-forward-outline:before { 64 | content: '\e00a'; /* '' */ 65 | } 66 | .typcn-arrow-forward:before { 67 | content: '\e00b'; /* '' */ 68 | } 69 | .typcn-arrow-left-outline:before { 70 | content: '\e00c'; /* '' */ 71 | } 72 | .typcn-arrow-left-thick:before { 73 | content: '\e00d'; /* '' */ 74 | } 75 | .typcn-arrow-left:before { 76 | content: '\e00e'; /* '' */ 77 | } 78 | .typcn-arrow-loop-outline:before { 79 | content: '\e00f'; /* '' */ 80 | } 81 | .typcn-arrow-loop:before { 82 | content: '\e010'; /* '' */ 83 | } 84 | .typcn-arrow-maximise-outline:before { 85 | content: '\e011'; /* '' */ 86 | } 87 | .typcn-arrow-maximise:before { 88 | content: '\e012'; /* '' */ 89 | } 90 | .typcn-arrow-minimise-outline:before { 91 | content: '\e013'; /* '' */ 92 | } 93 | .typcn-arrow-minimise:before { 94 | content: '\e014'; /* '' */ 95 | } 96 | .typcn-arrow-move-outline:before { 97 | content: '\e015'; /* '' */ 98 | } 99 | .typcn-arrow-move:before { 100 | content: '\e016'; /* '' */ 101 | } 102 | .typcn-arrow-repeat-outline:before { 103 | content: '\e017'; /* '' */ 104 | } 105 | .typcn-arrow-repeat:before { 106 | content: '\e018'; /* '' */ 107 | } 108 | .typcn-arrow-right-outline:before { 109 | content: '\e019'; /* '' */ 110 | } 111 | .typcn-arrow-right-thick:before { 112 | content: '\e01a'; /* '' */ 113 | } 114 | .typcn-arrow-right:before { 115 | content: '\e01b'; /* '' */ 116 | } 117 | .typcn-arrow-shuffle:before { 118 | content: '\e01c'; /* '' */ 119 | } 120 | .typcn-arrow-sorted-down:before { 121 | content: '\e01d'; /* '' */ 122 | } 123 | .typcn-arrow-sorted-up:before { 124 | content: '\e01e'; /* '' */ 125 | } 126 | .typcn-arrow-sync-outline:before { 127 | content: '\e01f'; /* '' */ 128 | } 129 | .typcn-arrow-sync:before { 130 | content: '\e020'; /* '' */ 131 | } 132 | .typcn-arrow-unsorted:before { 133 | content: '\e021'; /* '' */ 134 | } 135 | .typcn-arrow-up-outline:before { 136 | content: '\e022'; /* '' */ 137 | } 138 | .typcn-arrow-up-thick:before { 139 | content: '\e023'; /* '' */ 140 | } 141 | .typcn-arrow-up:before { 142 | content: '\e024'; /* '' */ 143 | } 144 | .typcn-at:before { 145 | content: '\e025'; /* '' */ 146 | } 147 | .typcn-attachment-outline:before { 148 | content: '\e026'; /* '' */ 149 | } 150 | .typcn-attachment:before { 151 | content: '\e027'; /* '' */ 152 | } 153 | .typcn-backspace-outline:before { 154 | content: '\e028'; /* '' */ 155 | } 156 | .typcn-backspace:before { 157 | content: '\e029'; /* '' */ 158 | } 159 | .typcn-battery-charge:before { 160 | content: '\e02a'; /* '' */ 161 | } 162 | .typcn-battery-full:before { 163 | content: '\e02b'; /* '' */ 164 | } 165 | .typcn-battery-high:before { 166 | content: '\e02c'; /* '' */ 167 | } 168 | .typcn-battery-low:before { 169 | content: '\e02d'; /* '' */ 170 | } 171 | .typcn-battery-mid:before { 172 | content: '\e02e'; /* '' */ 173 | } 174 | .typcn-beaker:before { 175 | content: '\e02f'; /* '' */ 176 | } 177 | .typcn-beer:before { 178 | content: '\e030'; /* '' */ 179 | } 180 | .typcn-bell:before { 181 | content: '\e031'; /* '' */ 182 | } 183 | .typcn-book:before { 184 | content: '\e032'; /* '' */ 185 | } 186 | .typcn-bookmark:before { 187 | content: '\e033'; /* '' */ 188 | } 189 | .typcn-briefcase:before { 190 | content: '\e034'; /* '' */ 191 | } 192 | .typcn-brush:before { 193 | content: '\e035'; /* '' */ 194 | } 195 | .typcn-business-card:before { 196 | content: '\e036'; /* '' */ 197 | } 198 | .typcn-calculator:before { 199 | content: '\e037'; /* '' */ 200 | } 201 | .typcn-calendar-outline:before { 202 | content: '\e038'; /* '' */ 203 | } 204 | .typcn-calendar:before { 205 | content: '\e039'; /* '' */ 206 | } 207 | .typcn-camera-outline:before { 208 | content: '\e03a'; /* '' */ 209 | } 210 | .typcn-camera:before { 211 | content: '\e03b'; /* '' */ 212 | } 213 | .typcn-cancel-outline:before { 214 | content: '\e03c'; /* '' */ 215 | } 216 | .typcn-cancel:before { 217 | content: '\e03d'; /* '' */ 218 | } 219 | .typcn-chart-area-outline:before { 220 | content: '\e03e'; /* '' */ 221 | } 222 | .typcn-chart-area:before { 223 | content: '\e03f'; /* '' */ 224 | } 225 | .typcn-chart-bar-outline:before { 226 | content: '\e040'; /* '' */ 227 | } 228 | .typcn-chart-bar:before { 229 | content: '\e041'; /* '' */ 230 | } 231 | .typcn-chart-line-outline:before { 232 | content: '\e042'; /* '' */ 233 | } 234 | .typcn-chart-line:before { 235 | content: '\e043'; /* '' */ 236 | } 237 | .typcn-chart-pie-outline:before { 238 | content: '\e044'; /* '' */ 239 | } 240 | .typcn-chart-pie:before { 241 | content: '\e045'; /* '' */ 242 | } 243 | .typcn-chevron-left-outline:before { 244 | content: '\e046'; /* '' */ 245 | } 246 | .typcn-chevron-left:before { 247 | content: '\e047'; /* '' */ 248 | } 249 | .typcn-chevron-right-outline:before { 250 | content: '\e048'; /* '' */ 251 | } 252 | .typcn-chevron-right:before { 253 | content: '\e049'; /* '' */ 254 | } 255 | .typcn-clipboard:before { 256 | content: '\e04a'; /* '' */ 257 | } 258 | .typcn-cloud-storage:before { 259 | content: '\e04b'; /* '' */ 260 | } 261 | .typcn-cloud-storage-outline:before { 262 | content: '\e054'; /* '' */ 263 | } 264 | .typcn-code-outline:before { 265 | content: '\e04c'; /* '' */ 266 | } 267 | .typcn-code:before { 268 | content: '\e04d'; /* '' */ 269 | } 270 | .typcn-coffee:before { 271 | content: '\e04e'; /* '' */ 272 | } 273 | .typcn-cog-outline:before { 274 | content: '\e04f'; /* '' */ 275 | } 276 | .typcn-cog:before { 277 | content: '\e050'; /* '' */ 278 | } 279 | .typcn-compass:before { 280 | content: '\e051'; /* '' */ 281 | } 282 | .typcn-contacts:before { 283 | content: '\e052'; /* '' */ 284 | } 285 | .typcn-credit-card:before { 286 | content: '\e053'; /* '' */ 287 | } 288 | .typcn-css3:before { 289 | content: '\e055'; /* '' */ 290 | } 291 | .typcn-database:before { 292 | content: '\e056'; /* '' */ 293 | } 294 | .typcn-delete-outline:before { 295 | content: '\e057'; /* '' */ 296 | } 297 | .typcn-delete:before { 298 | content: '\e058'; /* '' */ 299 | } 300 | .typcn-device-desktop:before { 301 | content: '\e059'; /* '' */ 302 | } 303 | .typcn-device-laptop:before { 304 | content: '\e05a'; /* '' */ 305 | } 306 | .typcn-device-phone:before { 307 | content: '\e05b'; /* '' */ 308 | } 309 | .typcn-device-tablet:before { 310 | content: '\e05c'; /* '' */ 311 | } 312 | .typcn-directions:before { 313 | content: '\e05d'; /* '' */ 314 | } 315 | .typcn-divide-outline:before { 316 | content: '\e05e'; /* '' */ 317 | } 318 | .typcn-divide:before { 319 | content: '\e05f'; /* '' */ 320 | } 321 | .typcn-document-add:before { 322 | content: '\e060'; /* '' */ 323 | } 324 | .typcn-document-delete:before { 325 | content: '\e061'; /* '' */ 326 | } 327 | .typcn-document-text:before { 328 | content: '\e062'; /* '' */ 329 | } 330 | .typcn-document:before { 331 | content: '\e063'; /* '' */ 332 | } 333 | .typcn-download-outline:before { 334 | content: '\e064'; /* '' */ 335 | } 336 | .typcn-download:before { 337 | content: '\e065'; /* '' */ 338 | } 339 | .typcn-dropbox:before { 340 | content: '\e066'; /* '' */ 341 | } 342 | .typcn-edit:before { 343 | content: '\e067'; /* '' */ 344 | } 345 | .typcn-eject-outline:before { 346 | content: '\e068'; /* '' */ 347 | } 348 | .typcn-eject:before { 349 | content: '\e069'; /* '' */ 350 | } 351 | .typcn-equals-outline:before { 352 | content: '\e06a'; /* '' */ 353 | } 354 | .typcn-equals:before { 355 | content: '\e06b'; /* '' */ 356 | } 357 | .typcn-export-outline:before { 358 | content: '\e06c'; /* '' */ 359 | } 360 | .typcn-export:before { 361 | content: '\e06d'; /* '' */ 362 | } 363 | .typcn-eye-outline:before { 364 | content: '\e06e'; /* '' */ 365 | } 366 | .typcn-eye:before { 367 | content: '\e06f'; /* '' */ 368 | } 369 | .typcn-feather:before { 370 | content: '\e070'; /* '' */ 371 | } 372 | .typcn-film:before { 373 | content: '\e071'; /* '' */ 374 | } 375 | .typcn-filter:before { 376 | content: '\e072'; /* '' */ 377 | } 378 | .typcn-flag-outline:before { 379 | content: '\e073'; /* '' */ 380 | } 381 | .typcn-flag:before { 382 | content: '\e074'; /* '' */ 383 | } 384 | .typcn-flash-outline:before { 385 | content: '\e075'; /* '' */ 386 | } 387 | .typcn-flash:before { 388 | content: '\e076'; /* '' */ 389 | } 390 | .typcn-flow-children:before { 391 | content: '\e077'; /* '' */ 392 | } 393 | .typcn-flow-merge:before { 394 | content: '\e078'; /* '' */ 395 | } 396 | .typcn-flow-parallel:before { 397 | content: '\e079'; /* '' */ 398 | } 399 | .typcn-flow-switch:before { 400 | content: '\e07a'; /* '' */ 401 | } 402 | .typcn-folder-add:before { 403 | content: '\e07b'; /* '' */ 404 | } 405 | .typcn-folder-delete:before { 406 | content: '\e07c'; /* '' */ 407 | } 408 | .typcn-folder-open:before { 409 | content: '\e07d'; /* '' */ 410 | } 411 | .typcn-folder:before { 412 | content: '\e07e'; /* '' */ 413 | } 414 | .typcn-gift:before { 415 | content: '\e07f'; /* '' */ 416 | } 417 | .typcn-globe-outline:before { 418 | content: '\e080'; /* '' */ 419 | } 420 | .typcn-globe:before { 421 | content: '\e081'; /* '' */ 422 | } 423 | .typcn-group-outline:before { 424 | content: '\e082'; /* '' */ 425 | } 426 | .typcn-group:before { 427 | content: '\e083'; /* '' */ 428 | } 429 | .typcn-headphones:before { 430 | content: '\e084'; /* '' */ 431 | } 432 | .typcn-heart-full-outline:before { 433 | content: '\e085'; /* '' */ 434 | } 435 | .typcn-heart-half-outline:before { 436 | content: '\e086'; /* '' */ 437 | } 438 | .typcn-heart-outline:before { 439 | content: '\e087'; /* '' */ 440 | } 441 | .typcn-heart:before { 442 | content: '\e088'; /* '' */ 443 | } 444 | .typcn-home-outline:before { 445 | content: '\e089'; /* '' */ 446 | } 447 | .typcn-home:before { 448 | content: '\e08a'; /* '' */ 449 | } 450 | .typcn-html5:before { 451 | content: '\e08b'; /* '' */ 452 | } 453 | .typcn-image-outline:before { 454 | content: '\e08c'; /* '' */ 455 | } 456 | .typcn-image:before { 457 | content: '\e08d'; /* '' */ 458 | } 459 | .typcn-infinity-outline:before { 460 | content: '\e08e'; /* '' */ 461 | } 462 | .typcn-infinity:before { 463 | content: '\e08f'; /* '' */ 464 | } 465 | .typcn-info-large-outline:before { 466 | content: '\e090'; /* '' */ 467 | } 468 | .typcn-info-large:before { 469 | content: '\e091'; /* '' */ 470 | } 471 | .typcn-info-outline:before { 472 | content: '\e092'; /* '' */ 473 | } 474 | .typcn-info:before { 475 | content: '\e093'; /* '' */ 476 | } 477 | .typcn-input-checked-outline:before { 478 | content: '\e094'; /* '' */ 479 | } 480 | .typcn-input-checked:before { 481 | content: '\e095'; /* '' */ 482 | } 483 | .typcn-key-outline:before { 484 | content: '\e096'; /* '' */ 485 | } 486 | .typcn-key:before { 487 | content: '\e097'; /* '' */ 488 | } 489 | .typcn-keyboard:before { 490 | content: '\e098'; /* '' */ 491 | } 492 | .typcn-leaf:before { 493 | content: '\e099'; /* '' */ 494 | } 495 | .typcn-lightbulb:before { 496 | content: '\e09a'; /* '' */ 497 | } 498 | .typcn-link-outline:before { 499 | content: '\e09b'; /* '' */ 500 | } 501 | .typcn-link:before { 502 | content: '\e09c'; /* '' */ 503 | } 504 | .typcn-location-arrow-outline:before { 505 | content: '\e09d'; /* '' */ 506 | } 507 | .typcn-location-arrow:before { 508 | content: '\e09e'; /* '' */ 509 | } 510 | .typcn-location-outline:before { 511 | content: '\e09f'; /* '' */ 512 | } 513 | .typcn-location:before { 514 | content: '\e0a0'; /* '' */ 515 | } 516 | .typcn-lock-closed-outline:before { 517 | content: '\e0a1'; /* '' */ 518 | } 519 | .typcn-lock-closed:before { 520 | content: '\e0a2'; /* '' */ 521 | } 522 | .typcn-lock-open-outline:before { 523 | content: '\e0a3'; /* '' */ 524 | } 525 | .typcn-lock-open:before { 526 | content: '\e0a4'; /* '' */ 527 | } 528 | .typcn-mail:before { 529 | content: '\e0a5'; /* '' */ 530 | } 531 | .typcn-map:before { 532 | content: '\e0a6'; /* '' */ 533 | } 534 | .typcn-media-eject-outline:before { 535 | content: '\e0a7'; /* '' */ 536 | } 537 | .typcn-media-eject:before { 538 | content: '\e0a8'; /* '' */ 539 | } 540 | .typcn-media-fast-forward-outline:before { 541 | content: '\e0a9'; /* '' */ 542 | } 543 | .typcn-media-fast-forward:before { 544 | content: '\e0aa'; /* '' */ 545 | } 546 | .typcn-media-pause-outline:before { 547 | content: '\e0ab'; /* '' */ 548 | } 549 | .typcn-media-pause:before { 550 | content: '\e0ac'; /* '' */ 551 | } 552 | .typcn-media-play-outline:before { 553 | content: '\e0ad'; /* '' */ 554 | } 555 | .typcn-media-play-reverse-outline:before { 556 | content: '\e0ae'; /* '' */ 557 | } 558 | .typcn-media-play-reverse:before { 559 | content: '\e0af'; /* '' */ 560 | } 561 | .typcn-media-play:before { 562 | content: '\e0b0'; /* '' */ 563 | } 564 | .typcn-media-record-outline:before { 565 | content: '\e0b1'; /* '' */ 566 | } 567 | .typcn-media-record:before { 568 | content: '\e0b2'; /* '' */ 569 | } 570 | .typcn-media-rewind-outline:before { 571 | content: '\e0b3'; /* '' */ 572 | } 573 | .typcn-media-rewind:before { 574 | content: '\e0b4'; /* '' */ 575 | } 576 | .typcn-media-stop-outline:before { 577 | content: '\e0b5'; /* '' */ 578 | } 579 | .typcn-media-stop:before { 580 | content: '\e0b6'; /* '' */ 581 | } 582 | .typcn-message-typing:before { 583 | content: '\e0b7'; /* '' */ 584 | } 585 | .typcn-message:before { 586 | content: '\e0b8'; /* '' */ 587 | } 588 | .typcn-messages:before { 589 | content: '\e0b9'; /* '' */ 590 | } 591 | .typcn-microphone-outline:before { 592 | content: '\e0ba'; /* '' */ 593 | } 594 | .typcn-microphone:before { 595 | content: '\e0bb'; /* '' */ 596 | } 597 | .typcn-minus-outline:before { 598 | content: '\e0bc'; /* '' */ 599 | } 600 | .typcn-minus:before { 601 | content: '\e0bd'; /* '' */ 602 | } 603 | .typcn-mortar-board:before { 604 | content: '\e0be'; /* '' */ 605 | } 606 | .typcn-news:before { 607 | content: '\e0bf'; /* '' */ 608 | } 609 | .typcn-notes-outline:before { 610 | content: '\e0c0'; /* '' */ 611 | } 612 | .typcn-notes:before { 613 | content: '\e0c1'; /* '' */ 614 | } 615 | .typcn-pen:before { 616 | content: '\e0c2'; /* '' */ 617 | } 618 | .typcn-pencil:before { 619 | content: '\e0c3'; /* '' */ 620 | } 621 | .typcn-phone-outline:before { 622 | content: '\e0c4'; /* '' */ 623 | } 624 | .typcn-phone:before { 625 | content: '\e0c5'; /* '' */ 626 | } 627 | .typcn-pi-outline:before { 628 | content: '\e0c6'; /* '' */ 629 | } 630 | .typcn-pi:before { 631 | content: '\e0c7'; /* '' */ 632 | } 633 | .typcn-pin-outline:before { 634 | content: '\e0c8'; /* '' */ 635 | } 636 | .typcn-pin:before { 637 | content: '\e0c9'; /* '' */ 638 | } 639 | .typcn-pipette:before { 640 | content: '\e0ca'; /* '' */ 641 | } 642 | .typcn-plane-outline:before { 643 | content: '\e0cb'; /* '' */ 644 | } 645 | .typcn-plane:before { 646 | content: '\e0cc'; /* '' */ 647 | } 648 | .typcn-plug:before { 649 | content: '\e0cd'; /* '' */ 650 | } 651 | .typcn-plus-outline:before { 652 | content: '\e0ce'; /* '' */ 653 | } 654 | .typcn-plus:before { 655 | content: '\e0cf'; /* '' */ 656 | } 657 | .typcn-point-of-interest-outline:before { 658 | content: '\e0d0'; /* '' */ 659 | } 660 | .typcn-point-of-interest:before { 661 | content: '\e0d1'; /* '' */ 662 | } 663 | .typcn-power-outline:before { 664 | content: '\e0d2'; /* '' */ 665 | } 666 | .typcn-power:before { 667 | content: '\e0d3'; /* '' */ 668 | } 669 | .typcn-printer:before { 670 | content: '\e0d4'; /* '' */ 671 | } 672 | .typcn-puzzle-outline:before { 673 | content: '\e0d5'; /* '' */ 674 | } 675 | .typcn-puzzle:before { 676 | content: '\e0d6'; /* '' */ 677 | } 678 | .typcn-radar-outline:before { 679 | content: '\e0d7'; /* '' */ 680 | } 681 | .typcn-radar:before { 682 | content: '\e0d8'; /* '' */ 683 | } 684 | .typcn-refresh-outline:before { 685 | content: '\e0d9'; /* '' */ 686 | } 687 | .typcn-refresh:before { 688 | content: '\e0da'; /* '' */ 689 | } 690 | .typcn-rss-outline:before { 691 | content: '\e0db'; /* '' */ 692 | } 693 | .typcn-rss:before { 694 | content: '\e0dc'; /* '' */ 695 | } 696 | .typcn-scissors-outline:before { 697 | content: '\e0dd'; /* '' */ 698 | } 699 | .typcn-scissors:before { 700 | content: '\e0de'; /* '' */ 701 | } 702 | .typcn-shopping-bag:before { 703 | content: '\e0df'; /* '' */ 704 | } 705 | .typcn-shopping-cart:before { 706 | content: '\e0e0'; /* '' */ 707 | } 708 | .typcn-social-at-circular:before { 709 | content: '\e0e1'; /* '' */ 710 | } 711 | .typcn-social-dribbble-circular:before { 712 | content: '\e0e2'; /* '' */ 713 | } 714 | .typcn-social-dribbble:before { 715 | content: '\e0e3'; /* '' */ 716 | } 717 | .typcn-social-facebook-circular:before { 718 | content: '\e0e4'; /* '' */ 719 | } 720 | .typcn-social-facebook:before { 721 | content: '\e0e5'; /* '' */ 722 | } 723 | .typcn-social-flickr-circular:before { 724 | content: '\e0e6'; /* '' */ 725 | } 726 | .typcn-social-flickr:before { 727 | content: '\e0e7'; /* '' */ 728 | } 729 | .typcn-social-github-circular:before { 730 | content: '\e0e8'; /* '' */ 731 | } 732 | .typcn-social-github:before { 733 | content: '\e0e9'; /* '' */ 734 | } 735 | .typcn-social-google-plus-circular:before { 736 | content: '\e0ea'; /* '' */ 737 | } 738 | .typcn-social-google-plus:before { 739 | content: '\e0eb'; /* '' */ 740 | } 741 | .typcn-social-instagram-circular:before { 742 | content: '\e0ec'; /* '' */ 743 | } 744 | .typcn-social-instagram:before { 745 | content: '\e0ed'; /* '' */ 746 | } 747 | .typcn-social-last-fm-circular:before { 748 | content: '\e0ee'; /* '' */ 749 | } 750 | .typcn-social-last-fm:before { 751 | content: '\e0ef'; /* '' */ 752 | } 753 | .typcn-social-linkedin-circular:before { 754 | content: '\e0f0'; /* '' */ 755 | } 756 | .typcn-social-linkedin:before { 757 | content: '\e0f1'; /* '' */ 758 | } 759 | .typcn-social-pinterest-circular:before { 760 | content: '\e0f2'; /* '' */ 761 | } 762 | .typcn-social-pinterest:before { 763 | content: '\e0f3'; /* '' */ 764 | } 765 | .typcn-social-skype-outline:before { 766 | content: '\e0f4'; /* '' */ 767 | } 768 | .typcn-social-skype:before { 769 | content: '\e0f5'; /* '' */ 770 | } 771 | .typcn-social-tumbler-circular:before { 772 | content: '\e0f6'; /* '' */ 773 | } 774 | .typcn-social-tumbler:before { 775 | content: '\e0f7'; /* '' */ 776 | } 777 | .typcn-social-twitter-circular:before { 778 | content: '\e0f8'; /* '' */ 779 | } 780 | .typcn-social-twitter:before { 781 | content: '\e0f9'; /* '' */ 782 | } 783 | .typcn-social-vimeo-circular:before { 784 | content: '\e0fa'; /* '' */ 785 | } 786 | .typcn-social-vimeo:before { 787 | content: '\e0fb'; /* '' */ 788 | } 789 | .typcn-social-youtube-circular:before { 790 | content: '\e0fc'; /* '' */ 791 | } 792 | .typcn-social-youtube:before { 793 | content: '\e0fd'; /* '' */ 794 | } 795 | .typcn-sort-alphabetically-outline:before { 796 | content: '\e0fe'; /* '' */ 797 | } 798 | .typcn-sort-alphabetically:before { 799 | content: '\e0ff'; /* '' */ 800 | } 801 | .typcn-sort-numerically-outline:before { 802 | content: '\e100'; /* '' */ 803 | } 804 | .typcn-sort-numerically:before { 805 | content: '\e101'; /* '' */ 806 | } 807 | .typcn-spanner-outline:before { 808 | content: '\e102'; /* '' */ 809 | } 810 | .typcn-spanner:before { 811 | content: '\e103'; /* '' */ 812 | } 813 | .typcn-spiral:before { 814 | content: '\e104'; /* '' */ 815 | } 816 | .typcn-star-full-outline:before { 817 | content: '\e105'; /* '' */ 818 | } 819 | .typcn-star-half-outline:before { 820 | content: '\e106'; /* '' */ 821 | } 822 | .typcn-star-half:before { 823 | content: '\e107'; /* '' */ 824 | } 825 | .typcn-star-outline:before { 826 | content: '\e108'; /* '' */ 827 | } 828 | .typcn-star:before { 829 | content: '\e109'; /* '' */ 830 | } 831 | .typcn-starburst-outline:before { 832 | content: '\e10a'; /* '' */ 833 | } 834 | .typcn-starburst:before { 835 | content: '\e10b'; /* '' */ 836 | } 837 | .typcn-stopwatch:before { 838 | content: '\e10c'; /* '' */ 839 | } 840 | .typcn-support:before { 841 | content: '\e10d'; /* '' */ 842 | } 843 | .typcn-tabs-outline:before { 844 | content: '\e10e'; /* '' */ 845 | } 846 | .typcn-tag:before { 847 | content: '\e10f'; /* '' */ 848 | } 849 | .typcn-tags:before { 850 | content: '\e110'; /* '' */ 851 | } 852 | .typcn-th-large-outline:before { 853 | content: '\e111'; /* '' */ 854 | } 855 | .typcn-th-large:before { 856 | content: '\e112'; /* '' */ 857 | } 858 | .typcn-th-list-outline:before { 859 | content: '\e113'; /* '' */ 860 | } 861 | .typcn-th-list:before { 862 | content: '\e114'; /* '' */ 863 | } 864 | .typcn-th-menu-outline:before { 865 | content: '\e115'; /* '' */ 866 | } 867 | .typcn-th-menu:before { 868 | content: '\e116'; /* '' */ 869 | } 870 | .typcn-th-small-outline:before { 871 | content: '\e117'; /* '' */ 872 | } 873 | .typcn-th-small:before { 874 | content: '\e118'; /* '' */ 875 | } 876 | .typcn-thermometer:before { 877 | content: '\e119'; /* '' */ 878 | } 879 | .typcn-thumbs-down:before { 880 | content: '\e11a'; /* '' */ 881 | } 882 | .typcn-thumbs-ok:before { 883 | content: '\e11b'; /* '' */ 884 | } 885 | .typcn-thumbs-up:before { 886 | content: '\e11c'; /* '' */ 887 | } 888 | .typcn-tick-outline:before { 889 | content: '\e11d'; /* '' */ 890 | } 891 | .typcn-tick:before { 892 | content: '\e11e'; /* '' */ 893 | } 894 | .typcn-ticket:before { 895 | content: '\e11f'; /* '' */ 896 | } 897 | .typcn-time:before { 898 | content: '\e120'; /* '' */ 899 | } 900 | .typcn-times-outline:before { 901 | content: '\e121'; /* '' */ 902 | } 903 | .typcn-times:before { 904 | content: '\e122'; /* '' */ 905 | } 906 | .typcn-trash:before { 907 | content: '\e123'; /* '' */ 908 | } 909 | .typcn-tree:before { 910 | content: '\e124'; /* '' */ 911 | } 912 | .typcn-upload-outline:before { 913 | content: '\e125'; /* '' */ 914 | } 915 | .typcn-upload:before { 916 | content: '\e126'; /* '' */ 917 | } 918 | .typcn-user-add-outline:before { 919 | content: '\e127'; /* '' */ 920 | } 921 | .typcn-user-add:before { 922 | content: '\e128'; /* '' */ 923 | } 924 | .typcn-user-delete-outline:before { 925 | content: '\e129'; /* '' */ 926 | } 927 | .typcn-user-delete:before { 928 | content: '\e12a'; /* '' */ 929 | } 930 | .typcn-user-outline:before { 931 | content: '\e12b'; /* '' */ 932 | } 933 | .typcn-user:before { 934 | content: '\e12c'; /* '' */ 935 | } 936 | .typcn-vendor-android:before { 937 | content: '\e12d'; /* '' */ 938 | } 939 | .typcn-vendor-apple:before { 940 | content: '\e12e'; /* '' */ 941 | } 942 | .typcn-vendor-microsoft:before { 943 | content: '\e12f'; /* '' */ 944 | } 945 | .typcn-video-outline:before { 946 | content: '\e130'; /* '' */ 947 | } 948 | .typcn-video:before { 949 | content: '\e131'; /* '' */ 950 | } 951 | .typcn-volume-down:before { 952 | content: '\e132'; /* '' */ 953 | } 954 | .typcn-volume-mute:before { 955 | content: '\e133'; /* '' */ 956 | } 957 | .typcn-volume-up:before { 958 | content: '\e134'; /* '' */ 959 | } 960 | .typcn-volume:before { 961 | content: '\e135'; /* '' */ 962 | } 963 | .typcn-warning-outline:before { 964 | content: '\e136'; /* '' */ 965 | } 966 | .typcn-warning:before { 967 | content: '\e137'; /* '' */ 968 | } 969 | .typcn-watch:before { 970 | content: '\e138'; /* '' */ 971 | } 972 | .typcn-waves-outline:before { 973 | content: '\e139'; /* '' */ 974 | } 975 | .typcn-waves:before { 976 | content: '\e13a'; /* '' */ 977 | } 978 | .typcn-weather-cloudy:before { 979 | content: '\e13b'; /* '' */ 980 | } 981 | .typcn-weather-downpour:before { 982 | content: '\e13c'; /* '' */ 983 | } 984 | .typcn-weather-night:before { 985 | content: '\e13d'; /* '' */ 986 | } 987 | .typcn-weather-partly-sunny:before { 988 | content: '\e13e'; /* '' */ 989 | } 990 | .typcn-weather-shower:before { 991 | content: '\e13f'; /* '' */ 992 | } 993 | .typcn-weather-snow:before { 994 | content: '\e140'; /* '' */ 995 | } 996 | .typcn-weather-stormy:before { 997 | content: '\e141'; /* '' */ 998 | } 999 | .typcn-weather-sunny:before { 1000 | content: '\e142'; /* '' */ 1001 | } 1002 | .typcn-weather-windy-cloudy:before { 1003 | content: '\e143'; /* '' */ 1004 | } 1005 | .typcn-weather-windy:before { 1006 | content: '\e144'; /* '' */ 1007 | } 1008 | .typcn-wi-fi-outline:before { 1009 | content: '\e145'; /* '' */ 1010 | } 1011 | .typcn-wi-fi:before { 1012 | content: '\e146'; /* '' */ 1013 | } 1014 | .typcn-wine:before { 1015 | content: '\e147'; /* '' */ 1016 | } 1017 | .typcn-world-outline:before { 1018 | content: '\e148'; /* '' */ 1019 | } 1020 | .typcn-world:before { 1021 | content: '\e149'; /* '' */ 1022 | } 1023 | .typcn-zoom-in-outline:before { 1024 | content: '\e14a'; /* '' */ 1025 | } 1026 | .typcn-zoom-in:before { 1027 | content: '\e14b'; /* '' */ 1028 | } 1029 | .typcn-zoom-out-outline:before { 1030 | content: '\e14c'; /* '' */ 1031 | } 1032 | .typcn-zoom-out:before { 1033 | content: '\e14d'; /* '' */ 1034 | } 1035 | .typcn-zoom-outline:before { 1036 | content: '\e14e'; /* '' */ 1037 | } 1038 | .typcn-zoom:before { 1039 | content: '\e14f'; /* '' */ 1040 | } --------------------------------------------------------------------------------