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,218 +0,0 @@
|
|
1
|
-
@font-face{font-family:"FontAwesome";src:url("<%= asset_path 'fontawesome-webfont.eot' %>");src:url("<%= asset_path 'fontawesome-webfont.eot#iefix' %>") format("embedded-opentype"),url("<%= asset_path 'fontawesome-webfont.woff' %>") format("woff"),url("<%= asset_path 'fontawesome-webfont.ttf' %>") format("truetype"),url("<%= asset_path 'fontawesome-webfont.svg' %>") format("svg");font-weight:normal;font-style:normal;}[class^="icon-"]:before,[class*="icon-"]:before{font-family:FontAwesome;font-weight:normal;font-style:normal;display:inline-block;text-decoration:inherit;}
|
2
|
-
a [class^="icon-"],a [class*="icon-"]{display:inline-block;text-decoration:inherit;}
|
3
|
-
.icon-large:before{vertical-align:middle;font-size:1.3333333333333333em;}
|
4
|
-
.btn [class^="icon-"],.nav-tabs [class^="icon-"],.btn [class*="icon-"],.nav-tabs [class*="icon-"]{line-height:.9em;}
|
5
|
-
li [class^="icon-"],li [class*="icon-"]{display:inline-block;width:1.25em;text-align:center;}
|
6
|
-
li .icon-large:before,li .icon-large:before{width:1.875em;}
|
7
|
-
ul.icons{list-style-type:none;margin-left:2em;text-indent:-0.8em;}ul.icons li [class^="icon-"],ul.icons li [class*="icon-"]{width:.8em;}
|
8
|
-
ul.icons li .icon-large:before,ul.icons li .icon-large:before{vertical-align:initial;}
|
9
|
-
.icon-glass:before{content:"\f000";}
|
10
|
-
.icon-music:before{content:"\f001";}
|
11
|
-
.icon-search:before{content:"\f002";}
|
12
|
-
.icon-envelope:before{content:"\f003";}
|
13
|
-
.icon-heart:before{content:"\f004";}
|
14
|
-
.icon-star:before{content:"\f005";}
|
15
|
-
.icon-star-empty:before{content:"\f006";}
|
16
|
-
.icon-user:before{content:"\f007";}
|
17
|
-
.icon-film:before{content:"\f008";}
|
18
|
-
.icon-th-large:before{content:"\f009";}
|
19
|
-
.icon-th:before{content:"\f00a";}
|
20
|
-
.icon-th-list:before{content:"\f00b";}
|
21
|
-
.icon-ok:before{content:"\f00c";}
|
22
|
-
.icon-remove:before{content:"\f00d";}
|
23
|
-
.icon-zoom-in:before{content:"\f00e";}
|
24
|
-
.icon-zoom-out:before{content:"\f010";}
|
25
|
-
.icon-off:before{content:"\f011";}
|
26
|
-
.icon-signal:before{content:"\f012";}
|
27
|
-
.icon-cog:before{content:"\f013";}
|
28
|
-
.icon-trash:before{content:"\f014";}
|
29
|
-
.icon-home:before{content:"\f015";}
|
30
|
-
.icon-file:before{content:"\f016";}
|
31
|
-
.icon-time:before{content:"\f017";}
|
32
|
-
.icon-road:before{content:"\f018";}
|
33
|
-
.icon-download-alt:before{content:"\f019";}
|
34
|
-
.icon-download:before{content:"\f01a";}
|
35
|
-
.icon-upload:before{content:"\f01b";}
|
36
|
-
.icon-inbox:before{content:"\f01c";}
|
37
|
-
.icon-play-circle:before{content:"\f01d";}
|
38
|
-
.icon-repeat:before{content:"\f01e";}
|
39
|
-
.icon-refresh:before{content:"\f021";}
|
40
|
-
.icon-list-alt:before{content:"\f022";}
|
41
|
-
.icon-lock:before{content:"\f023";}
|
42
|
-
.icon-flag:before{content:"\f024";}
|
43
|
-
.icon-headphones:before{content:"\f025";}
|
44
|
-
.icon-volume-off:before{content:"\f026";}
|
45
|
-
.icon-volume-down:before{content:"\f027";}
|
46
|
-
.icon-volume-up:before{content:"\f028";}
|
47
|
-
.icon-qrcode:before{content:"\f029";}
|
48
|
-
.icon-barcode:before{content:"\f02a";}
|
49
|
-
.icon-tag:before{content:"\f02b";}
|
50
|
-
.icon-tags:before{content:"\f02c";}
|
51
|
-
.icon-book:before{content:"\f02d";}
|
52
|
-
.icon-bookmark:before{content:"\f02e";}
|
53
|
-
.icon-print:before{content:"\f02f";}
|
54
|
-
.icon-camera:before{content:"\f030";}
|
55
|
-
.icon-font:before{content:"\f031";}
|
56
|
-
.icon-bold:before{content:"\f032";}
|
57
|
-
.icon-italic:before{content:"\f033";}
|
58
|
-
.icon-text-height:before{content:"\f034";}
|
59
|
-
.icon-text-width:before{content:"\f035";}
|
60
|
-
.icon-align-left:before{content:"\f036";}
|
61
|
-
.icon-align-center:before{content:"\f037";}
|
62
|
-
.icon-align-right:before{content:"\f038";}
|
63
|
-
.icon-align-justify:before{content:"\f039";}
|
64
|
-
.icon-list:before{content:"\f03a";}
|
65
|
-
.icon-indent-left:before{content:"\f03b";}
|
66
|
-
.icon-indent-right:before{content:"\f03c";}
|
67
|
-
.icon-facetime-video:before{content:"\f03d";}
|
68
|
-
.icon-picture:before{content:"\f03e";}
|
69
|
-
.icon-pencil:before{content:"\f040";}
|
70
|
-
.icon-map-marker:before{content:"\f041";}
|
71
|
-
.icon-adjust:before{content:"\f042";}
|
72
|
-
.icon-tint:before{content:"\f043";}
|
73
|
-
.icon-edit:before{content:"\f044";}
|
74
|
-
.icon-share:before{content:"\f045";}
|
75
|
-
.icon-check:before{content:"\f046";}
|
76
|
-
.icon-move:before{content:"\f047";}
|
77
|
-
.icon-step-backward:before{content:"\f048";}
|
78
|
-
.icon-fast-backward:before{content:"\f049";}
|
79
|
-
.icon-backward:before{content:"\f04a";}
|
80
|
-
.icon-play:before{content:"\f04b";}
|
81
|
-
.icon-pause:before{content:"\f04c";}
|
82
|
-
.icon-stop:before{content:"\f04d";}
|
83
|
-
.icon-forward:before{content:"\f04e";}
|
84
|
-
.icon-fast-forward:before{content:"\f050";}
|
85
|
-
.icon-step-forward:before{content:"\f051";}
|
86
|
-
.icon-eject:before{content:"\f052";}
|
87
|
-
.icon-chevron-left:before{content:"\f053";}
|
88
|
-
.icon-chevron-right:before{content:"\f054";}
|
89
|
-
.icon-plus-sign:before{content:"\f055";}
|
90
|
-
.icon-minus-sign:before{content:"\f056";}
|
91
|
-
.icon-remove-sign:before{content:"\f057";}
|
92
|
-
.icon-ok-sign:before{content:"\f058";}
|
93
|
-
.icon-question-sign:before{content:"\f059";}
|
94
|
-
.icon-info-sign:before{content:"\f05a";}
|
95
|
-
.icon-screenshot:before{content:"\f05b";}
|
96
|
-
.icon-remove-circle:before{content:"\f05c";}
|
97
|
-
.icon-ok-circle:before{content:"\f05d";}
|
98
|
-
.icon-ban-circle:before{content:"\f05e";}
|
99
|
-
.icon-arrow-left:before{content:"\f060";}
|
100
|
-
.icon-arrow-right:before{content:"\f061";}
|
101
|
-
.icon-arrow-up:before{content:"\f062";}
|
102
|
-
.icon-arrow-down:before{content:"\f063";}
|
103
|
-
.icon-share-alt:before{content:"\f064";}
|
104
|
-
.icon-resize-full:before{content:"\f065";}
|
105
|
-
.icon-resize-small:before{content:"\f066";}
|
106
|
-
.icon-plus:before{content:"\f067";}
|
107
|
-
.icon-minus:before{content:"\f068";}
|
108
|
-
.icon-asterisk:before{content:"\f069";}
|
109
|
-
.icon-exclamation-sign:before{content:"\f06a";}
|
110
|
-
.icon-gift:before{content:"\f06b";}
|
111
|
-
.icon-leaf:before{content:"\f06c";}
|
112
|
-
.icon-fire:before{content:"\f06d";}
|
113
|
-
.icon-eye-open:before{content:"\f06e";}
|
114
|
-
.icon-eye-close:before{content:"\f070";}
|
115
|
-
.icon-warning-sign:before{content:"\f071";}
|
116
|
-
.icon-plane:before{content:"\f072";}
|
117
|
-
.icon-calendar:before{content:"\f073";}
|
118
|
-
.icon-random:before{content:"\f074";}
|
119
|
-
.icon-comment:before{content:"\f075";}
|
120
|
-
.icon-magnet:before{content:"\f076";}
|
121
|
-
.icon-chevron-up:before{content:"\f077";}
|
122
|
-
.icon-chevron-down:before{content:"\f078";}
|
123
|
-
.icon-retweet:before{content:"\f079";}
|
124
|
-
.icon-shopping-cart:before{content:"\f07a";}
|
125
|
-
.icon-folder-close:before{content:"\f07b";}
|
126
|
-
.icon-folder-open:before{content:"\f07c";}
|
127
|
-
.icon-resize-vertical:before{content:"\f07d";}
|
128
|
-
.icon-resize-horizontal:before{content:"\f07e";}
|
129
|
-
.icon-bar-chart:before{content:"\f080";}
|
130
|
-
.icon-twitter-sign:before{content:"\f081";}
|
131
|
-
.icon-facebook-sign:before{content:"\f082";}
|
132
|
-
.icon-camera-retro:before{content:"\f083";}
|
133
|
-
.icon-key:before{content:"\f084";}
|
134
|
-
.icon-cogs:before{content:"\f085";}
|
135
|
-
.icon-comments:before{content:"\f086";}
|
136
|
-
.icon-thumbs-up:before{content:"\f087";}
|
137
|
-
.icon-thumbs-down:before{content:"\f088";}
|
138
|
-
.icon-star-half:before{content:"\f089";}
|
139
|
-
.icon-heart-empty:before{content:"\f08a";}
|
140
|
-
.icon-signout:before{content:"\f08b";}
|
141
|
-
.icon-linkedin-sign:before{content:"\f08c";}
|
142
|
-
.icon-pushpin:before{content:"\f08d";}
|
143
|
-
.icon-external-link:before{content:"\f08e";}
|
144
|
-
.icon-signin:before{content:"\f090";}
|
145
|
-
.icon-trophy:before{content:"\f091";}
|
146
|
-
.icon-github-sign:before{content:"\f092";}
|
147
|
-
.icon-upload-alt:before{content:"\f093";}
|
148
|
-
.icon-lemon:before{content:"\f094";}
|
149
|
-
.icon-phone:before{content:"\f095";}
|
150
|
-
.icon-check-empty:before{content:"\f096";}
|
151
|
-
.icon-bookmark-empty:before{content:"\f097";}
|
152
|
-
.icon-phone-sign:before{content:"\f098";}
|
153
|
-
.icon-twitter:before{content:"\f099";}
|
154
|
-
.icon-facebook:before{content:"\f09a";}
|
155
|
-
.icon-github:before{content:"\f09b";}
|
156
|
-
.icon-unlock:before{content:"\f09c";}
|
157
|
-
.icon-credit-card:before{content:"\f09d";}
|
158
|
-
.icon-rss:before{content:"\f09e";}
|
159
|
-
.icon-hdd:before{content:"\f0a0";}
|
160
|
-
.icon-bullhorn:before{content:"\f0a1";}
|
161
|
-
.icon-bell:before{content:"\f0a2";}
|
162
|
-
.icon-certificate:before{content:"\f0a3";}
|
163
|
-
.icon-hand-right:before{content:"\f0a4";}
|
164
|
-
.icon-hand-left:before{content:"\f0a5";}
|
165
|
-
.icon-hand-up:before{content:"\f0a6";}
|
166
|
-
.icon-hand-down:before{content:"\f0a7";}
|
167
|
-
.icon-circle-arrow-left:before{content:"\f0a8";}
|
168
|
-
.icon-circle-arrow-right:before{content:"\f0a9";}
|
169
|
-
.icon-circle-arrow-up:before{content:"\f0aa";}
|
170
|
-
.icon-circle-arrow-down:before{content:"\f0ab";}
|
171
|
-
.icon-globe:before{content:"\f0ac";}
|
172
|
-
.icon-wrench:before{content:"\f0ad";}
|
173
|
-
.icon-tasks:before{content:"\f0ae";}
|
174
|
-
.icon-filter:before{content:"\f0b0";}
|
175
|
-
.icon-briefcase:before{content:"\f0b1";}
|
176
|
-
.icon-fullscreen:before{content:"\f0b2";}
|
177
|
-
.icon-group:before{content:"\f0c0";}
|
178
|
-
.icon-link:before{content:"\f0c1";}
|
179
|
-
.icon-cloud:before{content:"\f0c2";}
|
180
|
-
.icon-beaker:before{content:"\f0c3";}
|
181
|
-
.icon-cut:before{content:"\f0c4";}
|
182
|
-
.icon-copy:before{content:"\f0c5";}
|
183
|
-
.icon-paper-clip:before{content:"\f0c6";}
|
184
|
-
.icon-save:before{content:"\f0c7";}
|
185
|
-
.icon-sign-blank:before{content:"\f0c8";}
|
186
|
-
.icon-reorder:before{content:"\f0c9";}
|
187
|
-
.icon-list-ul:before{content:"\f0ca";}
|
188
|
-
.icon-list-ol:before{content:"\f0cb";}
|
189
|
-
.icon-strikethrough:before{content:"\f0cc";}
|
190
|
-
.icon-underline:before{content:"\f0cd";}
|
191
|
-
.icon-table:before{content:"\f0ce";}
|
192
|
-
.icon-magic:before{content:"\f0d0";}
|
193
|
-
.icon-truck:before{content:"\f0d1";}
|
194
|
-
.icon-pinterest:before{content:"\f0d2";}
|
195
|
-
.icon-pinterest-sign:before{content:"\f0d3";}
|
196
|
-
.icon-google-plus-sign:before{content:"\f0d4";}
|
197
|
-
.icon-google-plus:before{content:"\f0d5";}
|
198
|
-
.icon-money:before{content:"\f0d6";}
|
199
|
-
.icon-caret-down:before{content:"\f0d7";}
|
200
|
-
.icon-caret-up:before{content:"\f0d8";}
|
201
|
-
.icon-caret-left:before{content:"\f0d9";}
|
202
|
-
.icon-caret-right:before{content:"\f0da";}
|
203
|
-
.icon-columns:before{content:"\f0db";}
|
204
|
-
.icon-sort:before{content:"\f0dc";}
|
205
|
-
.icon-sort-down:before{content:"\f0dd";}
|
206
|
-
.icon-sort-up:before{content:"\f0de";}
|
207
|
-
.icon-envelope-alt:before{content:"\f0e0";}
|
208
|
-
.icon-linkedin:before{content:"\f0e1";}
|
209
|
-
.icon-undo:before{content:"\f0e2";}
|
210
|
-
.icon-legal:before{content:"\f0e3";}
|
211
|
-
.icon-dashboard:before{content:"\f0e4";}
|
212
|
-
.icon-comment-alt:before{content:"\f0e5";}
|
213
|
-
.icon-comments-alt:before{content:"\f0e6";}
|
214
|
-
.icon-bolt:before{content:"\f0e7";}
|
215
|
-
.icon-sitemap:before{content:"\f0e8";}
|
216
|
-
.icon-umbrella:before{content:"\f0e9";}
|
217
|
-
.icon-paste:before{content:"\f0ea";}
|
218
|
-
.icon-user-md:before{content:"\f200";}
|
@@ -1,245 +0,0 @@
|
|
1
|
-
[class^="icon-"],
|
2
|
-
[class*="icon-"] {
|
3
|
-
font-family: FontAwesome;
|
4
|
-
font-style: normal;
|
5
|
-
font-weight: normal;
|
6
|
-
}
|
7
|
-
|
8
|
-
.btn.dropdown-toggle [class^="icon-"], .btn.dropdown-toggle [class*="icon-"] {
|
9
|
-
/* keeps button heights with and without icons the same */
|
10
|
-
line-height: 1.4em;
|
11
|
-
}
|
12
|
-
|
13
|
-
.icon-large {
|
14
|
-
font-size: 1.3333em;
|
15
|
-
}
|
16
|
-
|
17
|
-
.ie7icon(@inner) {
|
18
|
-
*zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner} ')";
|
19
|
-
}
|
20
|
-
|
21
|
-
.icon-glass { .ie7icon(''); }
|
22
|
-
.icon-music { .ie7icon(''); }
|
23
|
-
.icon-search { .ie7icon(''); }
|
24
|
-
.icon-envelope { .ie7icon(''); }
|
25
|
-
.icon-heart { .ie7icon(''); }
|
26
|
-
.icon-star { .ie7icon(''); }
|
27
|
-
.icon-star-empty { .ie7icon(''); }
|
28
|
-
.icon-user { .ie7icon(''); }
|
29
|
-
.icon-film { .ie7icon(''); }
|
30
|
-
.icon-th-large { .ie7icon(''); }
|
31
|
-
.icon-th { .ie7icon(''); }
|
32
|
-
.icon-th-list { .ie7icon(''); }
|
33
|
-
.icon-ok { .ie7icon(''); }
|
34
|
-
.icon-remove { .ie7icon(''); }
|
35
|
-
.icon-zoom-in { .ie7icon(''); }
|
36
|
-
|
37
|
-
.icon-zoom-out { .ie7icon(''); }
|
38
|
-
.icon-off { .ie7icon(''); }
|
39
|
-
.icon-signal { .ie7icon(''); }
|
40
|
-
.icon-cog { .ie7icon(''); }
|
41
|
-
.icon-trash { .ie7icon(''); }
|
42
|
-
.icon-home { .ie7icon(''); }
|
43
|
-
.icon-file { .ie7icon(''); }
|
44
|
-
.icon-time { .ie7icon(''); }
|
45
|
-
.icon-road { .ie7icon(''); }
|
46
|
-
.icon-download-alt { .ie7icon(''); }
|
47
|
-
.icon-download { .ie7icon(''); }
|
48
|
-
.icon-upload { .ie7icon(''); }
|
49
|
-
.icon-inbox { .ie7icon(''); }
|
50
|
-
.icon-play-circle { .ie7icon(''); }
|
51
|
-
.icon-repeat { .ie7icon(''); }
|
52
|
-
|
53
|
-
.icon-refresh { .ie7icon(''); }
|
54
|
-
.icon-list-alt { .ie7icon(''); }
|
55
|
-
.icon-lock { .ie7icon(''); }
|
56
|
-
.icon-flag { .ie7icon(''); }
|
57
|
-
.icon-headphones { .ie7icon(''); }
|
58
|
-
.icon-volume-off { .ie7icon(''); }
|
59
|
-
.icon-volume-down { .ie7icon(''); }
|
60
|
-
.icon-volume-up { .ie7icon(''); }
|
61
|
-
.icon-qrcode { .ie7icon(''); }
|
62
|
-
.icon-barcode { .ie7icon(''); }
|
63
|
-
.icon-tag { .ie7icon(''); }
|
64
|
-
.icon-tags { .ie7icon(''); }
|
65
|
-
.icon-book { .ie7icon(''); }
|
66
|
-
.icon-bookmark { .ie7icon(''); }
|
67
|
-
.icon-print { .ie7icon(''); }
|
68
|
-
|
69
|
-
.icon-camera { .ie7icon(''); }
|
70
|
-
.icon-font { .ie7icon(''); }
|
71
|
-
.icon-bold { .ie7icon(''); }
|
72
|
-
.icon-italic { .ie7icon(''); }
|
73
|
-
.icon-text-height { .ie7icon(''); }
|
74
|
-
.icon-text-width { .ie7icon(''); }
|
75
|
-
.icon-align-left { .ie7icon(''); }
|
76
|
-
.icon-align-center { .ie7icon(''); }
|
77
|
-
.icon-align-right { .ie7icon(''); }
|
78
|
-
.icon-align-justify { .ie7icon(''); }
|
79
|
-
.icon-list { .ie7icon(''); }
|
80
|
-
.icon-indent-left { .ie7icon(''); }
|
81
|
-
.icon-indent-right { .ie7icon(''); }
|
82
|
-
.icon-facetime-video { .ie7icon(''); }
|
83
|
-
.icon-picture { .ie7icon(''); }
|
84
|
-
|
85
|
-
.icon-pencil { .ie7icon(''); }
|
86
|
-
.icon-map-marker { .ie7icon(''); }
|
87
|
-
.icon-adjust { .ie7icon(''); }
|
88
|
-
.icon-tint { .ie7icon(''); }
|
89
|
-
.icon-edit { .ie7icon(''); }
|
90
|
-
.icon-share { .ie7icon(''); }
|
91
|
-
.icon-check { .ie7icon(''); }
|
92
|
-
.icon-move { .ie7icon(''); }
|
93
|
-
.icon-step-backward { .ie7icon(''); }
|
94
|
-
.icon-fast-backward { .ie7icon(''); }
|
95
|
-
.icon-backward { .ie7icon(''); }
|
96
|
-
.icon-play { .ie7icon(''); }
|
97
|
-
.icon-pause { .ie7icon(''); }
|
98
|
-
.icon-stop { .ie7icon(''); }
|
99
|
-
.icon-forward { .ie7icon(''); }
|
100
|
-
|
101
|
-
.icon-fast-forward { .ie7icon(''); }
|
102
|
-
.icon-step-forward { .ie7icon(''); }
|
103
|
-
.icon-eject { .ie7icon(''); }
|
104
|
-
.icon-chevron-left { .ie7icon(''); }
|
105
|
-
.icon-chevron-right { .ie7icon(''); }
|
106
|
-
.icon-plus-sign { .ie7icon(''); }
|
107
|
-
.icon-minus-sign { .ie7icon(''); }
|
108
|
-
.icon-remove-sign { .ie7icon(''); }
|
109
|
-
.icon-ok-sign { .ie7icon(''); }
|
110
|
-
.icon-question-sign { .ie7icon(''); }
|
111
|
-
.icon-info-sign { .ie7icon(''); }
|
112
|
-
.icon-screenshot { .ie7icon(''); }
|
113
|
-
.icon-remove-circle { .ie7icon(''); }
|
114
|
-
.icon-ok-circle { .ie7icon(''); }
|
115
|
-
.icon-ban-circle { .ie7icon(''); }
|
116
|
-
|
117
|
-
.icon-arrow-left { .ie7icon(''); }
|
118
|
-
.icon-arrow-right { .ie7icon(''); }
|
119
|
-
.icon-arrow-up { .ie7icon(''); }
|
120
|
-
.icon-arrow-down { .ie7icon(''); }
|
121
|
-
.icon-share-alt { .ie7icon(''); }
|
122
|
-
.icon-resize-full { .ie7icon(''); }
|
123
|
-
.icon-resize-small { .ie7icon(''); }
|
124
|
-
.icon-plus { .ie7icon(''); }
|
125
|
-
.icon-minus { .ie7icon(''); }
|
126
|
-
.icon-asterisk { .ie7icon(''); }
|
127
|
-
.icon-exclamation-sign { .ie7icon(''); }
|
128
|
-
.icon-gift { .ie7icon(''); }
|
129
|
-
.icon-leaf { .ie7icon(''); }
|
130
|
-
.icon-fire { .ie7icon(''); }
|
131
|
-
.icon-eye-open { .ie7icon(''); }
|
132
|
-
|
133
|
-
.icon-eye-close { .ie7icon(''); }
|
134
|
-
.icon-warning-sign { .ie7icon(''); }
|
135
|
-
.icon-plane { .ie7icon(''); }
|
136
|
-
.icon-calendar { .ie7icon(''); }
|
137
|
-
.icon-random { .ie7icon(''); }
|
138
|
-
.icon-comment { .ie7icon(''); }
|
139
|
-
.icon-magnet { .ie7icon(''); }
|
140
|
-
.icon-chevron-up { .ie7icon(''); }
|
141
|
-
.icon-chevron-down { .ie7icon(''); }
|
142
|
-
.icon-retweet { .ie7icon(''); }
|
143
|
-
.icon-shopping-cart { .ie7icon(''); }
|
144
|
-
.icon-folder-close { .ie7icon(''); }
|
145
|
-
.icon-folder-open { .ie7icon(''); }
|
146
|
-
.icon-resize-vertical { .ie7icon(''); }
|
147
|
-
.icon-resize-horizontal { .ie7icon(''); }
|
148
|
-
|
149
|
-
.icon-bar-chart { .ie7icon(''); }
|
150
|
-
.icon-twitter-sign { .ie7icon(''); }
|
151
|
-
.icon-facebook-sign { .ie7icon(''); }
|
152
|
-
.icon-camera-retro { .ie7icon(''); }
|
153
|
-
.icon-key { .ie7icon(''); }
|
154
|
-
.icon-cogs { .ie7icon(''); }
|
155
|
-
.icon-comments { .ie7icon(''); }
|
156
|
-
.icon-thumbs-up { .ie7icon(''); }
|
157
|
-
.icon-thumbs-down { .ie7icon(''); }
|
158
|
-
.icon-star-half { .ie7icon(''); }
|
159
|
-
.icon-heart-empty { .ie7icon(''); }
|
160
|
-
.icon-signout { .ie7icon(''); }
|
161
|
-
.icon-linkedin-sign { .ie7icon(''); }
|
162
|
-
.icon-pushpin { .ie7icon(''); }
|
163
|
-
.icon-external-link { .ie7icon(''); }
|
164
|
-
|
165
|
-
.icon-signin { .ie7icon(''); }
|
166
|
-
.icon-trophy { .ie7icon(''); }
|
167
|
-
.icon-github-sign { .ie7icon(''); }
|
168
|
-
.icon-upload-alt { .ie7icon(''); }
|
169
|
-
.icon-lemon { .ie7icon(''); }
|
170
|
-
.icon-phone { .ie7icon(''); }
|
171
|
-
.icon-check-empty { .ie7icon(''); }
|
172
|
-
.icon-bookmark-empty { .ie7icon(''); }
|
173
|
-
.icon-phone-sign { .ie7icon(''); }
|
174
|
-
.icon-twitter { .ie7icon(''); }
|
175
|
-
.icon-facebook { .ie7icon(''); }
|
176
|
-
.icon-github { .ie7icon(''); }
|
177
|
-
.icon-unlock { .ie7icon(''); }
|
178
|
-
.icon-credit-card { .ie7icon(''); }
|
179
|
-
.icon-rss { .ie7icon(''); }
|
180
|
-
|
181
|
-
.icon-hdd { .ie7icon(''); }
|
182
|
-
.icon-bullhorn { .ie7icon(''); }
|
183
|
-
.icon-bell { .ie7icon(''); }
|
184
|
-
.icon-certificate { .ie7icon(''); }
|
185
|
-
.icon-hand-right { .ie7icon(''); }
|
186
|
-
.icon-hand-left { .ie7icon(''); }
|
187
|
-
.icon-hand-up { .ie7icon(''); }
|
188
|
-
.icon-hand-down { .ie7icon(''); }
|
189
|
-
.icon-circle-arrow-left { .ie7icon(''); }
|
190
|
-
.icon-circle-arrow-right { .ie7icon(''); }
|
191
|
-
.icon-circle-arrow-up { .ie7icon(''); }
|
192
|
-
.icon-circle-arrow-down { .ie7icon(''); }
|
193
|
-
.icon-globe { .ie7icon(''); }
|
194
|
-
.icon-wrench { .ie7icon(''); }
|
195
|
-
.icon-tasks { .ie7icon(''); }
|
196
|
-
|
197
|
-
.icon-filter { .ie7icon(''); }
|
198
|
-
.icon-briefcase { .ie7icon(''); }
|
199
|
-
.icon-fullscreen { .ie7icon(''); }
|
200
|
-
|
201
|
-
.icon-group { .ie7icon(''); }
|
202
|
-
.icon-link { .ie7icon(''); }
|
203
|
-
.icon-cloud { .ie7icon(''); }
|
204
|
-
.icon-beaker { .ie7icon(''); }
|
205
|
-
.icon-cut { .ie7icon(''); }
|
206
|
-
.icon-copy { .ie7icon(''); }
|
207
|
-
.icon-paper-clip { .ie7icon(''); }
|
208
|
-
.icon-save { .ie7icon(''); }
|
209
|
-
.icon-sign-blank { .ie7icon(''); }
|
210
|
-
.icon-reorder { .ie7icon(''); }
|
211
|
-
.icon-list-ul { .ie7icon(''); }
|
212
|
-
.icon-list-ol { .ie7icon(''); }
|
213
|
-
.icon-strikethrough { .ie7icon(''); }
|
214
|
-
.icon-underline { .ie7icon(''); }
|
215
|
-
.icon-table { .ie7icon(''); }
|
216
|
-
|
217
|
-
.icon-magic { .ie7icon(''); }
|
218
|
-
.icon-truck { .ie7icon(''); }
|
219
|
-
.icon-pinterest { .ie7icon(''); }
|
220
|
-
.icon-pinterest-sign { .ie7icon(''); }
|
221
|
-
.icon-google-plus-sign { .ie7icon(''); }
|
222
|
-
.icon-google-plus { .ie7icon(''); }
|
223
|
-
.icon-money { .ie7icon(''); }
|
224
|
-
.icon-caret-down { .ie7icon(''); }
|
225
|
-
.icon-caret-up { .ie7icon(''); }
|
226
|
-
.icon-caret-left { .ie7icon(''); }
|
227
|
-
.icon-caret-right { .ie7icon(''); }
|
228
|
-
.icon-columns { .ie7icon(''); }
|
229
|
-
.icon-sort { .ie7icon(''); }
|
230
|
-
.icon-sort-down { .ie7icon(''); }
|
231
|
-
.icon-sort-up { .ie7icon(''); }
|
232
|
-
|
233
|
-
.icon-envelope-alt { .ie7icon(''); }
|
234
|
-
.icon-linkedin { .ie7icon(''); }
|
235
|
-
.icon-undo { .ie7icon(''); }
|
236
|
-
.icon-legal { .ie7icon(''); }
|
237
|
-
.icon-dashboard { .ie7icon(''); }
|
238
|
-
.icon-comment-alt { .ie7icon(''); }
|
239
|
-
.icon-comments-alt { .ie7icon(''); }
|
240
|
-
.icon-bolt { .ie7icon(''); }
|
241
|
-
.icon-sitemap { .ie7icon(''); }
|
242
|
-
.icon-umbrella { .ie7icon(''); }
|
243
|
-
.icon-paste { .ie7icon(''); }
|
244
|
-
|
245
|
-
.icon-user-md { .ie7icon(''); }
|