rbootstrap 1.1.2

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