Upgrade to Bootstrap 3
This commit is contained in:
parent
e115a78989
commit
061719eb84
@ -1,5 +1,5 @@
|
||||
CACHE MANIFEST
|
||||
# Sun 4 Aug 2013 18:48:24 IST
|
||||
# Sun 4 Aug 2013 18:48:25 IST
|
||||
|
||||
CACHE:
|
||||
index.html
|
||||
|
98
css/jgrowl.css
Normal file
98
css/jgrowl.css
Normal file
@ -0,0 +1,98 @@
|
||||
|
||||
div.jGrowl {
|
||||
z-index: 1050;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/** Normal Style Positions **/
|
||||
div.jGrowl {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
body > div.jGrowl {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
div.jGrowl.top-left {
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.top-right {
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.bottom-left {
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.bottom-right {
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.center {
|
||||
top: 0px;
|
||||
width: 50%;
|
||||
left: 25%;
|
||||
}
|
||||
|
||||
/** Cross Browser Styling **/
|
||||
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
|
||||
background-color: #777;
|
||||
zoom: 1;
|
||||
width: 235px;
|
||||
padding: 15px 20px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
text-align: left;
|
||||
display: none;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification {
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification,
|
||||
div.jGrowl div.jGrowl-closer {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification div.jGrowl-header {
|
||||
font-weight: bold;
|
||||
font-size: .85em;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification div.jGrowl-close {
|
||||
z-index: 99;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
font-size: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-closer {
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
cursor: pointer;
|
||||
font-size: .9em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/** Hide jGrowl when printing **/
|
||||
@media print {
|
||||
div.jGrowl {
|
||||
display: none;
|
||||
}
|
||||
}
|
BIN
img/icons.png
BIN
img/icons.png
Binary file not shown.
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
BIN
img/icons2x.png
Normal file
BIN
img/icons2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
@ -11,7 +11,6 @@ define([
|
||||
"text!html/settingsUserCustomExtensionTooltip.html",
|
||||
"storage",
|
||||
"config",
|
||||
"libs/bootstrap",
|
||||
"libs/layout",
|
||||
"libs/Markdown.Editor"
|
||||
], function($, _, utils, settings, eventMgr, mousetrap, bodyIndexHTML, bodyViewerHTML, settingsTemplateTooltipHTML, settingsUserCustomExtensionTooltipHTML) {
|
||||
|
@ -29,7 +29,7 @@ define([
|
||||
"extensions/buttonHtmlCode",
|
||||
"extensions/buttonMarkdownSyntax",
|
||||
"extensions/buttonViewer",
|
||||
"libs/bootstrap",
|
||||
"libs/bootstrap/bootstrap",
|
||||
"libs/jquery.waitforimages"
|
||||
], function($, _, crel, utils, Extension, settings, settingsExtensionsAccordionHTML) {
|
||||
|
||||
|
@ -47,7 +47,7 @@ define([
|
||||
_.chain(attributesList).sortBy(function(attributes) {
|
||||
return attributes.provider.providerId;
|
||||
}).each(function(attributes) {
|
||||
var classes = 'icon-' + attributes.provider.providerId;
|
||||
var classes = 'icon-provider-' + attributes.provider.providerId;
|
||||
if(attributes.isRealtime === true) {
|
||||
classes += " realtime";
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ define([
|
||||
_.chain(attributesList).sortBy(function(attributes) {
|
||||
return attributes.provider.providerId;
|
||||
}).each(function(attributes) {
|
||||
var classes = 'icon-' + attributes.provider.providerId;
|
||||
var classes = 'icon-provider-' + attributes.provider.providerId;
|
||||
if(attributes.isRealtime === true) {
|
||||
classes += " realtime";
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
||||
</ul></li>
|
||||
<li class="btn-group"><button class="btn btn-default dropdown-toggle"
|
||||
data-toggle="dropdown" title="Menu">
|
||||
<i class="icon-stackedit"></i> <i class="icon-down-dir"></i>
|
||||
<i class="icon-provider-stackedit"></i> <i class="icon-down-dir"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="viewer.html" title="StackEdit Viewer"><i
|
||||
@ -55,7 +55,7 @@
|
||||
</ul></li>
|
||||
<li class="divider with-text">synchronize</li>
|
||||
<li class="dropdown-submenu"><a href="#"><i
|
||||
class="icon-gdrive"></i> Google Drive</a>
|
||||
class="icon-provider-gdrive"></i> Google Drive</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#" class="action-sync-import-gdrive">Import
|
||||
from Google Drive</a></li>
|
||||
@ -63,7 +63,7 @@
|
||||
to Google Drive</a></li>
|
||||
</ul></li>
|
||||
<li class="dropdown-submenu"><a href="#"><i
|
||||
class="icon-dropbox"></i> Dropbox</a>
|
||||
class="icon-provider-dropbox"></i> Dropbox</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="action-sync-import-dropbox" href="#">Import
|
||||
from Dropbox</a></li>
|
||||
@ -148,7 +148,7 @@
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a href="#" class="btn btn-default action-import-image-gplus"
|
||||
data-dismiss="modal"><i class="icon-gplus"></i> Import from
|
||||
data-dismiss="modal"><i class="icon-provider-gplus"></i> Import from
|
||||
Google+</a> <a href="#" class="btn btn-default" data-dismiss="modal">Cancel</a> <a
|
||||
href="#" class="btn btn-primary action-insert-image"
|
||||
data-dismiss="modal">OK</a>
|
||||
@ -301,7 +301,7 @@
|
||||
Please specify a <b>folder ID</b> (optional):
|
||||
</p>
|
||||
<div class="input-prepend">
|
||||
<span class="add-on"><i class="icon-gdrive"></i></span><input
|
||||
<span class="add-on"><i class="icon-provider-gdrive"></i></span><input
|
||||
id="input-sync-export-gdrive-parentid" type="text"
|
||||
class="col-lg-5 form-control" placeholder="FolderID"></input>
|
||||
</div>
|
||||
@ -357,7 +357,7 @@
|
||||
Please specify a <b>file path</b> for "<span class="file-title"></span>":
|
||||
</p>
|
||||
<div class="input-prepend">
|
||||
<span class="add-on"><i class="icon-dropbox"></i></span><input
|
||||
<span class="add-on"><i class="icon-provider-dropbox"></i></span><input
|
||||
id="input-sync-export-dropbox-path" type="text"
|
||||
class="col-lg-5 form-control"
|
||||
placeholder="/path/to/My Document.md"></input>
|
||||
@ -408,14 +408,14 @@
|
||||
<p>Add a synchronized location manually:</p>
|
||||
<div class="input-prepend input-append sync-manual">
|
||||
<span class="add-on" title="Google Drive"><i
|
||||
class="icon-gdrive"></i></span><input id="input-sync-manual-gdrive-id"
|
||||
class="icon-provider-gdrive"></i></span><input id="input-sync-manual-gdrive-id"
|
||||
type="text" class="col-lg-5 form-control"
|
||||
placeholder="GoogleDriveFileID"></input> <a
|
||||
class="btn btn-default action-sync-manual-gdrive" title="Add location"
|
||||
data-dismiss="modal"><i class="icon-ok"></i></a>
|
||||
</div>
|
||||
<div class="input-prepend input-append sync-manual">
|
||||
<span class="add-on" title="Dropbox"><i class="icon-dropbox"></i></span><input
|
||||
<span class="add-on" title="Dropbox"><i class="icon-provider-dropbox"></i></span><input
|
||||
id="input-sync-manual-dropbox-path" type="text"
|
||||
class="col-lg-5 form-control" placeholder="/dropbox/file/path"></input>
|
||||
<a class="btn btn-default action-sync-manual-dropbox" title="Add location"
|
||||
|
@ -39,7 +39,7 @@
|
||||
</li>
|
||||
<li class="btn-group"><button class="btn btn-default action-open-stackedit"
|
||||
title="Open StackEdit">
|
||||
<i class="icon-stackedit"></i>
|
||||
<i class="icon-provider-stackedit"></i>
|
||||
</button></li>
|
||||
</ul>
|
||||
<ul class="nav pull-right">
|
||||
|
@ -1,5 +1,5 @@
|
||||
<div class="input-prepend input-append">
|
||||
<span class="add-on" title="<%= provider.providerName %>"> <i
|
||||
class="icon-<%= provider.providerId %>"></i>
|
||||
class="icon-provider-<%= provider.providerId %>"></i>
|
||||
</span> <input class="span5" type="text" value="<%= publishDesc %>" disabled />
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon" title="<%= provider.providerName %><%= isRealtime ? ' (real time)' : '' %>"> <i
|
||||
class="icon-<%= provider.providerId %><%= isRealtime ? ' realtime' : '' %>"></i>
|
||||
class="icon-provider-<%= provider.providerId %><%= isRealtime ? ' realtime' : '' %>"></i>
|
||||
</span> <input class="col-lg-6 form-control" type="text" value="<%= syncDesc %>" disabled />
|
||||
</div>
|
||||
|
48
js/libs/fontello/LICENSE.txt
Normal file
48
js/libs/fontello/LICENSE.txt
Normal file
@ -0,0 +1,48 @@
|
||||
Font license info
|
||||
|
||||
|
||||
## Font Awesome
|
||||
|
||||
Copyright (C) 2012 by Dave Gandy
|
||||
|
||||
Author: Dave Gandy
|
||||
License: SIL ()
|
||||
Homepage: http://fortawesome.github.com/Font-Awesome/
|
||||
|
||||
|
||||
## Elusive
|
||||
|
||||
Copyright (C) 2013 by Aristeides Stathopoulos
|
||||
|
||||
Author: Aristeides Stathopoulos
|
||||
License: SIL (http://scripts.sil.org/OFL)
|
||||
Homepage: http://aristeides.com/
|
||||
|
||||
|
||||
## Web Symbols
|
||||
|
||||
Copyright (c) 2011 by Just Be Nice studio. All rights reserved.
|
||||
|
||||
Author: Just Be Nice studio
|
||||
License: SIL (http://scripts.sil.org/OFL)
|
||||
Homepage: http://www.justbenicestudio.com/
|
||||
|
||||
|
||||
## Iconic
|
||||
|
||||
Copyright (C) 2012 by P.J. Onori
|
||||
|
||||
Author: P.J. Onori
|
||||
License: SIL (http://scripts.sil.org/OFL)
|
||||
Homepage: http://somerandomdude.com/work/iconic/
|
||||
|
||||
|
||||
## MFG Labs
|
||||
|
||||
Copyright (C) 2012 by Daniel Bruce
|
||||
|
||||
Author: MFG Labs
|
||||
License: SIL (http://scripts.sil.org/OFL)
|
||||
Homepage: http://www.mfglabs.com/
|
||||
|
||||
|
75
js/libs/fontello/README.txt
Normal file
75
js/libs/fontello/README.txt
Normal file
@ -0,0 +1,75 @@
|
||||
This webfont is generated by http://fontello.com open source project.
|
||||
|
||||
|
||||
================================================================================
|
||||
Please, note, that you should obey original font licences, used to make this
|
||||
webfont pack. Details available in LICENSE.txt file.
|
||||
|
||||
- Usually, it's enough to publish content of LICENSE.txt file somewhere on your
|
||||
site in "About" section.
|
||||
|
||||
- If your project is open-source, usually, it will be ok to make LICENSE.txt
|
||||
file publically available in your repository.
|
||||
|
||||
- Fonts, used in Fontello, don't require to make clickable links on your site.
|
||||
But any kind of additional authors crediting is welcome.
|
||||
================================================================================
|
||||
|
||||
|
||||
Comments on archive content
|
||||
---------------------------
|
||||
|
||||
- /font/* - fonts in different formats
|
||||
|
||||
- /css/* - different kinds of css, for all situations. Should be ok with
|
||||
twitter bootstrap. Also, you can skip <i> style and assign icon classes
|
||||
directly to text elements, if you don't mind about IE7.
|
||||
|
||||
- demo.html - demo file, to show your webfont content
|
||||
|
||||
- LICENSE.txt - license info about source fonts, used to build your one.
|
||||
|
||||
- config.json - keeps your settings. You can import it back to fontello anytime,
|
||||
to continue your work
|
||||
|
||||
|
||||
Why so many CSS files ?
|
||||
-----------------------
|
||||
|
||||
Because we like to fit all your needs :)
|
||||
|
||||
- basic file, <your_font_name>.css - is usually enougth, in contains @font-face
|
||||
and character codes definition
|
||||
|
||||
- *-ie7.css - if you need IE7 support, but still don't wish to put char codes
|
||||
directly into html
|
||||
|
||||
- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face
|
||||
rules, but still wish to benefit of css generation. That can be very
|
||||
convenient for automated assets build systems. When you need to update font -
|
||||
no needs to manually edit files, just override old version with archive
|
||||
content. See fontello source codes for example.
|
||||
|
||||
- *-embedded.css - basic css file, but with embedded WOFF font, to avoid
|
||||
CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain.
|
||||
We strongly recommend to resolve this issue by `Access-Control-Allow-Origin`
|
||||
server headers. But if you ok with dirty hack - this file is for you. Note,
|
||||
that data url moved to separate @font-face to avoid problems with <IE9, when
|
||||
string is too long.
|
||||
|
||||
- animate.css - use it to get ideas about spinner rotation animation.
|
||||
|
||||
|
||||
Attention for server setup
|
||||
--------------------------
|
||||
|
||||
You MUST setup server to reply with proper `mime-types` for font files. In other
|
||||
case, some browsers will fail to show fonts.
|
||||
|
||||
Usually, `apache` already has necessary settings, but `nginx` and other
|
||||
webservers should be tuned. Here is list of mime types for our file extentions:
|
||||
|
||||
- `application/vnd.ms-fontobject` - eot
|
||||
- `application/x-font-woff` - woff
|
||||
- `application/x-font-ttf` - ttf
|
||||
- `image/svg+xml` - svg
|
1904
js/libs/fontello/config.json
Normal file
1904
js/libs/fontello/config.json
Normal file
File diff suppressed because it is too large
Load Diff
85
js/libs/fontello/css/animation.css
vendored
Normal file
85
js/libs/fontello/css/animation.css
vendored
Normal file
@ -0,0 +1,85 @@
|
||||
/*
|
||||
Animation example, for spinners
|
||||
*/
|
||||
.animate-spin {
|
||||
-moz-animation: spin 2s infinite linear;
|
||||
-o-animation: spin 2s infinite linear;
|
||||
-webkit-animation: spin 2s infinite linear;
|
||||
animation: spin 2s infinite linear;
|
||||
display: inline-block;
|
||||
}
|
||||
@-moz-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-o-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-ms-keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
-o-transform: rotate(359deg);
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
317
js/libs/fontello/css/fontello-codes.css
vendored
Normal file
317
js/libs/fontello/css/fontello-codes.css
vendored
Normal file
@ -0,0 +1,317 @@
|
||||
|
||||
.icon-plus:before { content: '\e81f'; } /* '' */
|
||||
.icon-minus:before { content: '\e823'; } /* '' */
|
||||
.icon-left-big:before { content: '\e88a'; } /* '' */
|
||||
.icon-up-big:before { content: '\e88c'; } /* '' */
|
||||
.icon-right-big:before { content: '\e88b'; } /* '' */
|
||||
.icon-down-big:before { content: '\e889'; } /* '' */
|
||||
.icon-home:before { content: '\e93c'; } /* '' */
|
||||
.icon-pause:before { content: '\e800'; } /* '' */
|
||||
.icon-fast-fw:before { content: '\e8a4'; } /* '' */
|
||||
.icon-fast-bw:before { content: '\e8a5'; } /* '' */
|
||||
.icon-to-end:before { content: '\e8a0'; } /* '' */
|
||||
.icon-to-start:before { content: '\e8a2'; } /* '' */
|
||||
.icon-stop:before { content: '\e89e'; } /* '' */
|
||||
.icon-up-dir:before { content: '\e94e'; } /* '' */
|
||||
.icon-play:before { content: '\e89b'; } /* '' */
|
||||
.icon-right-dir:before { content: '\e950'; } /* '' */
|
||||
.icon-down-dir:before { content: '\e94d'; } /* '' */
|
||||
.icon-left-dir:before { content: '\e94f'; } /* '' */
|
||||
.icon-cloud:before { content: '\e8ad'; } /* '' */
|
||||
.icon-umbrella:before { content: '\e8b0'; } /* '' */
|
||||
.icon-star:before { content: '\e808'; } /* '' */
|
||||
.icon-star-empty:before { content: '\e809'; } /* '' */
|
||||
.icon-check:before { content: '\e8cf'; } /* '' */
|
||||
.icon-left-hand:before { content: '\e88e'; } /* '' */
|
||||
.icon-up-hand:before { content: '\e88f'; } /* '' */
|
||||
.icon-right-hand:before { content: '\e88d'; } /* '' */
|
||||
.icon-down-hand:before { content: '\e890'; } /* '' */
|
||||
.icon-th-list:before { content: '\e817'; } /* '' */
|
||||
.icon-heart-empty:before { content: '\e807'; } /* '' */
|
||||
.icon-heart:before { content: '\e806'; } /* '' */
|
||||
.icon-music:before { content: '\e802'; } /* '' */
|
||||
.icon-th:before { content: '\e816'; } /* '' */
|
||||
.icon-flag:before { content: '\e838'; } /* '' */
|
||||
.icon-cog:before { content: '\e862'; } /* '' */
|
||||
.icon-attention:before { content: '\e851'; } /* '' */
|
||||
.icon-flash:before { content: '\e8ae'; } /* '' */
|
||||
.icon-cog-alt:before { content: '\e863'; } /* '' */
|
||||
.icon-scissors:before { content: '\e8c5'; } /* '' */
|
||||
.icon-flight:before { content: '\e8b1'; } /* '' */
|
||||
.icon-mail:before { content: '\e804'; } /* '' */
|
||||
.icon-edit:before { content: '\e941'; } /* '' */
|
||||
.icon-pencil:before { content: '\e847'; } /* '' */
|
||||
.icon-ok:before { content: '\e818'; } /* '' */
|
||||
.icon-ok-circled:before { content: '\e819'; } /* '' */
|
||||
.icon-cancel:before { content: '\e81c'; } /* '' */
|
||||
.icon-cancel-circled:before { content: '\e81d'; } /* '' */
|
||||
.icon-asterisk:before { content: '\e8d3'; } /* '' */
|
||||
.icon-attention-circled:before { content: '\e852'; } /* '' */
|
||||
.icon-plus-circled:before { content: '\e820'; } /* '' */
|
||||
.icon-minus-circled:before { content: '\e824'; } /* '' */
|
||||
.icon-forward:before { content: '\e856'; } /* '' */
|
||||
.icon-ccw:before { content: '\e896'; } /* '' */
|
||||
.icon-cw:before { content: '\e895'; } /* '' */
|
||||
.icon-resize-vertical:before { content: '\e872'; } /* '' */
|
||||
.icon-resize-horizontal:before { content: '\e873'; } /* '' */
|
||||
.icon-eject:before { content: '\e8a6'; } /* '' */
|
||||
.icon-trash:before { content: '\e89f'; } /* '' */
|
||||
.icon-star-half:before { content: '\e80a'; } /* '' */
|
||||
.icon-ok-circled2:before { content: '\e81a'; } /* '' */
|
||||
.icon-cancel-circled2:before { content: '\e86f'; } /* '' */
|
||||
.icon-help-circled:before { content: '\e939'; } /* '' */
|
||||
.icon-info-circled:before { content: '\e93a'; } /* '' */
|
||||
.icon-th-large:before { content: '\e815'; } /* '' */
|
||||
.icon-eye:before { content: '\e832'; } /* '' */
|
||||
.icon-eye-off:before { content: '\e833'; } /* '' */
|
||||
.icon-tag:before { content: '\e834'; } /* '' */
|
||||
.icon-tags:before { content: '\e835'; } /* '' */
|
||||
.icon-camera-alt:before { content: '\e814'; } /* '' */
|
||||
.icon-code:before { content: '\e844'; } /* '' */
|
||||
.icon-print:before { content: '\e942'; } /* '' */
|
||||
.icon-retweet:before { content: '\e943'; } /* '' */
|
||||
.icon-comment:before { content: '\e84a'; } /* '' */
|
||||
.icon-chat:before { content: '\e84b'; } /* '' */
|
||||
.icon-location:before { content: '\e853'; } /* '' */
|
||||
.icon-basket:before { content: '\e865'; } /* '' */
|
||||
.icon-login:before { content: '\e868'; } /* '' */
|
||||
.icon-logout:before { content: '\e949'; } /* '' */
|
||||
.icon-resize-full:before { content: '\e90d'; } /* '' */
|
||||
.icon-resize-small:before { content: '\e871'; } /* '' */
|
||||
.icon-zoom-in:before { content: '\e875'; } /* '' */
|
||||
.icon-zoom-out:before { content: '\e876'; } /* '' */
|
||||
.icon-down-circled2:before { content: '\e877'; } /* '' */
|
||||
.icon-up-circled2:before { content: '\e878'; } /* '' */
|
||||
.icon-down-open:before { content: '\e879'; } /* '' */
|
||||
.icon-left-open:before { content: '\e87a'; } /* '' */
|
||||
.icon-right-open:before { content: '\e87b'; } /* '' */
|
||||
.icon-up-open:before { content: '\e87c'; } /* '' */
|
||||
.icon-refresh:before { content: '\e897'; } /* '' */
|
||||
.icon-play-circled2:before { content: '\e89d'; } /* '' */
|
||||
.icon-to-end-alt:before { content: '\e8a1'; } /* '' */
|
||||
.icon-to-start-alt:before { content: '\e8a3'; } /* '' */
|
||||
.icon-inbox:before { content: '\e8aa'; } /* '' */
|
||||
.icon-font:before { content: '\e8b6'; } /* '' */
|
||||
.icon-bold:before { content: '\e8b5'; } /* '' */
|
||||
.icon-italic:before { content: '\e8b4'; } /* '' */
|
||||
.icon-text-height:before { content: '\e8b7'; } /* '' */
|
||||
.icon-text-width:before { content: '\e8b8'; } /* '' */
|
||||
.icon-align-left:before { content: '\e95d'; } /* '' */
|
||||
.icon-align-center:before { content: '\e95e'; } /* '' */
|
||||
.icon-align-right:before { content: '\e95f'; } /* '' */
|
||||
.icon-align-justify:before { content: '\e960'; } /* '' */
|
||||
.icon-list:before { content: '\e8b9'; } /* '' */
|
||||
.icon-indent-left:before { content: '\e8ba'; } /* '' */
|
||||
.icon-indent-right:before { content: '\e8bb'; } /* '' */
|
||||
.icon-off:before { content: '\e963'; } /* '' */
|
||||
.icon-road:before { content: '\e964'; } /* '' */
|
||||
.icon-list-alt:before { content: '\e8c9'; } /* '' */
|
||||
.icon-qrcode:before { content: '\e8ca'; } /* '' */
|
||||
.icon-barcode:before { content: '\e8cb'; } /* '' */
|
||||
.icon-ajust:before { content: '\e8cd'; } /* '' */
|
||||
.icon-tint:before { content: '\e8ce'; } /* '' */
|
||||
.icon-magnet:before { content: '\e8d6'; } /* '' */
|
||||
.icon-move:before { content: '\e874'; } /* '' */
|
||||
.icon-link:before { content: '\e83f'; } /* '' */
|
||||
.icon-share:before { content: '\e912'; } /* '' */
|
||||
.icon-hdd:before { content: '\e841'; } /* '' */
|
||||
.icon-link-ext:before { content: '\e82b'; } /* '' */
|
||||
.icon-check-empty:before { content: '\e8d0'; } /* '' */
|
||||
.icon-bookmark-empty:before { content: '\e837'; } /* '' */
|
||||
.icon-phone-squared:before { content: '\e860'; } /* '' */
|
||||
.icon-rss:before { content: '\e85d'; } /* '' */
|
||||
.icon-certificate:before { content: '\e8dd'; } /* '' */
|
||||
.icon-left-circled:before { content: '\e891'; } /* '' */
|
||||
.icon-right-circled:before { content: '\e892'; } /* '' */
|
||||
.icon-up-circled:before { content: '\e893'; } /* '' */
|
||||
.icon-down-circled:before { content: '\e894'; } /* '' */
|
||||
.icon-tasks:before { content: '\e8de'; } /* '' */
|
||||
.icon-filter:before { content: '\e8df'; } /* '' */
|
||||
.icon-resize-full-alt:before { content: '\e870'; } /* '' */
|
||||
.icon-beaker:before { content: '\e8e0'; } /* '' */
|
||||
.icon-docs:before { content: '\e858'; } /* '' */
|
||||
.icon-menu:before { content: '\e861'; } /* '' */
|
||||
.icon-list-bullet:before { content: '\e8bc'; } /* '' */
|
||||
.icon-list-numbered:before { content: '\e8bd'; } /* '' */
|
||||
.icon-strike:before { content: '\e8be'; } /* '' */
|
||||
.icon-underline:before { content: '\e8bf'; } /* '' */
|
||||
.icon-table:before { content: '\e8c2'; } /* '' */
|
||||
.icon-magic:before { content: '\e8e1'; } /* '' */
|
||||
.icon-money:before { content: '\e8e3'; } /* '' */
|
||||
.icon-columns:before { content: '\e8c3'; } /* '' */
|
||||
.icon-sort:before { content: '\e8ec'; } /* '' */
|
||||
.icon-sort-down:before { content: '\e8ed'; } /* '' */
|
||||
.icon-sort-up:before { content: '\e8ee'; } /* '' */
|
||||
.icon-mail-alt:before { content: '\e805'; } /* '' */
|
||||
.icon-gauge:before { content: '\e8f6'; } /* '' */
|
||||
.icon-comment-empty:before { content: '\e84c'; } /* '' */
|
||||
.icon-chat-empty:before { content: '\e84d'; } /* '' */
|
||||
.icon-sitemap:before { content: '\e8f7'; } /* '' */
|
||||
.icon-paste:before { content: '\e8c6'; } /* '' */
|
||||
.icon-lightbulb:before { content: '\e86d'; } /* '' */
|
||||
.icon-exchange:before { content: '\e957'; } /* '' */
|
||||
.icon-download-cloud:before { content: '\e83d'; } /* '' */
|
||||
.icon-upload-cloud:before { content: '\e83e'; } /* '' */
|
||||
.icon-user-md:before { content: '\e8fc'; } /* '' */
|
||||
.icon-stethoscope:before { content: '\e8fd'; } /* '' */
|
||||
.icon-suitcase:before { content: '\e8c8'; } /* '' */
|
||||
.icon-bell-alt:before { content: '\e84f'; } /* '' */
|
||||
.icon-coffee:before { content: '\e8f9'; } /* '' */
|
||||
.icon-food:before { content: '\e8fa'; } /* '' */
|
||||
.icon-doc-text:before { content: '\e945'; } /* '' */
|
||||
.icon-building:before { content: '\e902'; } /* '' */
|
||||
.icon-hospital:before { content: '\e901'; } /* '' */
|
||||
.icon-ambulance:before { content: '\e8fe'; } /* '' */
|
||||
.icon-medkit:before { content: '\e8ff'; } /* '' */
|
||||
.icon-fighter-jet:before { content: '\e8b2'; } /* '' */
|
||||
.icon-beer:before { content: '\e8fb'; } /* '' */
|
||||
.icon-h-sigh:before { content: '\e900'; } /* '' */
|
||||
.icon-plus-squared:before { content: '\e821'; } /* '' */
|
||||
.icon-angle-double-left:before { content: '\e885'; } /* '' */
|
||||
.icon-angle-double-right:before { content: '\e886'; } /* '' */
|
||||
.icon-angle-double-up:before { content: '\e887'; } /* '' */
|
||||
.icon-angle-double-down:before { content: '\e888'; } /* '' */
|
||||
.icon-angle-left:before { content: '\e87d'; } /* '' */
|
||||
.icon-angle-right:before { content: '\e87e'; } /* '' */
|
||||
.icon-angle-up:before { content: '\e87f'; } /* '' */
|
||||
.icon-angle-down:before { content: '\e880'; } /* '' */
|
||||
.icon-desktop:before { content: '\e95a'; } /* '' */
|
||||
.icon-laptop:before { content: '\e95b'; } /* '' */
|
||||
.icon-tablet:before { content: '\e95c'; } /* '' */
|
||||
.icon-mobile:before { content: '\e8a9'; } /* '' */
|
||||
.icon-circle-empty:before { content: '\e8d2'; } /* '' */
|
||||
.icon-quote-left:before { content: '\e842'; } /* '' */
|
||||
.icon-quote-right:before { content: '\e843'; } /* '' */
|
||||
.icon-spinner:before { content: '\e8f8'; } /* '' */
|
||||
.icon-circle:before { content: '\e8d1'; } /* '' */
|
||||
.icon-reply:before { content: '\e845'; } /* '' */
|
||||
.icon-folder-empty:before { content: '\e85a'; } /* '' */
|
||||
.icon-folder-open-empty:before { content: '\e85b'; } /* '' */
|
||||
.icon-plus-squared-small:before { content: '\e822'; } /* '' */
|
||||
.icon-minus-squared-small:before { content: '\e827'; } /* '' */
|
||||
.icon-smile:before { content: '\e903'; } /* '' */
|
||||
.icon-frown:before { content: '\e904'; } /* '' */
|
||||
.icon-meh:before { content: '\e905'; } /* '' */
|
||||
.icon-gamepad:before { content: '\e849'; } /* '' */
|
||||
.icon-keyboard:before { content: '\e944'; } /* '' */
|
||||
.icon-flag-empty:before { content: '\e93d'; } /* '' */
|
||||
.icon-flag-checkered:before { content: '\e93e'; } /* '' */
|
||||
.icon-terminal:before { content: '\e907'; } /* '' */
|
||||
.icon-reply-all:before { content: '\e840'; } /* '' */
|
||||
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
|
||||
.icon-direction:before { content: '\e854'; } /* '' */
|
||||
.icon-crop:before { content: '\e8c4'; } /* '' */
|
||||
.icon-fork:before { content: '\e8da'; } /* '' */
|
||||
.icon-unlink:before { content: '\e82a'; } /* '' */
|
||||
.icon-help:before { content: '\e828'; } /* '' */
|
||||
.icon-info:before { content: '\e93b'; } /* '' */
|
||||
.icon-attention-alt:before { content: '\e850'; } /* '' */
|
||||
.icon-superscript:before { content: '\e8c0'; } /* '' */
|
||||
.icon-subscript:before { content: '\e8c1'; } /* '' */
|
||||
.icon-eraser:before { content: '\e908'; } /* '' */
|
||||
.icon-puzzle:before { content: '\e909'; } /* '' */
|
||||
.icon-mic:before { content: '\e94a'; } /* '' */
|
||||
.icon-mute:before { content: '\e94b'; } /* '' */
|
||||
.icon-shield:before { content: '\e90a'; } /* '' */
|
||||
.icon-calendar-empty:before { content: '\e867'; } /* '' */
|
||||
.icon-extinguisher:before { content: '\e90b'; } /* '' */
|
||||
.icon-rocket:before { content: '\e8db'; } /* '' */
|
||||
.icon-angle-circled-left:before { content: '\e881'; } /* '' */
|
||||
.icon-angle-circled-right:before { content: '\e882'; } /* '' */
|
||||
.icon-angle-circled-up:before { content: '\e883'; } /* '' */
|
||||
.icon-angle-circled-down:before { content: '\e884'; } /* '' */
|
||||
.icon-anchor:before { content: '\e906'; } /* '' */
|
||||
.icon-lock-open-alt:before { content: '\e830'; } /* '' */
|
||||
.icon-bullseye:before { content: '\e90c'; } /* '' */
|
||||
.icon-ellipsis:before { content: '\e961'; } /* '' */
|
||||
.icon-ellipsis-vert:before { content: '\e962'; } /* '' */
|
||||
.icon-rss-squared:before { content: '\e85e'; } /* '' */
|
||||
.icon-play-circled:before { content: '\e89c'; } /* '' */
|
||||
.icon-ticket:before { content: '\e8d8'; } /* '' */
|
||||
.icon-minus-squared:before { content: '\e825'; } /* '' */
|
||||
.icon-minus-squared-alt:before { content: '\e826'; } /* '' */
|
||||
.icon-level-up:before { content: '\e898'; } /* '' */
|
||||
.icon-level-down:before { content: '\e955'; } /* '' */
|
||||
.icon-ok-squared:before { content: '\e81b'; } /* '' */
|
||||
.icon-pencil-squared:before { content: '\e848'; } /* '' */
|
||||
.icon-link-ext-alt:before { content: '\e82c'; } /* '' */
|
||||
.icon-export-alt:before { content: '\e846'; } /* '' */
|
||||
.icon-compass:before { content: '\e855'; } /* '' */
|
||||
.icon-collapse:before { content: '\e958'; } /* '' */
|
||||
.icon-collapse-top:before { content: '\e899'; } /* '' */
|
||||
.icon-expand:before { content: '\e89a'; } /* '' */
|
||||
.icon-euro:before { content: '\e8e4'; } /* '' */
|
||||
.icon-pound:before { content: '\e8e5'; } /* '' */
|
||||
.icon-dollar:before { content: '\e8e6'; } /* '' */
|
||||
.icon-rupee:before { content: '\e8e7'; } /* '' */
|
||||
.icon-yen:before { content: '\e8e8'; } /* '' */
|
||||
.icon-renminbi:before { content: '\e8e9'; } /* '' */
|
||||
.icon-won:before { content: '\e8ea'; } /* '' */
|
||||
.icon-bitcoin:before { content: '\e8eb'; } /* '' */
|
||||
.icon-file:before { content: '\e946'; } /* '' */
|
||||
.icon-doc-text-inv:before { content: '\e947'; } /* '' */
|
||||
.icon-sort-name-up:before { content: '\e8f1'; } /* '' */
|
||||
.icon-sort-name-down:before { content: '\e8f2'; } /* '' */
|
||||
.icon-sort-alt-up:before { content: '\e8ef'; } /* '' */
|
||||
.icon-sort-alt-down:before { content: '\e8f0'; } /* '' */
|
||||
.icon-sort-number-up:before { content: '\e8f3'; } /* '' */
|
||||
.icon-sort-number-down:before { content: '\e8f4'; } /* '' */
|
||||
.icon-thumbs-up-alt:before { content: '\e839'; } /* '' */
|
||||
.icon-thumbs-down-alt:before { content: '\e83a'; } /* '' */
|
||||
.icon-down:before { content: '\e951'; } /* '' */
|
||||
.icon-up:before { content: '\e954'; } /* '' */
|
||||
.icon-right:before { content: '\e953'; } /* '' */
|
||||
.icon-left:before { content: '\e952'; } /* '' */
|
||||
.icon-female:before { content: '\e80f'; } /* '' */
|
||||
.icon-male:before { content: '\e80e'; } /* '' */
|
||||
.icon-sun:before { content: '\e8ac'; } /* '' */
|
||||
.icon-moon:before { content: '\e8af'; } /* '' */
|
||||
.icon-box:before { content: '\e85c'; } /* '' */
|
||||
.icon-bug:before { content: '\e8dc'; } /* '' */
|
||||
.icon-picture:before { content: '\e812'; } /* '' */
|
||||
.icon-globe:before { content: '\e8ab'; } /* '' */
|
||||
.icon-leaf:before { content: '\e8b3'; } /* '' */
|
||||
.icon-glass:before { content: '\e801'; } /* '' */
|
||||
.icon-gift:before { content: '\e8d4'; } /* '' */
|
||||
.icon-videocam:before { content: '\e811'; } /* '' */
|
||||
.icon-headphones:before { content: '\e86b'; } /* '' */
|
||||
.icon-video:before { content: '\e810'; } /* '' */
|
||||
.icon-target:before { content: '\e8a7'; } /* '' */
|
||||
.icon-award:before { content: '\e959'; } /* '' */
|
||||
.icon-thumbs-up:before { content: '\e93f'; } /* '' */
|
||||
.icon-thumbs-down:before { content: '\e940'; } /* '' */
|
||||
.icon-user:before { content: '\e80c'; } /* '' */
|
||||
.icon-users:before { content: '\e80d'; } /* '' */
|
||||
.icon-credit-card:before { content: '\e965'; } /* '' */
|
||||
.icon-briefcase:before { content: '\e8c7'; } /* '' */
|
||||
.icon-floppy:before { content: '\e966'; } /* '' */
|
||||
.icon-folder:before { content: '\e948'; } /* '' */
|
||||
.icon-folder-open:before { content: '\e859'; } /* '' */
|
||||
.icon-doc:before { content: '\e857'; } /* '' */
|
||||
.icon-calendar:before { content: '\e866'; } /* '' */
|
||||
.icon-chart-bar:before { content: '\e90f'; } /* '' */
|
||||
.icon-pin:before { content: '\e831'; } /* '' */
|
||||
.icon-attach:before { content: '\e82d'; } /* '' */
|
||||
.icon-book:before { content: '\e8cc'; } /* '' */
|
||||
.icon-phone:before { content: '\e85f'; } /* '' */
|
||||
.icon-megaphone:before { content: '\e967'; } /* '' */
|
||||
.icon-upload:before { content: '\e83c'; } /* '' */
|
||||
.icon-download:before { content: '\e83b'; } /* '' */
|
||||
.icon-signal:before { content: '\e8a8'; } /* '' */
|
||||
.icon-camera:before { content: '\e813'; } /* '' */
|
||||
.icon-shuffle:before { content: '\e956'; } /* '' */
|
||||
.icon-volume-off:before { content: '\e94c'; } /* '' */
|
||||
.icon-volume-down:before { content: '\e869'; } /* '' */
|
||||
.icon-volume-up:before { content: '\e86a'; } /* '' */
|
||||
.icon-search:before { content: '\e803'; } /* '' */
|
||||
.icon-key:before { content: '\e8d9'; } /* '' */
|
||||
.icon-lock:before { content: '\e82e'; } /* '' */
|
||||
.icon-lock-open:before { content: '\e82f'; } /* '' */
|
||||
.icon-bell:before { content: '\e84e'; } /* '' */
|
||||
.icon-bookmark:before { content: '\e836'; } /* '' */
|
||||
.icon-fire:before { content: '\e8d5'; } /* '' */
|
||||
.icon-wrench:before { content: '\e864'; } /* '' */
|
||||
.icon-hammer:before { content: '\e8f5'; } /* '' */
|
||||
.icon-clock:before { content: '\e86c'; } /* '' */
|
||||
.icon-truck:before { content: '\e8e2'; } /* '' */
|
||||
.icon-block:before { content: '\e86e'; } /* '' */
|
370
js/libs/fontello/css/fontello-embedded.css
vendored
Normal file
370
js/libs/fontello/css/fontello-embedded.css
vendored
Normal file
File diff suppressed because one or more lines are too long
317
js/libs/fontello/css/fontello-ie7-codes.css
vendored
Normal file
317
js/libs/fontello/css/fontello-ie7-codes.css
vendored
Normal file
@ -0,0 +1,317 @@
|
||||
|
||||
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-font { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-italic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-text-height { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-text-width { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rupee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-renminbi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bitcoin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
328
js/libs/fontello/css/fontello-ie7.css
vendored
Normal file
328
js/libs/fontello/css/fontello-ie7.css
vendored
Normal file
@ -0,0 +1,328 @@
|
||||
[class^="icon-"], [class*=" icon-"] {
|
||||
font-family: 'fontello';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
|
||||
/* fix buttons height */
|
||||
line-height: 1em;
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
}
|
||||
|
||||
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-font { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-italic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-text-height { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-text-width { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-rupee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-renminbi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bitcoin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
368
js/libs/fontello/css/fontello.css
vendored
Normal file
368
js/libs/fontello/css/fontello.css
vendored
Normal file
@ -0,0 +1,368 @@
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('../font/fontello.eot?9854690');
|
||||
src: url('../font/fontello.eot?9854690#iefix') format('embedded-opentype'),
|
||||
url('../font/fontello.woff?9854690') format('woff'),
|
||||
url('../font/fontello.ttf?9854690') format('truetype'),
|
||||
url('../font/fontello.svg?9854690#fontello') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
|
||||
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
|
||||
/*
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: 'fontello';
|
||||
src: url('../font/fontello.svg?9854690#fontello') format('svg');
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
[class^="icon-"]:before, [class*=" icon-"]:before {
|
||||
font-family: "fontello";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
speak: none;
|
||||
|
||||
display: inline-block;
|
||||
text-decoration: inherit;
|
||||
width: 1em;
|
||||
margin-right: .2em;
|
||||
text-align: center;
|
||||
/* opacity: .8; */
|
||||
|
||||
/* For safety - reset parent styles, that can break glyph codes*/
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
|
||||
/* fix buttons height, for twitter bootstrap */
|
||||
line-height: 1em;
|
||||
|
||||
/* Animation center compensation - margins should be symmetric */
|
||||
/* remove if not needed */
|
||||
margin-left: .2em;
|
||||
|
||||
/* you can be more comfortable with increased icons size */
|
||||
/* font-size: 120%; */
|
||||
|
||||
/* Uncomment for 3D effect */
|
||||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
||||
}
|
||||
|
||||
.icon-plus:before { content: '\e81f'; } /* '' */
|
||||
.icon-minus:before { content: '\e823'; } /* '' */
|
||||
.icon-left-big:before { content: '\e88a'; } /* '' */
|
||||
.icon-up-big:before { content: '\e88c'; } /* '' */
|
||||
.icon-right-big:before { content: '\e88b'; } /* '' */
|
||||
.icon-down-big:before { content: '\e889'; } /* '' */
|
||||
.icon-home:before { content: '\e93c'; } /* '' */
|
||||
.icon-pause:before { content: '\e800'; } /* '' */
|
||||
.icon-fast-fw:before { content: '\e8a4'; } /* '' */
|
||||
.icon-fast-bw:before { content: '\e8a5'; } /* '' */
|
||||
.icon-to-end:before { content: '\e8a0'; } /* '' */
|
||||
.icon-to-start:before { content: '\e8a2'; } /* '' */
|
||||
.icon-stop:before { content: '\e89e'; } /* '' */
|
||||
.icon-up-dir:before { content: '\e94e'; } /* '' */
|
||||
.icon-play:before { content: '\e89b'; } /* '' */
|
||||
.icon-right-dir:before { content: '\e950'; } /* '' */
|
||||
.icon-down-dir:before { content: '\e94d'; } /* '' */
|
||||
.icon-left-dir:before { content: '\e94f'; } /* '' */
|
||||
.icon-cloud:before { content: '\e8ad'; } /* '' */
|
||||
.icon-umbrella:before { content: '\e8b0'; } /* '' */
|
||||
.icon-star:before { content: '\e808'; } /* '' */
|
||||
.icon-star-empty:before { content: '\e809'; } /* '' */
|
||||
.icon-check:before { content: '\e8cf'; } /* '' */
|
||||
.icon-left-hand:before { content: '\e88e'; } /* '' */
|
||||
.icon-up-hand:before { content: '\e88f'; } /* '' */
|
||||
.icon-right-hand:before { content: '\e88d'; } /* '' */
|
||||
.icon-down-hand:before { content: '\e890'; } /* '' */
|
||||
.icon-th-list:before { content: '\e817'; } /* '' */
|
||||
.icon-heart-empty:before { content: '\e807'; } /* '' */
|
||||
.icon-heart:before { content: '\e806'; } /* '' */
|
||||
.icon-music:before { content: '\e802'; } /* '' */
|
||||
.icon-th:before { content: '\e816'; } /* '' */
|
||||
.icon-flag:before { content: '\e838'; } /* '' */
|
||||
.icon-cog:before { content: '\e862'; } /* '' */
|
||||
.icon-attention:before { content: '\e851'; } /* '' */
|
||||
.icon-flash:before { content: '\e8ae'; } /* '' */
|
||||
.icon-cog-alt:before { content: '\e863'; } /* '' */
|
||||
.icon-scissors:before { content: '\e8c5'; } /* '' */
|
||||
.icon-flight:before { content: '\e8b1'; } /* '' */
|
||||
.icon-mail:before { content: '\e804'; } /* '' */
|
||||
.icon-edit:before { content: '\e941'; } /* '' */
|
||||
.icon-pencil:before { content: '\e847'; } /* '' */
|
||||
.icon-ok:before { content: '\e818'; } /* '' */
|
||||
.icon-ok-circled:before { content: '\e819'; } /* '' */
|
||||
.icon-cancel:before { content: '\e81c'; } /* '' */
|
||||
.icon-cancel-circled:before { content: '\e81d'; } /* '' */
|
||||
.icon-asterisk:before { content: '\e8d3'; } /* '' */
|
||||
.icon-attention-circled:before { content: '\e852'; } /* '' */
|
||||
.icon-plus-circled:before { content: '\e820'; } /* '' */
|
||||
.icon-minus-circled:before { content: '\e824'; } /* '' */
|
||||
.icon-forward:before { content: '\e856'; } /* '' */
|
||||
.icon-ccw:before { content: '\e896'; } /* '' */
|
||||
.icon-cw:before { content: '\e895'; } /* '' */
|
||||
.icon-resize-vertical:before { content: '\e872'; } /* '' */
|
||||
.icon-resize-horizontal:before { content: '\e873'; } /* '' */
|
||||
.icon-eject:before { content: '\e8a6'; } /* '' */
|
||||
.icon-trash:before { content: '\e89f'; } /* '' */
|
||||
.icon-star-half:before { content: '\e80a'; } /* '' */
|
||||
.icon-ok-circled2:before { content: '\e81a'; } /* '' */
|
||||
.icon-cancel-circled2:before { content: '\e86f'; } /* '' */
|
||||
.icon-help-circled:before { content: '\e939'; } /* '' */
|
||||
.icon-info-circled:before { content: '\e93a'; } /* '' */
|
||||
.icon-th-large:before { content: '\e815'; } /* '' */
|
||||
.icon-eye:before { content: '\e832'; } /* '' */
|
||||
.icon-eye-off:before { content: '\e833'; } /* '' */
|
||||
.icon-tag:before { content: '\e834'; } /* '' */
|
||||
.icon-tags:before { content: '\e835'; } /* '' */
|
||||
.icon-camera-alt:before { content: '\e814'; } /* '' */
|
||||
.icon-code:before { content: '\e844'; } /* '' */
|
||||
.icon-print:before { content: '\e942'; } /* '' */
|
||||
.icon-retweet:before { content: '\e943'; } /* '' */
|
||||
.icon-comment:before { content: '\e84a'; } /* '' */
|
||||
.icon-chat:before { content: '\e84b'; } /* '' */
|
||||
.icon-location:before { content: '\e853'; } /* '' */
|
||||
.icon-basket:before { content: '\e865'; } /* '' */
|
||||
.icon-login:before { content: '\e868'; } /* '' */
|
||||
.icon-logout:before { content: '\e949'; } /* '' */
|
||||
.icon-resize-full:before { content: '\e90d'; } /* '' */
|
||||
.icon-resize-small:before { content: '\e871'; } /* '' */
|
||||
.icon-zoom-in:before { content: '\e875'; } /* '' */
|
||||
.icon-zoom-out:before { content: '\e876'; } /* '' */
|
||||
.icon-down-circled2:before { content: '\e877'; } /* '' */
|
||||
.icon-up-circled2:before { content: '\e878'; } /* '' */
|
||||
.icon-down-open:before { content: '\e879'; } /* '' */
|
||||
.icon-left-open:before { content: '\e87a'; } /* '' */
|
||||
.icon-right-open:before { content: '\e87b'; } /* '' */
|
||||
.icon-up-open:before { content: '\e87c'; } /* '' */
|
||||
.icon-refresh:before { content: '\e897'; } /* '' */
|
||||
.icon-play-circled2:before { content: '\e89d'; } /* '' */
|
||||
.icon-to-end-alt:before { content: '\e8a1'; } /* '' */
|
||||
.icon-to-start-alt:before { content: '\e8a3'; } /* '' */
|
||||
.icon-inbox:before { content: '\e8aa'; } /* '' */
|
||||
.icon-font:before { content: '\e8b6'; } /* '' */
|
||||
.icon-bold:before { content: '\e8b5'; } /* '' */
|
||||
.icon-italic:before { content: '\e8b4'; } /* '' */
|
||||
.icon-text-height:before { content: '\e8b7'; } /* '' */
|
||||
.icon-text-width:before { content: '\e8b8'; } /* '' */
|
||||
.icon-align-left:before { content: '\e95d'; } /* '' */
|
||||
.icon-align-center:before { content: '\e95e'; } /* '' */
|
||||
.icon-align-right:before { content: '\e95f'; } /* '' */
|
||||
.icon-align-justify:before { content: '\e960'; } /* '' */
|
||||
.icon-list:before { content: '\e8b9'; } /* '' */
|
||||
.icon-indent-left:before { content: '\e8ba'; } /* '' */
|
||||
.icon-indent-right:before { content: '\e8bb'; } /* '' */
|
||||
.icon-off:before { content: '\e963'; } /* '' */
|
||||
.icon-road:before { content: '\e964'; } /* '' */
|
||||
.icon-list-alt:before { content: '\e8c9'; } /* '' */
|
||||
.icon-qrcode:before { content: '\e8ca'; } /* '' */
|
||||
.icon-barcode:before { content: '\e8cb'; } /* '' */
|
||||
.icon-ajust:before { content: '\e8cd'; } /* '' */
|
||||
.icon-tint:before { content: '\e8ce'; } /* '' */
|
||||
.icon-magnet:before { content: '\e8d6'; } /* '' */
|
||||
.icon-move:before { content: '\e874'; } /* '' */
|
||||
.icon-link:before { content: '\e83f'; } /* '' */
|
||||
.icon-share:before { content: '\e912'; } /* '' */
|
||||
.icon-hdd:before { content: '\e841'; } /* '' */
|
||||
.icon-link-ext:before { content: '\e82b'; } /* '' */
|
||||
.icon-check-empty:before { content: '\e8d0'; } /* '' */
|
||||
.icon-bookmark-empty:before { content: '\e837'; } /* '' */
|
||||
.icon-phone-squared:before { content: '\e860'; } /* '' */
|
||||
.icon-rss:before { content: '\e85d'; } /* '' */
|
||||
.icon-certificate:before { content: '\e8dd'; } /* '' */
|
||||
.icon-left-circled:before { content: '\e891'; } /* '' */
|
||||
.icon-right-circled:before { content: '\e892'; } /* '' */
|
||||
.icon-up-circled:before { content: '\e893'; } /* '' */
|
||||
.icon-down-circled:before { content: '\e894'; } /* '' */
|
||||
.icon-tasks:before { content: '\e8de'; } /* '' */
|
||||
.icon-filter:before { content: '\e8df'; } /* '' */
|
||||
.icon-resize-full-alt:before { content: '\e870'; } /* '' */
|
||||
.icon-beaker:before { content: '\e8e0'; } /* '' */
|
||||
.icon-docs:before { content: '\e858'; } /* '' */
|
||||
.icon-menu:before { content: '\e861'; } /* '' */
|
||||
.icon-list-bullet:before { content: '\e8bc'; } /* '' */
|
||||
.icon-list-numbered:before { content: '\e8bd'; } /* '' */
|
||||
.icon-strike:before { content: '\e8be'; } /* '' */
|
||||
.icon-underline:before { content: '\e8bf'; } /* '' */
|
||||
.icon-table:before { content: '\e8c2'; } /* '' */
|
||||
.icon-magic:before { content: '\e8e1'; } /* '' */
|
||||
.icon-money:before { content: '\e8e3'; } /* '' */
|
||||
.icon-columns:before { content: '\e8c3'; } /* '' */
|
||||
.icon-sort:before { content: '\e8ec'; } /* '' */
|
||||
.icon-sort-down:before { content: '\e8ed'; } /* '' */
|
||||
.icon-sort-up:before { content: '\e8ee'; } /* '' */
|
||||
.icon-mail-alt:before { content: '\e805'; } /* '' */
|
||||
.icon-gauge:before { content: '\e8f6'; } /* '' */
|
||||
.icon-comment-empty:before { content: '\e84c'; } /* '' */
|
||||
.icon-chat-empty:before { content: '\e84d'; } /* '' */
|
||||
.icon-sitemap:before { content: '\e8f7'; } /* '' */
|
||||
.icon-paste:before { content: '\e8c6'; } /* '' */
|
||||
.icon-lightbulb:before { content: '\e86d'; } /* '' */
|
||||
.icon-exchange:before { content: '\e957'; } /* '' */
|
||||
.icon-download-cloud:before { content: '\e83d'; } /* '' */
|
||||
.icon-upload-cloud:before { content: '\e83e'; } /* '' */
|
||||
.icon-user-md:before { content: '\e8fc'; } /* '' */
|
||||
.icon-stethoscope:before { content: '\e8fd'; } /* '' */
|
||||
.icon-suitcase:before { content: '\e8c8'; } /* '' */
|
||||
.icon-bell-alt:before { content: '\e84f'; } /* '' */
|
||||
.icon-coffee:before { content: '\e8f9'; } /* '' */
|
||||
.icon-food:before { content: '\e8fa'; } /* '' */
|
||||
.icon-doc-text:before { content: '\e945'; } /* '' */
|
||||
.icon-building:before { content: '\e902'; } /* '' */
|
||||
.icon-hospital:before { content: '\e901'; } /* '' */
|
||||
.icon-ambulance:before { content: '\e8fe'; } /* '' */
|
||||
.icon-medkit:before { content: '\e8ff'; } /* '' */
|
||||
.icon-fighter-jet:before { content: '\e8b2'; } /* '' */
|
||||
.icon-beer:before { content: '\e8fb'; } /* '' */
|
||||
.icon-h-sigh:before { content: '\e900'; } /* '' */
|
||||
.icon-plus-squared:before { content: '\e821'; } /* '' */
|
||||
.icon-angle-double-left:before { content: '\e885'; } /* '' */
|
||||
.icon-angle-double-right:before { content: '\e886'; } /* '' */
|
||||
.icon-angle-double-up:before { content: '\e887'; } /* '' */
|
||||
.icon-angle-double-down:before { content: '\e888'; } /* '' */
|
||||
.icon-angle-left:before { content: '\e87d'; } /* '' */
|
||||
.icon-angle-right:before { content: '\e87e'; } /* '' */
|
||||
.icon-angle-up:before { content: '\e87f'; } /* '' */
|
||||
.icon-angle-down:before { content: '\e880'; } /* '' */
|
||||
.icon-desktop:before { content: '\e95a'; } /* '' */
|
||||
.icon-laptop:before { content: '\e95b'; } /* '' */
|
||||
.icon-tablet:before { content: '\e95c'; } /* '' */
|
||||
.icon-mobile:before { content: '\e8a9'; } /* '' */
|
||||
.icon-circle-empty:before { content: '\e8d2'; } /* '' */
|
||||
.icon-quote-left:before { content: '\e842'; } /* '' */
|
||||
.icon-quote-right:before { content: '\e843'; } /* '' */
|
||||
.icon-spinner:before { content: '\e8f8'; } /* '' */
|
||||
.icon-circle:before { content: '\e8d1'; } /* '' */
|
||||
.icon-reply:before { content: '\e845'; } /* '' */
|
||||
.icon-folder-empty:before { content: '\e85a'; } /* '' */
|
||||
.icon-folder-open-empty:before { content: '\e85b'; } /* '' */
|
||||
.icon-plus-squared-small:before { content: '\e822'; } /* '' */
|
||||
.icon-minus-squared-small:before { content: '\e827'; } /* '' */
|
||||
.icon-smile:before { content: '\e903'; } /* '' */
|
||||
.icon-frown:before { content: '\e904'; } /* '' */
|
||||
.icon-meh:before { content: '\e905'; } /* '' */
|
||||
.icon-gamepad:before { content: '\e849'; } /* '' */
|
||||
.icon-keyboard:before { content: '\e944'; } /* '' */
|
||||
.icon-flag-empty:before { content: '\e93d'; } /* '' */
|
||||
.icon-flag-checkered:before { content: '\e93e'; } /* '' */
|
||||
.icon-terminal:before { content: '\e907'; } /* '' */
|
||||
.icon-reply-all:before { content: '\e840'; } /* '' */
|
||||
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
|
||||
.icon-direction:before { content: '\e854'; } /* '' */
|
||||
.icon-crop:before { content: '\e8c4'; } /* '' */
|
||||
.icon-fork:before { content: '\e8da'; } /* '' */
|
||||
.icon-unlink:before { content: '\e82a'; } /* '' */
|
||||
.icon-help:before { content: '\e828'; } /* '' */
|
||||
.icon-info:before { content: '\e93b'; } /* '' */
|
||||
.icon-attention-alt:before { content: '\e850'; } /* '' */
|
||||
.icon-superscript:before { content: '\e8c0'; } /* '' */
|
||||
.icon-subscript:before { content: '\e8c1'; } /* '' */
|
||||
.icon-eraser:before { content: '\e908'; } /* '' */
|
||||
.icon-puzzle:before { content: '\e909'; } /* '' */
|
||||
.icon-mic:before { content: '\e94a'; } /* '' */
|
||||
.icon-mute:before { content: '\e94b'; } /* '' */
|
||||
.icon-shield:before { content: '\e90a'; } /* '' */
|
||||
.icon-calendar-empty:before { content: '\e867'; } /* '' */
|
||||
.icon-extinguisher:before { content: '\e90b'; } /* '' */
|
||||
.icon-rocket:before { content: '\e8db'; } /* '' */
|
||||
.icon-angle-circled-left:before { content: '\e881'; } /* '' */
|
||||
.icon-angle-circled-right:before { content: '\e882'; } /* '' */
|
||||
.icon-angle-circled-up:before { content: '\e883'; } /* '' */
|
||||
.icon-angle-circled-down:before { content: '\e884'; } /* '' */
|
||||
.icon-anchor:before { content: '\e906'; } /* '' */
|
||||
.icon-lock-open-alt:before { content: '\e830'; } /* '' */
|
||||
.icon-bullseye:before { content: '\e90c'; } /* '' */
|
||||
.icon-ellipsis:before { content: '\e961'; } /* '' */
|
||||
.icon-ellipsis-vert:before { content: '\e962'; } /* '' */
|
||||
.icon-rss-squared:before { content: '\e85e'; } /* '' */
|
||||
.icon-play-circled:before { content: '\e89c'; } /* '' */
|
||||
.icon-ticket:before { content: '\e8d8'; } /* '' */
|
||||
.icon-minus-squared:before { content: '\e825'; } /* '' */
|
||||
.icon-minus-squared-alt:before { content: '\e826'; } /* '' */
|
||||
.icon-level-up:before { content: '\e898'; } /* '' */
|
||||
.icon-level-down:before { content: '\e955'; } /* '' */
|
||||
.icon-ok-squared:before { content: '\e81b'; } /* '' */
|
||||
.icon-pencil-squared:before { content: '\e848'; } /* '' */
|
||||
.icon-link-ext-alt:before { content: '\e82c'; } /* '' */
|
||||
.icon-export-alt:before { content: '\e846'; } /* '' */
|
||||
.icon-compass:before { content: '\e855'; } /* '' */
|
||||
.icon-collapse:before { content: '\e958'; } /* '' */
|
||||
.icon-collapse-top:before { content: '\e899'; } /* '' */
|
||||
.icon-expand:before { content: '\e89a'; } /* '' */
|
||||
.icon-euro:before { content: '\e8e4'; } /* '' */
|
||||
.icon-pound:before { content: '\e8e5'; } /* '' */
|
||||
.icon-dollar:before { content: '\e8e6'; } /* '' */
|
||||
.icon-rupee:before { content: '\e8e7'; } /* '' */
|
||||
.icon-yen:before { content: '\e8e8'; } /* '' */
|
||||
.icon-renminbi:before { content: '\e8e9'; } /* '' */
|
||||
.icon-won:before { content: '\e8ea'; } /* '' */
|
||||
.icon-bitcoin:before { content: '\e8eb'; } /* '' */
|
||||
.icon-file:before { content: '\e946'; } /* '' */
|
||||
.icon-doc-text-inv:before { content: '\e947'; } /* '' */
|
||||
.icon-sort-name-up:before { content: '\e8f1'; } /* '' */
|
||||
.icon-sort-name-down:before { content: '\e8f2'; } /* '' */
|
||||
.icon-sort-alt-up:before { content: '\e8ef'; } /* '' */
|
||||
.icon-sort-alt-down:before { content: '\e8f0'; } /* '' */
|
||||
.icon-sort-number-up:before { content: '\e8f3'; } /* '' */
|
||||
.icon-sort-number-down:before { content: '\e8f4'; } /* '' */
|
||||
.icon-thumbs-up-alt:before { content: '\e839'; } /* '' */
|
||||
.icon-thumbs-down-alt:before { content: '\e83a'; } /* '' */
|
||||
.icon-down:before { content: '\e951'; } /* '' */
|
||||
.icon-up:before { content: '\e954'; } /* '' */
|
||||
.icon-right:before { content: '\e953'; } /* '' */
|
||||
.icon-left:before { content: '\e952'; } /* '' */
|
||||
.icon-female:before { content: '\e80f'; } /* '' */
|
||||
.icon-male:before { content: '\e80e'; } /* '' */
|
||||
.icon-sun:before { content: '\e8ac'; } /* '' */
|
||||
.icon-moon:before { content: '\e8af'; } /* '' */
|
||||
.icon-box:before { content: '\e85c'; } /* '' */
|
||||
.icon-bug:before { content: '\e8dc'; } /* '' */
|
||||
.icon-picture:before { content: '\e812'; } /* '' */
|
||||
.icon-globe:before { content: '\e8ab'; } /* '' */
|
||||
.icon-leaf:before { content: '\e8b3'; } /* '' */
|
||||
.icon-glass:before { content: '\e801'; } /* '' */
|
||||
.icon-gift:before { content: '\e8d4'; } /* '' */
|
||||
.icon-videocam:before { content: '\e811'; } /* '' */
|
||||
.icon-headphones:before { content: '\e86b'; } /* '' */
|
||||
.icon-video:before { content: '\e810'; } /* '' */
|
||||
.icon-target:before { content: '\e8a7'; } /* '' */
|
||||
.icon-award:before { content: '\e959'; } /* '' */
|
||||
.icon-thumbs-up:before { content: '\e93f'; } /* '' */
|
||||
.icon-thumbs-down:before { content: '\e940'; } /* '' */
|
||||
.icon-user:before { content: '\e80c'; } /* '' */
|
||||
.icon-users:before { content: '\e80d'; } /* '' */
|
||||
.icon-credit-card:before { content: '\e965'; } /* '' */
|
||||
.icon-briefcase:before { content: '\e8c7'; } /* '' */
|
||||
.icon-floppy:before { content: '\e966'; } /* '' */
|
||||
.icon-folder:before { content: '\e948'; } /* '' */
|
||||
.icon-folder-open:before { content: '\e859'; } /* '' */
|
||||
.icon-doc:before { content: '\e857'; } /* '' */
|
||||
.icon-calendar:before { content: '\e866'; } /* '' */
|
||||
.icon-chart-bar:before { content: '\e90f'; } /* '' */
|
||||
.icon-pin:before { content: '\e831'; } /* '' */
|
||||
.icon-attach:before { content: '\e82d'; } /* '' */
|
||||
.icon-book:before { content: '\e8cc'; } /* '' */
|
||||
.icon-phone:before { content: '\e85f'; } /* '' */
|
||||
.icon-megaphone:before { content: '\e967'; } /* '' */
|
||||
.icon-upload:before { content: '\e83c'; } /* '' */
|
||||
.icon-download:before { content: '\e83b'; } /* '' */
|
||||
.icon-signal:before { content: '\e8a8'; } /* '' */
|
||||
.icon-camera:before { content: '\e813'; } /* '' */
|
||||
.icon-shuffle:before { content: '\e956'; } /* '' */
|
||||
.icon-volume-off:before { content: '\e94c'; } /* '' */
|
||||
.icon-volume-down:before { content: '\e869'; } /* '' */
|
||||
.icon-volume-up:before { content: '\e86a'; } /* '' */
|
||||
.icon-search:before { content: '\e803'; } /* '' */
|
||||
.icon-key:before { content: '\e8d9'; } /* '' */
|
||||
.icon-lock:before { content: '\e82e'; } /* '' */
|
||||
.icon-lock-open:before { content: '\e82f'; } /* '' */
|
||||
.icon-bell:before { content: '\e84e'; } /* '' */
|
||||
.icon-bookmark:before { content: '\e836'; } /* '' */
|
||||
.icon-fire:before { content: '\e8d5'; } /* '' */
|
||||
.icon-wrench:before { content: '\e864'; } /* '' */
|
||||
.icon-hammer:before { content: '\e8f5'; } /* '' */
|
||||
.icon-clock:before { content: '\e86c'; } /* '' */
|
||||
.icon-truck:before { content: '\e8e2'; } /* '' */
|
||||
.icon-block:before { content: '\e86e'; } /* '' */
|
Before Width: | Height: | Size: 144 KiB After Width: | Height: | Size: 144 KiB |
14875
js/main-min.js
vendored
14875
js/main-min.js
vendored
File diff suppressed because one or more lines are too long
@ -45,7 +45,7 @@ requirejs.config({
|
||||
'libs/jquery-ui': [
|
||||
'jquery'
|
||||
],
|
||||
'libs/bootstrap': [
|
||||
'libs/bootstrap/bootstrap': [
|
||||
'jquery'
|
||||
],
|
||||
'libs/jquery.waitforimages': [
|
||||
@ -92,9 +92,7 @@ require([
|
||||
"synchronizer",
|
||||
"publisher",
|
||||
"mediaImporter",
|
||||
"css!styles/jgrowl.css",
|
||||
"css!styles/prettify.css",
|
||||
"css!styles/highlight.css",
|
||||
"css",
|
||||
"less!styles/main.less",
|
||||
], function($, core) {
|
||||
|
||||
|
@ -227,7 +227,7 @@ define([
|
||||
var publishMenu = $("#publish-menu");
|
||||
_.each(providerMap, function(provider) {
|
||||
// Provider's publish button
|
||||
publishMenu.append($("<li>").append($('<a href="#"><i class="icon-' + provider.providerId + '"></i> ' + provider.providerName + '</a>').click(function() {
|
||||
publishMenu.append($("<li>").append($('<a href="#"><i class="icon-provider-' + provider.providerId + '"></i> ' + provider.providerName + '</a>').click(function() {
|
||||
initNewLocation(provider);
|
||||
})));
|
||||
// Action links (if any)
|
||||
|
@ -87,6 +87,10 @@ Override Bootstrap
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
/********************
|
||||
* Input
|
||||
********************/
|
||||
@ -516,9 +520,10 @@ div.dropdown-menu textarea {
|
||||
&.icon-white,
|
||||
.dropdown-menu > li:hover > a > & {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Custom icons (not from Font Awesome)
|
||||
.icon-down-dir {
|
||||
margin-right: -5px;
|
||||
}
|
||||
@ -538,72 +543,50 @@ div.dropdown-menu textarea {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.icon-stackedit {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -1px 0;
|
||||
}
|
||||
|
||||
.icon-gdrive {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -19px 0;
|
||||
}
|
||||
|
||||
.icon-gdrive.realtime {
|
||||
// Provider's icons (the colored ones)
|
||||
[class^="icon-provider-"], [class*=" icon-provider-"] {
|
||||
.img-retina('../../../../img/icons.png', '../../../../img/icons2x.png', 256px, 16px);
|
||||
width: 18px;
|
||||
background-position: -162px 0;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.icon-dropbox {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
.icon-provider-stackedit {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.icon-provider-gdrive {
|
||||
background-position: -18px 0;
|
||||
&.realtime {
|
||||
background-position: -162px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-provider-dropbox {
|
||||
background-position: -37px 0;
|
||||
}
|
||||
|
||||
.icon-github,.icon-gist {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -55px 0;
|
||||
.icon-provider-github,.icon-provider-gist {
|
||||
background-position: -54px 0;
|
||||
}
|
||||
|
||||
.icon-blogger {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -73px 0;
|
||||
.icon-provider-blogger {
|
||||
background-position: -72px 0;
|
||||
}
|
||||
|
||||
.icon-tumblr {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -91px 0;
|
||||
.icon-provider-tumblr {
|
||||
background-position: -90px 0;
|
||||
}
|
||||
|
||||
.icon-wordpress {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -109px 0;
|
||||
.icon-provider-wordpress {
|
||||
background-position: -108px 0;
|
||||
}
|
||||
|
||||
.icon-ssh {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -127px 0;
|
||||
.icon-provider-ssh {
|
||||
background-position: -126px 0;
|
||||
}
|
||||
|
||||
.icon-gplus {
|
||||
background-image: url("../../img/icons.png") !important;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-position: -145px 0;
|
||||
.icon-provider-gplus {
|
||||
background-position: -144px 0;
|
||||
}
|
||||
|
||||
.ui-layout-toggler-north .caret,.ui-layout-toggler-south .caret {
|
||||
@ -664,10 +647,6 @@ div.dropdown-menu textarea {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.form-horizontal {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
max-width: 100%;
|
||||
min-height: 100px;
|
||||
|
@ -1,131 +0,0 @@
|
||||
|
||||
div.jGrowl {
|
||||
z-index: 1050;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/** Special IE6 Style Positioning **/
|
||||
div.ie6 {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
div.ie6.top-right {
|
||||
right: auto;
|
||||
bottom: auto;
|
||||
left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.top-left {
|
||||
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.bottom-right {
|
||||
left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.bottom-left {
|
||||
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
}
|
||||
|
||||
div.ie6.center {
|
||||
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
|
||||
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/** Normal Style Positions **/
|
||||
div.jGrowl {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
body > div.jGrowl {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
div.jGrowl.top-left {
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.top-right {
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.bottom-left {
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.bottom-right {
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
div.jGrowl.center {
|
||||
top: 0px;
|
||||
width: 50%;
|
||||
left: 25%;
|
||||
}
|
||||
|
||||
/** Cross Browser Styling **/
|
||||
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
|
||||
background-color: #777;
|
||||
zoom: 1;
|
||||
width: 235px;
|
||||
padding: 15px 20px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
text-align: left;
|
||||
display: none;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification {
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification,
|
||||
div.jGrowl div.jGrowl-closer {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification div.jGrowl-header {
|
||||
font-weight: bold;
|
||||
font-size: .85em;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-notification div.jGrowl-close {
|
||||
z-index: 99;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
font-size: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.jGrowl div.jGrowl-closer {
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
cursor: pointer;
|
||||
font-size: .9em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/** Hide jGrowl when printing **/
|
||||
@media print {
|
||||
div.jGrowl {
|
||||
display: none;
|
||||
}
|
||||
}
|
@ -1,4 +1,7 @@
|
||||
@import "bootstrap/bootstrap.less";
|
||||
@import "../../css/fontello.css"
|
||||
@import "../libs/bootstrap/less/bootstrap.less";
|
||||
@import "../libs/fontello/css/fontello.css"
|
||||
@import "../../css/jgrowl.css"
|
||||
@import "../../css/prettify.css"
|
||||
@import "../../css/highlight.css"
|
||||
@import "default.less"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
echo '### Optimizing resources ###'
|
||||
scripts/run_optimize
|
||||
tools/run_optimize
|
||||
echo '### Modifying cache.manifest ###'
|
||||
sed -i '' "s/^#.*/# `date`/" cache.manifest
|
||||
echo '### Commit and push ###'
|
||||
|
@ -1,5 +0,0 @@
|
||||
// RequireJS optimizer configuration file
|
||||
({
|
||||
cssIn: "../css/main.css",
|
||||
out: "../css/main-min.css"
|
||||
})
|
@ -11,4 +11,5 @@
|
||||
indent_level: 1,
|
||||
},
|
||||
},
|
||||
excludeShallow: ['css/css-builder', 'less/lessc-server', 'less/lessc'],
|
||||
})
|
@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
npm install requirejs
|
||||
export PATH=${PATH}:node_modules/requirejs/bin/
|
||||
r.js -o tools/optimize-css.json
|
||||
r.js -o tools/optimize-js.json
|
Loading…
Reference in New Issue
Block a user