binco 3.1.1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '075685bd20689c841ea95d7ca92295548d42c1a1'
4
- data.tar.gz: e6a4396cba4b034f7d6ecfb269d55a039189bb82
3
+ metadata.gz: 115f04b28bbcbde41bce70355dd16d9458af070d
4
+ data.tar.gz: b486a7239521331db71cbc486a1c8478d482dab9
5
5
  SHA512:
6
- metadata.gz: 05beb6fa8a2fb67a70edaf2fcb165b9748c1d338086d9f9f245cdc095aef9a1bffac8026d98166baa194fdec9c2f0b06b7961dcf203393276f3dccaf4e712025
7
- data.tar.gz: '09186de9b1b4a2d1e55981966c00df0e9aff3085bef49fe244be7470b9d22ff018dc3b0a0ef50e78463c648279fc8ae64a27314dce50789f32b0549b5a646c30'
6
+ metadata.gz: 152b0c9d8b0ff9bb8d3a9ef09a534646143f20555061dd5b5efd6b0bd27ab4f9df1b534380f269c1f656c69b9e1fa09beb9600d8bcc57a6352b1ce6982a5031d
7
+ data.tar.gz: 6affb0f0c2c4cefa91780bbbb3a1d7e69b2d5b26e88f6993b0e74a59702d289c981989c18fed13bfc08c1545981faea7fa0a16befadfe7a27f94a12c974fb730
@@ -4,21 +4,6 @@
4
4
  @import "select2-bootstrap";
5
5
  @import "datepicker";
6
6
 
7
- .field_with_errors {
8
- input, select {
9
- @extend .is-invalid;
10
- @extend .was-validated;
11
- }
12
- }
13
-
14
- .form-group > .field_with_errors {
15
- display: inline;
16
- }
17
-
18
- .form-group > .field_with_errors:last-child {
19
- display: block;
20
- }
21
-
22
7
  select.custom-select {
23
8
  width: 100%;
24
9
  }
@@ -27,14 +12,6 @@ select.custom-select {
27
12
  width: 100% !important;
28
13
  }
29
14
 
30
- .field_with_errors .select2-container .select2-selection--single {
31
- border-color: $form-feedback-invalid-color;
32
- }
33
-
34
- .field_with_errors .custom-select {
35
- border-color: $form-feedback-invalid-color;
36
- }
37
-
38
15
  .pagination {
39
16
  margin-top: 1rem;
40
17
  margin-bottom: 1rem;
@@ -14,7 +14,9 @@ module Binco
14
14
  if instance.respond_to?(:error_message) && instance.class.to_s != 'ActionView::Helpers::Tags::Label'
15
15
  error_messages = instance.error_message.collect{ |error| "<div class=\"invalid-feedback\">#{error}</div>" }.join
16
16
 
17
- "<div class=\"field_with_errors\">#{html_tag} #{error_messages}</div>".html_safe
17
+ Rails.logger.debug html_tag.inspect
18
+
19
+ "#{html_tag.gsub(/class="/, 'class="is-invalid ')} #{error_messages}".html_safe
18
20
  else
19
21
  html_tag
20
22
  end
@@ -1,3 +1,3 @@
1
1
  module Binco
2
- VERSION = '3.1.1'
2
+ VERSION = '3.1.2'
3
3
  end
@@ -87,6 +87,12 @@
87
87
  // Set a specific jump point for requesting color jumps
88
88
  // $theme-color-interval: 8% !default;
89
89
  //
90
+ // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
91
+ // $yiq-contrasted-threshold: 150 !default;
92
+ //
93
+ // Customize the light and dark text colors for use in our YIQ color contrast function.
94
+ // $yiq-text-dark: $gray-900 !default;
95
+ // $yiq-text-light: $white !default;
90
96
  //
91
97
  // Options
92
98
  //
@@ -166,7 +172,7 @@
166
172
  // @include _assert-starts-at-zero($grid-breakpoints);
167
173
  //
168
174
  //
169
- // Grid breakpoints
175
+ // Grid containers
170
176
  //
171
177
  // Define the maximum width of `.container` for different screen sizes.
172
178
  //
@@ -217,7 +223,7 @@
217
223
  //
218
224
  // stylelint-disable value-keyword-case
219
225
  // $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
220
- // $font-family-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
226
+ // $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
221
227
  // $font-family-base: $font-family-sans-serif !default;
222
228
  // stylelint-enable value-keyword-case
223
229
  //
@@ -266,19 +272,21 @@
266
272
  // $blockquote-small-color: $gray-600 !default;
267
273
  // $blockquote-font-size: ($font-size-base * 1.25) !default;
268
274
  //
269
- // $hr-border-color: rgba($black,.1) !default;
275
+ // $hr-border-color: rgba($black, .1) !default;
270
276
  // $hr-border-width: $border-width !default;
271
277
  //
272
278
  // $mark-padding: .2em !default;
273
279
  //
274
280
  // $dt-font-weight: $font-weight-bold !default;
275
281
  //
276
- // $kbd-box-shadow: inset 0 -.1rem 0 rgba($black,.25) !default;
282
+ // $kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
277
283
  // $nested-kbd-font-weight: $font-weight-bold !default;
278
284
  //
279
- // $list-inline-padding: 5px !default;
285
+ // $list-inline-padding: .5rem !default;
286
+ //
287
+ // $mark-bg: #fcf8e3 !default;
280
288
  //
281
- // $mark-bg: #fcf8e3 !default;
289
+ // $hr-margin-y: $spacer !default;
282
290
  //
283
291
  //
284
292
  // Tables
@@ -289,12 +297,12 @@
289
297
  // $table-cell-padding-sm: .3rem !default;
290
298
  //
291
299
  // $table-bg: transparent !default;
292
- // $table-accent-bg: rgba($black,.05) !default;
293
- // $table-hover-bg: rgba($black,.075) !default;
300
+ // $table-accent-bg: rgba($black, .05) !default;
301
+ // $table-hover-bg: rgba($black, .075) !default;
294
302
  // $table-active-bg: $table-hover-bg !default;
295
303
  //
296
304
  // $table-border-width: $border-width !default;
297
- // $table-border-color: $gray-200 !default;
305
+ // $table-border-color: $gray-300 !default;
298
306
  //
299
307
  // $table-head-bg: $gray-200 !default;
300
308
  // $table-head-color: $gray-700 !default;
@@ -306,9 +314,9 @@
306
314
  // $table-dark-color: $body-bg !default;
307
315
  //
308
316
  //
309
- // Buttons
317
+ // Buttons + Forms
310
318
  //
311
- // For each of Bootstrap's buttons, define text, background and border color.
319
+ // Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
312
320
  //
313
321
  // $input-btn-padding-y: .375rem !default;
314
322
  // $input-btn-padding-x: .75rem !default;
@@ -326,9 +334,33 @@
326
334
  // $input-btn-padding-x-lg: 1rem !default;
327
335
  // $input-btn-line-height-lg: $line-height-lg !default;
328
336
  //
337
+ // $input-btn-border-width: $border-width !default;
338
+ //
339
+ //
340
+ // Buttons
341
+ //
342
+ // For each of Bootstrap's buttons, define text, background, and border color.
343
+ //
344
+ // $btn-padding-y: $input-btn-padding-y !default;
345
+ // $btn-padding-x: $input-btn-padding-x !default;
346
+ // $btn-line-height: $input-btn-line-height !default;
347
+ //
348
+ // $btn-padding-y-sm: $input-btn-padding-y-sm !default;
349
+ // $btn-padding-x-sm: $input-btn-padding-x-sm !default;
350
+ // $btn-line-height-sm: $input-btn-line-height-sm !default;
351
+ //
352
+ // $btn-padding-y-lg: $input-btn-padding-y-lg !default;
353
+ // $btn-padding-x-lg: $input-btn-padding-x-lg !default;
354
+ // $btn-line-height-lg: $input-btn-line-height-lg !default;
355
+ //
356
+ // $btn-border-width: $input-btn-border-width !default;
357
+ //
329
358
  // $btn-font-weight: $font-weight-normal !default;
330
- // $btn-box-shadow: inset 0 1px 0 rgba($white,.15), 0 1px 1px rgba($black,.075) !default;
331
- // $btn-active-box-shadow: inset 0 3px 5px rgba($black,.125) !default;
359
+ // $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
360
+ // $btn-focus-width: $input-btn-focus-width !default;
361
+ // $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
362
+ // $btn-disabled-opacity: .65 !default;
363
+ // $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
332
364
  //
333
365
  // $btn-link-disabled-color: $gray-600 !default;
334
366
  //
@@ -339,18 +371,30 @@
339
371
  // $btn-border-radius-lg: $border-radius-lg !default;
340
372
  // $btn-border-radius-sm: $border-radius-sm !default;
341
373
  //
342
- // $btn-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
374
+ // $btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
343
375
  //
344
376
  //
345
377
  // Forms
346
378
  //
379
+ // $input-padding-y: $input-btn-padding-y !default;
380
+ // $input-padding-x: $input-btn-padding-x !default;
381
+ // $input-line-height: $input-btn-line-height !default;
382
+ //
383
+ // $input-padding-y-sm: $input-btn-padding-y-sm !default;
384
+ // $input-padding-x-sm: $input-btn-padding-x-sm !default;
385
+ // $input-line-height-sm: $input-btn-line-height-sm !default;
386
+ //
387
+ // $input-padding-y-lg: $input-btn-padding-y-lg !default;
388
+ // $input-padding-x-lg: $input-btn-padding-x-lg !default;
389
+ // $input-line-height-lg: $input-btn-line-height-lg !default;
390
+ //
347
391
  // $input-bg: $white !default;
348
392
  // $input-disabled-bg: $gray-200 !default;
349
393
  //
350
394
  // $input-color: $gray-700 !default;
351
395
  // $input-border-color: $gray-400 !default;
352
- // $input-btn-border-width: $border-width !default; // For form controls and buttons
353
- // $input-box-shadow: inset 0 1px 1px rgba($black,.075) !default;
396
+ // $input-border-width: $input-btn-border-width !default;
397
+ // $input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
354
398
  //
355
399
  // $input-border-radius: $border-radius !default;
356
400
  // $input-border-radius-lg: $border-radius-lg !default;
@@ -359,6 +403,8 @@
359
403
  // $input-focus-bg: $input-bg !default;
360
404
  // $input-focus-border-color: lighten(theme-color("primary"), 25%) !default;
361
405
  // $input-focus-color: $input-color !default;
406
+ // $input-focus-width: $input-btn-focus-width !default;
407
+ // $input-focus-box-shadow: $input-btn-focus-box-shadow !default;
362
408
  //
363
409
  // $input-placeholder-color: $gray-600 !default;
364
410
  //
@@ -373,16 +419,16 @@
373
419
  // $input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
374
420
  // $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
375
421
  //
376
- // $input-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !default;
422
+ // $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
377
423
  //
378
424
  // $form-text-margin-top: .25rem !default;
379
425
  //
380
- // $form-check-margin-bottom: .5rem !default;
381
426
  // $form-check-input-gutter: 1.25rem !default;
382
- // $form-check-input-margin-y: .25rem !default;
427
+ // $form-check-input-margin-y: .3rem !default;
383
428
  // $form-check-input-margin-x: .25rem !default;
384
429
  //
385
430
  // $form-check-inline-margin-x: .75rem !default;
431
+ // $form-check-inline-input-margin-x: .3125rem !default;
386
432
  //
387
433
  // $form-group-margin-bottom: 1rem !default;
388
434
  //
@@ -391,16 +437,15 @@
391
437
  // $input-group-addon-border-color: $input-border-color !default;
392
438
  //
393
439
  // $custom-control-gutter: 1.5rem !default;
394
- // $custom-control-spacer-y: .25rem !default;
395
440
  // $custom-control-spacer-x: 1rem !default;
396
441
  //
397
442
  // $custom-control-indicator-size: 1rem !default;
398
- // $custom-control-indicator-bg: #ddd !default;
443
+ // $custom-control-indicator-bg: $gray-300 !default;
399
444
  // $custom-control-indicator-bg-size: 50% 50% !default;
400
- // $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black,.1) !default;
445
+ // $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
401
446
  //
402
447
  // $custom-control-indicator-disabled-bg: $gray-200 !default;
403
- // $custom-control-description-disabled-color: $gray-600 !default;
448
+ // $custom-control-label-disabled-color: $gray-600 !default;
404
449
  //
405
450
  // $custom-control-indicator-checked-color: $white !default;
406
451
  // $custom-control-indicator-checked-bg: theme-color("primary") !default;
@@ -433,21 +478,24 @@
433
478
  // $custom-select-bg: $white !default;
434
479
  // $custom-select-disabled-bg: $gray-200 !default;
435
480
  // $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
436
- // $custom-select-indicator-color: #333 !default;
481
+ // $custom-select-indicator-color: $gray-800 !default;
437
482
  // $custom-select-indicator: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E"), "#", "%23") !default;
438
483
  // $custom-select-border-width: $input-btn-border-width !default;
439
484
  // $custom-select-border-color: $input-border-color !default;
440
485
  // $custom-select-border-radius: $border-radius !default;
441
486
  //
442
- // $custom-select-focus-border-color: lighten(theme-color("primary"), 25%) !default;
443
- // $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5) !default;
487
+ // $custom-select-focus-border-color: $input-focus-border-color !default;
488
+ // $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), $input-btn-focus-box-shadow !default;
444
489
  //
445
490
  // $custom-select-font-size-sm: 75% !default;
446
491
  // $custom-select-height-sm: $input-height-sm !default;
447
492
  //
493
+ // $custom-select-font-size-lg: 125% !default;
494
+ // $custom-select-height-lg: $input-height-lg !default;
495
+ //
448
496
  // $custom-file-height: $input-height !default;
449
- // $custom-file-width: 14rem !default;
450
- // $custom-file-focus-box-shadow: 0 0 0 .075rem $white, 0 0 0 .2rem theme-color("primary") !default;
497
+ // $custom-file-focus-border-color: $input-focus-border-color !default;
498
+ // $custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;
451
499
  //
452
500
  // $custom-file-padding-y: $input-btn-padding-y !default;
453
501
  // $custom-file-padding-x: $input-btn-padding-x !default;
@@ -461,16 +509,13 @@
461
509
  // $custom-file-button-color: $custom-file-color !default;
462
510
  // $custom-file-button-bg: $input-group-addon-bg !default;
463
511
  // $custom-file-text: (
464
- // placeholder: (
465
- // en: "Choose file..."
466
- // ),
467
- // button-label: (
468
- // en: "Browse"
469
- // )
512
+ // en: "Browse"
470
513
  // ) !default;
471
514
  //
472
515
  //
473
516
  // Form validation
517
+ // $form-feedback-margin-top: $form-text-margin-top !default;
518
+ // $form-feedback-font-size: $small-font-size !default;
474
519
  // $form-feedback-valid-color: theme-color("success") !default;
475
520
  // $form-feedback-invalid-color: theme-color("danger") !default;
476
521
  //
@@ -483,10 +528,11 @@
483
528
  // $dropdown-padding-y: .5rem !default;
484
529
  // $dropdown-spacer: .125rem !default;
485
530
  // $dropdown-bg: $white !default;
486
- // $dropdown-border-color: rgba($black,.15) !default;
531
+ // $dropdown-border-color: rgba($black, .15) !default;
532
+ // $dropdown-border-radius: $border-radius !default;
487
533
  // $dropdown-border-width: $border-width !default;
488
534
  // $dropdown-divider-bg: $gray-200 !default;
489
- // $dropdown-box-shadow: 0 .5rem 1rem rgba($black,.175) !default;
535
+ // $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
490
536
  //
491
537
  // $dropdown-link-color: $gray-900 !default;
492
538
  // $dropdown-link-hover-color: darken($gray-900, 5%) !default;
@@ -522,13 +568,13 @@
522
568
  // $nav-link-padding-x: 1rem !default;
523
569
  // $nav-link-disabled-color: $gray-600 !default;
524
570
  //
525
- // $nav-tabs-border-color: #ddd !default;
571
+ // $nav-tabs-border-color: $gray-300 !default;
526
572
  // $nav-tabs-border-width: $border-width !default;
527
573
  // $nav-tabs-border-radius: $border-radius !default;
528
- // $nav-tabs-link-hover-border-color: $gray-200 !default;
574
+ // $nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
529
575
  // $nav-tabs-link-active-color: $gray-700 !default;
530
576
  // $nav-tabs-link-active-bg: $body-bg !default;
531
- // $nav-tabs-link-active-border-color: #ddd !default;
577
+ // $nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
532
578
  //
533
579
  // $nav-pills-border-radius: $border-radius !default;
534
580
  // $nav-pills-link-active-color: $component-active-color !default;
@@ -550,19 +596,19 @@
550
596
  // $navbar-toggler-font-size: $font-size-lg !default;
551
597
  // $navbar-toggler-border-radius: $btn-border-radius !default;
552
598
  //
553
- // $navbar-dark-color: rgba($white,.5) !default;
554
- // $navbar-dark-hover-color: rgba($white,.75) !default;
599
+ // $navbar-dark-color: rgba($white, .5) !default;
600
+ // $navbar-dark-hover-color: rgba($white, .75) !default;
555
601
  // $navbar-dark-active-color: $white !default;
556
- // $navbar-dark-disabled-color: rgba($white,.25) !default;
602
+ // $navbar-dark-disabled-color: rgba($white, .25) !default;
557
603
  // $navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
558
- // $navbar-dark-toggler-border-color: rgba($white,.1) !default;
604
+ // $navbar-dark-toggler-border-color: rgba($white, .1) !default;
559
605
  //
560
- // $navbar-light-color: rgba($black,.5) !default;
561
- // $navbar-light-hover-color: rgba($black,.7) !default;
562
- // $navbar-light-active-color: rgba($black,.9) !default;
563
- // $navbar-light-disabled-color: rgba($black,.3) !default;
606
+ // $navbar-light-color: rgba($black, .5) !default;
607
+ // $navbar-light-hover-color: rgba($black, .7) !default;
608
+ // $navbar-light-active-color: rgba($black, .9) !default;
609
+ // $navbar-light-disabled-color: rgba($black, .3) !default;
564
610
  // $navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
565
- // $navbar-light-toggler-border-color: rgba($black,.1) !default;
611
+ // $navbar-light-toggler-border-color: rgba($black, .1) !default;
566
612
  //
567
613
  // Pagination
568
614
  //
@@ -577,11 +623,11 @@
577
623
  // $pagination-color: $link-color !default;
578
624
  // $pagination-bg: $white !default;
579
625
  // $pagination-border-width: $border-width !default;
580
- // $pagination-border-color: #ddd !default;
626
+ // $pagination-border-color: $gray-300 !default;
581
627
  //
582
628
  // $pagination-hover-color: $link-hover-color !default;
583
629
  // $pagination-hover-bg: $gray-200 !default;
584
- // $pagination-hover-border-color: #ddd !default;
630
+ // $pagination-hover-border-color: $gray-300 !default;
585
631
  //
586
632
  // $pagination-active-color: $white !default;
587
633
  // $pagination-active-bg: theme-color("primary") !default;
@@ -589,7 +635,7 @@
589
635
  //
590
636
  // $pagination-disabled-color: $gray-600 !default;
591
637
  // $pagination-disabled-bg: $white !default;
592
- // $pagination-disabled-border-color: #ddd !default;
638
+ // $pagination-disabled-border-color: $gray-300 !default;
593
639
  //
594
640
  //
595
641
  // Jumbotron
@@ -604,7 +650,7 @@
604
650
  // $card-spacer-x: 1.25rem !default;
605
651
  // $card-border-width: $border-width !default;
606
652
  // $card-border-radius: $border-radius !default;
607
- // $card-border-color: rgba($black,.125) !default;
653
+ // $card-border-color: rgba($black, .125) !default;
608
654
  // $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
609
655
  // $card-cap-bg: rgba($black, .03) !default;
610
656
  // $card-bg: $white !default;
@@ -621,18 +667,17 @@
621
667
  //
622
668
  // Tooltips
623
669
  //
624
- // $tooltip-max-width: 200px !default;
625
- // $tooltip-color: $white !default;
626
- // $tooltip-bg: $black !default;
627
- // $tooltip-opacity: .9 !default;
628
- // $tooltip-padding-y: 3px !default;
629
- // $tooltip-padding-x: 8px !default;
630
- // $tooltip-margin: 0 !default;
631
- //
670
+ // $tooltip-max-width: 200px !default;
671
+ // $tooltip-color: $white !default;
672
+ // $tooltip-bg: $black !default;
673
+ // $tooltip-opacity: .9 !default;
674
+ // $tooltip-padding-y: .25rem !default;
675
+ // $tooltip-padding-x: .5rem !default;
676
+ // $tooltip-margin: 0 !default;
632
677
  //
633
- // $tooltip-arrow-width: 5px !default;
634
- // $tooltip-arrow-height: 5px !default;
635
- // $tooltip-arrow-color: $tooltip-bg !default;
678
+ // $tooltip-arrow-width: .8rem !default;
679
+ // $tooltip-arrow-height: .4rem !default;
680
+ // $tooltip-arrow-color: $tooltip-bg !default;
636
681
  //
637
682
  //
638
683
  // Popovers
@@ -640,8 +685,8 @@
640
685
  // $popover-bg: $white !default;
641
686
  // $popover-max-width: 276px !default;
642
687
  // $popover-border-width: $border-width !default;
643
- // $popover-border-color: rgba($black,.2) !default;
644
- // $popover-box-shadow: 0 .25rem .5rem rgba($black,.2) !default;
688
+ // $popover-border-color: rgba($black, .2) !default;
689
+ // $popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
645
690
  //
646
691
  // $popover-header-bg: darken($popover-bg, 3%) !default;
647
692
  // $popover-header-color: $headings-color !default;
@@ -652,8 +697,8 @@
652
697
  // $popover-body-padding-y: $popover-header-padding-y !default;
653
698
  // $popover-body-padding-x: $popover-header-padding-x !default;
654
699
  //
655
- // $popover-arrow-width: .8rem !default;
656
- // $popover-arrow-height: .4rem !default;
700
+ // $popover-arrow-width: 1rem !default;
701
+ // $popover-arrow-height: .5rem !default;
657
702
  // $popover-arrow-color: $popover-bg !default;
658
703
  //
659
704
  // $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
@@ -676,26 +721,26 @@
676
721
  // Modals
677
722
  //
678
723
  // Padding applied to the modal body
679
- // $modal-inner-padding: 15px !default;
724
+ // $modal-inner-padding: 1rem !default;
680
725
  //
681
- // $modal-dialog-margin: 10px !default;
682
- // $modal-dialog-margin-y-sm-up: 30px !default;
726
+ // $modal-dialog-margin: .5rem !default;
727
+ // $modal-dialog-margin-y-sm-up: 1.75rem !default;
683
728
  //
684
729
  // $modal-title-line-height: $line-height-base !default;
685
730
  //
686
- // $modal-content-bg: $white !default;
687
- // $modal-content-border-color: rgba($black,.2) !default;
688
- // $modal-content-border-width: $border-width !default;
689
- // $modal-content-box-shadow-xs: 0 3px 9px rgba($black,.5) !default;
690
- // $modal-content-box-shadow-sm-up: 0 5px 15px rgba($black,.5) !default;
731
+ // $modal-content-bg: $white !default;
732
+ // $modal-content-border-color: rgba($black, .2) !default;
733
+ // $modal-content-border-width: $border-width !default;
734
+ // $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
735
+ // $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
691
736
  //
692
- // $modal-backdrop-bg: $black !default;
693
- // $modal-backdrop-opacity: .5 !default;
694
- // $modal-header-border-color: $gray-200 !default;
695
- // $modal-footer-border-color: $modal-header-border-color !default;
696
- // $modal-header-border-width: $modal-content-border-width !default;
697
- // $modal-footer-border-width: $modal-header-border-width !default;
698
- // $modal-header-padding: 15px !default;
737
+ // $modal-backdrop-bg: $black !default;
738
+ // $modal-backdrop-opacity: .5 !default;
739
+ // $modal-header-border-color: $gray-200 !default;
740
+ // $modal-footer-border-color: $modal-header-border-color !default;
741
+ // $modal-header-border-width: $modal-content-border-width !default;
742
+ // $modal-footer-border-width: $modal-header-border-width !default;
743
+ // $modal-header-padding: 1rem !default;
699
744
  //
700
745
  // $modal-lg: 800px !default;
701
746
  // $modal-md: 500px !default;
@@ -722,7 +767,7 @@
722
767
  // $progress-font-size: ($font-size-base * .75) !default;
723
768
  // $progress-bg: $gray-200 !default;
724
769
  // $progress-border-radius: $border-radius !default;
725
- // $progress-box-shadow: inset 0 .1rem .1rem rgba($black,.1) !default;
770
+ // $progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
726
771
  // $progress-bar-color: $white !default;
727
772
  // $progress-bar-bg: theme-color("primary") !default;
728
773
  // $progress-bar-animation-timing: 1s linear infinite !default;
@@ -731,7 +776,7 @@
731
776
  // List group
732
777
  //
733
778
  // $list-group-bg: $white !default;
734
- // $list-group-border-color: rgba($black,.125) !default;
779
+ // $list-group-border-color: rgba($black, .125) !default;
735
780
  // $list-group-border-width: $border-width !default;
736
781
  // $list-group-border-radius: $border-radius !default;
737
782
  //
@@ -758,10 +803,9 @@
758
803
  // $thumbnail-padding: .25rem !default;
759
804
  // $thumbnail-bg: $body-bg !default;
760
805
  // $thumbnail-border-width: $border-width !default;
761
- // $thumbnail-border-color: #ddd !default;
806
+ // $thumbnail-border-color: $gray-300 !default;
762
807
  // $thumbnail-border-radius: $border-radius !default;
763
- // $thumbnail-box-shadow: 0 1px 2px rgba($black,.075) !default;
764
- // $thumbnail-transition: all .2s ease-in-out !default;
808
+ // $thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
765
809
  //
766
810
  //
767
811
  // Figures
@@ -815,14 +859,14 @@
815
859
  //
816
860
  // Code
817
861
  //
818
- // $code-font-size: 90% !default;
819
- // $code-padding-y: .2rem !default;
820
- // $code-padding-x: .4rem !default;
821
- // $code-color: #bd4147 !default;
822
- // $code-bg: $gray-100 !default;
862
+ // $code-font-size: 87.5% !default;
863
+ // $code-color: $pink !default;
823
864
  //
865
+ // $kbd-padding-y: .2rem !default;
866
+ // $kbd-padding-x: .4rem !default;
867
+ // $kbd-font-size: $code-font-size !default;
824
868
  // $kbd-color: $white !default;
825
869
  // $kbd-bg: $gray-900 !default;
826
870
  //
827
871
  // $pre-color: $gray-900 !default;
828
- // $pre-scrollable-max-height: 340px !default;
872
+ // $pre-scrollable-max-height: 340px !default;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: binco
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Camacho
@@ -30,7 +30,7 @@ cert_chain:
30
30
  XdmvXYY6Fr9AHqSdbvphaVu+RqBpkBdGUQCcCZ73NjXSUwgJumx1p1A8e4NXrh1e
31
31
  pYh0/Q==
32
32
  -----END CERTIFICATE-----
33
- date: 2017-12-28 00:00:00.000000000 Z
33
+ date: 2018-01-17 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: railties
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 4.0.0.beta2.1
61
+ version: 4.0.0.beta3
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 4.0.0.beta2.1
68
+ version: 4.0.0.beta3
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: jquery-rails
71
71
  requirement: !ruby/object:Gem::Requirement