nex-bootstrap 4.6.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. checksums.yaml +7 -0
  2. data/.gitattributes +14 -0
  3. data/.gitignore +19 -0
  4. data/.travis.yml +31 -0
  5. data/CHANGELOG.md +25 -0
  6. data/Gemfile +11 -0
  7. data/LICENSE +21 -0
  8. data/README.md +109 -0
  9. data/Rakefile +63 -0
  10. data/assets/javascripts/bootstrap/alert.js +183 -0
  11. data/assets/javascripts/bootstrap/button.js +225 -0
  12. data/assets/javascripts/bootstrap/carousel.js +640 -0
  13. data/assets/javascripts/bootstrap/collapse.js +394 -0
  14. data/assets/javascripts/bootstrap/dropdown.js +557 -0
  15. data/assets/javascripts/bootstrap/modal.js +660 -0
  16. data/assets/javascripts/bootstrap/popover.js +243 -0
  17. data/assets/javascripts/bootstrap/scrollspy.js +337 -0
  18. data/assets/javascripts/bootstrap/tab.js +259 -0
  19. data/assets/javascripts/bootstrap/toast.js +265 -0
  20. data/assets/javascripts/bootstrap/tooltip.js +886 -0
  21. data/assets/javascripts/bootstrap/util.js +189 -0
  22. data/assets/javascripts/bootstrap-sprockets.js +12 -0
  23. data/assets/javascripts/bootstrap.js +4356 -0
  24. data/assets/javascripts/bootstrap.min.js +6 -0
  25. data/assets/stylesheets/_bootstrap-grid.scss +30 -0
  26. data/assets/stylesheets/_bootstrap-reboot.scss +12 -0
  27. data/assets/stylesheets/_bootstrap.scss +44 -0
  28. data/assets/stylesheets/bootstrap/_alert.scss +52 -0
  29. data/assets/stylesheets/bootstrap/_badge.scss +54 -0
  30. data/assets/stylesheets/bootstrap/_breadcrumb.scss +42 -0
  31. data/assets/stylesheets/bootstrap/_button-group.scss +163 -0
  32. data/assets/stylesheets/bootstrap/_buttons.scss +142 -0
  33. data/assets/stylesheets/bootstrap/_card.scss +286 -0
  34. data/assets/stylesheets/bootstrap/_carousel.scss +200 -0
  35. data/assets/stylesheets/bootstrap/_close.scss +40 -0
  36. data/assets/stylesheets/bootstrap/_code.scss +48 -0
  37. data/assets/stylesheets/bootstrap/_custom-forms.scss +526 -0
  38. data/assets/stylesheets/bootstrap/_dropdown.scss +192 -0
  39. data/assets/stylesheets/bootstrap/_forms.scss +347 -0
  40. data/assets/stylesheets/bootstrap/_functions.scss +190 -0
  41. data/assets/stylesheets/bootstrap/_grid.scss +73 -0
  42. data/assets/stylesheets/bootstrap/_images.scss +42 -0
  43. data/assets/stylesheets/bootstrap/_input-group.scss +211 -0
  44. data/assets/stylesheets/bootstrap/_jumbotron.scss +17 -0
  45. data/assets/stylesheets/bootstrap/_list-group.scss +154 -0
  46. data/assets/stylesheets/bootstrap/_media.scss +8 -0
  47. data/assets/stylesheets/bootstrap/_mixins.scss +47 -0
  48. data/assets/stylesheets/bootstrap/_modal.scss +240 -0
  49. data/assets/stylesheets/bootstrap/_nav.scss +125 -0
  50. data/assets/stylesheets/bootstrap/_navbar.scss +332 -0
  51. data/assets/stylesheets/bootstrap/_pagination.scss +74 -0
  52. data/assets/stylesheets/bootstrap/_popover.scss +170 -0
  53. data/assets/stylesheets/bootstrap/_print.scss +132 -0
  54. data/assets/stylesheets/bootstrap/_progress.scss +47 -0
  55. data/assets/stylesheets/bootstrap/_reboot.scss +484 -0
  56. data/assets/stylesheets/bootstrap/_root.scss +19 -0
  57. data/assets/stylesheets/bootstrap/_spinners.scss +65 -0
  58. data/assets/stylesheets/bootstrap/_tables.scss +185 -0
  59. data/assets/stylesheets/bootstrap/_toasts.scss +46 -0
  60. data/assets/stylesheets/bootstrap/_tooltip.scss +115 -0
  61. data/assets/stylesheets/bootstrap/_transitions.scss +26 -0
  62. data/assets/stylesheets/bootstrap/_type.scss +125 -0
  63. data/assets/stylesheets/bootstrap/_utilities.scss +18 -0
  64. data/assets/stylesheets/bootstrap/_variables.scss +1149 -0
  65. data/assets/stylesheets/bootstrap/mixins/_alert.scss +13 -0
  66. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +23 -0
  67. data/assets/stylesheets/bootstrap/mixins/_badge.scss +17 -0
  68. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +76 -0
  69. data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +20 -0
  70. data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +123 -0
  71. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +110 -0
  72. data/assets/stylesheets/bootstrap/mixins/_caret.scss +62 -0
  73. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +7 -0
  74. data/assets/stylesheets/bootstrap/mixins/_deprecate.scss +10 -0
  75. data/assets/stylesheets/bootstrap/mixins/_float.scss +14 -0
  76. data/assets/stylesheets/bootstrap/mixins/_forms.scss +195 -0
  77. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +45 -0
  78. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +80 -0
  79. data/assets/stylesheets/bootstrap/mixins/_grid.scss +69 -0
  80. data/assets/stylesheets/bootstrap/mixins/_hover.scss +37 -0
  81. data/assets/stylesheets/bootstrap/mixins/_image.scss +36 -0
  82. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +21 -0
  83. data/assets/stylesheets/bootstrap/mixins/_lists.scss +7 -0
  84. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +11 -0
  85. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +22 -0
  86. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +17 -0
  87. data/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  88. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +34 -0
  89. data/assets/stylesheets/bootstrap/mixins/_size.scss +7 -0
  90. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +39 -0
  91. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +17 -0
  92. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +11 -0
  93. data/assets/stylesheets/bootstrap/mixins/_text-truncate.scss +8 -0
  94. data/assets/stylesheets/bootstrap/mixins/_transition.scss +26 -0
  95. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +8 -0
  96. data/assets/stylesheets/bootstrap/utilities/_align.scss +8 -0
  97. data/assets/stylesheets/bootstrap/utilities/_background.scss +19 -0
  98. data/assets/stylesheets/bootstrap/utilities/_borders.scss +75 -0
  99. data/assets/stylesheets/bootstrap/utilities/_clearfix.scss +3 -0
  100. data/assets/stylesheets/bootstrap/utilities/_display.scss +26 -0
  101. data/assets/stylesheets/bootstrap/utilities/_embed.scss +39 -0
  102. data/assets/stylesheets/bootstrap/utilities/_flex.scss +51 -0
  103. data/assets/stylesheets/bootstrap/utilities/_float.scss +11 -0
  104. data/assets/stylesheets/bootstrap/utilities/_interactions.scss +5 -0
  105. data/assets/stylesheets/bootstrap/utilities/_overflow.scss +5 -0
  106. data/assets/stylesheets/bootstrap/utilities/_position.scss +32 -0
  107. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +11 -0
  108. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +6 -0
  109. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +20 -0
  110. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +73 -0
  111. data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +19 -0
  112. data/assets/stylesheets/bootstrap/utilities/_text.scss +72 -0
  113. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +13 -0
  114. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +228 -0
  115. data/bootstrap.gemspec +38 -0
  116. data/lib/bootstrap/engine.rb +15 -0
  117. data/lib/bootstrap/version.rb +6 -0
  118. data/lib/bootstrap.rb +75 -0
  119. data/tasks/updater/js.rb +68 -0
  120. data/tasks/updater/logger.rb +57 -0
  121. data/tasks/updater/network.rb +103 -0
  122. data/tasks/updater/scss.rb +26 -0
  123. data/tasks/updater.rb +67 -0
  124. data/test/dummy_rails/README.rdoc +3 -0
  125. data/test/dummy_rails/Rakefile +6 -0
  126. data/test/dummy_rails/app/assets/config/manifest.js +3 -0
  127. data/test/dummy_rails/app/assets/images/.keep +0 -0
  128. data/test/dummy_rails/app/assets/javascripts/application.js +7 -0
  129. data/test/dummy_rails/app/assets/stylesheets/.browserslistrc +1 -0
  130. data/test/dummy_rails/app/assets/stylesheets/application.sass +4 -0
  131. data/test/dummy_rails/app/controllers/application_controller.rb +5 -0
  132. data/test/dummy_rails/app/controllers/pages_controller.rb +4 -0
  133. data/test/dummy_rails/app/helpers/application_helper.rb +2 -0
  134. data/test/dummy_rails/app/views/layouts/application.html.erb +14 -0
  135. data/test/dummy_rails/app/views/pages/root.html.slim +58 -0
  136. data/test/dummy_rails/config/application.rb +35 -0
  137. data/test/dummy_rails/config/boot.rb +5 -0
  138. data/test/dummy_rails/config/environment.rb +5 -0
  139. data/test/dummy_rails/config/environments/development.rb +23 -0
  140. data/test/dummy_rails/config/environments/production.rb +82 -0
  141. data/test/dummy_rails/config/environments/test.rb +38 -0
  142. data/test/dummy_rails/config/initializers/backtrace_silencers.rb +7 -0
  143. data/test/dummy_rails/config/initializers/filter_parameter_logging.rb +4 -0
  144. data/test/dummy_rails/config/initializers/inflections.rb +16 -0
  145. data/test/dummy_rails/config/initializers/mime_types.rb +5 -0
  146. data/test/dummy_rails/config/initializers/secret_token.rb +18 -0
  147. data/test/dummy_rails/config/initializers/session_store.rb +3 -0
  148. data/test/dummy_rails/config/initializers/wrap_parameters.rb +14 -0
  149. data/test/dummy_rails/config/locales/en.yml +3 -0
  150. data/test/dummy_rails/config/locales/es.yml +3 -0
  151. data/test/dummy_rails/config/routes.rb +3 -0
  152. data/test/dummy_rails/config.ru +4 -0
  153. data/test/dummy_rails/log/.keep +0 -0
  154. data/test/gemfiles/rails_4_2.gemfile +7 -0
  155. data/test/gemfiles/rails_5_0.gemfile +8 -0
  156. data/test/gemfiles/rails_5_1.gemfile +8 -0
  157. data/test/gemfiles/rails_6_0.gemfile +7 -0
  158. data/test/rails_test.rb +24 -0
  159. data/test/support/dummy_rails_integration.rb +31 -0
  160. data/test/support/reporting.rb +27 -0
  161. data/test/test_helper.rb +41 -0
  162. data/test/test_helper_rails.rb +6 -0
  163. metadata +445 -0
@@ -0,0 +1,347 @@
1
+ // stylelint-disable selector-no-qualifying-type
2
+
3
+ //
4
+ // Textual form controls
5
+ //
6
+
7
+ .form-control {
8
+ display: block;
9
+ width: 100%;
10
+ height: $input-height;
11
+ padding: $input-padding-y $input-padding-x;
12
+ font-family: $input-font-family;
13
+ @include font-size($input-font-size);
14
+ font-weight: $input-font-weight;
15
+ line-height: $input-line-height;
16
+ color: $input-color;
17
+ background-color: $input-bg;
18
+ background-clip: padding-box;
19
+ border: $input-border-width solid $input-border-color;
20
+
21
+ // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
22
+ @include border-radius($input-border-radius, 0);
23
+
24
+ @include box-shadow($input-box-shadow);
25
+ @include transition($input-transition);
26
+
27
+ // Unstyle the caret on `<select>`s in IE10+.
28
+ &::-ms-expand {
29
+ background-color: transparent;
30
+ border: 0;
31
+ }
32
+
33
+ // Customize the `:focus` state to imitate native WebKit styles.
34
+ @include form-control-focus($ignore-warning: true);
35
+
36
+ // Placeholder
37
+ &::placeholder {
38
+ color: $input-placeholder-color;
39
+ // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
40
+ opacity: 1;
41
+ }
42
+
43
+ // Disabled and read-only inputs
44
+ //
45
+ // HTML5 says that controls under a fieldset > legend:first-child won't be
46
+ // disabled if the fieldset is disabled. Due to implementation difficulty, we
47
+ // don't honor that edge case; we style them as disabled anyway.
48
+ &:disabled,
49
+ &[readonly] {
50
+ background-color: $input-disabled-bg;
51
+ // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
52
+ opacity: 1;
53
+ }
54
+ }
55
+
56
+ input[type="date"],
57
+ input[type="time"],
58
+ input[type="datetime-local"],
59
+ input[type="month"] {
60
+ &.form-control {
61
+ appearance: none; // Fix appearance for date inputs in Safari
62
+ }
63
+ }
64
+
65
+ select.form-control {
66
+ // Remove select outline from select box in FF
67
+ &:-moz-focusring {
68
+ color: transparent;
69
+ text-shadow: 0 0 0 $input-color;
70
+ }
71
+
72
+ &:focus::-ms-value {
73
+ // Suppress the nested default white text on blue background highlight given to
74
+ // the selected option text when the (still closed) <select> receives focus
75
+ // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to
76
+ // match the appearance of the native widget.
77
+ // See https://github.com/twbs/bootstrap/issues/19398.
78
+ color: $input-color;
79
+ background-color: $input-bg;
80
+ }
81
+ }
82
+
83
+ // Make file inputs better match text inputs by forcing them to new lines.
84
+ .form-control-file,
85
+ .form-control-range {
86
+ display: block;
87
+ width: 100%;
88
+ }
89
+
90
+
91
+ //
92
+ // Labels
93
+ //
94
+
95
+ // For use with horizontal and inline forms, when you need the label (or legend)
96
+ // text to align with the form controls.
97
+ .col-form-label {
98
+ padding-top: add($input-padding-y, $input-border-width);
99
+ padding-bottom: add($input-padding-y, $input-border-width);
100
+ margin-bottom: 0; // Override the `<label>/<legend>` default
101
+ @include font-size(inherit); // Override the `<legend>` default
102
+ line-height: $input-line-height;
103
+ }
104
+
105
+ .col-form-label-lg {
106
+ padding-top: add($input-padding-y-lg, $input-border-width);
107
+ padding-bottom: add($input-padding-y-lg, $input-border-width);
108
+ @include font-size($input-font-size-lg);
109
+ line-height: $input-line-height-lg;
110
+ }
111
+
112
+ .col-form-label-sm {
113
+ padding-top: add($input-padding-y-sm, $input-border-width);
114
+ padding-bottom: add($input-padding-y-sm, $input-border-width);
115
+ @include font-size($input-font-size-sm);
116
+ line-height: $input-line-height-sm;
117
+ }
118
+
119
+
120
+ // Readonly controls as plain text
121
+ //
122
+ // Apply class to a readonly input to make it appear like regular plain
123
+ // text (without any border, background color, focus indicator)
124
+
125
+ .form-control-plaintext {
126
+ display: block;
127
+ width: 100%;
128
+ padding: $input-padding-y 0;
129
+ margin-bottom: 0; // match inputs if this class comes on inputs with default margins
130
+ @include font-size($input-font-size);
131
+ line-height: $input-line-height;
132
+ color: $input-plaintext-color;
133
+ background-color: transparent;
134
+ border: solid transparent;
135
+ border-width: $input-border-width 0;
136
+
137
+ &.form-control-sm,
138
+ &.form-control-lg {
139
+ padding-right: 0;
140
+ padding-left: 0;
141
+ }
142
+ }
143
+
144
+
145
+ // Form control sizing
146
+ //
147
+ // Build on `.form-control` with modifier classes to decrease or increase the
148
+ // height and font-size of form controls.
149
+ //
150
+ // Repeated in `_input_group.scss` to avoid Sass extend issues.
151
+
152
+ .form-control-sm {
153
+ height: $input-height-sm;
154
+ padding: $input-padding-y-sm $input-padding-x-sm;
155
+ @include font-size($input-font-size-sm);
156
+ line-height: $input-line-height-sm;
157
+ @include border-radius($input-border-radius-sm);
158
+ }
159
+
160
+ .form-control-lg {
161
+ height: $input-height-lg;
162
+ padding: $input-padding-y-lg $input-padding-x-lg;
163
+ @include font-size($input-font-size-lg);
164
+ line-height: $input-line-height-lg;
165
+ @include border-radius($input-border-radius-lg);
166
+ }
167
+
168
+ // stylelint-disable-next-line no-duplicate-selectors
169
+ select.form-control {
170
+ &[size],
171
+ &[multiple] {
172
+ height: auto;
173
+ }
174
+ }
175
+
176
+ textarea.form-control {
177
+ height: auto;
178
+ }
179
+
180
+ // Form groups
181
+ //
182
+ // Designed to help with the organization and spacing of vertical forms. For
183
+ // horizontal forms, use the predefined grid classes.
184
+
185
+ .form-group {
186
+ margin-bottom: $form-group-margin-bottom;
187
+ }
188
+
189
+ .form-text {
190
+ display: block;
191
+ margin-top: $form-text-margin-top;
192
+ }
193
+
194
+
195
+ // Form grid
196
+ //
197
+ // Special replacement for our grid system's `.row` for tighter form layouts.
198
+
199
+ .form-row {
200
+ display: flex;
201
+ flex-wrap: wrap;
202
+ margin-right: -$form-grid-gutter-width * .5;
203
+ margin-left: -$form-grid-gutter-width * .5;
204
+
205
+ > .col,
206
+ > [class*="col-"] {
207
+ padding-right: $form-grid-gutter-width * .5;
208
+ padding-left: $form-grid-gutter-width * .5;
209
+ }
210
+ }
211
+
212
+
213
+ // Checkboxes and radios
214
+ //
215
+ // Indent the labels to position radios/checkboxes as hanging controls.
216
+
217
+ .form-check {
218
+ position: relative;
219
+ display: block;
220
+ padding-left: $form-check-input-gutter;
221
+ }
222
+
223
+ .form-check-input {
224
+ position: absolute;
225
+ margin-top: $form-check-input-margin-y;
226
+ margin-left: -$form-check-input-gutter;
227
+
228
+ // Use [disabled] and :disabled for workaround https://github.com/twbs/bootstrap/issues/28247
229
+ &[disabled] ~ .form-check-label,
230
+ &:disabled ~ .form-check-label {
231
+ color: $text-muted;
232
+ }
233
+ }
234
+
235
+ .form-check-label {
236
+ margin-bottom: 0; // Override default `<label>` bottom margin
237
+ }
238
+
239
+ .form-check-inline {
240
+ display: inline-flex;
241
+ align-items: center;
242
+ padding-left: 0; // Override base .form-check
243
+ margin-right: $form-check-inline-margin-x;
244
+
245
+ // Undo .form-check-input defaults and add some `margin-right`.
246
+ .form-check-input {
247
+ position: static;
248
+ margin-top: 0;
249
+ margin-right: $form-check-inline-input-margin-x;
250
+ margin-left: 0;
251
+ }
252
+ }
253
+
254
+
255
+ // Form validation
256
+ //
257
+ // Provide feedback to users when form field values are valid or invalid. Works
258
+ // primarily for client-side validation via scoped `:invalid` and `:valid`
259
+ // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for
260
+ // server side validation.
261
+
262
+ @each $state, $data in $form-validation-states {
263
+ @include form-validation-state($state, map-get($data, color), map-get($data, icon));
264
+ }
265
+
266
+ // Inline forms
267
+ //
268
+ // Make forms appear inline(-block) by adding the `.form-inline` class. Inline
269
+ // forms begin stacked on extra small (mobile) devices and then go inline when
270
+ // viewports reach <768px.
271
+ //
272
+ // Requires wrapping inputs and labels with `.form-group` for proper display of
273
+ // default HTML form controls and our custom form controls (e.g., input groups).
274
+
275
+ .form-inline {
276
+ display: flex;
277
+ flex-flow: row wrap;
278
+ align-items: center; // Prevent shorter elements from growing to same height as others (e.g., small buttons growing to normal sized button height)
279
+
280
+ // Because we use flex, the initial sizing of checkboxes is collapsed and
281
+ // doesn't occupy the full-width (which is what we want for xs grid tier),
282
+ // so we force that here.
283
+ .form-check {
284
+ width: 100%;
285
+ }
286
+
287
+ // Kick in the inline
288
+ @include media-breakpoint-up(sm) {
289
+ label {
290
+ display: flex;
291
+ align-items: center;
292
+ justify-content: center;
293
+ margin-bottom: 0;
294
+ }
295
+
296
+ // Inline-block all the things for "inline"
297
+ .form-group {
298
+ display: flex;
299
+ flex: 0 0 auto;
300
+ flex-flow: row wrap;
301
+ align-items: center;
302
+ margin-bottom: 0;
303
+ }
304
+
305
+ // Allow folks to *not* use `.form-group`
306
+ .form-control {
307
+ display: inline-block;
308
+ width: auto; // Prevent labels from stacking above inputs in `.form-group`
309
+ vertical-align: middle;
310
+ }
311
+
312
+ // Make static controls behave like regular ones
313
+ .form-control-plaintext {
314
+ display: inline-block;
315
+ }
316
+
317
+ .input-group,
318
+ .custom-select {
319
+ width: auto;
320
+ }
321
+
322
+ // Remove default margin on radios/checkboxes that were used for stacking, and
323
+ // then undo the floating of radios and checkboxes to match.
324
+ .form-check {
325
+ display: flex;
326
+ align-items: center;
327
+ justify-content: center;
328
+ width: auto;
329
+ padding-left: 0;
330
+ }
331
+ .form-check-input {
332
+ position: relative;
333
+ flex-shrink: 0;
334
+ margin-top: 0;
335
+ margin-right: $form-check-input-margin-x;
336
+ margin-left: 0;
337
+ }
338
+
339
+ .custom-control {
340
+ align-items: center;
341
+ justify-content: center;
342
+ }
343
+ .custom-control-label {
344
+ margin-bottom: 0;
345
+ }
346
+ }
347
+ }
@@ -0,0 +1,190 @@
1
+ // Bootstrap functions
2
+ //
3
+ // Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
4
+
5
+ // Ascending
6
+ // Used to evaluate Sass maps like our grid breakpoints.
7
+ @mixin _assert-ascending($map, $map-name) {
8
+ $prev-key: null;
9
+ $prev-num: null;
10
+ @each $key, $num in $map {
11
+ @if $prev-num == null or unit($num) == "%" or unit($prev-num) == "%" {
12
+ // Do nothing
13
+ } @else if not comparable($prev-num, $num) {
14
+ @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
15
+ } @else if $prev-num >= $num {
16
+ @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !";
17
+ }
18
+ $prev-key: $key;
19
+ $prev-num: $num;
20
+ }
21
+ }
22
+
23
+ // Starts at zero
24
+ // Used to ensure the min-width of the lowest breakpoint starts at 0.
25
+ @mixin _assert-starts-at-zero($map, $map-name: "$grid-breakpoints") {
26
+ @if length($map) > 0 {
27
+ $values: map-values($map);
28
+ $first-value: nth($values, 1);
29
+ @if $first-value != 0 {
30
+ @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
31
+ }
32
+ }
33
+ }
34
+
35
+ // Replace `$search` with `$replace` in `$string`
36
+ // Used on our SVG icon backgrounds for custom forms.
37
+ //
38
+ // @author Hugo Giraudel
39
+ // @param {String} $string - Initial string
40
+ // @param {String} $search - Substring to replace
41
+ // @param {String} $replace ('') - New value
42
+ // @return {String} - Updated string
43
+ @function str-replace($string, $search, $replace: "") {
44
+ $index: str-index($string, $search);
45
+
46
+ @if $index {
47
+ @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
48
+ }
49
+
50
+ @return $string;
51
+ }
52
+
53
+ // See https://codepen.io/kevinweber/pen/dXWoRw
54
+ //
55
+ // Requires the use of quotes around data URIs.
56
+
57
+ @function escape-svg($string) {
58
+ @if str-index($string, "data:image/svg+xml") {
59
+ @each $char, $encoded in $escaped-characters {
60
+ // Do not escape the url brackets
61
+ @if str-index($string, "url(") == 1 {
62
+ $string: url("#{str-replace(str-slice($string, 6, -3), $char, $encoded)}");
63
+ } @else {
64
+ $string: str-replace($string, $char, $encoded);
65
+ }
66
+ }
67
+ }
68
+
69
+ @return $string;
70
+ }
71
+
72
+ // Color contrast
73
+ @function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
74
+ $r: red($color);
75
+ $g: green($color);
76
+ $b: blue($color);
77
+
78
+ $yiq: (($r * 299) + ($g * 587) + ($b * 114)) * .001;
79
+
80
+ @if ($yiq >= $yiq-contrasted-threshold) {
81
+ @return $dark;
82
+ } @else {
83
+ @return $light;
84
+ }
85
+ }
86
+
87
+ // Retrieve color Sass maps
88
+ @function color($key: "blue") {
89
+ @return map-get($colors, $key);
90
+ }
91
+
92
+ @function theme-color($key: "primary") {
93
+ @return map-get($theme-colors, $key);
94
+ }
95
+
96
+ @function gray($key: "100") {
97
+ @return map-get($grays, $key);
98
+ }
99
+
100
+ // Request a theme color level
101
+ @function theme-color-level($color-name: "primary", $level: 0) {
102
+ $color: theme-color($color-name);
103
+ $color-base: if($level > 0, $black, $white);
104
+ $level: abs($level);
105
+
106
+ @return mix($color-base, $color, $level * $theme-color-interval);
107
+ }
108
+
109
+ // Return valid calc
110
+ @function add($value1, $value2, $return-calc: true) {
111
+ @if $value1 == null {
112
+ @return $value2;
113
+ }
114
+
115
+ @if $value2 == null {
116
+ @return $value1;
117
+ }
118
+
119
+ @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
120
+ @return $value1 + $value2;
121
+ }
122
+
123
+ @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(" + ") + $value2);
124
+ }
125
+
126
+ @function subtract($value1, $value2, $return-calc: true) {
127
+ @if $value1 == null and $value2 == null {
128
+ @return null;
129
+ }
130
+
131
+ @if $value1 == null {
132
+ @return -$value2;
133
+ }
134
+
135
+ @if $value2 == null {
136
+ @return $value1;
137
+ }
138
+
139
+ @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
140
+ @return $value1 - $value2;
141
+ }
142
+
143
+ @if type-of($value2) != number {
144
+ $value2: unquote("(") + $value2 + unquote(")");
145
+ }
146
+
147
+ @return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(" - ") + $value2);
148
+ }
149
+
150
+ @function divide($dividend, $divisor, $precision: 10) {
151
+ $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
152
+ $dividend: abs($dividend);
153
+ $divisor: abs($divisor);
154
+ @if $dividend == 0 {
155
+ @return 0;
156
+ }
157
+ @if $divisor == 0 {
158
+ @error "Cannot divide by 0";
159
+ }
160
+ $remainder: $dividend;
161
+ $result: 0;
162
+ $factor: 10;
163
+ @while ($remainder > 0 and $precision >= 0) {
164
+ $quotient: 0;
165
+ @while ($remainder >= $divisor) {
166
+ $remainder: $remainder - $divisor;
167
+ $quotient: $quotient + 1;
168
+ }
169
+ $result: $result * 10 + $quotient;
170
+ $factor: $factor * .1;
171
+ $remainder: $remainder * 10;
172
+ $precision: $precision - 1;
173
+ @if ($precision < 0 and $remainder >= $divisor * 5) {
174
+ $result: $result + 1;
175
+ }
176
+ }
177
+ $result: $result * $factor * $sign;
178
+ $dividend-unit: unit($dividend);
179
+ $divisor-unit: unit($divisor);
180
+ $unit-map: (
181
+ "px": 1px,
182
+ "rem": 1rem,
183
+ "em": 1em,
184
+ "%": 1%
185
+ );
186
+ @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
187
+ $result: $result * map-get($unit-map, $dividend-unit);
188
+ }
189
+ @return $result;
190
+ }
@@ -0,0 +1,73 @@
1
+ // Container widths
2
+ //
3
+ // Set the container width, and override it for fixed navbars in media queries.
4
+
5
+ @if $enable-grid-classes {
6
+ // Single container class with breakpoint max-widths
7
+ .container,
8
+ // 100% wide container at all breakpoints
9
+ .container-fluid {
10
+ @include make-container();
11
+ }
12
+
13
+ // Responsive containers that are 100% wide until a breakpoint
14
+ @each $breakpoint, $container-max-width in $container-max-widths {
15
+ .container-#{$breakpoint} {
16
+ @extend .container-fluid;
17
+ }
18
+
19
+ @include media-breakpoint-up($breakpoint, $grid-breakpoints) {
20
+ %responsive-container-#{$breakpoint} {
21
+ max-width: $container-max-width;
22
+ }
23
+
24
+ // Extend each breakpoint which is smaller or equal to the current breakpoint
25
+ $extend-breakpoint: true;
26
+
27
+ @each $name, $width in $grid-breakpoints {
28
+ @if ($extend-breakpoint) {
29
+ .container#{breakpoint-infix($name, $grid-breakpoints)} {
30
+ @extend %responsive-container-#{$breakpoint};
31
+ }
32
+
33
+ // Once the current breakpoint is reached, stop extending
34
+ @if ($breakpoint == $name) {
35
+ $extend-breakpoint: false;
36
+ }
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+
44
+ // Row
45
+ //
46
+ // Rows contain your columns.
47
+
48
+ @if $enable-grid-classes {
49
+ .row {
50
+ @include make-row();
51
+ }
52
+
53
+ // Remove the negative margin from default .row, then the horizontal padding
54
+ // from all immediate children columns (to prevent runaway style inheritance).
55
+ .no-gutters {
56
+ margin-right: 0;
57
+ margin-left: 0;
58
+
59
+ > .col,
60
+ > [class*="col-"] {
61
+ padding-right: 0;
62
+ padding-left: 0;
63
+ }
64
+ }
65
+ }
66
+
67
+ // Columns
68
+ //
69
+ // Common styles for small and large grid columns
70
+
71
+ @if $enable-grid-classes {
72
+ @include make-grid-columns();
73
+ }
@@ -0,0 +1,42 @@
1
+ // Responsive images (ensure images don't scale beyond their parents)
2
+ //
3
+ // This is purposefully opt-in via an explicit class rather than being the default for all `<img>`s.
4
+ // We previously tried the "images are responsive by default" approach in Bootstrap v2,
5
+ // and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)
6
+ // which weren't expecting the images within themselves to be involuntarily resized.
7
+ // See also https://github.com/twbs/bootstrap/issues/18178
8
+ .img-fluid {
9
+ @include img-fluid();
10
+ }
11
+
12
+
13
+ // Image thumbnails
14
+ .img-thumbnail {
15
+ padding: $thumbnail-padding;
16
+ background-color: $thumbnail-bg;
17
+ border: $thumbnail-border-width solid $thumbnail-border-color;
18
+ @include border-radius($thumbnail-border-radius);
19
+ @include box-shadow($thumbnail-box-shadow);
20
+
21
+ // Keep them at most 100% wide
22
+ @include img-fluid();
23
+ }
24
+
25
+ //
26
+ // Figures
27
+ //
28
+
29
+ .figure {
30
+ // Ensures the caption's text aligns with the image.
31
+ display: inline-block;
32
+ }
33
+
34
+ .figure-img {
35
+ margin-bottom: $spacer * .5;
36
+ line-height: 1;
37
+ }
38
+
39
+ .figure-caption {
40
+ @include font-size($figure-caption-font-size);
41
+ color: $figure-caption-color;
42
+ }