webgen-font_awesome-bundle 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/ChangeLog +3 -0
- data/LICENSE +20 -0
- data/README.md +65 -0
- data/VERSION +1 -0
- data/lib/webgen/bundle/font_awesome/data/css/bootstrap/bootstrap.scss +63 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome.sass +26 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_bootstrap.sass +85 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_core.sass +106 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_extras.sass +22 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_font-awesome-ie7.sass +410 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_font-awesome.sass +7 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_icons.sass +1279 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_mixins.sass +125 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_path.sass +26 -0
- data/lib/webgen/bundle/font_awesome/data/css/font-awesome/_variables.sass +9 -0
- data/lib/webgen/bundle/font_awesome/data/fonts/fontawesome-webfont.eot +0 -0
- data/lib/webgen/bundle/font_awesome/data/fonts/fontawesome-webfont.svg +339 -0
- data/lib/webgen/bundle/font_awesome/data/fonts/fontawesome-webfont.ttf +0 -0
- data/lib/webgen/bundle/font_awesome/data/fonts/fontawesome-webfont.woff +0 -0
- data/lib/webgen/bundle/font_awesome/data/fonts/fontawesome.metainfo +3 -0
- data/lib/webgen/bundle/font_awesome/info.yaml +9 -0
- data/lib/webgen/bundle/font_awesome/init.rb +2 -0
- metadata +87 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NDc5NDYwYmJjYjJhOTI0NTdiMWVjZWI1NWE4ZjgwM2QzNTY4MTczMA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
Y2ZhMGRjNzM2NzRkZDExNDdmNmFjNjk3OWU2NjIxYjVhNmQ5MTkzNw==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NjU1NDZjNjlmZGMxNjk5YTI0ZmRlMGM0M2UxNzFlNmY3NzAwMzYyODdiZWY0
|
10
|
+
NGFjNzJmYzI5N2VkMzg4MmQyNjMyOTdmZDFhYTM2MDIzYmEyNzgzM2IyZWM4
|
11
|
+
MjE2MTNjOWY0MTU5NGM5MWQ5YmUzOGZlYTVkOGUyOGJkNGExNDQ=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NWIwNDAyZjRlZjYwOTdjYTRlNTYyYWZjOTFmNzRkNTQ3ODRjZDQxMTRiMzBj
|
14
|
+
ZTA4ZWQyZjg0ZGJhZDVmM2EwZTU5MDBhOTBlOTUzZWEyNjhiNDdkNGNiZTA3
|
15
|
+
NTg2NDE4ZWNhNTdkMjdhOWJmMzgzNDVmYWMxMWFmOGQwMDZkNzc=
|
data/ChangeLog
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2013 Thomas Leitner
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
4
|
+
copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included
|
12
|
+
in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
15
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
17
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
18
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
19
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
20
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# Font Awesome icon font for webgen
|
2
|
+
|
3
|
+
This is a [webgen] extension bundle that provides the [Font Awesome][1]
|
4
|
+
icon font. This icon font can be used stand-alone or combined with the
|
5
|
+
[webgen Twitter Bootstrap bundle][2].
|
6
|
+
|
7
|
+
[webgen]: http://webgen.rubyforge.org
|
8
|
+
[1]: http://fortawesome.github.com/Font-Awesome/
|
9
|
+
[2]: https://github.com/gettalong/webgen-sass_twitter_bootstrap-bundle#readme
|
10
|
+
|
11
|
+
|
12
|
+
# Usage
|
13
|
+
|
14
|
+
The bundle uses [Sass] for providing the necessary CSS files and for
|
15
|
+
compatibility to [webgen Twitter Bootstrap bundle][2], so be sure you
|
16
|
+
have Sass installed.
|
17
|
+
|
18
|
+
* If you want to use the font without the Twitter Bootstrap framework,
|
19
|
+
just import the stylesheet in one of your Sass files:
|
20
|
+
|
21
|
+
@import "/font-awesome";
|
22
|
+
|
23
|
+
* If you want to use the font with the Twitter Bootstrap framework, ie.
|
24
|
+
instead of the Glyphicons, you need to load this bundle after the
|
25
|
+
Twitter Bootstrap bundle!
|
26
|
+
|
27
|
+
Then just load the Bootstrap framework as usual with
|
28
|
+
|
29
|
+
@import "/bootstrap/bootstrap";
|
30
|
+
|
31
|
+
If you don't use this approach because you selectively load parts of
|
32
|
+
the Bootstrap framework, make sure that you import `/font-awesome`
|
33
|
+
instead of `/bootstrap/sprites`!
|
34
|
+
|
35
|
+
[Sass]: http://sass-lang.com/
|
36
|
+
|
37
|
+
|
38
|
+
# Installation
|
39
|
+
|
40
|
+
The easiest way to install this extension bundle is by installing the
|
41
|
+
corresponding Rubygem:
|
42
|
+
|
43
|
+
gem install webgen-font_awesome-bundle
|
44
|
+
|
45
|
+
If you don't use Rubygems, copy the folder
|
46
|
+
`lib/webgen/bundle/font_awesome` into your `ext` directory.
|
47
|
+
|
48
|
+
After that you just need to tell webgen to use this extension bundle by
|
49
|
+
adding the following line to your `ext/init.rb` file:
|
50
|
+
|
51
|
+
load("font_awesome")
|
52
|
+
|
53
|
+
Don't forget to add this line after the line for the Twitter Bootstrap
|
54
|
+
bundle so that everything works out of the box!
|
55
|
+
|
56
|
+
|
57
|
+
# Copyright and license
|
58
|
+
|
59
|
+
Copyright (c) 2013 Thomas Leitner under the MIT License (see LICENSE)
|
60
|
+
|
61
|
+
* * *
|
62
|
+
|
63
|
+
The used files from the Font-Awesome repository are licensed under the
|
64
|
+
CC-BY 3.0 license (see
|
65
|
+
<https://github.com/FortAwesome/Font-Awesome#license>).
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
@@ -0,0 +1,63 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.2.1
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
10
|
+
|
11
|
+
// Core variables and mixins
|
12
|
+
@import "/bootstrap/variables"; // Modify this for custom colors, font-sizes, etc
|
13
|
+
@import "/bootstrap/mixins";
|
14
|
+
|
15
|
+
// CSS Reset
|
16
|
+
@import "/bootstrap/reset";
|
17
|
+
|
18
|
+
// Grid system and page structure
|
19
|
+
@import "/bootstrap/scaffolding";
|
20
|
+
@import "/bootstrap/grid";
|
21
|
+
@import "/bootstrap/layouts";
|
22
|
+
|
23
|
+
// Base CSS
|
24
|
+
@import "/bootstrap/type";
|
25
|
+
@import "/bootstrap/code";
|
26
|
+
@import "/bootstrap/forms";
|
27
|
+
@import "/bootstrap/tables";
|
28
|
+
|
29
|
+
// Components: common
|
30
|
+
@import "/font-awesome";
|
31
|
+
@import "/bootstrap/dropdowns";
|
32
|
+
@import "/bootstrap/wells";
|
33
|
+
@import "/bootstrap/component-animations";
|
34
|
+
@import "/bootstrap/close";
|
35
|
+
|
36
|
+
// Components: Buttons & Alerts
|
37
|
+
@import "/bootstrap/buttons";
|
38
|
+
@import "/bootstrap/button-groups";
|
39
|
+
@import "/bootstrap/alerts"; // Note: alerts share common CSS with buttons and thus have styles in buttons
|
40
|
+
|
41
|
+
// Components: Nav
|
42
|
+
@import "/bootstrap/navs";
|
43
|
+
@import "/bootstrap/navbar";
|
44
|
+
@import "/bootstrap/breadcrumbs";
|
45
|
+
@import "/bootstrap/pagination";
|
46
|
+
@import "/bootstrap/pager";
|
47
|
+
|
48
|
+
// Components: Popovers
|
49
|
+
@import "/bootstrap/modals";
|
50
|
+
@import "/bootstrap/tooltip";
|
51
|
+
@import "/bootstrap/popovers";
|
52
|
+
|
53
|
+
// Components: Misc
|
54
|
+
@import "/bootstrap/thumbnails";
|
55
|
+
@import "/bootstrap/media";
|
56
|
+
@import "/bootstrap/labels-badges";
|
57
|
+
@import "/bootstrap/progress-bars";
|
58
|
+
@import "/bootstrap/accordion";
|
59
|
+
@import "/bootstrap/carousel";
|
60
|
+
@import "/bootstrap/hero-unit";
|
61
|
+
|
62
|
+
// Utility classes
|
63
|
+
@import "/bootstrap/utilities"; // Has to be last to override when necessary
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome 3.1.0
|
3
|
+
* the iconic font designed for Bootstrap
|
4
|
+
* -------------------------------------------------------
|
5
|
+
* The full suite of pictographic icons, examples, and documentation
|
6
|
+
* can be found at: http://fontawesome.io
|
7
|
+
*
|
8
|
+
* License
|
9
|
+
* -------------------------------------------------------
|
10
|
+
* - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
|
11
|
+
* http://scripts.sil.org/OFL
|
12
|
+
* - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
|
13
|
+
* http://opensource.org/licenses/mit-license.html
|
14
|
+
* - Font Awesome documentation licensed under CC BY 3.0 License -
|
15
|
+
* http://creativecommons.org/licenses/by/3.0/
|
16
|
+
* - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
17
|
+
* "Font Awesome by Dave Gandy - http://fontawesome.io"
|
18
|
+
|
19
|
+
* Contact
|
20
|
+
* -------------------------------------------------------
|
21
|
+
* Email: dave@fontawesome.io
|
22
|
+
* Twitter: http://twitter.com/fortaweso_me
|
23
|
+
* Work: Lead Product Designer @ http://kyruus.com
|
24
|
+
*/
|
25
|
+
|
26
|
+
@import "/font-awesome/font-awesome"
|
@@ -0,0 +1,85 @@
|
|
1
|
+
/* BOOTSTRAP SPECIFIC CLASSES
|
2
|
+
* -------------------------- */
|
3
|
+
|
4
|
+
/* Bootstrap 2.0 sprites.less reset */
|
5
|
+
[class^="icon-"],
|
6
|
+
[class*=" icon-"]
|
7
|
+
display: inline
|
8
|
+
width: auto
|
9
|
+
height: auto
|
10
|
+
line-height: normal
|
11
|
+
vertical-align: baseline
|
12
|
+
background-image: none
|
13
|
+
background-position: 0% 0%
|
14
|
+
background-repeat: repeat
|
15
|
+
margin-top: 0
|
16
|
+
|
17
|
+
|
18
|
+
/* more sprites.less reset */
|
19
|
+
.icon-white,
|
20
|
+
.nav-pills > .active > a,
|
21
|
+
.nav-pills > .active > a,
|
22
|
+
.nav-list > .active > a,
|
23
|
+
.nav-list > .active > a,
|
24
|
+
.navbar-inverse .nav > .active > a,
|
25
|
+
.navbar-inverse .nav > .active > a,
|
26
|
+
.dropdown-menu > li > a:hover,
|
27
|
+
.dropdown-menu > li > a:hover,
|
28
|
+
.dropdown-menu > .active > a,
|
29
|
+
.dropdown-menu > .active > a,
|
30
|
+
.dropdown-submenu:hover > a,
|
31
|
+
.dropdown-submenu:hover > a
|
32
|
+
& > [class^="icon-"], & > [class*=" icon-"]
|
33
|
+
background-image: none
|
34
|
+
|
35
|
+
/* keeps Bootstrap styles with and without icons the same */
|
36
|
+
.btn, .nav
|
37
|
+
[class^="icon-"],
|
38
|
+
[class*=" icon-"]
|
39
|
+
&.icon-large
|
40
|
+
line-height: .9em
|
41
|
+
&.icon-spin
|
42
|
+
display: inline-block
|
43
|
+
|
44
|
+
|
45
|
+
.nav-tabs, .nav-pills
|
46
|
+
[class^="icon-"],
|
47
|
+
[class*=" icon-"]
|
48
|
+
&, &.icon-large
|
49
|
+
line-height: .9em
|
50
|
+
|
51
|
+
|
52
|
+
.btn
|
53
|
+
[class^="icon-"],
|
54
|
+
[class*=" icon-"]
|
55
|
+
&.pull-left, &.pull-right
|
56
|
+
&.icon-2x
|
57
|
+
margin-top: .18em
|
58
|
+
|
59
|
+
&.icon-spin.icon-large
|
60
|
+
line-height: .8em
|
61
|
+
|
62
|
+
|
63
|
+
.btn.btn-small
|
64
|
+
[class^="icon-"],
|
65
|
+
[class*=" icon-"]
|
66
|
+
&.pull-left, &.pull-right
|
67
|
+
&.icon-2x
|
68
|
+
margin-top: .25em
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
.btn.btn-large
|
73
|
+
[class^="icon-"],
|
74
|
+
[class*=" icon-"]
|
75
|
+
margin-top: 0 // overrides bootstrap default
|
76
|
+
&.pull-left, &.pull-right
|
77
|
+
&.icon-2x
|
78
|
+
margin-top: .05em
|
79
|
+
|
80
|
+
&.pull-left.icon-2x
|
81
|
+
margin-right: .2em
|
82
|
+
&.pull-right.icon-2x
|
83
|
+
margin-left: .2em
|
84
|
+
|
85
|
+
|
@@ -0,0 +1,106 @@
|
|
1
|
+
/* FONT AWESOME CORE
|
2
|
+
* -------------------------- */
|
3
|
+
|
4
|
+
[class^="icon-"],
|
5
|
+
[class*=" icon-"]
|
6
|
+
+fontawesome
|
7
|
+
|
8
|
+
|
9
|
+
/* makes the font 33% larger relative to the icon container */
|
10
|
+
.icon-large
|
11
|
+
+icon-large
|
12
|
+
|
13
|
+
/* makes sure icons active on rollover in links */
|
14
|
+
a
|
15
|
+
[class^="icon-"], [class*=" icon-"]
|
16
|
+
&, &:before
|
17
|
+
display: inline
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
/* increased font size for icon-large */
|
22
|
+
[class^="icon-"],
|
23
|
+
[class*=" icon-"]
|
24
|
+
&.icon-fixed-width
|
25
|
+
display: inline-block
|
26
|
+
width: 18/14em
|
27
|
+
text-align: center
|
28
|
+
&.icon-large
|
29
|
+
width: 22/14em
|
30
|
+
|
31
|
+
|
32
|
+
ul.icons-ul
|
33
|
+
+icon-list
|
34
|
+
|
35
|
+
|
36
|
+
// allows usage of the hide class directly on font awesome icons
|
37
|
+
[class^="icon-"],
|
38
|
+
[class*=" icon-"]
|
39
|
+
&.hide
|
40
|
+
display: none
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
.icon-muted
|
45
|
+
color: $iconMuted
|
46
|
+
.icon-light
|
47
|
+
color: $iconLight
|
48
|
+
.icon-dark
|
49
|
+
color: $iconDark
|
50
|
+
|
51
|
+
// Icon Borders
|
52
|
+
// -------------------------
|
53
|
+
|
54
|
+
.icon-border
|
55
|
+
border: solid 1px $borderColor
|
56
|
+
padding: .2em .25em .15em
|
57
|
+
+border-radius(3px)
|
58
|
+
|
59
|
+
|
60
|
+
// Icon Sizes
|
61
|
+
// -------------------------
|
62
|
+
|
63
|
+
.icon-2x
|
64
|
+
font-size: 2em
|
65
|
+
&.icon-border
|
66
|
+
border-width: 2px
|
67
|
+
+border-radius(4px)
|
68
|
+
|
69
|
+
|
70
|
+
.icon-3x
|
71
|
+
font-size: 3em
|
72
|
+
&.icon-border
|
73
|
+
border-width: 3px
|
74
|
+
+border-radius(5px)
|
75
|
+
|
76
|
+
|
77
|
+
.icon-4x
|
78
|
+
font-size: 4em
|
79
|
+
&.icon-border
|
80
|
+
border-width: 4px
|
81
|
+
+border-radius(6px)
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
.icon-5x
|
86
|
+
font-size: 5em
|
87
|
+
&.icon-border
|
88
|
+
border-width: 5px
|
89
|
+
+border-radius(7px)
|
90
|
+
|
91
|
+
|
92
|
+
// Floats & Margins
|
93
|
+
// -------------------------
|
94
|
+
|
95
|
+
// Quick floats
|
96
|
+
.pull-right
|
97
|
+
float: right
|
98
|
+
.pull-left
|
99
|
+
float: left
|
100
|
+
|
101
|
+
[class^="icon-"], [class*=" icon-"]
|
102
|
+
&.pull-left
|
103
|
+
margin-right: .3em
|
104
|
+
|
105
|
+
&.pull-right
|
106
|
+
margin-left: .3em
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/* EXTRAS
|
2
|
+
* -------------------------- */
|
3
|
+
+keyframes(spin)
|
4
|
+
0%
|
5
|
+
+experimental(transform, rotate(0deg))
|
6
|
+
100%
|
7
|
+
+experimental(transform, rotate(359deg))
|
8
|
+
|
9
|
+
|
10
|
+
/* Stacked and layered icon */
|
11
|
+
+icon-stack
|
12
|
+
|
13
|
+
.icon-spin
|
14
|
+
+icon-spin
|
15
|
+
.icon-rotate-270
|
16
|
+
+icon-rotate-270
|
17
|
+
.icon-flip-horizontal
|
18
|
+
+icon-flip-horizontal
|
19
|
+
.icon-flip-vertical
|
20
|
+
+icon-flip-vertical
|
21
|
+
.icon-rotate-90
|
22
|
+
+icon-rotate-90
|
@@ -0,0 +1,410 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome 3.1.0
|
3
|
+
* the iconic font designed for Bootstrap
|
4
|
+
* -------------------------------------------------------
|
5
|
+
* The full suite of pictographic icons, examples, and documentation
|
6
|
+
* can be found at: http://fontawesome.io
|
7
|
+
*
|
8
|
+
* License
|
9
|
+
* -------------------------------------------------------
|
10
|
+
* - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
|
11
|
+
* http://scripts.sil.org/OFL
|
12
|
+
* - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
|
13
|
+
* http://opensource.org/licenses/mit-license.html
|
14
|
+
* - Font Awesome documentation licensed under CC BY 3.0 License -
|
15
|
+
* http://creativecommons.org/licenses/by/3.0/
|
16
|
+
* - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
17
|
+
* "Font Awesome by Dave Gandy - http://fontawesome.io"
|
18
|
+
|
19
|
+
* Contact
|
20
|
+
* -------------------------------------------------------
|
21
|
+
* Email: dave@fontawesome.io
|
22
|
+
* Twitter: http://twitter.com/fortaweso_me
|
23
|
+
* Work: Lead Product Designer @ http://kyruus.com
|
24
|
+
*/
|
25
|
+
|
26
|
+
.icon-large
|
27
|
+
font-size: 4/3em
|
28
|
+
margin-top: -4px
|
29
|
+
padding-top: 3px
|
30
|
+
margin-bottom: -4px
|
31
|
+
padding-bottom: 3px
|
32
|
+
vertical-align: middle
|
33
|
+
|
34
|
+
|
35
|
+
.nav
|
36
|
+
[class^="icon-"],
|
37
|
+
[class*=" icon-"]
|
38
|
+
vertical-align: inherit
|
39
|
+
margin-top: -4px
|
40
|
+
padding-top: 3px
|
41
|
+
margin-bottom: -4px
|
42
|
+
padding-bottom: 3px
|
43
|
+
&.icon-large
|
44
|
+
vertical-align: -25%
|
45
|
+
|
46
|
+
|
47
|
+
.nav-pills, .nav-tabs
|
48
|
+
[class^="icon-"],
|
49
|
+
[class*=" icon-"]
|
50
|
+
&.icon-large
|
51
|
+
line-height: .75em
|
52
|
+
margin-top: -7px
|
53
|
+
padding-top: 5px
|
54
|
+
margin-bottom: -5px
|
55
|
+
padding-bottom: 4px
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
ul.icons-ul
|
61
|
+
text-indent: -1em
|
62
|
+
margin-left: 30/14em
|
63
|
+
|
64
|
+
> li
|
65
|
+
.icon-li
|
66
|
+
width: 1em
|
67
|
+
margin-right: 0
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
.btn
|
73
|
+
[class^="icon-"],
|
74
|
+
[class*=" icon-"]
|
75
|
+
&.pull-left, &.pull-right vertical-align: inherit
|
76
|
+
&.icon-large
|
77
|
+
margin-top: -.5em
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
a [class^="icon-"],
|
83
|
+
a [class*=" icon-"]
|
84
|
+
cursor: pointer
|
85
|
+
|
86
|
+
|
87
|
+
.ie7icon(@inner) *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@inner')"
|
88
|
+
|
89
|
+
.icon-glass .ie7icon('')
|
90
|
+
.icon-music .ie7icon('')
|
91
|
+
.icon-search .ie7icon('')
|
92
|
+
.icon-envelope .ie7icon('')
|
93
|
+
.icon-heart .ie7icon('')
|
94
|
+
.icon-star .ie7icon('')
|
95
|
+
.icon-star-empty .ie7icon('')
|
96
|
+
.icon-user .ie7icon('')
|
97
|
+
.icon-film .ie7icon('')
|
98
|
+
.icon-th-large .ie7icon('')
|
99
|
+
.icon-th .ie7icon('')
|
100
|
+
.icon-th-list .ie7icon('')
|
101
|
+
.icon-ok .ie7icon('')
|
102
|
+
.icon-remove .ie7icon('')
|
103
|
+
.icon-zoom-in .ie7icon('')
|
104
|
+
|
105
|
+
.icon-zoom-out .ie7icon('')
|
106
|
+
.icon-off .ie7icon('')
|
107
|
+
.icon-signal .ie7icon('')
|
108
|
+
.icon-cog .ie7icon('')
|
109
|
+
.icon-trash .ie7icon('')
|
110
|
+
.icon-home .ie7icon('')
|
111
|
+
.icon-file .ie7icon('')
|
112
|
+
.icon-time .ie7icon('')
|
113
|
+
.icon-road .ie7icon('')
|
114
|
+
.icon-download-alt .ie7icon('')
|
115
|
+
.icon-download .ie7icon('')
|
116
|
+
.icon-upload .ie7icon('')
|
117
|
+
.icon-inbox .ie7icon('')
|
118
|
+
.icon-play-circle .ie7icon('')
|
119
|
+
.icon-repeat .ie7icon('')
|
120
|
+
|
121
|
+
.icon-refresh .ie7icon('')
|
122
|
+
.icon-list-alt .ie7icon('')
|
123
|
+
.icon-lock .ie7icon('')
|
124
|
+
.icon-flag .ie7icon('')
|
125
|
+
.icon-headphones .ie7icon('')
|
126
|
+
.icon-volume-off .ie7icon('')
|
127
|
+
.icon-volume-down .ie7icon('')
|
128
|
+
.icon-volume-up .ie7icon('')
|
129
|
+
.icon-qrcode .ie7icon('')
|
130
|
+
.icon-barcode .ie7icon('')
|
131
|
+
.icon-tag .ie7icon('')
|
132
|
+
.icon-tags .ie7icon('')
|
133
|
+
.icon-book .ie7icon('')
|
134
|
+
.icon-bookmark .ie7icon('')
|
135
|
+
.icon-print .ie7icon('')
|
136
|
+
|
137
|
+
.icon-camera .ie7icon('')
|
138
|
+
.icon-font .ie7icon('')
|
139
|
+
.icon-bold .ie7icon('')
|
140
|
+
.icon-italic .ie7icon('')
|
141
|
+
.icon-text-height .ie7icon('')
|
142
|
+
.icon-text-width .ie7icon('')
|
143
|
+
.icon-align-left .ie7icon('')
|
144
|
+
.icon-align-center .ie7icon('')
|
145
|
+
.icon-align-right .ie7icon('')
|
146
|
+
.icon-align-justify .ie7icon('')
|
147
|
+
.icon-list .ie7icon('')
|
148
|
+
.icon-indent-left .ie7icon('')
|
149
|
+
.icon-indent-right .ie7icon('')
|
150
|
+
.icon-facetime-video .ie7icon('')
|
151
|
+
.icon-picture .ie7icon('')
|
152
|
+
|
153
|
+
.icon-pencil .ie7icon('')
|
154
|
+
.icon-map-marker .ie7icon('')
|
155
|
+
.icon-adjust .ie7icon('')
|
156
|
+
.icon-tint .ie7icon('')
|
157
|
+
.icon-edit .ie7icon('')
|
158
|
+
.icon-share .ie7icon('')
|
159
|
+
.icon-check .ie7icon('')
|
160
|
+
.icon-move .ie7icon('')
|
161
|
+
.icon-step-backward .ie7icon('')
|
162
|
+
.icon-fast-backward .ie7icon('')
|
163
|
+
.icon-backward .ie7icon('')
|
164
|
+
.icon-play .ie7icon('')
|
165
|
+
.icon-pause .ie7icon('')
|
166
|
+
.icon-stop .ie7icon('')
|
167
|
+
.icon-forward .ie7icon('')
|
168
|
+
|
169
|
+
.icon-fast-forward .ie7icon('')
|
170
|
+
.icon-step-forward .ie7icon('')
|
171
|
+
.icon-eject .ie7icon('')
|
172
|
+
.icon-chevron-left .ie7icon('')
|
173
|
+
.icon-chevron-right .ie7icon('')
|
174
|
+
.icon-plus-sign .ie7icon('')
|
175
|
+
.icon-minus-sign .ie7icon('')
|
176
|
+
.icon-remove-sign .ie7icon('')
|
177
|
+
.icon-ok-sign .ie7icon('')
|
178
|
+
.icon-question-sign .ie7icon('')
|
179
|
+
.icon-info-sign .ie7icon('')
|
180
|
+
.icon-screenshot .ie7icon('')
|
181
|
+
.icon-remove-circle .ie7icon('')
|
182
|
+
.icon-ok-circle .ie7icon('')
|
183
|
+
.icon-ban-circle .ie7icon('')
|
184
|
+
|
185
|
+
.icon-arrow-left .ie7icon('')
|
186
|
+
.icon-arrow-right .ie7icon('')
|
187
|
+
.icon-arrow-up .ie7icon('')
|
188
|
+
.icon-arrow-down .ie7icon('')
|
189
|
+
.icon-share-alt .ie7icon('')
|
190
|
+
.icon-resize-full .ie7icon('')
|
191
|
+
.icon-resize-small .ie7icon('')
|
192
|
+
.icon-plus .ie7icon('')
|
193
|
+
.icon-minus .ie7icon('')
|
194
|
+
.icon-asterisk .ie7icon('')
|
195
|
+
.icon-exclamation-sign .ie7icon('')
|
196
|
+
.icon-gift .ie7icon('')
|
197
|
+
.icon-leaf .ie7icon('')
|
198
|
+
.icon-fire .ie7icon('')
|
199
|
+
.icon-eye-open .ie7icon('')
|
200
|
+
|
201
|
+
.icon-eye-close .ie7icon('')
|
202
|
+
.icon-warning-sign .ie7icon('')
|
203
|
+
.icon-plane .ie7icon('')
|
204
|
+
.icon-calendar .ie7icon('')
|
205
|
+
.icon-random .ie7icon('')
|
206
|
+
.icon-comment .ie7icon('')
|
207
|
+
.icon-magnet .ie7icon('')
|
208
|
+
.icon-chevron-up .ie7icon('')
|
209
|
+
.icon-chevron-down .ie7icon('')
|
210
|
+
.icon-retweet .ie7icon('')
|
211
|
+
.icon-shopping-cart .ie7icon('')
|
212
|
+
.icon-folder-close .ie7icon('')
|
213
|
+
.icon-folder-open .ie7icon('')
|
214
|
+
.icon-resize-vertical .ie7icon('')
|
215
|
+
.icon-resize-horizontal .ie7icon('')
|
216
|
+
|
217
|
+
.icon-bar-chart .ie7icon('')
|
218
|
+
.icon-twitter-sign .ie7icon('')
|
219
|
+
.icon-facebook-sign .ie7icon('')
|
220
|
+
.icon-camera-retro .ie7icon('')
|
221
|
+
.icon-key .ie7icon('')
|
222
|
+
.icon-cogs .ie7icon('')
|
223
|
+
.icon-comments .ie7icon('')
|
224
|
+
.icon-thumbs-up .ie7icon('')
|
225
|
+
.icon-thumbs-down .ie7icon('')
|
226
|
+
.icon-star-half .ie7icon('')
|
227
|
+
.icon-heart-empty .ie7icon('')
|
228
|
+
.icon-signout .ie7icon('')
|
229
|
+
.icon-linkedin-sign .ie7icon('')
|
230
|
+
.icon-pushpin .ie7icon('')
|
231
|
+
.icon-external-link .ie7icon('')
|
232
|
+
|
233
|
+
.icon-signin .ie7icon('')
|
234
|
+
.icon-trophy .ie7icon('')
|
235
|
+
.icon-github-sign .ie7icon('')
|
236
|
+
.icon-upload-alt .ie7icon('')
|
237
|
+
.icon-lemon .ie7icon('')
|
238
|
+
.icon-phone .ie7icon('')
|
239
|
+
.icon-check-empty .ie7icon('')
|
240
|
+
.icon-bookmark-empty .ie7icon('')
|
241
|
+
.icon-phone-sign .ie7icon('')
|
242
|
+
.icon-twitter .ie7icon('')
|
243
|
+
.icon-facebook .ie7icon('')
|
244
|
+
.icon-github .ie7icon('')
|
245
|
+
.icon-unlock .ie7icon('')
|
246
|
+
.icon-credit-card .ie7icon('')
|
247
|
+
.icon-rss .ie7icon('')
|
248
|
+
|
249
|
+
.icon-hdd .ie7icon('')
|
250
|
+
.icon-bullhorn .ie7icon('')
|
251
|
+
.icon-bell .ie7icon('')
|
252
|
+
.icon-certificate .ie7icon('')
|
253
|
+
.icon-hand-right .ie7icon('')
|
254
|
+
.icon-hand-left .ie7icon('')
|
255
|
+
.icon-hand-up .ie7icon('')
|
256
|
+
.icon-hand-down .ie7icon('')
|
257
|
+
.icon-circle-arrow-left .ie7icon('')
|
258
|
+
.icon-circle-arrow-right .ie7icon('')
|
259
|
+
.icon-circle-arrow-up .ie7icon('')
|
260
|
+
.icon-circle-arrow-down .ie7icon('')
|
261
|
+
.icon-globe .ie7icon('')
|
262
|
+
.icon-wrench .ie7icon('')
|
263
|
+
.icon-tasks .ie7icon('')
|
264
|
+
|
265
|
+
.icon-filter .ie7icon('')
|
266
|
+
.icon-briefcase .ie7icon('')
|
267
|
+
.icon-fullscreen .ie7icon('')
|
268
|
+
|
269
|
+
.icon-group .ie7icon('')
|
270
|
+
.icon-link .ie7icon('')
|
271
|
+
.icon-cloud .ie7icon('')
|
272
|
+
.icon-beaker .ie7icon('')
|
273
|
+
.icon-cut .ie7icon('')
|
274
|
+
.icon-copy .ie7icon('')
|
275
|
+
.icon-paper-clip .ie7icon('')
|
276
|
+
.icon-save .ie7icon('')
|
277
|
+
.icon-sign-blank .ie7icon('')
|
278
|
+
.icon-reorder .ie7icon('')
|
279
|
+
.icon-list-ul .ie7icon('')
|
280
|
+
.icon-list-ol .ie7icon('')
|
281
|
+
.icon-strikethrough .ie7icon('')
|
282
|
+
.icon-underline .ie7icon('')
|
283
|
+
.icon-table .ie7icon('')
|
284
|
+
|
285
|
+
.icon-magic .ie7icon('')
|
286
|
+
.icon-truck .ie7icon('')
|
287
|
+
.icon-pinterest .ie7icon('')
|
288
|
+
.icon-pinterest-sign .ie7icon('')
|
289
|
+
.icon-google-plus-sign .ie7icon('')
|
290
|
+
.icon-google-plus .ie7icon('')
|
291
|
+
.icon-money .ie7icon('')
|
292
|
+
.icon-caret-down .ie7icon('')
|
293
|
+
.icon-caret-up .ie7icon('')
|
294
|
+
.icon-caret-left .ie7icon('')
|
295
|
+
.icon-caret-right .ie7icon('')
|
296
|
+
.icon-columns .ie7icon('')
|
297
|
+
.icon-sort .ie7icon('')
|
298
|
+
.icon-sort-down .ie7icon('')
|
299
|
+
.icon-sort-up .ie7icon('')
|
300
|
+
|
301
|
+
.icon-envelope-alt .ie7icon('')
|
302
|
+
.icon-linkedin .ie7icon('')
|
303
|
+
.icon-undo .ie7icon('')
|
304
|
+
.icon-legal .ie7icon('')
|
305
|
+
.icon-dashboard .ie7icon('')
|
306
|
+
.icon-comment-alt .ie7icon('')
|
307
|
+
.icon-comments-alt .ie7icon('')
|
308
|
+
.icon-bolt .ie7icon('')
|
309
|
+
.icon-sitemap .ie7icon('')
|
310
|
+
.icon-umbrella .ie7icon('')
|
311
|
+
.icon-paste .ie7icon('')
|
312
|
+
.icon-lightbulb .ie7icon('')
|
313
|
+
.icon-exchange .ie7icon('')
|
314
|
+
.icon-cloud-download .ie7icon('')
|
315
|
+
.icon-cloud-upload .ie7icon('')
|
316
|
+
|
317
|
+
.icon-user-md .ie7icon('')
|
318
|
+
.icon-stethoscope .ie7icon('')
|
319
|
+
.icon-suitcase .ie7icon('')
|
320
|
+
.icon-bell-alt .ie7icon('')
|
321
|
+
.icon-coffee .ie7icon('')
|
322
|
+
.icon-food .ie7icon('')
|
323
|
+
.icon-file-alt .ie7icon('')
|
324
|
+
.icon-building .ie7icon('')
|
325
|
+
.icon-hospital .ie7icon('')
|
326
|
+
.icon-ambulance .ie7icon('')
|
327
|
+
.icon-medkit .ie7icon('')
|
328
|
+
.icon-fighter-jet .ie7icon('')
|
329
|
+
.icon-beer .ie7icon('')
|
330
|
+
.icon-h-sign .ie7icon('')
|
331
|
+
.icon-plus-sign-alt .ie7icon('')
|
332
|
+
|
333
|
+
.icon-double-angle-left .ie7icon('')
|
334
|
+
.icon-double-angle-right .ie7icon('')
|
335
|
+
.icon-double-angle-up .ie7icon('')
|
336
|
+
.icon-double-angle-down .ie7icon('')
|
337
|
+
.icon-angle-left .ie7icon('')
|
338
|
+
.icon-angle-right .ie7icon('')
|
339
|
+
.icon-angle-up .ie7icon('')
|
340
|
+
.icon-angle-down .ie7icon('')
|
341
|
+
.icon-desktop .ie7icon('')
|
342
|
+
.icon-laptop .ie7icon('')
|
343
|
+
.icon-tablet .ie7icon('')
|
344
|
+
.icon-mobile-phone .ie7icon('')
|
345
|
+
.icon-circle-blank .ie7icon('')
|
346
|
+
.icon-quote-left .ie7icon('')
|
347
|
+
.icon-quote-right .ie7icon('')
|
348
|
+
|
349
|
+
.icon-spinner .ie7icon('')
|
350
|
+
.icon-circle .ie7icon('')
|
351
|
+
.icon-reply .ie7icon('')
|
352
|
+
.icon-folder-close-alt .ie7icon('')
|
353
|
+
.icon-folder-open-alt .ie7icon('')
|
354
|
+
.icon-expand-alt .ie7icon('')
|
355
|
+
.icon-collapse-alt .ie7icon('')
|
356
|
+
.icon-smile .ie7icon('')
|
357
|
+
.icon-frown .ie7icon('')
|
358
|
+
.icon-meh .ie7icon('')
|
359
|
+
.icon-gamepad .ie7icon('')
|
360
|
+
.icon-keyboard .ie7icon('')
|
361
|
+
.icon-flag-alt .ie7icon('')
|
362
|
+
.icon-flag-checkered .ie7icon('')
|
363
|
+
|
364
|
+
.icon-terminal .ie7icon('')
|
365
|
+
.icon-code .ie7icon('')
|
366
|
+
.icon-reply-all .ie7icon('')
|
367
|
+
.icon-mail-reply-all .ie7icon('')
|
368
|
+
.icon-star-half-empty .ie7icon('')
|
369
|
+
.icon-location-arrow .ie7icon('')
|
370
|
+
.icon-crop .ie7icon('')
|
371
|
+
.icon-code-fork .ie7icon('')
|
372
|
+
.icon-unlink .ie7icon('')
|
373
|
+
.icon-question .ie7icon('')
|
374
|
+
.icon-info .ie7icon('')
|
375
|
+
.icon-exclamation .ie7icon('')
|
376
|
+
.icon-superscript .ie7icon('')
|
377
|
+
.icon-subscript .ie7icon('')
|
378
|
+
.icon-eraser .ie7icon('')
|
379
|
+
.icon-puzzle-piece .ie7icon('')
|
380
|
+
|
381
|
+
.icon-microphone .ie7icon('')
|
382
|
+
.icon-microphone-off .ie7icon('')
|
383
|
+
.icon-shield .ie7icon('')
|
384
|
+
.icon-calendar-empty .ie7icon('')
|
385
|
+
.icon-fire-extinguisher .ie7icon('')
|
386
|
+
.icon-rocket .ie7icon('')
|
387
|
+
.icon-maxcdn .ie7icon('')
|
388
|
+
.icon-chevron-sign-left .ie7icon('')
|
389
|
+
.icon-chevron-sign-right .ie7icon('')
|
390
|
+
.icon-chevron-sign-up .ie7icon('')
|
391
|
+
.icon-chevron-sign-down .ie7icon('')
|
392
|
+
.icon-html5 .ie7icon('')
|
393
|
+
.icon-css3 .ie7icon('')
|
394
|
+
.icon-anchor .ie7icon('')
|
395
|
+
.icon-unlock-alt .ie7icon('')
|
396
|
+
|
397
|
+
.icon-bullseye .ie7icon('')
|
398
|
+
.icon-ellipsis-horizontal .ie7icon('')
|
399
|
+
.icon-ellipsis-vertical .ie7icon('')
|
400
|
+
.icon-rss-sign .ie7icon('')
|
401
|
+
.icon-play-sign .ie7icon('')
|
402
|
+
.icon-ticket .ie7icon('')
|
403
|
+
.icon-minus-sign-alt .ie7icon('')
|
404
|
+
.icon-check-minus .ie7icon('')
|
405
|
+
.icon-level-up .ie7icon('')
|
406
|
+
.icon-level-down .ie7icon('')
|
407
|
+
.icon-check-sign .ie7icon('')
|
408
|
+
.icon-edit-sign .ie7icon('')
|
409
|
+
.icon-external-link-sign .ie7icon('')
|
410
|
+
.icon-share-sign .ie7icon('')
|