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
@@ -0,0 +1,299 @@
1
+ @use "sass:math";
2
+ //
3
+ // Typography
4
+ // --------------------------------------------------
5
+
6
+
7
+ // Headings
8
+ // -------------------------
9
+
10
+ h1, h2, h3, h4, h5, h6,
11
+ .h1, .h2, .h3, .h4, .h5, .h6 {
12
+ font-family: $headings-font-family;
13
+ font-weight: $headings-font-weight;
14
+ line-height: $headings-line-height;
15
+ color: $headings-color;
16
+
17
+ small,
18
+ .small {
19
+ font-weight: 400;
20
+ line-height: 1;
21
+ color: $headings-small-color;
22
+ }
23
+ }
24
+
25
+ h1, .h1,
26
+ h2, .h2,
27
+ h3, .h3 {
28
+ margin-top: $line-height-computed;
29
+ margin-bottom: math.div($line-height-computed, 2);
30
+
31
+ small,
32
+ .small {
33
+ font-size: 65%;
34
+ }
35
+ }
36
+ h4, .h4,
37
+ h5, .h5,
38
+ h6, .h6 {
39
+ margin-top: math.div($line-height-computed, 2);
40
+ margin-bottom: math.div($line-height-computed, 2);
41
+
42
+ small,
43
+ .small {
44
+ font-size: 75%;
45
+ }
46
+ }
47
+
48
+ h1, .h1 { font-size: $font-size-h1; }
49
+ h2, .h2 { font-size: $font-size-h2; }
50
+ h3, .h3 { font-size: $font-size-h3; }
51
+ h4, .h4 { font-size: $font-size-h4; }
52
+ h5, .h5 { font-size: $font-size-h5; }
53
+ h6, .h6 { font-size: $font-size-h6; }
54
+
55
+
56
+ // Body text
57
+ // -------------------------
58
+
59
+ p {
60
+ margin: 0 0 math.div($line-height-computed, 2);
61
+ }
62
+
63
+ .lead {
64
+ margin-bottom: $line-height-computed;
65
+ font-size: floor(($font-size-base * 1.15));
66
+ font-weight: 300;
67
+ line-height: 1.4;
68
+
69
+ @media (min-width: $screen-sm-min) {
70
+ font-size: ($font-size-base * 1.5);
71
+ }
72
+ }
73
+
74
+
75
+ // Emphasis & misc
76
+ // -------------------------
77
+
78
+ // Ex: math.div(12px small font, 14px base font) * 100% = about 85%
79
+ small,
80
+ .small {
81
+ font-size: floor(math.div(100% * $font-size-small, $font-size-base));
82
+ }
83
+
84
+ mark,
85
+ .mark {
86
+ padding: .2em;
87
+ background-color: $state-warning-bg;
88
+ }
89
+
90
+ // Alignment
91
+ .text-left { text-align: left; }
92
+ .text-right { text-align: right; }
93
+ .text-center { text-align: center; }
94
+ .text-justify { text-align: justify; }
95
+ .text-nowrap { white-space: nowrap; }
96
+
97
+ // Transformation
98
+ .text-lowercase { text-transform: lowercase; }
99
+ .text-uppercase { text-transform: uppercase; }
100
+ .text-capitalize { text-transform: capitalize; }
101
+
102
+ // Contextual colors
103
+ .text-muted {
104
+ color: $text-muted;
105
+ }
106
+
107
+ @include text-emphasis-variant('.text-primary', $brand-primary);
108
+
109
+ @include text-emphasis-variant('.text-success', $state-success-text);
110
+
111
+ @include text-emphasis-variant('.text-info', $state-info-text);
112
+
113
+ @include text-emphasis-variant('.text-warning', $state-warning-text);
114
+
115
+ @include text-emphasis-variant('.text-danger', $state-danger-text);
116
+
117
+ // Contextual backgrounds
118
+ // For now we'll leave these alongside the text classes until v4 when we can
119
+ // safely shift things around (per SemVer rules).
120
+ .bg-primary {
121
+ // Given the contrast here, this is the only class to have its color inverted
122
+ // automatically.
123
+ color: #fff;
124
+ }
125
+ @include bg-variant('.bg-primary', $brand-primary);
126
+
127
+ @include bg-variant('.bg-success', $state-success-bg);
128
+
129
+ @include bg-variant('.bg-info', $state-info-bg);
130
+
131
+ @include bg-variant('.bg-warning', $state-warning-bg);
132
+
133
+ @include bg-variant('.bg-danger', $state-danger-bg);
134
+
135
+
136
+ // Page header
137
+ // -------------------------
138
+
139
+ .page-header {
140
+ padding-bottom: (math.div($line-height-computed, 2) - 1);
141
+ margin: ($line-height-computed * 2) 0 $line-height-computed;
142
+ border-bottom: 1px solid $page-header-border-color;
143
+ }
144
+
145
+
146
+ // Lists
147
+ // -------------------------
148
+
149
+ // Unordered and Ordered lists
150
+ ul,
151
+ ol {
152
+ margin-top: 0;
153
+ margin-bottom: math.div($line-height-computed, 2);
154
+ ul,
155
+ ol {
156
+ margin-bottom: 0;
157
+ }
158
+ }
159
+
160
+ // List options
161
+
162
+ // [converter] extracted from `.list-unstyled` for libsass compatibility
163
+ @mixin list-unstyled {
164
+ padding-left: 0;
165
+ list-style: none;
166
+ }
167
+ // [converter] extracted as `@mixin list-unstyled` for libsass compatibility
168
+ .list-unstyled {
169
+ @include list-unstyled;
170
+ }
171
+
172
+
173
+ // Inline turns list items into inline-block
174
+ .list-inline {
175
+ @include list-unstyled;
176
+ margin-left: -5px;
177
+
178
+ > li {
179
+ display: inline-block;
180
+ padding-right: 5px;
181
+ padding-left: 5px;
182
+ }
183
+ }
184
+
185
+ // Description Lists
186
+ dl {
187
+ margin-top: 0; // Remove browser default
188
+ margin-bottom: $line-height-computed;
189
+ }
190
+ dt,
191
+ dd {
192
+ line-height: $line-height-base;
193
+ }
194
+ dt {
195
+ font-weight: 700;
196
+ }
197
+ dd {
198
+ margin-left: 0; // Undo browser default
199
+ }
200
+
201
+ // Horizontal description lists
202
+ //
203
+ // Defaults to being stacked without any of the below styles applied, until the
204
+ // grid breakpoint is reached (default of ~768px).
205
+
206
+ .dl-horizontal {
207
+ dd {
208
+ @include clearfix; // Clear the floated `dt` if an empty `dd` is present
209
+ }
210
+
211
+ @media (min-width: $dl-horizontal-breakpoint) {
212
+ dt {
213
+ float: left;
214
+ width: ($dl-horizontal-offset - 20);
215
+ clear: left;
216
+ text-align: right;
217
+ @include text-overflow;
218
+ }
219
+ dd {
220
+ margin-left: $dl-horizontal-offset;
221
+ }
222
+ }
223
+ }
224
+
225
+
226
+ // Misc
227
+ // -------------------------
228
+
229
+ // Abbreviations and acronyms
230
+ // Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
231
+ abbr[title],
232
+ abbr[data-original-title] {
233
+ cursor: help;
234
+ }
235
+
236
+ .initialism {
237
+ font-size: 90%;
238
+ @extend .text-uppercase;
239
+ }
240
+
241
+ // Blockquotes
242
+ blockquote {
243
+ padding: math.div($line-height-computed, 2) $line-height-computed;
244
+ margin: 0 0 $line-height-computed;
245
+ font-size: $blockquote-font-size;
246
+ border-left: 5px solid $blockquote-border-color;
247
+
248
+ p,
249
+ ul,
250
+ ol {
251
+ &:last-child {
252
+ margin-bottom: 0;
253
+ }
254
+ }
255
+
256
+ // Note: Deprecated small and .small as of v3.1.0
257
+ // Context: https://github.com/twbs/bootstrap/issues/11660
258
+ footer,
259
+ small,
260
+ .small {
261
+ display: block;
262
+ font-size: 80%; // back to default font-size
263
+ line-height: $line-height-base;
264
+ color: $blockquote-small-color;
265
+
266
+ &:before {
267
+ content: "\2014 \00A0"; // em dash, nbsp
268
+ }
269
+ }
270
+ }
271
+
272
+ // Opposite alignment of blockquote
273
+ //
274
+ // Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.
275
+ .blockquote-reverse,
276
+ blockquote.pull-right {
277
+ padding-right: 15px;
278
+ padding-left: 0;
279
+ text-align: right;
280
+ border-right: 5px solid $blockquote-border-color;
281
+ border-left: 0;
282
+
283
+ // Account for citation
284
+ footer,
285
+ small,
286
+ .small {
287
+ &:before { content: ""; }
288
+ &:after {
289
+ content: "\00A0 \2014"; // nbsp, em dash
290
+ }
291
+ }
292
+ }
293
+
294
+ // Addresses
295
+ address {
296
+ margin-bottom: $line-height-computed;
297
+ font-style: normal;
298
+ line-height: $line-height-base;
299
+ }
@@ -0,0 +1,55 @@
1
+ //
2
+ // Utility classes
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Floats
7
+ // -------------------------
8
+
9
+ .clearfix {
10
+ @include clearfix;
11
+ }
12
+ .center-block {
13
+ @include center-block;
14
+ }
15
+ .pull-right {
16
+ float: right !important;
17
+ }
18
+ .pull-left {
19
+ float: left !important;
20
+ }
21
+
22
+
23
+ // Toggling content
24
+ // -------------------------
25
+
26
+ // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
27
+ .hide {
28
+ display: none !important;
29
+ }
30
+ .show {
31
+ display: block !important;
32
+ }
33
+ .invisible {
34
+ visibility: hidden;
35
+ }
36
+ .text-hide {
37
+ @include text-hide;
38
+ }
39
+
40
+
41
+ // Hide from screenreaders and browsers
42
+ //
43
+ // Credit: HTML5 Boilerplate
44
+
45
+ .hidden {
46
+ display: none !important;
47
+ }
48
+
49
+
50
+ // For Affix plugin
51
+ // -------------------------
52
+
53
+ .affix {
54
+ position: fixed;
55
+ }