twitter-bootstrap-rails 2.1.7 → 2.2.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of twitter-bootstrap-rails might be problematic. Click here for more details.
- data/README.md +428 -21
- data/Rakefile +15 -3
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +399 -0
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-affix.js +12 -1
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-alert.js +12 -1
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-button.js +12 -1
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-carousel.js +42 -11
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-collapse.js +18 -7
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-dropdown.js +32 -11
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-modal.js +25 -12
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-popover.js +17 -6
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-scrollspy.js +13 -2
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-tab.js +12 -1
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-tooltip.js +115 -30
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-transition.js +1 -1
- data/{vendor → app}/assets/javascripts/twitter/bootstrap/bootstrap-typeahead.js +38 -13
- data/app/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +890 -0
- data/app/assets/stylesheets/twitter-bootstrap-static/fontawesome.css.erb +787 -0
- data/{vendor → app}/assets/stylesheets/twitter-bootstrap-static/sprites.css.erb +2 -2
- data/app/helpers/badge_label_helper.rb +16 -0
- data/app/helpers/bootstrap_flash_helper.rb +22 -16
- data/app/helpers/glyph_helper.rb +7 -2
- data/app/helpers/modal_helper.rb +29 -16
- data/app/helpers/navbar_helper.rb +194 -0
- data/app/helpers/twitter_breadcrumbs_helper.rb +7 -2
- data/app/views/twitter-bootstrap/_breadcrumbs.html.erb +2 -2
- data/lib/generators/bootstrap/install/install_generator.rb +19 -6
- data/lib/generators/bootstrap/install/templates/bootstrap.coffee +2 -3
- data/lib/generators/bootstrap/install/templates/bootstrap.js +2 -3
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +8 -10
- data/lib/generators/bootstrap/install/templates/en.bootstrap.yml +18 -0
- data/lib/generators/bootstrap/layout/templates/layout.html.erb +10 -12
- data/lib/generators/bootstrap/layout/templates/layout.html.haml +8 -11
- data/lib/generators/bootstrap/layout/templates/layout.html.slim +10 -11
- data/lib/generators/bootstrap/themed/templates/edit.html.erb +1 -2
- data/lib/generators/bootstrap/themed/templates/edit.html.haml +1 -1
- data/lib/generators/bootstrap/themed/templates/edit.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/index.html.erb +1 -1
- data/lib/generators/bootstrap/themed/templates/index.html.haml +1 -1
- data/lib/generators/bootstrap/themed/templates/index.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/new.html.erb +1 -2
- data/lib/generators/bootstrap/themed/templates/new.html.haml +1 -1
- data/lib/generators/bootstrap/themed/templates/new.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/show.html.erb +1 -1
- data/lib/generators/bootstrap/themed/templates/show.html.haml +1 -1
- data/lib/generators/bootstrap/themed/templates/show.html.slim +1 -1
- data/lib/generators/bootstrap/themed/themed_generator.rb +2 -2
- data/lib/twitter/bootstrap/rails/engine.rb +3 -0
- data/lib/twitter/bootstrap/rails/twitter-bootstrap-breadcrumbs.rb +14 -2
- data/lib/twitter/bootstrap/rails/version.rb +2 -2
- data/lib/twitter-bootstrap-rails.rb +4 -4
- data/spec/lib/twitter_bootstrap_rails/badge_label_helper_spec.rb +22 -0
- data/spec/lib/twitter_bootstrap_rails/modal_helper_spec.rb +62 -0
- data/spec/lib/twitter_bootstrap_rails/navbar_helper_spec.rb +362 -0
- data/spec/lib/twitter_bootstrap_rails/uri_state_spec.rb +47 -0
- data/spec/spec_helper.rb +11 -0
- data/test/lib/breadcrumbs_test.rb +75 -0
- data/test/test_helper.rb +11 -0
- data/vendor/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +316 -294
- data/vendor/static-source/fontawesome.less +8 -6
- data/vendor/static-source/sprites.less +3 -2
- data/vendor/toolkit/fontawesome/bootstrap.less +84 -0
- data/vendor/toolkit/fontawesome/core.less +129 -0
- data/vendor/toolkit/fontawesome/extras.less +93 -0
- data/vendor/toolkit/fontawesome/font-awesome-ie7.less +1953 -0
- data/vendor/toolkit/fontawesome/font-awesome.less +33 -0
- data/vendor/toolkit/fontawesome/icons.less +381 -0
- data/vendor/toolkit/fontawesome/mixins.less +48 -0
- data/vendor/toolkit/fontawesome/path.less +14 -0
- data/vendor/toolkit/fontawesome/variables.less +735 -0
- data/vendor/toolkit/twitter/bootstrap/alerts.less +14 -0
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +4 -4
- data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +6 -6
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +31 -44
- data/vendor/toolkit/twitter/bootstrap/buttons.less +13 -17
- data/vendor/toolkit/twitter/bootstrap/carousel.less +48 -21
- data/vendor/toolkit/twitter/bootstrap/close.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/code.less +3 -0
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +32 -21
- data/vendor/toolkit/twitter/bootstrap/forms.less +17 -10
- data/vendor/toolkit/twitter/bootstrap/labels-badges.less +12 -2
- data/vendor/toolkit/twitter/bootstrap/media.less +2 -2
- data/vendor/toolkit/twitter/bootstrap/mixins.less +25 -9
- data/vendor/toolkit/twitter/bootstrap/modals.less +4 -3
- data/vendor/toolkit/twitter/bootstrap/navbar.less +35 -13
- data/vendor/toolkit/twitter/bootstrap/navs.less +45 -21
- data/vendor/toolkit/twitter/bootstrap/pager.less +3 -1
- data/vendor/toolkit/twitter/bootstrap/pagination.less +3 -1
- data/vendor/toolkit/twitter/bootstrap/popovers.less +55 -39
- data/vendor/toolkit/twitter/bootstrap/reset.less +82 -4
- data/vendor/toolkit/twitter/bootstrap/responsive-767px-max.less +2 -2
- data/vendor/toolkit/twitter/bootstrap/responsive-navbar.less +6 -2
- data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +16 -0
- data/vendor/toolkit/twitter/bootstrap/responsive.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/sprites.less +9 -5
- data/vendor/toolkit/twitter/bootstrap/tables.less +54 -46
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +3 -2
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +6 -6
- data/vendor/toolkit/twitter/bootstrap/type.less +44 -24
- data/vendor/toolkit/twitter/bootstrap/variables.less +3 -3
- metadata +130 -44
- data/lib/generators/bootstrap/partial/templates/_navbar.html.erb +0 -13
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +0 -255
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/twitter-bootstrap-static/fontawesome.css.erb +0 -218
- data/vendor/toolkit/font-awesome-ie7.less +0 -245
- data/vendor/toolkit/fontawesome.less +0 -327
- /data/{vendor → app}/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
- /data/{vendor → app}/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
- /data/{vendor → app}/assets/javascripts/twitter/bootstrap.js +0 -0
- /data/{vendor → app}/assets/javascripts/twitter/bootstrap_ujs.js +0 -0
@@ -1,327 +0,0 @@
|
|
1
|
-
/* Font Awesome
|
2
|
-
the iconic font designed for use with Twitter Bootstrap
|
3
|
-
-------------------------------------------------------
|
4
|
-
The full suite of pictographic icons, examples, and documentation
|
5
|
-
can be found at: http://fortawesome.github.com/Font-Awesome/
|
6
|
-
|
7
|
-
License
|
8
|
-
-------------------------------------------------------
|
9
|
-
The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
|
10
|
-
http://creativecommons.org/licenses/by/3.0/ A mention of
|
11
|
-
'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
|
12
|
-
source code is considered acceptable attribution (most common on the web).
|
13
|
-
If human readable source code is not available to the end user, a mention in
|
14
|
-
an 'About' or 'Credits' screen is considered acceptable (most common in desktop
|
15
|
-
or mobile software).
|
16
|
-
|
17
|
-
Contact
|
18
|
-
-------------------------------------------------------
|
19
|
-
Email: dave@davegandy.com
|
20
|
-
Twitter: http://twitter.com/fortaweso_me
|
21
|
-
Work: Lead Product Designer @ http://kyruus.com
|
22
|
-
|
23
|
-
*/
|
24
|
-
|
25
|
-
@font-face {
|
26
|
-
font-family: "FontAwesome";
|
27
|
-
src: url(@fontAwesomeEotPath);
|
28
|
-
src: url(@fontAwesomeEotPath_iefix) format("embedded-opentype"),
|
29
|
-
url(@fontAwesomeWoffPath) format("woff"),
|
30
|
-
url(@fontAwesomeTtfPath) format("truetype"),
|
31
|
-
url(@fontAwesomeSvgPath) format("svg");
|
32
|
-
font-weight: normal;
|
33
|
-
font-style: normal;
|
34
|
-
}
|
35
|
-
|
36
|
-
/* Font Awesome styles
|
37
|
-
------------------------------------------------------- */
|
38
|
-
[class^="icon-"]:before,
|
39
|
-
[class*="icon-"]:before {
|
40
|
-
font-family: FontAwesome;
|
41
|
-
font-weight: normal;
|
42
|
-
font-style: normal;
|
43
|
-
display: inline-block;
|
44
|
-
text-decoration: inherit;
|
45
|
-
}
|
46
|
-
|
47
|
-
a [class^="icon-"],
|
48
|
-
a [class*="icon-"] {
|
49
|
-
display: inline-block;
|
50
|
-
text-decoration: inherit;
|
51
|
-
}
|
52
|
-
|
53
|
-
/* makes the font 33% larger relative to the icon container */
|
54
|
-
.icon-large:before {
|
55
|
-
vertical-align: middle;
|
56
|
-
font-size: 4/3em;
|
57
|
-
}
|
58
|
-
|
59
|
-
.btn, .nav-tabs {
|
60
|
-
[class^="icon-"],
|
61
|
-
[class*="icon-"] {
|
62
|
-
/* keeps button heights with and without icons the same */
|
63
|
-
line-height: .9em;
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
li {
|
68
|
-
[class^="icon-"],
|
69
|
-
[class*="icon-"] {
|
70
|
-
display: inline-block;
|
71
|
-
width: 1.25em;
|
72
|
-
text-align: center;
|
73
|
-
}
|
74
|
-
.icon-large:before,
|
75
|
-
.icon-large:before {
|
76
|
-
/* 1.5 increased font size for icon-large * 1.25 width */
|
77
|
-
width: 1.5*1.25em;
|
78
|
-
}
|
79
|
-
}
|
80
|
-
|
81
|
-
ul.icons {
|
82
|
-
list-style-type: none;
|
83
|
-
margin-left: 2em;
|
84
|
-
text-indent: -.8em;
|
85
|
-
|
86
|
-
li {
|
87
|
-
[class^="icon-"],
|
88
|
-
[class*="icon-"] {
|
89
|
-
width: .8em;
|
90
|
-
}
|
91
|
-
.icon-large:before,
|
92
|
-
.icon-large:before {
|
93
|
-
/* 1.5 increased font size for icon-large * 1.25 width */
|
94
|
-
vertical-align: initial;
|
95
|
-
// width: 1.5*1.25em;
|
96
|
-
}
|
97
|
-
}
|
98
|
-
}
|
99
|
-
|
100
|
-
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
101
|
-
readers do not read off random characters that represent icons */
|
102
|
-
.icon-glass:before { content: "\f000"; }
|
103
|
-
.icon-music:before { content: "\f001"; }
|
104
|
-
.icon-search:before { content: "\f002"; }
|
105
|
-
.icon-envelope:before { content: "\f003"; }
|
106
|
-
.icon-heart:before { content: "\f004"; }
|
107
|
-
.icon-star:before { content: "\f005"; }
|
108
|
-
.icon-star-empty:before { content: "\f006"; }
|
109
|
-
.icon-user:before { content: "\f007"; }
|
110
|
-
.icon-film:before { content: "\f008"; }
|
111
|
-
.icon-th-large:before { content: "\f009"; }
|
112
|
-
.icon-th:before { content: "\f00a"; }
|
113
|
-
.icon-th-list:before { content: "\f00b"; }
|
114
|
-
.icon-ok:before { content: "\f00c"; }
|
115
|
-
.icon-remove:before { content: "\f00d"; }
|
116
|
-
.icon-zoom-in:before { content: "\f00e"; }
|
117
|
-
|
118
|
-
.icon-zoom-out:before { content: "\f010"; }
|
119
|
-
.icon-off:before { content: "\f011"; }
|
120
|
-
.icon-signal:before { content: "\f012"; }
|
121
|
-
.icon-cog:before { content: "\f013"; }
|
122
|
-
.icon-trash:before { content: "\f014"; }
|
123
|
-
.icon-home:before { content: "\f015"; }
|
124
|
-
.icon-file:before { content: "\f016"; }
|
125
|
-
.icon-time:before { content: "\f017"; }
|
126
|
-
.icon-road:before { content: "\f018"; }
|
127
|
-
.icon-download-alt:before { content: "\f019"; }
|
128
|
-
.icon-download:before { content: "\f01a"; }
|
129
|
-
.icon-upload:before { content: "\f01b"; }
|
130
|
-
.icon-inbox:before { content: "\f01c"; }
|
131
|
-
.icon-play-circle:before { content: "\f01d"; }
|
132
|
-
.icon-repeat:before { content: "\f01e"; }
|
133
|
-
|
134
|
-
/* \f020 doesn't work in Safari. all shifted one down */
|
135
|
-
.icon-refresh:before { content: "\f021"; }
|
136
|
-
.icon-list-alt:before { content: "\f022"; }
|
137
|
-
.icon-lock:before { content: "\f023"; }
|
138
|
-
.icon-flag:before { content: "\f024"; }
|
139
|
-
.icon-headphones:before { content: "\f025"; }
|
140
|
-
.icon-volume-off:before { content: "\f026"; }
|
141
|
-
.icon-volume-down:before { content: "\f027"; }
|
142
|
-
.icon-volume-up:before { content: "\f028"; }
|
143
|
-
.icon-qrcode:before { content: "\f029"; }
|
144
|
-
.icon-barcode:before { content: "\f02a"; }
|
145
|
-
.icon-tag:before { content: "\f02b"; }
|
146
|
-
.icon-tags:before { content: "\f02c"; }
|
147
|
-
.icon-book:before { content: "\f02d"; }
|
148
|
-
.icon-bookmark:before { content: "\f02e"; }
|
149
|
-
.icon-print:before { content: "\f02f"; }
|
150
|
-
|
151
|
-
.icon-camera:before { content: "\f030"; }
|
152
|
-
.icon-font:before { content: "\f031"; }
|
153
|
-
.icon-bold:before { content: "\f032"; }
|
154
|
-
.icon-italic:before { content: "\f033"; }
|
155
|
-
.icon-text-height:before { content: "\f034"; }
|
156
|
-
.icon-text-width:before { content: "\f035"; }
|
157
|
-
.icon-align-left:before { content: "\f036"; }
|
158
|
-
.icon-align-center:before { content: "\f037"; }
|
159
|
-
.icon-align-right:before { content: "\f038"; }
|
160
|
-
.icon-align-justify:before { content: "\f039"; }
|
161
|
-
.icon-list:before { content: "\f03a"; }
|
162
|
-
.icon-indent-left:before { content: "\f03b"; }
|
163
|
-
.icon-indent-right:before { content: "\f03c"; }
|
164
|
-
.icon-facetime-video:before { content: "\f03d"; }
|
165
|
-
.icon-picture:before { content: "\f03e"; }
|
166
|
-
|
167
|
-
.icon-pencil:before { content: "\f040"; }
|
168
|
-
.icon-map-marker:before { content: "\f041"; }
|
169
|
-
.icon-adjust:before { content: "\f042"; }
|
170
|
-
.icon-tint:before { content: "\f043"; }
|
171
|
-
.icon-edit:before { content: "\f044"; }
|
172
|
-
.icon-share:before { content: "\f045"; }
|
173
|
-
.icon-check:before { content: "\f046"; }
|
174
|
-
.icon-move:before { content: "\f047"; }
|
175
|
-
.icon-step-backward:before { content: "\f048"; }
|
176
|
-
.icon-fast-backward:before { content: "\f049"; }
|
177
|
-
.icon-backward:before { content: "\f04a"; }
|
178
|
-
.icon-play:before { content: "\f04b"; }
|
179
|
-
.icon-pause:before { content: "\f04c"; }
|
180
|
-
.icon-stop:before { content: "\f04d"; }
|
181
|
-
.icon-forward:before { content: "\f04e"; }
|
182
|
-
|
183
|
-
.icon-fast-forward:before { content: "\f050"; }
|
184
|
-
.icon-step-forward:before { content: "\f051"; }
|
185
|
-
.icon-eject:before { content: "\f052"; }
|
186
|
-
.icon-chevron-left:before { content: "\f053"; }
|
187
|
-
.icon-chevron-right:before { content: "\f054"; }
|
188
|
-
.icon-plus-sign:before { content: "\f055"; }
|
189
|
-
.icon-minus-sign:before { content: "\f056"; }
|
190
|
-
.icon-remove-sign:before { content: "\f057"; }
|
191
|
-
.icon-ok-sign:before { content: "\f058"; }
|
192
|
-
.icon-question-sign:before { content: "\f059"; }
|
193
|
-
.icon-info-sign:before { content: "\f05a"; }
|
194
|
-
.icon-screenshot:before { content: "\f05b"; }
|
195
|
-
.icon-remove-circle:before { content: "\f05c"; }
|
196
|
-
.icon-ok-circle:before { content: "\f05d"; }
|
197
|
-
.icon-ban-circle:before { content: "\f05e"; }
|
198
|
-
|
199
|
-
.icon-arrow-left:before { content: "\f060"; }
|
200
|
-
.icon-arrow-right:before { content: "\f061"; }
|
201
|
-
.icon-arrow-up:before { content: "\f062"; }
|
202
|
-
.icon-arrow-down:before { content: "\f063"; }
|
203
|
-
.icon-share-alt:before { content: "\f064"; }
|
204
|
-
.icon-resize-full:before { content: "\f065"; }
|
205
|
-
.icon-resize-small:before { content: "\f066"; }
|
206
|
-
.icon-plus:before { content: "\f067"; }
|
207
|
-
.icon-minus:before { content: "\f068"; }
|
208
|
-
.icon-asterisk:before { content: "\f069"; }
|
209
|
-
.icon-exclamation-sign:before { content: "\f06a"; }
|
210
|
-
.icon-gift:before { content: "\f06b"; }
|
211
|
-
.icon-leaf:before { content: "\f06c"; }
|
212
|
-
.icon-fire:before { content: "\f06d"; }
|
213
|
-
.icon-eye-open:before { content: "\f06e"; }
|
214
|
-
|
215
|
-
.icon-eye-close:before { content: "\f070"; }
|
216
|
-
.icon-warning-sign:before { content: "\f071"; }
|
217
|
-
.icon-plane:before { content: "\f072"; }
|
218
|
-
.icon-calendar:before { content: "\f073"; }
|
219
|
-
.icon-random:before { content: "\f074"; }
|
220
|
-
.icon-comment:before { content: "\f075"; }
|
221
|
-
.icon-magnet:before { content: "\f076"; }
|
222
|
-
.icon-chevron-up:before { content: "\f077"; }
|
223
|
-
.icon-chevron-down:before { content: "\f078"; }
|
224
|
-
.icon-retweet:before { content: "\f079"; }
|
225
|
-
.icon-shopping-cart:before { content: "\f07a"; }
|
226
|
-
.icon-folder-close:before { content: "\f07b"; }
|
227
|
-
.icon-folder-open:before { content: "\f07c"; }
|
228
|
-
.icon-resize-vertical:before { content: "\f07d"; }
|
229
|
-
.icon-resize-horizontal:before { content: "\f07e"; }
|
230
|
-
|
231
|
-
.icon-bar-chart:before { content: "\f080"; }
|
232
|
-
.icon-twitter-sign:before { content: "\f081"; }
|
233
|
-
.icon-facebook-sign:before { content: "\f082"; }
|
234
|
-
.icon-camera-retro:before { content: "\f083"; }
|
235
|
-
.icon-key:before { content: "\f084"; }
|
236
|
-
.icon-cogs:before { content: "\f085"; }
|
237
|
-
.icon-comments:before { content: "\f086"; }
|
238
|
-
.icon-thumbs-up:before { content: "\f087"; }
|
239
|
-
.icon-thumbs-down:before { content: "\f088"; }
|
240
|
-
.icon-star-half:before { content: "\f089"; }
|
241
|
-
.icon-heart-empty:before { content: "\f08a"; }
|
242
|
-
.icon-signout:before { content: "\f08b"; }
|
243
|
-
.icon-linkedin-sign:before { content: "\f08c"; }
|
244
|
-
.icon-pushpin:before { content: "\f08d"; }
|
245
|
-
.icon-external-link:before { content: "\f08e"; }
|
246
|
-
|
247
|
-
.icon-signin:before { content: "\f090"; }
|
248
|
-
.icon-trophy:before { content: "\f091"; }
|
249
|
-
.icon-github-sign:before { content: "\f092"; }
|
250
|
-
.icon-upload-alt:before { content: "\f093"; }
|
251
|
-
.icon-lemon:before { content: "\f094"; }
|
252
|
-
.icon-phone:before { content: "\f095"; }
|
253
|
-
.icon-check-empty:before { content: "\f096"; }
|
254
|
-
.icon-bookmark-empty:before { content: "\f097"; }
|
255
|
-
.icon-phone-sign:before { content: "\f098"; }
|
256
|
-
.icon-twitter:before { content: "\f099"; }
|
257
|
-
.icon-facebook:before { content: "\f09a"; }
|
258
|
-
.icon-github:before { content: "\f09b"; }
|
259
|
-
.icon-unlock:before { content: "\f09c"; }
|
260
|
-
.icon-credit-card:before { content: "\f09d"; }
|
261
|
-
.icon-rss:before { content: "\f09e"; }
|
262
|
-
|
263
|
-
.icon-hdd:before { content: "\f0a0"; }
|
264
|
-
.icon-bullhorn:before { content: "\f0a1"; }
|
265
|
-
.icon-bell:before { content: "\f0a2"; }
|
266
|
-
.icon-certificate:before { content: "\f0a3"; }
|
267
|
-
.icon-hand-right:before { content: "\f0a4"; }
|
268
|
-
.icon-hand-left:before { content: "\f0a5"; }
|
269
|
-
.icon-hand-up:before { content: "\f0a6"; }
|
270
|
-
.icon-hand-down:before { content: "\f0a7"; }
|
271
|
-
.icon-circle-arrow-left:before { content: "\f0a8"; }
|
272
|
-
.icon-circle-arrow-right:before { content: "\f0a9"; }
|
273
|
-
.icon-circle-arrow-up:before { content: "\f0aa"; }
|
274
|
-
.icon-circle-arrow-down:before { content: "\f0ab"; }
|
275
|
-
.icon-globe:before { content: "\f0ac"; }
|
276
|
-
.icon-wrench:before { content: "\f0ad"; }
|
277
|
-
.icon-tasks:before { content: "\f0ae"; }
|
278
|
-
|
279
|
-
.icon-filter:before { content: "\f0b0"; }
|
280
|
-
.icon-briefcase:before { content: "\f0b1"; }
|
281
|
-
.icon-fullscreen:before { content: "\f0b2"; }
|
282
|
-
|
283
|
-
.icon-group:before { content: "\f0c0"; }
|
284
|
-
.icon-link:before { content: "\f0c1"; }
|
285
|
-
.icon-cloud:before { content: "\f0c2"; }
|
286
|
-
.icon-beaker:before { content: "\f0c3"; }
|
287
|
-
.icon-cut:before { content: "\f0c4"; }
|
288
|
-
.icon-copy:before { content: "\f0c5"; }
|
289
|
-
.icon-paper-clip:before { content: "\f0c6"; }
|
290
|
-
.icon-save:before { content: "\f0c7"; }
|
291
|
-
.icon-sign-blank:before { content: "\f0c8"; }
|
292
|
-
.icon-reorder:before { content: "\f0c9"; }
|
293
|
-
.icon-list-ul:before { content: "\f0ca"; }
|
294
|
-
.icon-list-ol:before { content: "\f0cb"; }
|
295
|
-
.icon-strikethrough:before { content: "\f0cc"; }
|
296
|
-
.icon-underline:before { content: "\f0cd"; }
|
297
|
-
.icon-table:before { content: "\f0ce"; }
|
298
|
-
|
299
|
-
.icon-magic:before { content: "\f0d0"; }
|
300
|
-
.icon-truck:before { content: "\f0d1"; }
|
301
|
-
.icon-pinterest:before { content: "\f0d2"; }
|
302
|
-
.icon-pinterest-sign:before { content: "\f0d3"; }
|
303
|
-
.icon-google-plus-sign:before { content: "\f0d4"; }
|
304
|
-
.icon-google-plus:before { content: "\f0d5"; }
|
305
|
-
.icon-money:before { content: "\f0d6"; }
|
306
|
-
.icon-caret-down:before { content: "\f0d7"; }
|
307
|
-
.icon-caret-up:before { content: "\f0d8"; }
|
308
|
-
.icon-caret-left:before { content: "\f0d9"; }
|
309
|
-
.icon-caret-right:before { content: "\f0da"; }
|
310
|
-
.icon-columns:before { content: "\f0db"; }
|
311
|
-
.icon-sort:before { content: "\f0dc"; }
|
312
|
-
.icon-sort-down:before { content: "\f0dd"; }
|
313
|
-
.icon-sort-up:before { content: "\f0de"; }
|
314
|
-
|
315
|
-
.icon-envelope-alt:before { content: "\f0e0"; }
|
316
|
-
.icon-linkedin:before { content: "\f0e1"; }
|
317
|
-
.icon-undo:before { content: "\f0e2"; }
|
318
|
-
.icon-legal:before { content: "\f0e3"; }
|
319
|
-
.icon-dashboard:before { content: "\f0e4"; }
|
320
|
-
.icon-comment-alt:before { content: "\f0e5"; }
|
321
|
-
.icon-comments-alt:before { content: "\f0e6"; }
|
322
|
-
.icon-bolt:before { content: "\f0e7"; }
|
323
|
-
.icon-sitemap:before { content: "\f0e8"; }
|
324
|
-
.icon-umbrella:before { content: "\f0e9"; }
|
325
|
-
.icon-paste:before { content: "\f0ea"; }
|
326
|
-
|
327
|
-
.icon-user-md:before { content: "\f200"; }
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|