entreprise7pro-bootstrap-sass 3.4.6

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 (171) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.travis.yml +19 -0
  4. data/CHANGELOG.md +233 -0
  5. data/CONTRIBUTING.md +86 -0
  6. data/Gemfile +7 -0
  7. data/LICENSE +22 -0
  8. data/README.md +376 -0
  9. data/Rakefile +98 -0
  10. data/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  11. data/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  12. data/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  13. data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  14. data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  15. data/assets/images/.keep +0 -0
  16. data/assets/javascripts/bootstrap/affix.js +166 -0
  17. data/assets/javascripts/bootstrap/alert.js +97 -0
  18. data/assets/javascripts/bootstrap/button.js +136 -0
  19. data/assets/javascripts/bootstrap/carousel.js +248 -0
  20. data/assets/javascripts/bootstrap/collapse.js +214 -0
  21. data/assets/javascripts/bootstrap/dropdown.js +167 -0
  22. data/assets/javascripts/bootstrap/modal.js +356 -0
  23. data/assets/javascripts/bootstrap/popover.js +123 -0
  24. data/assets/javascripts/bootstrap/scrollspy.js +174 -0
  25. data/assets/javascripts/bootstrap/tab.js +157 -0
  26. data/assets/javascripts/bootstrap/tooltip.js +679 -0
  27. data/assets/javascripts/bootstrap/transition.js +61 -0
  28. data/assets/javascripts/bootstrap-sprockets.js +12 -0
  29. data/assets/javascripts/bootstrap.js +2611 -0
  30. data/assets/javascripts/bootstrap.min.js +7 -0
  31. data/assets/javascripts/jquery.min.js +2 -0
  32. data/assets/stylesheets/_bootstrap-compass.scss +9 -0
  33. data/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  34. data/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  35. data/assets/stylesheets/_bootstrap.scss +56 -0
  36. data/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  37. data/assets/stylesheets/bootstrap/_badges.scss +68 -0
  38. data/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
  39. data/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
  40. data/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  41. data/assets/stylesheets/bootstrap/_carousel.scss +263 -0
  42. data/assets/stylesheets/bootstrap/_close.scss +37 -0
  43. data/assets/stylesheets/bootstrap/_code.scss +70 -0
  44. data/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
  45. data/assets/stylesheets/bootstrap/_dropdowns.scss +212 -0
  46. data/assets/stylesheets/bootstrap/_forms.scss +602 -0
  47. data/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
  48. data/assets/stylesheets/bootstrap/_grid.scss +94 -0
  49. data/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
  50. data/assets/stylesheets/bootstrap/_jumbotron.scss +55 -0
  51. data/assets/stylesheets/bootstrap/_labels.scss +66 -0
  52. data/assets/stylesheets/bootstrap/_list-group.scss +128 -0
  53. data/assets/stylesheets/bootstrap/_media.scss +66 -0
  54. data/assets/stylesheets/bootstrap/_mixins.scss +39 -0
  55. data/assets/stylesheets/bootstrap/_modals.scss +150 -0
  56. data/assets/stylesheets/bootstrap/_navbar.scss +657 -0
  57. data/assets/stylesheets/bootstrap/_navs.scss +242 -0
  58. data/assets/stylesheets/bootstrap/_normalize.scss +422 -0
  59. data/assets/stylesheets/bootstrap/_pager.scss +54 -0
  60. data/assets/stylesheets/bootstrap/_pagination.scss +86 -0
  61. data/assets/stylesheets/bootstrap/_panels.scss +271 -0
  62. data/assets/stylesheets/bootstrap/_popovers.scss +126 -0
  63. data/assets/stylesheets/bootstrap/_print.scss +99 -0
  64. data/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  65. data/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  66. data/assets/stylesheets/bootstrap/_responsive-utilities.scss +157 -0
  67. data/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
  68. data/assets/stylesheets/bootstrap/_tables.scss +233 -0
  69. data/assets/stylesheets/bootstrap/_theme.scss +293 -0
  70. data/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  71. data/assets/stylesheets/bootstrap/_tooltip.scss +112 -0
  72. data/assets/stylesheets/bootstrap/_type.scss +299 -0
  73. data/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  74. data/assets/stylesheets/bootstrap/_variables.scss +875 -0
  75. data/assets/stylesheets/bootstrap/_wells.scss +29 -0
  76. data/assets/stylesheets/bootstrap/mixins/_alerts.scss +15 -0
  77. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  78. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  79. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +61 -0
  80. data/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  81. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  82. data/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  83. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +50 -0
  84. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +82 -0
  85. data/assets/stylesheets/bootstrap/mixins/_grid.scss +123 -0
  86. data/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  87. data/assets/stylesheets/bootstrap/mixins/_image.scss +28 -0
  88. data/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  89. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  90. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +11 -0
  91. data/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +10 -0
  92. data/assets/stylesheets/bootstrap/mixins/_opacity.scss +7 -0
  93. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  94. data/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  95. data/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  96. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  97. data/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  98. data/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +17 -0
  99. data/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  100. data/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  101. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  102. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  103. data/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  104. data/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +210 -0
  105. data/bower.json +38 -0
  106. data/composer.json +21 -0
  107. data/entreprise7pro-bootstrap-sass.gemspec +37 -0
  108. data/eyeglass-exports.js +7 -0
  109. data/lib/entreprise7pro-bootstrap-sass/engine.rb +17 -0
  110. data/lib/entreprise7pro-bootstrap-sass/version.rb +4 -0
  111. data/lib/entreprise7pro-bootstrap-sass.rb +91 -0
  112. data/package-lock.json +1011 -0
  113. data/package.json +48 -0
  114. data/sache.json +5 -0
  115. data/tasks/bower.rake +31 -0
  116. data/tasks/converter/char_string_scanner.rb +38 -0
  117. data/tasks/converter/fonts_conversion.rb +16 -0
  118. data/tasks/converter/js_conversion.rb +47 -0
  119. data/tasks/converter/less_conversion.rb +752 -0
  120. data/tasks/converter/logger.rb +57 -0
  121. data/tasks/converter/network.rb +97 -0
  122. data/tasks/converter.rb +80 -0
  123. data/templates/project/_bootstrap-variables.sass +876 -0
  124. data/templates/project/manifest.rb +20 -0
  125. data/templates/project/styles.sass +6 -0
  126. data/test/compilation_test.rb +30 -0
  127. data/test/dummy_node_mincer/apple-touch-icon-144-precomposed.png +0 -0
  128. data/test/dummy_node_mincer/application.css.ejs.scss +6 -0
  129. data/test/dummy_node_mincer/manifest.js +87 -0
  130. data/test/dummy_rails/README.rdoc +3 -0
  131. data/test/dummy_rails/Rakefile +6 -0
  132. data/test/dummy_rails/app/assets/images/.keep +0 -0
  133. data/test/dummy_rails/app/assets/javascripts/application.js +2 -0
  134. data/test/dummy_rails/app/assets/stylesheets/application.sass +2 -0
  135. data/test/dummy_rails/app/controllers/application_controller.rb +5 -0
  136. data/test/dummy_rails/app/controllers/pages_controller.rb +4 -0
  137. data/test/dummy_rails/app/helpers/application_helper.rb +2 -0
  138. data/test/dummy_rails/app/views/layouts/application.html.erb +14 -0
  139. data/test/dummy_rails/app/views/pages/root.html.slim +84 -0
  140. data/test/dummy_rails/config/application.rb +31 -0
  141. data/test/dummy_rails/config/boot.rb +5 -0
  142. data/test/dummy_rails/config/environment.rb +5 -0
  143. data/test/dummy_rails/config/environments/development.rb +23 -0
  144. data/test/dummy_rails/config/environments/production.rb +82 -0
  145. data/test/dummy_rails/config/environments/test.rb +38 -0
  146. data/test/dummy_rails/config/initializers/backtrace_silencers.rb +7 -0
  147. data/test/dummy_rails/config/initializers/filter_parameter_logging.rb +4 -0
  148. data/test/dummy_rails/config/initializers/inflections.rb +16 -0
  149. data/test/dummy_rails/config/initializers/mime_types.rb +5 -0
  150. data/test/dummy_rails/config/initializers/secret_token.rb +18 -0
  151. data/test/dummy_rails/config/initializers/session_store.rb +3 -0
  152. data/test/dummy_rails/config/initializers/wrap_parameters.rb +14 -0
  153. data/test/dummy_rails/config/locales/en.yml +3 -0
  154. data/test/dummy_rails/config/locales/es.yml +3 -0
  155. data/test/dummy_rails/config/routes.rb +3 -0
  156. data/test/dummy_rails/config.ru +4 -0
  157. data/test/dummy_rails/log/.keep +0 -0
  158. data/test/dummy_sass_only/Gemfile +4 -0
  159. data/test/dummy_sass_only/compile.rb +20 -0
  160. data/test/dummy_sass_only/import_all.scss +2 -0
  161. data/test/gemfiles/default.gemfile +3 -0
  162. data/test/node_mincer_test.rb +35 -0
  163. data/test/node_sass_compile_test.sh +9 -0
  164. data/test/pages_test.rb +14 -0
  165. data/test/sass_test.rb +29 -0
  166. data/test/sprockets_rails_test.rb +31 -0
  167. data/test/support/dummy_rails_integration.rb +22 -0
  168. data/test/support/reporting.rb +27 -0
  169. data/test/test_helper.rb +36 -0
  170. data/test/test_helper_rails.rb +6 -0
  171. metadata +467 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 827a9d5f09fd1d26f5743b6f2cb2a2f1e7f87c2d3e089f5fe8dfc63f001e3fd0
4
+ data.tar.gz: 31ed272b64d4345f8f0428dd3f5153354c4324f4d71869bcd22304c5285965cf
5
+ SHA512:
6
+ metadata.gz: 727512c505b8aef8035d14ad619c5ac887f42a1d526cd7931794a0e4574de1cf455324205312cae65eddc335f6de36fc35d2da43ffadb9d7d7eccfda9d8700f0
7
+ data.tar.gz: 2df389460a4d5810e7968b2b864d1dd6439269cb4d391c3fc6f1a63440f76dadab36d3cbb72dc108676d493510763c267b61d30e1634ea9a83e884c84479a5e5
data/.gitignore ADDED
@@ -0,0 +1,20 @@
1
+ *.gem
2
+ .sass-cache
3
+ bootstrap.css
4
+ bootstrap-responsive.css
5
+ Gemfile.lock
6
+ *.gemfile.lock
7
+ .rvmrc
8
+ .rbenv-version
9
+
10
+ # Ignore bundler config
11
+ /.bundle
12
+ /vendor/cache
13
+ /vendor/bundle
14
+ tmp/
15
+ test/screenshots/
16
+ test/dummy_rails/log/*.log
17
+ test/dummy_rails/public/assets/
18
+ .DS_Store
19
+ node_modules
20
+ /.idea
data/.travis.yml ADDED
@@ -0,0 +1,19 @@
1
+ dist: xenial
2
+ language: ruby
3
+ cache: bundler
4
+ bundler_args: --path ../../vendor/bundle --without debug
5
+ rvm:
6
+ - 2.5.1
7
+ gemfile:
8
+ - test/gemfiles/default.gemfile
9
+ before_install:
10
+ - "nvm install stable"
11
+ - "npm install"
12
+ notifications:
13
+ slack: heybb:3n88HHilXn76ji9vV4gL819Y
14
+ env:
15
+ global:
16
+ - VERBOSE=1
17
+ script:
18
+ bundle exec rake && bash test/*.sh
19
+ sudo: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,233 @@
1
+ # Changelog
2
+
3
+ ## 3.4.5 (jQuery v4 support)
4
+
5
+ * gem publishing
6
+
7
+ ## 3.4.4 (jQuery v4 support)
8
+
9
+ * jQuery v4 compatibility
10
+ * Drop IE support
11
+ * Upgrade to https://github.com/entreprise7pro/bootstrap v3.4.2 instead of twbs/bootstrap v3.4.1
12
+
13
+ ## 3.4.3 (non-ruby only)
14
+
15
+ * Fix malformed `math.div` expressions. [#1225](https://github.com/twbs/bootstrap-sass/pull/1225)
16
+
17
+ ## 3.4.2 (non-ruby only)
18
+
19
+ * Compatibility with Sass 1.33. [#1221](https://github.com/twbs/bootstrap-sass/pull/1221)
20
+
21
+ ## 3.4.0
22
+
23
+ * Bootstrap rubygem now depends on SassC instead of Sass.
24
+ * Compass no longer supported.
25
+
26
+ ## 3.3.7
27
+
28
+ * Allows jQuery 3.x in bower.json. [#1048](https://github.com/twbs/bootstrap-sass/issues/1048)
29
+ * Adds the `style` and `sass` fields to package.json. [#1045](https://github.com/twbs/bootstrap-sass/issues/1045)
30
+ * Adds Eyeglass support. [#1007](https://github.com/twbs/bootstrap-sass/pull/1007)
31
+
32
+ ## 3.3.6
33
+
34
+ * Bumps Sass dependency to 3.3.4+ to avoid compatibility issues with @at-root.
35
+ * Bumps node-sass dependency to ~3.4.2 for Node.js v5 compatibility. [#986](https://github.com/twbs/bootstrap-sass/issues/986)
36
+ * Fixes breadcrumb content issues on libsass. [#919](https://github.com/twbs/bootstrap-sass/issues/919)
37
+ * Fixes a Rails 5 compatibility issue. [#965](https://github.com/twbs/bootstrap-sass/pull/965)
38
+
39
+ Framework version: Bootstrap **v3.3.6**
40
+
41
+ ## 3.3.5
42
+
43
+ Fix for standalone Compass extension compatibility. [#914](https://github.com/twbs/bootstrap-sass/issues/914)
44
+
45
+ Framework version: Bootstrap **v3.3.5**
46
+
47
+ ## 3.3.4
48
+
49
+ No Sass-specific changes.
50
+
51
+ Framework version: Bootstrap **v3.3.4**
52
+
53
+ ## 3.3.3
54
+
55
+ This is a re-packaged release of 3.3.2.1 (v3.3.2+1).
56
+
57
+ Versions are now strictly semver.
58
+ The PATCH version may be ahead of the upstream.
59
+
60
+ Framework version: Bootstrap **v3.3.2**.
61
+
62
+ ## 3.3.2.1
63
+
64
+ * Fix glyphicons regression (revert 443d5b49eac84aec1cb2f8ea173554327bfc8c14)
65
+
66
+ ## 3.3.2.0
67
+
68
+ * Autoprefixer is now required, and `autoprefixer-rails` is now a dependency for the ruby gem. [#824](https://github.com/twbs/bootstrap-sass/issues/824)
69
+ * Minimum precision reduced from 10 to 8 [#821](https://github.com/twbs/bootstrap-sass/issues/821)
70
+ * Requiring bootstrap JS from npm now works [#812](https://github.com/twbs/bootstrap-sass/issues/812)
71
+ * Fix Sass 3.4.x + IE10 compatibility issue [#803](https://github.com/twbs/bootstrap-sass/issues/803)
72
+ * Provide minified JS bundle [#777](https://github.com/twbs/bootstrap-sass/issues/777)
73
+ * Bower package is now at bootstrap-sass [#813](https://github.com/twbs/bootstrap-sass/issues/813)
74
+
75
+
76
+ ## 3.3.1.0
77
+
78
+ * Variables override template at templates/project/_bootstrap-variables.sass
79
+ * Readme: Bower + Rails configuration
80
+
81
+ ## 3.3.0.1
82
+
83
+ * Fix loading issue with the ruby gem version
84
+
85
+ ## 3.3.0
86
+
87
+ * Improve libsass compatibility
88
+ * Support using Bower package with Rails
89
+
90
+ ## 3.2.0.2
91
+
92
+ Main bootstrap file is now a partial (_bootstrap.scss), for compatibility with Compass 1+.
93
+
94
+ Fixed a number of bugs. [Issues closed in v3.2.0.2](https://github.com/twbs/bootstrap-sass/issues?q=is%3Aissue+is%3Aclosed+milestone%3Av3.2.0.2).
95
+
96
+ ## 3.2.0.1
97
+
98
+ Fixed a number of bugs: [Issues closed in v3.2.0.1](https://github.com/twbs/bootstrap-sass/issues?q=is%3Aissue+is%3Aclosed+milestone%3Av3.2.0.1).
99
+
100
+ ## 3.2.0.0
101
+
102
+ - Assets (Sass, JS, fonts) moved from `vendor/assets` to `assets`. `bootstrap.js` now contains concatenated JS.
103
+ - Compass generator now copies JS and fonts, and provides a better default `styles.sass`.
104
+ - Compass, Sprockets, and Mincer asset path helpers are now provided in pure Sass: `bootstrap-compass`, `bootstrap-sprockets`, and `bootstrap-mincer`.
105
+ Asset path helpers must be imported before `bootstrap`, more in Readme.
106
+ - Sprockets / Mincer JS manifest has been moved to `bootstrap-sprockets.js`.
107
+ It can be required without adding Bootstrap JS directory to load path, as it now uses relative paths.
108
+ - Sprockets: `depend_on_asset` (`glyphicons.scss`) has been changed to `depend_on` to work around an issue with `depend_on_asset`.
109
+ [More information](https://github.com/twbs/bootstrap-sass/issues/592#issuecomment-46570286).
110
+
111
+ ## 3.1.1.0
112
+
113
+ - Updated Bower docs
114
+
115
+ ## 3.1.0.2
116
+
117
+ - #523: Rails 3.2 compatibility
118
+ - Bugfixes from upstream up to 7eb532262fbd1112215b5a547b9285794b5360ab.
119
+
120
+ ## 3.1.0.1
121
+
122
+ - #518: `scale` mixin Sass compatibility issue
123
+
124
+ ## 3.1.0.0
125
+
126
+ * compiles with libsass master
127
+
128
+ ## 3.0.2.1
129
+
130
+ * fix vendor paths for compass
131
+
132
+ ## 3.0.0.0
133
+
134
+ * Fully automated (lots of string juggling) LESS -> Sass conversion. - *Gleb Mazovetskiy*
135
+ * Ported rake task from vwall/compass-twitter-bootstrap to convert Bootstrap upstream - *Peter Gumeson*
136
+ * Moved javascripts to us `bootstrap-component.js` to `bootstrap/component.js` - *Peter Gumeson*
137
+
138
+ ## 2.3.2.2
139
+
140
+ * Allow sass-rails `>= 3.2` - *Thomas McDonald*
141
+
142
+ ## 2.3.2.1
143
+
144
+ ## 2.3.2.0
145
+
146
+ * Update to Bootstrap 2.3.2 - *Dan Allen*
147
+
148
+ ## 2.3.1.3
149
+
150
+ * Find the correct Sprockets context for the `image_path` function - *Tristan Harward, Gleb Mazovetskiy*
151
+
152
+ ## 2.3.1.2
153
+
154
+ * Fix changes to image url - *Gleb Mazovetskiy*
155
+ * Copy _variables into project on Compass install - *Phil Thompson*
156
+ * Add `bootstrap-affix` to the Compass template file - *brief*
157
+
158
+ ## 2.3.1.1 (yanked)
159
+
160
+ * Change how image_url is handled internally - *Tristan Harward*
161
+ * Fix some font variables not having `!default` - *Thomas McDonald*
162
+
163
+ ## 2.3.0.0
164
+ * [#290] Update to Bootstrap 2.3.0 - *Tristan Harward*
165
+ * Fix `rake:debug` with new file locations - *Thomas McDonald*
166
+ * Add draft contributing document - *Thomas McDonald*
167
+ * [#260] Add our load path to the global Sass load path - *Tristan Harward*
168
+ * [#275] Use GitHub notation in Sass head testing gemfile - *Timo Schilling*
169
+ * [#279, #283] Readme improvements - *theverything, Philip Arndt*
170
+
171
+ ## 2.2.2.0
172
+ * [#270] Update to Bootstrap 2.2.2 - *Tristan Harward*
173
+ * [#266] Add license to gemspec - *Peter Marsh*
174
+
175
+ ## 2.2.1.1
176
+ * [#258] Use `bootstrap` prefix for `@import`ing files in `bootstrap/bootstrap.scss` - *Umair Siddique*
177
+
178
+ ## 2.2.1.0
179
+ * [#246] Update to Bootstrap 2.2.1 - *Tristan Harward*
180
+ * [#246] Pull Bootstrap updates from jlong/sass-twitter-bootstrap - *Tristan Harward*
181
+
182
+ ## 2.1.1.0
183
+ * Update to Bootstrap 2.1.1
184
+ * [#222] Remove 100% multiplier in vertical-three-colours
185
+ * [#227] Fix IE component animation collapse
186
+ * [#228] Fix variables documentation link
187
+ * [#231] Made .input-block-level a class as well as mixin
188
+
189
+ ## 2.1.0.1
190
+ * [#219] Fix expected a color. Got: transparent.
191
+ * [#207] Add missing warning style for table row highlighting
192
+ * [#208] Use grid-input-span for input spans
193
+
194
+ ## 2.1.0.0
195
+ * Updated to Bootstrap 2.1
196
+ * Changed some mixin names to be more consistent. Nested mixins in Less are separated by a `-` when they are flattened in Sass.
197
+
198
+ ## 2.0.4.1
199
+ * Fix `.row-fluid > spanX` nesting
200
+ * Small Javascript fixes for those staying on the 2.0.4 release
201
+ * Add `!default` to z-index variables.
202
+
203
+ ## 2.0.4.0
204
+ * Updated to Bootstrap 2.0.4
205
+ * Switched to Bootstrap 2.0.3+'s method of separating responsive files
206
+ * [#149, #150] Fix off by one error introduced with manual revert of media query breakpoints
207
+ * `rake debug` and `rake test` both compile bootstrap & bootstrap-responsive
208
+
209
+ ## 2.0.3.1
210
+ * [#145, #146] Fix button alignment in collapsing navbar as a result of an incorrect variable
211
+
212
+ ## 2.0.3
213
+ * Updated to Bootstrap 2.0.3
214
+ * [#106] Support for Rails < 3.1 through Compass
215
+ * [#132] Add CI testing
216
+ * [#106] Support Rails w/Compass
217
+ * [#134] Fix support for Rails w/Compass
218
+
219
+ ## 2.0.2
220
+ * [#86] Updated to Bootstrap 2.0.2
221
+ Things of note: static navbars now have full width. (to be fixed in 2.0.3) `.navbar-inner > .container { width:940px; }` seems to work in the meanwhile
222
+ * [#62] Fixed asset compilation taking a *very* long time.
223
+ * [#69, #79, #80] \(Hopefully) clarified README. Now with less cat humour.
224
+ * [#91] Removed doubled up Sass extensions for Rails.
225
+ * [#63, #73] Allow for overriding of image-path
226
+ * [[SO](http://stackoverflow.com/a/9909626/241212)] Added makeFluidColumn mixin for defining fluid columns. Fluid rows must use `@extend .row-fluid`, and any column inside it can use `@include makeFluidColumn(num)`, where `num` is the number of columns. Unfortunately, there is a rather major limitation to this: margins on first-child elements must be overriden. See the attached Stack Overflow answer for more information.
227
+
228
+ ## 2.0.1
229
+ * Updated to Bootstrap 2.0.1
230
+ * Modified `@mixin opacity()` to take an argument `0...1` rather than `0...100` to be consistent with Compass.
231
+
232
+ ## 2.0.0
233
+ * Updated to Bootstrap 2.0.0
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,86 @@
1
+ # Contributing to bootstrap-sass
2
+
3
+ ## Asset Changes
4
+
5
+ Any changes to `bootstrap-sass` assets (scss, javascripts, fonts) should be checked against the `convert` rake task.
6
+ For usage instructions, see the [README](/README.md).
7
+
8
+ If something is broken in the converter, it's preferable to update the converter along with the asset itself.
9
+
10
+
11
+ ## Bugs
12
+
13
+ A bug is a _demonstrable problem_ that is caused by the code in the
14
+ repository. Good bug reports are extremely helpful - thank you!
15
+
16
+ Guidelines for bug reports:
17
+
18
+ 1. **Does it belong here?** &mdash; is this a problem with bootstrap-sass, or
19
+ it an issue with [entreprise7pro/bootstrap](https://github.com/entreprise7pro/bootstrap)?
20
+ We only distribute a direct port and will not modify files if they're not
21
+ changed upstream.
22
+
23
+ 2. **Use the GitHub issue search** &mdash; check if the issue has already been
24
+ reported.
25
+
26
+ 3. **Isolate the problem** &mdash; ideally create a [reduced test
27
+ case](http://css-tricks.com/6263-reduced-test-cases/) and a live example.
28
+
29
+ A good bug report shouldn't leave others needing to chase you up for more
30
+ information. Please try to be as detailed as possible in your report. What is
31
+ your environment? What steps will reproduce the issue? What browser(s) and OS
32
+ experience the problem? What would you expect to be the outcome? All these
33
+ details will help people to fix any potential bugs.
34
+
35
+ Example:
36
+
37
+ > Short and descriptive example bug report title
38
+ >
39
+ > A summary of the issue and the browser/OS environment in which it occurs. If
40
+ > suitable, include the steps required to reproduce the bug.
41
+ >
42
+ > 1. This is the first step
43
+ > 2. This is the second step
44
+ > 3. Further steps, etc.
45
+ >
46
+ > `<url>` (a link to the reduced test case)
47
+ >
48
+ > Any other information you want to share that is relevant to the issue being
49
+ > reported. This might include the lines of code that you have identified as
50
+ > causing the bug, and potential solutions (and your opinions on their
51
+ > merits).
52
+
53
+ **[File a bug report](https://github.com/entreprise7pro/bootstrap-sass/issues/)**
54
+
55
+
56
+ ## Pull requests
57
+
58
+ **We will not accept pull requests that modify the SCSS beyond fixing bugs caused by *our* code!**
59
+
60
+ We use a [converter script][converter-readme] to automatically convert upstream bootstrap, written in LESS, to Sass.
61
+
62
+ Issues related to styles or javascript but unrelated to the conversion process should go to [entreprise7pro/bootstrap][upstream].
63
+
64
+ Pull requests that fix bugs caused by our code should not modify the SCSS directly, but should patch the converter instead.
65
+
66
+ Good pull requests - patches, improvements, new features - are a fantastic
67
+ help. They should remain focused in scope and avoid containing unrelated
68
+ commits. If your contribution involves a significant amount of work or substantial
69
+ changes to any part of the project, please open an issue to discuss it first.
70
+
71
+ Make sure to adhere to the coding conventions used throughout a project
72
+ (indentation, accurate comments, etc.). Please update any documentation that is
73
+ relevant to the change you're making.
74
+
75
+ ## Do not…
76
+
77
+ Please **do not** use the issue tracker for personal support requests (use
78
+ [Stack Overflow](http://stackoverflow.com/)).
79
+
80
+ Please **do not** derail or troll issues. Keep the
81
+ discussion on topic and respect the opinions of others.
82
+
83
+ *props [html5-boilerplate](https://github.com/h5bp/html5-boilerplate/blob/master/CONTRIBUTING.md)*
84
+
85
+ [upstream]: https://github.com/entreprise7pro/bootstrap
86
+ [converter-readme]: https://github.com/entreprise7pro/bootstrap-sass/blob/master/README.md#upstream-converter
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem 'byebug', platform: :mri, require: false
7
+ end
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2011-2016 Twitter, Inc
4
+ Copyright (c) 2011-2016 The Bootstrap Authors
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.