less-rails-bootstrap 3.1.1.1 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.travis.yml +5 -4
  4. data/Appraisals +10 -4
  5. data/Gemfile +0 -2
  6. data/ISSUES.md +6 -0
  7. data/README.md +6 -6
  8. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
  9. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +229 -0
  10. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  11. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
  12. data/app/assets/javascripts/twitter/bootstrap.js +12 -0
  13. data/app/assets/javascripts/twitter/bootstrap/affix.js +142 -0
  14. data/app/assets/javascripts/twitter/bootstrap/alert.js +92 -0
  15. data/app/assets/javascripts/twitter/bootstrap/button.js +110 -0
  16. data/app/assets/javascripts/twitter/bootstrap/carousel.js +223 -0
  17. data/app/assets/javascripts/twitter/bootstrap/collapse.js +170 -0
  18. data/app/assets/javascripts/twitter/bootstrap/dropdown.js +151 -0
  19. data/app/assets/javascripts/twitter/bootstrap/modal.js +280 -0
  20. data/app/assets/javascripts/twitter/bootstrap/popover.js +113 -0
  21. data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +170 -0
  22. data/app/assets/javascripts/twitter/bootstrap/tab.js +128 -0
  23. data/app/assets/javascripts/twitter/bootstrap/tooltip.js +457 -0
  24. data/app/assets/javascripts/twitter/bootstrap/transition.js +59 -0
  25. data/app/assets/stylesheets/twitter/bootstrap.less +1 -0
  26. data/app/frameworks/twitter/bootstrap/alerts.less +68 -0
  27. data/app/frameworks/twitter/bootstrap/badges.less +55 -0
  28. data/app/frameworks/twitter/bootstrap/bootstrap.less +50 -0
  29. data/app/frameworks/twitter/bootstrap/breadcrumbs.less +26 -0
  30. data/app/frameworks/twitter/bootstrap/button-groups.less +240 -0
  31. data/app/frameworks/twitter/bootstrap/buttons.less +157 -0
  32. data/app/frameworks/twitter/bootstrap/carousel.less +243 -0
  33. data/app/frameworks/twitter/bootstrap/close.less +33 -0
  34. data/app/frameworks/twitter/bootstrap/code.less +68 -0
  35. data/app/frameworks/twitter/bootstrap/component-animations.less +31 -0
  36. data/app/frameworks/twitter/bootstrap/dropdowns.less +215 -0
  37. data/app/frameworks/twitter/bootstrap/forms.less +540 -0
  38. data/app/frameworks/twitter/bootstrap/glyphicons.less +233 -0
  39. data/app/frameworks/twitter/bootstrap/grid.less +84 -0
  40. data/app/frameworks/twitter/bootstrap/input-groups.less +166 -0
  41. data/app/frameworks/twitter/bootstrap/jumbotron.less +48 -0
  42. data/app/frameworks/twitter/bootstrap/labels.less +64 -0
  43. data/app/frameworks/twitter/bootstrap/list-group.less +131 -0
  44. data/app/frameworks/twitter/bootstrap/media.less +56 -0
  45. data/app/frameworks/twitter/bootstrap/mixins.less +39 -0
  46. data/app/frameworks/twitter/bootstrap/mixins/alerts.less +14 -0
  47. data/app/frameworks/twitter/bootstrap/mixins/background-variant.less +8 -0
  48. data/app/frameworks/twitter/bootstrap/mixins/border-radius.less +18 -0
  49. data/app/frameworks/twitter/bootstrap/mixins/buttons.less +50 -0
  50. data/app/frameworks/twitter/bootstrap/mixins/center-block.less +7 -0
  51. data/app/frameworks/twitter/bootstrap/mixins/clearfix.less +22 -0
  52. data/app/frameworks/twitter/bootstrap/mixins/forms.less +81 -0
  53. data/app/frameworks/twitter/bootstrap/mixins/gradients.less +59 -0
  54. data/app/frameworks/twitter/bootstrap/mixins/grid-framework.less +91 -0
  55. data/app/frameworks/twitter/bootstrap/mixins/grid.less +122 -0
  56. data/app/frameworks/twitter/bootstrap/mixins/hide-text.less +21 -0
  57. data/app/frameworks/twitter/bootstrap/mixins/image.less +34 -0
  58. data/app/frameworks/twitter/bootstrap/mixins/labels.less +12 -0
  59. data/app/frameworks/twitter/bootstrap/mixins/list-group.less +29 -0
  60. data/app/frameworks/twitter/bootstrap/mixins/nav-divider.less +10 -0
  61. data/app/frameworks/twitter/bootstrap/mixins/nav-vertical-align.less +9 -0
  62. data/app/frameworks/twitter/bootstrap/mixins/opacity.less +8 -0
  63. data/app/frameworks/twitter/bootstrap/mixins/pagination.less +23 -0
  64. data/app/frameworks/twitter/bootstrap/mixins/panels.less +24 -0
  65. data/app/frameworks/twitter/bootstrap/mixins/progress-bar.less +10 -0
  66. data/app/frameworks/twitter/bootstrap/mixins/reset-filter.less +8 -0
  67. data/app/frameworks/twitter/bootstrap/mixins/resize.less +6 -0
  68. data/app/frameworks/twitter/bootstrap/mixins/responsive-visibility.less +15 -0
  69. data/app/frameworks/twitter/bootstrap/mixins/size.less +10 -0
  70. data/app/frameworks/twitter/bootstrap/mixins/tab-focus.less +9 -0
  71. data/app/frameworks/twitter/bootstrap/mixins/table-row.less +28 -0
  72. data/app/frameworks/twitter/bootstrap/mixins/text-emphasis.less +8 -0
  73. data/app/frameworks/twitter/bootstrap/mixins/text-overflow.less +8 -0
  74. data/app/frameworks/twitter/bootstrap/mixins/vendor-prefixes.less +224 -0
  75. data/app/frameworks/twitter/bootstrap/modals.less +150 -0
  76. data/app/frameworks/twitter/bootstrap/navbar.less +655 -0
  77. data/app/frameworks/twitter/bootstrap/navs.less +242 -0
  78. data/app/frameworks/twitter/bootstrap/normalize.less +425 -0
  79. data/app/frameworks/twitter/bootstrap/pager.less +55 -0
  80. data/app/frameworks/twitter/bootstrap/pagination.less +88 -0
  81. data/app/frameworks/twitter/bootstrap/panels.less +243 -0
  82. data/app/frameworks/twitter/bootstrap/popovers.less +133 -0
  83. data/app/frameworks/twitter/bootstrap/print.less +101 -0
  84. data/app/frameworks/twitter/bootstrap/progress-bars.less +105 -0
  85. data/app/frameworks/twitter/bootstrap/responsive-embed.less +34 -0
  86. data/app/frameworks/twitter/bootstrap/responsive-utilities.less +194 -0
  87. data/app/frameworks/twitter/bootstrap/scaffolding.less +150 -0
  88. data/app/frameworks/twitter/bootstrap/tables.less +233 -0
  89. data/app/frameworks/twitter/bootstrap/theme.less +258 -0
  90. data/app/frameworks/twitter/bootstrap/thumbnails.less +36 -0
  91. data/app/frameworks/twitter/bootstrap/tooltip.less +95 -0
  92. data/app/frameworks/twitter/bootstrap/type.less +313 -0
  93. data/app/frameworks/twitter/bootstrap/utilities.less +57 -0
  94. data/app/frameworks/twitter/bootstrap/variables.less +846 -0
  95. data/app/frameworks/twitter/bootstrap/wells.less +29 -0
  96. data/less-rails-bootstrap.gemspec +4 -2
  97. data/lib/less/rails/bootstrap/version.rb +1 -1
  98. data/scripts/update_bootstrap.sh +5 -4
  99. data/test/cases/generators/custom_bootstrap_generator_test.rb +1 -1
  100. metadata +51 -7
@@ -0,0 +1,233 @@
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: asset-url('@{icon-font-path}@{icon-font-name}.eot');
14
+ src: asset-url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
15
+ asset-url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
16
+ asset-url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
17
+ asset-url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') 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
+
33
+ // Individual icons
34
+ .glyphicon-asterisk { &:before { content: "\2a"; } }
35
+ .glyphicon-plus { &:before { content: "\2b"; } }
36
+ .glyphicon-euro { &:before { content: "\20ac"; } }
37
+ .glyphicon-minus { &:before { content: "\2212"; } }
38
+ .glyphicon-cloud { &:before { content: "\2601"; } }
39
+ .glyphicon-envelope { &:before { content: "\2709"; } }
40
+ .glyphicon-pencil { &:before { content: "\270f"; } }
41
+ .glyphicon-glass { &:before { content: "\e001"; } }
42
+ .glyphicon-music { &:before { content: "\e002"; } }
43
+ .glyphicon-search { &:before { content: "\e003"; } }
44
+ .glyphicon-heart { &:before { content: "\e005"; } }
45
+ .glyphicon-star { &:before { content: "\e006"; } }
46
+ .glyphicon-star-empty { &:before { content: "\e007"; } }
47
+ .glyphicon-user { &:before { content: "\e008"; } }
48
+ .glyphicon-film { &:before { content: "\e009"; } }
49
+ .glyphicon-th-large { &:before { content: "\e010"; } }
50
+ .glyphicon-th { &:before { content: "\e011"; } }
51
+ .glyphicon-th-list { &:before { content: "\e012"; } }
52
+ .glyphicon-ok { &:before { content: "\e013"; } }
53
+ .glyphicon-remove { &:before { content: "\e014"; } }
54
+ .glyphicon-zoom-in { &:before { content: "\e015"; } }
55
+ .glyphicon-zoom-out { &:before { content: "\e016"; } }
56
+ .glyphicon-off { &:before { content: "\e017"; } }
57
+ .glyphicon-signal { &:before { content: "\e018"; } }
58
+ .glyphicon-cog { &:before { content: "\e019"; } }
59
+ .glyphicon-trash { &:before { content: "\e020"; } }
60
+ .glyphicon-home { &:before { content: "\e021"; } }
61
+ .glyphicon-file { &:before { content: "\e022"; } }
62
+ .glyphicon-time { &:before { content: "\e023"; } }
63
+ .glyphicon-road { &:before { content: "\e024"; } }
64
+ .glyphicon-download-alt { &:before { content: "\e025"; } }
65
+ .glyphicon-download { &:before { content: "\e026"; } }
66
+ .glyphicon-upload { &:before { content: "\e027"; } }
67
+ .glyphicon-inbox { &:before { content: "\e028"; } }
68
+ .glyphicon-play-circle { &:before { content: "\e029"; } }
69
+ .glyphicon-repeat { &:before { content: "\e030"; } }
70
+ .glyphicon-refresh { &:before { content: "\e031"; } }
71
+ .glyphicon-list-alt { &:before { content: "\e032"; } }
72
+ .glyphicon-lock { &:before { content: "\e033"; } }
73
+ .glyphicon-flag { &:before { content: "\e034"; } }
74
+ .glyphicon-headphones { &:before { content: "\e035"; } }
75
+ .glyphicon-volume-off { &:before { content: "\e036"; } }
76
+ .glyphicon-volume-down { &:before { content: "\e037"; } }
77
+ .glyphicon-volume-up { &:before { content: "\e038"; } }
78
+ .glyphicon-qrcode { &:before { content: "\e039"; } }
79
+ .glyphicon-barcode { &:before { content: "\e040"; } }
80
+ .glyphicon-tag { &:before { content: "\e041"; } }
81
+ .glyphicon-tags { &:before { content: "\e042"; } }
82
+ .glyphicon-book { &:before { content: "\e043"; } }
83
+ .glyphicon-bookmark { &:before { content: "\e044"; } }
84
+ .glyphicon-print { &:before { content: "\e045"; } }
85
+ .glyphicon-camera { &:before { content: "\e046"; } }
86
+ .glyphicon-font { &:before { content: "\e047"; } }
87
+ .glyphicon-bold { &:before { content: "\e048"; } }
88
+ .glyphicon-italic { &:before { content: "\e049"; } }
89
+ .glyphicon-text-height { &:before { content: "\e050"; } }
90
+ .glyphicon-text-width { &:before { content: "\e051"; } }
91
+ .glyphicon-align-left { &:before { content: "\e052"; } }
92
+ .glyphicon-align-center { &:before { content: "\e053"; } }
93
+ .glyphicon-align-right { &:before { content: "\e054"; } }
94
+ .glyphicon-align-justify { &:before { content: "\e055"; } }
95
+ .glyphicon-list { &:before { content: "\e056"; } }
96
+ .glyphicon-indent-left { &:before { content: "\e057"; } }
97
+ .glyphicon-indent-right { &:before { content: "\e058"; } }
98
+ .glyphicon-facetime-video { &:before { content: "\e059"; } }
99
+ .glyphicon-picture { &:before { content: "\e060"; } }
100
+ .glyphicon-map-marker { &:before { content: "\e062"; } }
101
+ .glyphicon-adjust { &:before { content: "\e063"; } }
102
+ .glyphicon-tint { &:before { content: "\e064"; } }
103
+ .glyphicon-edit { &:before { content: "\e065"; } }
104
+ .glyphicon-share { &:before { content: "\e066"; } }
105
+ .glyphicon-check { &:before { content: "\e067"; } }
106
+ .glyphicon-move { &:before { content: "\e068"; } }
107
+ .glyphicon-step-backward { &:before { content: "\e069"; } }
108
+ .glyphicon-fast-backward { &:before { content: "\e070"; } }
109
+ .glyphicon-backward { &:before { content: "\e071"; } }
110
+ .glyphicon-play { &:before { content: "\e072"; } }
111
+ .glyphicon-pause { &:before { content: "\e073"; } }
112
+ .glyphicon-stop { &:before { content: "\e074"; } }
113
+ .glyphicon-forward { &:before { content: "\e075"; } }
114
+ .glyphicon-fast-forward { &:before { content: "\e076"; } }
115
+ .glyphicon-step-forward { &:before { content: "\e077"; } }
116
+ .glyphicon-eject { &:before { content: "\e078"; } }
117
+ .glyphicon-chevron-left { &:before { content: "\e079"; } }
118
+ .glyphicon-chevron-right { &:before { content: "\e080"; } }
119
+ .glyphicon-plus-sign { &:before { content: "\e081"; } }
120
+ .glyphicon-minus-sign { &:before { content: "\e082"; } }
121
+ .glyphicon-remove-sign { &:before { content: "\e083"; } }
122
+ .glyphicon-ok-sign { &:before { content: "\e084"; } }
123
+ .glyphicon-question-sign { &:before { content: "\e085"; } }
124
+ .glyphicon-info-sign { &:before { content: "\e086"; } }
125
+ .glyphicon-screenshot { &:before { content: "\e087"; } }
126
+ .glyphicon-remove-circle { &:before { content: "\e088"; } }
127
+ .glyphicon-ok-circle { &:before { content: "\e089"; } }
128
+ .glyphicon-ban-circle { &:before { content: "\e090"; } }
129
+ .glyphicon-arrow-left { &:before { content: "\e091"; } }
130
+ .glyphicon-arrow-right { &:before { content: "\e092"; } }
131
+ .glyphicon-arrow-up { &:before { content: "\e093"; } }
132
+ .glyphicon-arrow-down { &:before { content: "\e094"; } }
133
+ .glyphicon-share-alt { &:before { content: "\e095"; } }
134
+ .glyphicon-resize-full { &:before { content: "\e096"; } }
135
+ .glyphicon-resize-small { &:before { content: "\e097"; } }
136
+ .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
137
+ .glyphicon-gift { &:before { content: "\e102"; } }
138
+ .glyphicon-leaf { &:before { content: "\e103"; } }
139
+ .glyphicon-fire { &:before { content: "\e104"; } }
140
+ .glyphicon-eye-open { &:before { content: "\e105"; } }
141
+ .glyphicon-eye-close { &:before { content: "\e106"; } }
142
+ .glyphicon-warning-sign { &:before { content: "\e107"; } }
143
+ .glyphicon-plane { &:before { content: "\e108"; } }
144
+ .glyphicon-calendar { &:before { content: "\e109"; } }
145
+ .glyphicon-random { &:before { content: "\e110"; } }
146
+ .glyphicon-comment { &:before { content: "\e111"; } }
147
+ .glyphicon-magnet { &:before { content: "\e112"; } }
148
+ .glyphicon-chevron-up { &:before { content: "\e113"; } }
149
+ .glyphicon-chevron-down { &:before { content: "\e114"; } }
150
+ .glyphicon-retweet { &:before { content: "\e115"; } }
151
+ .glyphicon-shopping-cart { &:before { content: "\e116"; } }
152
+ .glyphicon-folder-close { &:before { content: "\e117"; } }
153
+ .glyphicon-folder-open { &:before { content: "\e118"; } }
154
+ .glyphicon-resize-vertical { &:before { content: "\e119"; } }
155
+ .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
156
+ .glyphicon-hdd { &:before { content: "\e121"; } }
157
+ .glyphicon-bullhorn { &:before { content: "\e122"; } }
158
+ .glyphicon-bell { &:before { content: "\e123"; } }
159
+ .glyphicon-certificate { &:before { content: "\e124"; } }
160
+ .glyphicon-thumbs-up { &:before { content: "\e125"; } }
161
+ .glyphicon-thumbs-down { &:before { content: "\e126"; } }
162
+ .glyphicon-hand-right { &:before { content: "\e127"; } }
163
+ .glyphicon-hand-left { &:before { content: "\e128"; } }
164
+ .glyphicon-hand-up { &:before { content: "\e129"; } }
165
+ .glyphicon-hand-down { &:before { content: "\e130"; } }
166
+ .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
167
+ .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
168
+ .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
169
+ .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
170
+ .glyphicon-globe { &:before { content: "\e135"; } }
171
+ .glyphicon-wrench { &:before { content: "\e136"; } }
172
+ .glyphicon-tasks { &:before { content: "\e137"; } }
173
+ .glyphicon-filter { &:before { content: "\e138"; } }
174
+ .glyphicon-briefcase { &:before { content: "\e139"; } }
175
+ .glyphicon-fullscreen { &:before { content: "\e140"; } }
176
+ .glyphicon-dashboard { &:before { content: "\e141"; } }
177
+ .glyphicon-paperclip { &:before { content: "\e142"; } }
178
+ .glyphicon-heart-empty { &:before { content: "\e143"; } }
179
+ .glyphicon-link { &:before { content: "\e144"; } }
180
+ .glyphicon-phone { &:before { content: "\e145"; } }
181
+ .glyphicon-pushpin { &:before { content: "\e146"; } }
182
+ .glyphicon-usd { &:before { content: "\e148"; } }
183
+ .glyphicon-gbp { &:before { content: "\e149"; } }
184
+ .glyphicon-sort { &:before { content: "\e150"; } }
185
+ .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
186
+ .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
187
+ .glyphicon-sort-by-order { &:before { content: "\e153"; } }
188
+ .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
189
+ .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
190
+ .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
191
+ .glyphicon-unchecked { &:before { content: "\e157"; } }
192
+ .glyphicon-expand { &:before { content: "\e158"; } }
193
+ .glyphicon-collapse-down { &:before { content: "\e159"; } }
194
+ .glyphicon-collapse-up { &:before { content: "\e160"; } }
195
+ .glyphicon-log-in { &:before { content: "\e161"; } }
196
+ .glyphicon-flash { &:before { content: "\e162"; } }
197
+ .glyphicon-log-out { &:before { content: "\e163"; } }
198
+ .glyphicon-new-window { &:before { content: "\e164"; } }
199
+ .glyphicon-record { &:before { content: "\e165"; } }
200
+ .glyphicon-save { &:before { content: "\e166"; } }
201
+ .glyphicon-open { &:before { content: "\e167"; } }
202
+ .glyphicon-saved { &:before { content: "\e168"; } }
203
+ .glyphicon-import { &:before { content: "\e169"; } }
204
+ .glyphicon-export { &:before { content: "\e170"; } }
205
+ .glyphicon-send { &:before { content: "\e171"; } }
206
+ .glyphicon-floppy-disk { &:before { content: "\e172"; } }
207
+ .glyphicon-floppy-saved { &:before { content: "\e173"; } }
208
+ .glyphicon-floppy-remove { &:before { content: "\e174"; } }
209
+ .glyphicon-floppy-save { &:before { content: "\e175"; } }
210
+ .glyphicon-floppy-open { &:before { content: "\e176"; } }
211
+ .glyphicon-credit-card { &:before { content: "\e177"; } }
212
+ .glyphicon-transfer { &:before { content: "\e178"; } }
213
+ .glyphicon-cutlery { &:before { content: "\e179"; } }
214
+ .glyphicon-header { &:before { content: "\e180"; } }
215
+ .glyphicon-compressed { &:before { content: "\e181"; } }
216
+ .glyphicon-earphone { &:before { content: "\e182"; } }
217
+ .glyphicon-phone-alt { &:before { content: "\e183"; } }
218
+ .glyphicon-tower { &:before { content: "\e184"; } }
219
+ .glyphicon-stats { &:before { content: "\e185"; } }
220
+ .glyphicon-sd-video { &:before { content: "\e186"; } }
221
+ .glyphicon-hd-video { &:before { content: "\e187"; } }
222
+ .glyphicon-subtitles { &:before { content: "\e188"; } }
223
+ .glyphicon-sound-stereo { &:before { content: "\e189"; } }
224
+ .glyphicon-sound-dolby { &:before { content: "\e190"; } }
225
+ .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
226
+ .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
227
+ .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
228
+ .glyphicon-copyright-mark { &:before { content: "\e194"; } }
229
+ .glyphicon-registration-mark { &:before { content: "\e195"; } }
230
+ .glyphicon-cloud-download { &:before { content: "\e197"; } }
231
+ .glyphicon-cloud-upload { &:before { content: "\e198"; } }
232
+ .glyphicon-tree-conifer { &:before { content: "\e199"; } }
233
+ .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
@@ -0,0 +1,84 @@
1
+ //
2
+ // Grid system
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Container widths
7
+ //
8
+ // Set the container width, and override it for fixed navbars in media queries.
9
+
10
+ .container {
11
+ .container-fixed();
12
+
13
+ @media (min-width: @screen-sm-min) {
14
+ width: @container-sm;
15
+ }
16
+ @media (min-width: @screen-md-min) {
17
+ width: @container-md;
18
+ }
19
+ @media (min-width: @screen-lg-min) {
20
+ width: @container-lg;
21
+ }
22
+ }
23
+
24
+
25
+ // Fluid container
26
+ //
27
+ // Utilizes the mixin meant for fixed width containers, but without any defined
28
+ // width for fluid, full width layouts.
29
+
30
+ .container-fluid {
31
+ .container-fixed();
32
+ }
33
+
34
+
35
+ // Row
36
+ //
37
+ // Rows contain and clear the floats of your columns.
38
+
39
+ .row {
40
+ .make-row();
41
+ }
42
+
43
+
44
+ // Columns
45
+ //
46
+ // Common styles for small and large grid columns
47
+
48
+ .make-grid-columns();
49
+
50
+
51
+ // Extra small grid
52
+ //
53
+ // Columns, offsets, pushes, and pulls for extra small devices like
54
+ // smartphones.
55
+
56
+ .make-grid(xs);
57
+
58
+
59
+ // Small grid
60
+ //
61
+ // Columns, offsets, pushes, and pulls for the small device range, from phones
62
+ // to tablets.
63
+
64
+ @media (min-width: @screen-sm-min) {
65
+ .make-grid(sm);
66
+ }
67
+
68
+
69
+ // Medium grid
70
+ //
71
+ // Columns, offsets, pushes, and pulls for the desktop device range.
72
+
73
+ @media (min-width: @screen-md-min) {
74
+ .make-grid(md);
75
+ }
76
+
77
+
78
+ // Large grid
79
+ //
80
+ // Columns, offsets, pushes, and pulls for the large desktop device range.
81
+
82
+ @media (min-width: @screen-lg-min) {
83
+ .make-grid(lg);
84
+ }
@@ -0,0 +1,166 @@
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
+ &[class*="col-"] {
14
+ float: none;
15
+ padding-left: 0;
16
+ padding-right: 0;
17
+ }
18
+
19
+ .form-control {
20
+ // Ensure that the input is always above the *appended* addon button for
21
+ // proper border colors.
22
+ position: relative;
23
+ z-index: 2;
24
+
25
+ // IE9 fubars the placeholder attribute in text inputs and the arrows on
26
+ // select elements in input groups. To fix it, we float the input. Details:
27
+ // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
28
+ float: left;
29
+
30
+ width: 100%;
31
+ margin-bottom: 0;
32
+ }
33
+ }
34
+
35
+ // Sizing options
36
+ //
37
+ // Remix the default form control sizing classes into new ones for easier
38
+ // manipulation.
39
+
40
+ .input-group-lg > .form-control,
41
+ .input-group-lg > .input-group-addon,
42
+ .input-group-lg > .input-group-btn > .btn {
43
+ .input-lg();
44
+ }
45
+ .input-group-sm > .form-control,
46
+ .input-group-sm > .input-group-addon,
47
+ .input-group-sm > .input-group-btn > .btn {
48
+ .input-sm();
49
+ }
50
+
51
+
52
+ // Display as table-cell
53
+ // -------------------------
54
+ .input-group-addon,
55
+ .input-group-btn,
56
+ .input-group .form-control {
57
+ display: table-cell;
58
+
59
+ &:not(:first-child):not(:last-child) {
60
+ border-radius: 0;
61
+ }
62
+ }
63
+ // Addon and addon wrapper for buttons
64
+ .input-group-addon,
65
+ .input-group-btn {
66
+ width: 1%;
67
+ white-space: nowrap;
68
+ vertical-align: middle; // Match the inputs
69
+ }
70
+
71
+ // Text input groups
72
+ // -------------------------
73
+ .input-group-addon {
74
+ padding: @padding-base-vertical @padding-base-horizontal;
75
+ font-size: @font-size-base;
76
+ font-weight: normal;
77
+ line-height: 1;
78
+ color: @input-color;
79
+ text-align: center;
80
+ background-color: @input-group-addon-bg;
81
+ border: 1px solid @input-group-addon-border-color;
82
+ border-radius: @border-radius-base;
83
+
84
+ // Sizing
85
+ &.input-sm {
86
+ padding: @padding-small-vertical @padding-small-horizontal;
87
+ font-size: @font-size-small;
88
+ border-radius: @border-radius-small;
89
+ }
90
+ &.input-lg {
91
+ padding: @padding-large-vertical @padding-large-horizontal;
92
+ font-size: @font-size-large;
93
+ border-radius: @border-radius-large;
94
+ }
95
+
96
+ // Nuke default margins from checkboxes and radios to vertically center within.
97
+ input[type="radio"],
98
+ input[type="checkbox"] {
99
+ margin-top: 0;
100
+ }
101
+ }
102
+
103
+ // Reset rounded corners
104
+ .input-group .form-control:first-child,
105
+ .input-group-addon:first-child,
106
+ .input-group-btn:first-child > .btn,
107
+ .input-group-btn:first-child > .btn-group > .btn,
108
+ .input-group-btn:first-child > .dropdown-toggle,
109
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
110
+ .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
111
+ .border-right-radius(0);
112
+ }
113
+ .input-group-addon:first-child {
114
+ border-right: 0;
115
+ }
116
+ .input-group .form-control:last-child,
117
+ .input-group-addon:last-child,
118
+ .input-group-btn:last-child > .btn,
119
+ .input-group-btn:last-child > .btn-group > .btn,
120
+ .input-group-btn:last-child > .dropdown-toggle,
121
+ .input-group-btn:first-child > .btn:not(:first-child),
122
+ .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
123
+ .border-left-radius(0);
124
+ }
125
+ .input-group-addon:last-child {
126
+ border-left: 0;
127
+ }
128
+
129
+ // Button input groups
130
+ // -------------------------
131
+ .input-group-btn {
132
+ position: relative;
133
+ // Jankily prevent input button groups from wrapping with `white-space` and
134
+ // `font-size` in combination with `inline-block` on buttons.
135
+ font-size: 0;
136
+ white-space: nowrap;
137
+
138
+ // Negative margin for spacing, position for bringing hovered/focused/actived
139
+ // element above the siblings.
140
+ > .btn {
141
+ position: relative;
142
+ + .btn {
143
+ margin-left: -1px;
144
+ }
145
+ // Bring the "active" button to the front
146
+ &:hover,
147
+ &:focus,
148
+ &:active {
149
+ z-index: 2;
150
+ }
151
+ }
152
+
153
+ // Negative margin to only have a 1px border between the two
154
+ &:first-child {
155
+ > .btn,
156
+ > .btn-group {
157
+ margin-right: -1px;
158
+ }
159
+ }
160
+ &:last-child {
161
+ > .btn,
162
+ > .btn-group {
163
+ margin-left: -1px;
164
+ }
165
+ }
166
+ }