bootstrap-more 0.0.1

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.
Files changed (107) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +46 -0
  5. data/Rakefile +1 -0
  6. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  7. data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
  8. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  9. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  10. data/app/assets/javascripts/bootstrap/affix.js +126 -0
  11. data/app/assets/javascripts/bootstrap/alert.js +98 -0
  12. data/app/assets/javascripts/bootstrap/button.js +109 -0
  13. data/app/assets/javascripts/bootstrap/carousel.js +217 -0
  14. data/app/assets/javascripts/bootstrap/collapse.js +179 -0
  15. data/app/assets/javascripts/bootstrap/dropdown.js +154 -0
  16. data/app/assets/javascripts/bootstrap/modal.js +246 -0
  17. data/app/assets/javascripts/bootstrap/popover.js +117 -0
  18. data/app/assets/javascripts/bootstrap/scrollspy.js +158 -0
  19. data/app/assets/javascripts/bootstrap/tab.js +135 -0
  20. data/app/assets/javascripts/bootstrap/tooltip.js +386 -0
  21. data/app/assets/javascripts/bootstrap/transition.js +56 -0
  22. data/app/assets/javascripts/bootstrap.js +12 -0
  23. data/app/assets/stylesheets/_bootstrap-more.scss +1 -0
  24. data/app/assets/stylesheets/bootstrap/_alerts.scss +67 -0
  25. data/app/assets/stylesheets/bootstrap/_badges.scss +51 -0
  26. data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +23 -0
  27. data/app/assets/stylesheets/bootstrap/_button-groups.scss +260 -0
  28. data/app/assets/stylesheets/bootstrap/_buttons.scss +165 -0
  29. data/app/assets/stylesheets/bootstrap/_carousel.scss +231 -0
  30. data/app/assets/stylesheets/bootstrap/_close.scss +35 -0
  31. data/app/assets/stylesheets/bootstrap/_code.scss +53 -0
  32. data/app/assets/stylesheets/bootstrap/_component-animations.scss +29 -0
  33. data/app/assets/stylesheets/bootstrap/_config.scss +19 -0
  34. data/app/assets/stylesheets/bootstrap/_dropdowns.scss +203 -0
  35. data/app/assets/stylesheets/bootstrap/_forms.scss +371 -0
  36. data/app/assets/stylesheets/bootstrap/_glyphicons.scss +237 -0
  37. data/app/assets/stylesheets/bootstrap/_grid.scss +93 -0
  38. data/app/assets/stylesheets/bootstrap/_input-groups.scss +146 -0
  39. data/app/assets/stylesheets/bootstrap/_jumbotron.scss +40 -0
  40. data/app/assets/stylesheets/bootstrap/_labels.scss +58 -0
  41. data/app/assets/stylesheets/bootstrap/_list-group.scss +95 -0
  42. data/app/assets/stylesheets/bootstrap/_media.scss +56 -0
  43. data/app/assets/stylesheets/bootstrap/_mixins.scss +882 -0
  44. data/app/assets/stylesheets/bootstrap/_modals.scss +132 -0
  45. data/app/assets/stylesheets/bootstrap/_navbar.scss +628 -0
  46. data/app/assets/stylesheets/bootstrap/_navs.scss +262 -0
  47. data/app/assets/stylesheets/bootstrap/_normalize.scss +406 -0
  48. data/app/assets/stylesheets/bootstrap/_pager.scss +55 -0
  49. data/app/assets/stylesheets/bootstrap/_pagination.scss +85 -0
  50. data/app/assets/stylesheets/bootstrap/_panels.scss +172 -0
  51. data/app/assets/stylesheets/bootstrap/_popovers.scss +133 -0
  52. data/app/assets/stylesheets/bootstrap/_print.scss +105 -0
  53. data/app/assets/stylesheets/bootstrap/_progress-bars.scss +92 -0
  54. data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +198 -0
  55. data/app/assets/stylesheets/bootstrap/_scaffolding.scss +119 -0
  56. data/app/assets/stylesheets/bootstrap/_tables.scss +244 -0
  57. data/app/assets/stylesheets/bootstrap/_theme.scss +247 -0
  58. data/app/assets/stylesheets/bootstrap/_thumbnails.scss +32 -0
  59. data/app/assets/stylesheets/bootstrap/_tooltip.scss +95 -0
  60. data/app/assets/stylesheets/bootstrap/_type.scss +279 -0
  61. data/app/assets/stylesheets/bootstrap/_utilities.scss +56 -0
  62. data/app/assets/stylesheets/bootstrap/_variables.scss +665 -0
  63. data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
  64. data/app/assets/stylesheets/bootstrap/bootstrap.scss +50 -0
  65. data/bootstrap-more.gemspec +23 -0
  66. data/docs/.gitignore +17 -0
  67. data/docs/.ruby-gemset +1 -0
  68. data/docs/.ruby-version +1 -0
  69. data/docs/Gemfile +9 -0
  70. data/docs/README.md +8 -0
  71. data/docs/Rakefile +1 -0
  72. data/docs/config.rb +98 -0
  73. data/docs/index.html.erb +9 -0
  74. data/docs/source/about.html.erb +92 -0
  75. data/docs/source/assets/javascripts/application.js +103 -0
  76. data/docs/source/assets/javascripts/bootstrap.js +12 -0
  77. data/docs/source/assets/javascripts/vendor/.gitkeep +0 -0
  78. data/docs/source/assets/javascripts/vendor/holder.js +404 -0
  79. data/docs/source/assets/javascripts/vendor/ie8-responsive-file-warning.js +12 -0
  80. data/docs/source/assets/stylesheets/_settings.scss +656 -0
  81. data/docs/source/assets/stylesheets/bootstrap.scss +2 -0
  82. data/docs/source/assets/stylesheets/pygments-manni.css +66 -0
  83. data/docs/source/assets/stylesheets/styles.scss +1198 -0
  84. data/docs/source/components.html.erb +3607 -0
  85. data/docs/source/css.html.erb +2585 -0
  86. data/docs/source/customize.html.erb +1715 -0
  87. data/docs/source/getting-started.html.erb +1010 -0
  88. data/docs/source/includes/_ads.erb +1 -0
  89. data/docs/source/includes/_footer.erb +23 -0
  90. data/docs/source/includes/_header.erb +39 -0
  91. data/docs/source/includes/_nav-about.erb +12 -0
  92. data/docs/source/includes/_nav-components.erb +137 -0
  93. data/docs/source/includes/_nav-css.erb +99 -0
  94. data/docs/source/includes/_nav-customize.erb +40 -0
  95. data/docs/source/includes/_nav-getting-started.erb +44 -0
  96. data/docs/source/includes/_nav-javascript.erb +88 -0
  97. data/docs/source/includes/_nav-main.erb +34 -0
  98. data/docs/source/includes/_old-bs-docs.erb +8 -0
  99. data/docs/source/includes/_social-buttons.erb +16 -0
  100. data/docs/source/index.html.erb +17 -0
  101. data/docs/source/javascript.html.erb +1946 -0
  102. data/docs/source/layouts/default.html.erb +75 -0
  103. data/docs/source/layouts/home.html.erb +20 -0
  104. data/docs/source/layouts/layout.html.erb +81 -0
  105. data/lib/bootstrap-more/version.rb +5 -0
  106. data/lib/bootstrap-more.rb +7 -0
  107. metadata +185 -0
@@ -0,0 +1,237 @@
1
+ //
2
+ // Glyphicons for Bootstrap
3
+ //
4
+ // Since icons are fonts, they can be placed anywhere text is placed and are
5
+ // thus automatically sized to match the surrounding child. To use, create an
6
+ // inline element with the appropriate classes, like so:
7
+ //
8
+ // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
9
+
10
+ // Import the fonts
11
+ @font-face {
12
+ font-family: 'Glyphicons Halflings';
13
+ src: font-url('#{$icon-font-name}.eot');
14
+ src: font-url('#{$icon-font-name}.eot?#iefix') format('embedded-opentype'),
15
+ font-url('#{$icon-font-name}.woff') format('woff'),
16
+ font-url('#{$icon-font-name}.ttf') format('truetype'),
17
+ font-url('#{$icon-font-name}.svg#glyphicons_halflingsregular') format('svg');
18
+ }
19
+
20
+ // Catchall baseclass
21
+ .glyphicon {
22
+ position: relative;
23
+ top: 1px;
24
+ display: inline-block;
25
+ font-family: 'Glyphicons Halflings';
26
+ font-style: normal;
27
+ font-weight: normal;
28
+ line-height: 1;
29
+ -webkit-font-smoothing: antialiased;
30
+ -moz-osx-font-smoothing: grayscale;
31
+
32
+ &:empty {
33
+ width: 1em;
34
+ }
35
+ }
36
+
37
+ // Individual icons
38
+ .glyphicon-asterisk { &:before { content: "\2a"; } }
39
+ .glyphicon-plus { &:before { content: "\2b"; } }
40
+ .glyphicon-euro { &:before { content: "\20ac"; } }
41
+ .glyphicon-minus { &:before { content: "\2212"; } }
42
+ .glyphicon-cloud { &:before { content: "\2601"; } }
43
+ .glyphicon-envelope { &:before { content: "\2709"; } }
44
+ .glyphicon-pencil { &:before { content: "\270f"; } }
45
+ .glyphicon-glass { &:before { content: "\e001"; } }
46
+ .glyphicon-music { &:before { content: "\e002"; } }
47
+ .glyphicon-search { &:before { content: "\e003"; } }
48
+ .glyphicon-heart { &:before { content: "\e005"; } }
49
+ .glyphicon-star { &:before { content: "\e006"; } }
50
+ .glyphicon-star-empty { &:before { content: "\e007"; } }
51
+ .glyphicon-user { &:before { content: "\e008"; } }
52
+ .glyphicon-film { &:before { content: "\e009"; } }
53
+ .glyphicon-th-large { &:before { content: "\e010"; } }
54
+ .glyphicon-th { &:before { content: "\e011"; } }
55
+ .glyphicon-th-list { &:before { content: "\e012"; } }
56
+ .glyphicon-ok { &:before { content: "\e013"; } }
57
+ .glyphicon-remove { &:before { content: "\e014"; } }
58
+ .glyphicon-zoom-in { &:before { content: "\e015"; } }
59
+ .glyphicon-zoom-out { &:before { content: "\e016"; } }
60
+ .glyphicon-off { &:before { content: "\e017"; } }
61
+ .glyphicon-signal { &:before { content: "\e018"; } }
62
+ .glyphicon-cog { &:before { content: "\e019"; } }
63
+ .glyphicon-trash { &:before { content: "\e020"; } }
64
+ .glyphicon-home { &:before { content: "\e021"; } }
65
+ .glyphicon-file { &:before { content: "\e022"; } }
66
+ .glyphicon-time { &:before { content: "\e023"; } }
67
+ .glyphicon-road { &:before { content: "\e024"; } }
68
+ .glyphicon-download-alt { &:before { content: "\e025"; } }
69
+ .glyphicon-download { &:before { content: "\e026"; } }
70
+ .glyphicon-upload { &:before { content: "\e027"; } }
71
+ .glyphicon-inbox { &:before { content: "\e028"; } }
72
+ .glyphicon-play-circle { &:before { content: "\e029"; } }
73
+ .glyphicon-repeat { &:before { content: "\e030"; } }
74
+ .glyphicon-refresh { &:before { content: "\e031"; } }
75
+ .glyphicon-list-alt { &:before { content: "\e032"; } }
76
+ .glyphicon-lock { &:before { content: "\e033"; } }
77
+ .glyphicon-flag { &:before { content: "\e034"; } }
78
+ .glyphicon-headphones { &:before { content: "\e035"; } }
79
+ .glyphicon-volume-off { &:before { content: "\e036"; } }
80
+ .glyphicon-volume-down { &:before { content: "\e037"; } }
81
+ .glyphicon-volume-up { &:before { content: "\e038"; } }
82
+ .glyphicon-qrcode { &:before { content: "\e039"; } }
83
+ .glyphicon-barcode { &:before { content: "\e040"; } }
84
+ .glyphicon-tag { &:before { content: "\e041"; } }
85
+ .glyphicon-tags { &:before { content: "\e042"; } }
86
+ .glyphicon-book { &:before { content: "\e043"; } }
87
+ .glyphicon-bookmark { &:before { content: "\e044"; } }
88
+ .glyphicon-print { &:before { content: "\e045"; } }
89
+ .glyphicon-camera { &:before { content: "\e046"; } }
90
+ .glyphicon-font { &:before { content: "\e047"; } }
91
+ .glyphicon-bold { &:before { content: "\e048"; } }
92
+ .glyphicon-italic { &:before { content: "\e049"; } }
93
+ .glyphicon-text-height { &:before { content: "\e050"; } }
94
+ .glyphicon-text-width { &:before { content: "\e051"; } }
95
+ .glyphicon-align-left { &:before { content: "\e052"; } }
96
+ .glyphicon-align-center { &:before { content: "\e053"; } }
97
+ .glyphicon-align-right { &:before { content: "\e054"; } }
98
+ .glyphicon-align-justify { &:before { content: "\e055"; } }
99
+ .glyphicon-list { &:before { content: "\e056"; } }
100
+ .glyphicon-indent-left { &:before { content: "\e057"; } }
101
+ .glyphicon-indent-right { &:before { content: "\e058"; } }
102
+ .glyphicon-facetime-video { &:before { content: "\e059"; } }
103
+ .glyphicon-picture { &:before { content: "\e060"; } }
104
+ .glyphicon-map-marker { &:before { content: "\e062"; } }
105
+ .glyphicon-adjust { &:before { content: "\e063"; } }
106
+ .glyphicon-tint { &:before { content: "\e064"; } }
107
+ .glyphicon-edit { &:before { content: "\e065"; } }
108
+ .glyphicon-share { &:before { content: "\e066"; } }
109
+ .glyphicon-check { &:before { content: "\e067"; } }
110
+ .glyphicon-move { &:before { content: "\e068"; } }
111
+ .glyphicon-step-backward { &:before { content: "\e069"; } }
112
+ .glyphicon-fast-backward { &:before { content: "\e070"; } }
113
+ .glyphicon-backward { &:before { content: "\e071"; } }
114
+ .glyphicon-play { &:before { content: "\e072"; } }
115
+ .glyphicon-pause { &:before { content: "\e073"; } }
116
+ .glyphicon-stop { &:before { content: "\e074"; } }
117
+ .glyphicon-forward { &:before { content: "\e075"; } }
118
+ .glyphicon-fast-forward { &:before { content: "\e076"; } }
119
+ .glyphicon-step-forward { &:before { content: "\e077"; } }
120
+ .glyphicon-eject { &:before { content: "\e078"; } }
121
+ .glyphicon-chevron-left { &:before { content: "\e079"; } }
122
+ .glyphicon-chevron-right { &:before { content: "\e080"; } }
123
+ .glyphicon-plus-sign { &:before { content: "\e081"; } }
124
+ .glyphicon-minus-sign { &:before { content: "\e082"; } }
125
+ .glyphicon-remove-sign { &:before { content: "\e083"; } }
126
+ .glyphicon-ok-sign { &:before { content: "\e084"; } }
127
+ .glyphicon-question-sign { &:before { content: "\e085"; } }
128
+ .glyphicon-info-sign { &:before { content: "\e086"; } }
129
+ .glyphicon-screenshot { &:before { content: "\e087"; } }
130
+ .glyphicon-remove-circle { &:before { content: "\e088"; } }
131
+ .glyphicon-ok-circle { &:before { content: "\e089"; } }
132
+ .glyphicon-ban-circle { &:before { content: "\e090"; } }
133
+ .glyphicon-arrow-left { &:before { content: "\e091"; } }
134
+ .glyphicon-arrow-right { &:before { content: "\e092"; } }
135
+ .glyphicon-arrow-up { &:before { content: "\e093"; } }
136
+ .glyphicon-arrow-down { &:before { content: "\e094"; } }
137
+ .glyphicon-share-alt { &:before { content: "\e095"; } }
138
+ .glyphicon-resize-full { &:before { content: "\e096"; } }
139
+ .glyphicon-resize-small { &:before { content: "\e097"; } }
140
+ .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
141
+ .glyphicon-gift { &:before { content: "\e102"; } }
142
+ .glyphicon-leaf { &:before { content: "\e103"; } }
143
+ .glyphicon-fire { &:before { content: "\e104"; } }
144
+ .glyphicon-eye-open { &:before { content: "\e105"; } }
145
+ .glyphicon-eye-close { &:before { content: "\e106"; } }
146
+ .glyphicon-warning-sign { &:before { content: "\e107"; } }
147
+ .glyphicon-plane { &:before { content: "\e108"; } }
148
+ .glyphicon-calendar { &:before { content: "\e109"; } }
149
+ .glyphicon-random { &:before { content: "\e110"; } }
150
+ .glyphicon-comment { &:before { content: "\e111"; } }
151
+ .glyphicon-magnet { &:before { content: "\e112"; } }
152
+ .glyphicon-chevron-up { &:before { content: "\e113"; } }
153
+ .glyphicon-chevron-down { &:before { content: "\e114"; } }
154
+ .glyphicon-retweet { &:before { content: "\e115"; } }
155
+ .glyphicon-shopping-cart { &:before { content: "\e116"; } }
156
+ .glyphicon-folder-close { &:before { content: "\e117"; } }
157
+ .glyphicon-folder-open { &:before { content: "\e118"; } }
158
+ .glyphicon-resize-vertical { &:before { content: "\e119"; } }
159
+ .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
160
+ .glyphicon-hdd { &:before { content: "\e121"; } }
161
+ .glyphicon-bullhorn { &:before { content: "\e122"; } }
162
+ .glyphicon-bell { &:before { content: "\e123"; } }
163
+ .glyphicon-certificate { &:before { content: "\e124"; } }
164
+ .glyphicon-thumbs-up { &:before { content: "\e125"; } }
165
+ .glyphicon-thumbs-down { &:before { content: "\e126"; } }
166
+ .glyphicon-hand-right { &:before { content: "\e127"; } }
167
+ .glyphicon-hand-left { &:before { content: "\e128"; } }
168
+ .glyphicon-hand-up { &:before { content: "\e129"; } }
169
+ .glyphicon-hand-down { &:before { content: "\e130"; } }
170
+ .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
171
+ .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
172
+ .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
173
+ .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
174
+ .glyphicon-globe { &:before { content: "\e135"; } }
175
+ .glyphicon-wrench { &:before { content: "\e136"; } }
176
+ .glyphicon-tasks { &:before { content: "\e137"; } }
177
+ .glyphicon-filter { &:before { content: "\e138"; } }
178
+ .glyphicon-briefcase { &:before { content: "\e139"; } }
179
+ .glyphicon-fullscreen { &:before { content: "\e140"; } }
180
+ .glyphicon-dashboard { &:before { content: "\e141"; } }
181
+ .glyphicon-paperclip { &:before { content: "\e142"; } }
182
+ .glyphicon-heart-empty { &:before { content: "\e143"; } }
183
+ .glyphicon-link { &:before { content: "\e144"; } }
184
+ .glyphicon-phone { &:before { content: "\e145"; } }
185
+ .glyphicon-pushpin { &:before { content: "\e146"; } }
186
+ .glyphicon-usd { &:before { content: "\e148"; } }
187
+ .glyphicon-gbp { &:before { content: "\e149"; } }
188
+ .glyphicon-sort { &:before { content: "\e150"; } }
189
+ .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
190
+ .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
191
+ .glyphicon-sort-by-order { &:before { content: "\e153"; } }
192
+ .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
193
+ .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
194
+ .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
195
+ .glyphicon-unchecked { &:before { content: "\e157"; } }
196
+ .glyphicon-expand { &:before { content: "\e158"; } }
197
+ .glyphicon-collapse-down { &:before { content: "\e159"; } }
198
+ .glyphicon-collapse-up { &:before { content: "\e160"; } }
199
+ .glyphicon-log-in { &:before { content: "\e161"; } }
200
+ .glyphicon-flash { &:before { content: "\e162"; } }
201
+ .glyphicon-log-out { &:before { content: "\e163"; } }
202
+ .glyphicon-new-window { &:before { content: "\e164"; } }
203
+ .glyphicon-record { &:before { content: "\e165"; } }
204
+ .glyphicon-save { &:before { content: "\e166"; } }
205
+ .glyphicon-open { &:before { content: "\e167"; } }
206
+ .glyphicon-saved { &:before { content: "\e168"; } }
207
+ .glyphicon-import { &:before { content: "\e169"; } }
208
+ .glyphicon-export { &:before { content: "\e170"; } }
209
+ .glyphicon-send { &:before { content: "\e171"; } }
210
+ .glyphicon-floppy-disk { &:before { content: "\e172"; } }
211
+ .glyphicon-floppy-saved { &:before { content: "\e173"; } }
212
+ .glyphicon-floppy-remove { &:before { content: "\e174"; } }
213
+ .glyphicon-floppy-save { &:before { content: "\e175"; } }
214
+ .glyphicon-floppy-open { &:before { content: "\e176"; } }
215
+ .glyphicon-credit-card { &:before { content: "\e177"; } }
216
+ .glyphicon-transfer { &:before { content: "\e178"; } }
217
+ .glyphicon-cutlery { &:before { content: "\e179"; } }
218
+ .glyphicon-header { &:before { content: "\e180"; } }
219
+ .glyphicon-compressed { &:before { content: "\e181"; } }
220
+ .glyphicon-earphone { &:before { content: "\e182"; } }
221
+ .glyphicon-phone-alt { &:before { content: "\e183"; } }
222
+ .glyphicon-tower { &:before { content: "\e184"; } }
223
+ .glyphicon-stats { &:before { content: "\e185"; } }
224
+ .glyphicon-sd-video { &:before { content: "\e186"; } }
225
+ .glyphicon-hd-video { &:before { content: "\e187"; } }
226
+ .glyphicon-subtitles { &:before { content: "\e188"; } }
227
+ .glyphicon-sound-stereo { &:before { content: "\e189"; } }
228
+ .glyphicon-sound-dolby { &:before { content: "\e190"; } }
229
+ .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
230
+ .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
231
+ .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
232
+ .glyphicon-copyright-mark { &:before { content: "\e194"; } }
233
+ .glyphicon-registration-mark { &:before { content: "\e195"; } }
234
+ .glyphicon-cloud-download { &:before { content: "\e197"; } }
235
+ .glyphicon-cloud-upload { &:before { content: "\e198"; } }
236
+ .glyphicon-tree-conifer { &:before { content: "\e199"; } }
237
+ .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
@@ -0,0 +1,93 @@
1
+ //
2
+ // Grid system
3
+ // --------------------------------------------------
4
+
5
+ // Set the container width, and override it for fixed navbars in media queries
6
+ .container {
7
+ @include container-fixed();
8
+ }
9
+
10
+ // mobile first defaults
11
+ .row {
12
+ @include make-row();
13
+ }
14
+
15
+ // Common styles for small and large grid columns
16
+ @include make-grid-columns();
17
+
18
+
19
+ // Extra small grid
20
+ //
21
+ // Grid classes for extra small devices like smartphones. No offset, push, or
22
+ // pull classes are present here due to the size of the target.
23
+ //
24
+ // Note that `.col-xs-12` doesn't get floated on purpose--there's no need since
25
+ // it's full-width.
26
+
27
+ @include make-grid-columns-float(xs);
28
+ @include make-grid($grid-columns, xs, width);
29
+ @include make-grid($grid-columns, xs, pull);
30
+ @include make-grid($grid-columns, xs, push);
31
+ @include make-grid($grid-columns, xs, offset);
32
+
33
+
34
+ // Small grid
35
+ //
36
+ // Columns, offsets, pushes, and pulls for the small device range, from phones
37
+ // to tablets.
38
+ //
39
+ // Note that `.col-sm-12` doesn't get floated on purpose--there's no need since
40
+ // it's full-width.
41
+
42
+ @media (min-width: $screen-sm-min) {
43
+ .container {
44
+ width: $container-sm;
45
+ }
46
+
47
+ @include make-grid-columns-float(sm);
48
+ @include make-grid($grid-columns, sm, width);
49
+ @include make-grid($grid-columns, sm, pull);
50
+ @include make-grid($grid-columns, sm, push);
51
+ @include make-grid($grid-columns, sm, offset);
52
+ }
53
+
54
+
55
+ // Medium grid
56
+ //
57
+ // Columns, offsets, pushes, and pulls for the desktop device range.
58
+ //
59
+ // Note that `.col-md-12` doesn't get floated on purpose--there's no need since
60
+ // it's full-width.
61
+
62
+ @media (min-width: $screen-md-min) {
63
+ .container {
64
+ width: $container-md;
65
+ }
66
+
67
+ @include make-grid-columns-float(md);
68
+ @include make-grid($grid-columns, md, width);
69
+ @include make-grid($grid-columns, md, pull);
70
+ @include make-grid($grid-columns, md, push);
71
+ @include make-grid($grid-columns, md, offset);
72
+ }
73
+
74
+
75
+ // Large grid
76
+ //
77
+ // Columns, offsets, pushes, and pulls for the large desktop device range.
78
+ //
79
+ // Note that `.col-lg-12` doesn't get floated on purpose--there's no need since
80
+ // it's full-width.
81
+
82
+ @media (min-width: $screen-lg-min) {
83
+ .container {
84
+ width: $container-lg;
85
+ }
86
+
87
+ @include make-grid-columns-float(lg);
88
+ @include make-grid($grid-columns, lg, width);
89
+ @include make-grid($grid-columns, lg, pull);
90
+ @include make-grid($grid-columns, lg, push);
91
+ @include make-grid($grid-columns, lg, offset);
92
+ }
93
+
@@ -0,0 +1,146 @@
1
+ //
2
+ // Input groups
3
+ // --------------------------------------------------
4
+
5
+ // Base styles
6
+ // -------------------------
7
+ .input-group {
8
+ position: relative; // For dropdowns
9
+ display: table;
10
+ border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
11
+
12
+ // Undo padding and float of grid classes
13
+ &.col {
14
+ float: none;
15
+ padding-left: 0;
16
+ padding-right: 0;
17
+ }
18
+
19
+ .form-control {
20
+ width: 100%;
21
+ margin-bottom: 0;
22
+ }
23
+ }
24
+
25
+ // Sizing options
26
+ //
27
+ // Remix the default form control sizing classes into new ones for easier
28
+ // manipulation.
29
+
30
+ .input-group-lg > .form-control,
31
+ .input-group-lg > .input-group-addon,
32
+ .input-group-lg > .input-group-btn > .btn { @extend .input-lg; }
33
+ .input-group-sm > .form-control,
34
+ .input-group-sm > .input-group-addon,
35
+ .input-group-sm > .input-group-btn > .btn { @extend .input-sm; }
36
+
37
+
38
+ // Display as table-cell
39
+ // -------------------------
40
+ .input-group-addon,
41
+ .input-group-btn,
42
+ .input-group .form-control {
43
+ display: table-cell;
44
+
45
+ &:not(:first-child):not(:last-child) {
46
+ border-radius: 0;
47
+ }
48
+ }
49
+ // Addon and addon wrapper for buttons
50
+ .input-group-addon,
51
+ .input-group-btn {
52
+ width: 1%;
53
+ white-space: nowrap;
54
+ vertical-align: middle; // Match the inputs
55
+ }
56
+
57
+ // Text input groups
58
+ // -------------------------
59
+ .input-group-addon {
60
+ padding: $padding-base-vertical $padding-base-horizontal;
61
+ font-size: $font-size-base;
62
+ font-weight: normal;
63
+ line-height: 1;
64
+ color: $input-color;
65
+ text-align: center;
66
+ background-color: $input-group-addon-bg;
67
+
68
+ @include validate-enabled-border-width($input-group-addon-border-width) {
69
+ border: $input-group-addon-border-width $input-group-addon-border-style $input-group-addon-border-color;
70
+ }
71
+
72
+ @include validate-enabled-border-radius($input-border-radius) {
73
+ border-radius: $border-radius-base;
74
+ }
75
+
76
+ // Sizing
77
+ &.input-sm {
78
+ padding: $padding-small-vertical $padding-small-horizontal;
79
+ font-size: $font-size-small;
80
+ @include validate-enabled-border-radius($input-border-radius) {
81
+ border-radius: $border-radius-small;
82
+ }
83
+ }
84
+ &.input-lg {
85
+ padding: $padding-large-vertical $padding-large-horizontal;
86
+ font-size: $font-size-large;
87
+ @include validate-enabled-border-radius($input-border-radius) {
88
+ border-radius: $border-radius-large;
89
+ }
90
+ }
91
+
92
+ // Nuke default margins from checkboxes and radios to vertically center within.
93
+ input[type="radio"],
94
+ input[type="checkbox"] {
95
+ margin-top: 0;
96
+ }
97
+ }
98
+
99
+ // Reset rounded corners
100
+ .input-group .form-control:first-child,
101
+ .input-group-addon:first-child,
102
+ .input-group-btn:first-child > .btn,
103
+ .input-group-btn:first-child > .dropdown-toggle,
104
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
105
+ @include border-right-radius(0);
106
+ }
107
+ .input-group-addon:first-child {
108
+ border-right: 0;
109
+ }
110
+ .input-group .form-control:last-child,
111
+ .input-group-addon:last-child,
112
+ .input-group-btn:last-child > .btn,
113
+ .input-group-btn:last-child > .dropdown-toggle,
114
+ .input-group-btn:first-child > .btn:not(:first-child) {
115
+ @include border-left-radius(0);
116
+ }
117
+ .input-group-addon:last-child {
118
+ border-left: 0;
119
+ }
120
+
121
+ // Button input groups
122
+ // -------------------------
123
+ .input-group-btn {
124
+ position: relative;
125
+ white-space: nowrap;
126
+
127
+ // Negative margin to only have a 1px border between the two
128
+ &:first-child > .btn {
129
+ margin-right: -1px;
130
+ }
131
+ &:last-child > .btn {
132
+ margin-left: -1px;
133
+ }
134
+ }
135
+ .input-group-btn > .btn {
136
+ position: relative;
137
+ // Jankily prevent input button groups from wrapping
138
+ + .btn {
139
+ margin-left: -4px;
140
+ }
141
+ // Bring the "active" button to the front
142
+ &:hover,
143
+ &:active {
144
+ z-index: 2;
145
+ }
146
+ }
@@ -0,0 +1,40 @@
1
+ //
2
+ // Jumbotron
3
+ // --------------------------------------------------
4
+
5
+
6
+ .jumbotron {
7
+ padding: $jumbotron-padding;
8
+ margin-bottom: $jumbotron-padding;
9
+ font-size: $jumbotron-font-size;
10
+ font-weight: 200;
11
+ line-height: ($line-height-base * 1.5);
12
+ color: $jumbotron-color;
13
+ background-color: $jumbotron-bg;
14
+
15
+ h1 {
16
+ line-height: 1;
17
+ color: $jumbotron-heading-color;
18
+ }
19
+ p {
20
+ line-height: 1.4;
21
+ }
22
+
23
+ .container & {
24
+ border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container
25
+ }
26
+
27
+ @media screen and (min-width: $screen-sm-min) {
28
+ padding-top: ($jumbotron-padding * 1.6);
29
+ padding-bottom: ($jumbotron-padding * 1.6);
30
+
31
+ .container & {
32
+ padding-left: ($jumbotron-padding * 2);
33
+ padding-right: ($jumbotron-padding * 2);
34
+ }
35
+
36
+ h1 {
37
+ font-size: ($font-size-base * 4.5);
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,58 @@
1
+ //
2
+ // Labels
3
+ // --------------------------------------------------
4
+
5
+ .label {
6
+ display: inline;
7
+ padding: .2em .6em .3em;
8
+ font-size: 75%;
9
+ font-weight: bold;
10
+ line-height: 1;
11
+ color: $label-color;
12
+ text-align: center;
13
+ white-space: nowrap;
14
+ vertical-align: baseline;
15
+ border-radius: .25em;
16
+
17
+ // Add hover effects, but only for links
18
+ &[href] {
19
+ &:hover,
20
+ &:focus {
21
+ color: $label-link-hover-color;
22
+ text-decoration: none;
23
+ cursor: pointer;
24
+ }
25
+ }
26
+
27
+ // Empty labels collapse automatically (not available in IE8)
28
+ &:empty {
29
+ display: none;
30
+ }
31
+ }
32
+
33
+ // Colors
34
+ // Contextual variations (linked labels get darker on :hover)
35
+
36
+ .label-default {
37
+ @include label-variant($label-default-bg);
38
+ }
39
+
40
+ .label-primary {
41
+ @include label-variant($label-primary-bg);
42
+ }
43
+
44
+ .label-success {
45
+ @include label-variant($label-success-bg);
46
+ }
47
+
48
+ .label-info {
49
+ @include label-variant($label-info-bg);
50
+ }
51
+
52
+ .label-warning {
53
+ @include label-variant($label-warning-bg);
54
+ }
55
+
56
+ .label-danger {
57
+ @include label-variant($label-danger-bg);
58
+ }
@@ -0,0 +1,95 @@
1
+ //
2
+ // List groups
3
+ // --------------------------------------------------
4
+
5
+ // Base class
6
+ //
7
+ // Easily usable on <ul>, <ol>, or <div>.
8
+ .list-group {
9
+ // No need to set list-style: none; since .list-group-item is block level
10
+ margin-bottom: 20px;
11
+ padding-left: 0; // reset padding because ul and ol
12
+ }
13
+
14
+ // Individual list items
15
+ // -------------------------
16
+
17
+ .list-group-item {
18
+ position: relative;
19
+ display: block;
20
+ padding: 10px 15px;
21
+ // Place the border on the list items and negative margin up for better styling
22
+ margin-bottom: -1px;
23
+ background-color: $list-group-bg;
24
+
25
+ @include validate-enabled-border-width($list-group-border-width) {
26
+ border: $list-group-border-width $list-group-border-style $list-group-border-color;
27
+ }
28
+
29
+ @include validate-enabled-border-radius($list-group-border-radius) {
30
+ // Round the first and last items
31
+ &:first-child {
32
+ @include border-top-radius($list-group-border-radius);
33
+ }
34
+ &:last-child {
35
+ @include border-bottom-radius($list-group-border-radius);
36
+ }
37
+ }
38
+ &:last-child {
39
+ margin-bottom: 0;
40
+ }
41
+
42
+ // Align badges within list items
43
+ > .badge {
44
+ float: right;
45
+ }
46
+ > .badge + .badge {
47
+ margin-right: 5px;
48
+ }
49
+ }
50
+
51
+ // Linked list items
52
+ a.list-group-item {
53
+ color: $list-group-link-color;
54
+
55
+ .list-group-item-heading {
56
+ color: $list-group-link-heading-color;
57
+ }
58
+
59
+ // Hover state
60
+ &:hover,
61
+ &:focus {
62
+ text-decoration: none;
63
+ background-color: $list-group-hover-bg;
64
+ }
65
+
66
+ // Active class on item itself, not parent
67
+ &.active,
68
+ &.active:hover,
69
+ &.active:focus {
70
+ z-index: 2; // Place active items above their siblings for proper border styling
71
+ color: $list-group-active-color;
72
+ background-color: $list-group-active-bg;
73
+ border-color: $list-group-active-border;
74
+
75
+ // Force color to inherit for custom content
76
+ .list-group-item-heading {
77
+ color: inherit;
78
+ }
79
+ .list-group-item-text {
80
+ color: lighten($list-group-active-bg, 40%);
81
+ }
82
+ }
83
+ }
84
+
85
+ // Custom content options
86
+ // -------------------------
87
+
88
+ .list-group-item-heading {
89
+ margin-top: 0;
90
+ margin-bottom: 5px;
91
+ }
92
+ .list-group-item-text {
93
+ margin-bottom: 0;
94
+ line-height: 1.3;
95
+ }