bootstrap-sass-rails 3.0.0.0.rc2 → 3.0.0.0
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.
- data/README.md +0 -20
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +228 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +3 -3
- data/app/assets/javascripts/twitter/bootstrap/modal.js +5 -3
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +9 -5
- data/app/assets/javascripts/twitter/bootstrap/transition.js +1 -1
- data/app/assets/stylesheets/twitter/bootstrap.css.scss +17 -21
- data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +7 -11
- data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +14 -10
- data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +9 -20
- data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +7 -2
- data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +23 -5
- data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +36 -15
- data/app/assets/stylesheets/twitter/bootstrap/_glyphicons.scss +209 -179
- data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +9 -3
- data/app/assets/stylesheets/twitter/bootstrap/_input-groups.scss +1 -1
- data/app/assets/stylesheets/twitter/bootstrap/_jumbotron.scss +16 -5
- data/app/assets/stylesheets/twitter/bootstrap/_labels.scss +9 -5
- data/app/assets/stylesheets/twitter/bootstrap/_list-group.scss +5 -5
- data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +86 -59
- data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +8 -0
- data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +253 -191
- data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +13 -12
- data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +1 -1
- data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +20 -9
- data/app/assets/stylesheets/twitter/bootstrap/_panels.scss +28 -8
- data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +6 -10
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +69 -45
- data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +37 -18
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +84 -59
- data/app/assets/stylesheets/twitter/bootstrap/_theme.scss +232 -0
- data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +8 -19
- data/app/assets/stylesheets/twitter/bootstrap/_type.scss +2 -2
- data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +63 -50
- data/lib/bootstrap/sass/rails/version.rb +1 -1
- data/test/cases/usage_css_spec.rb +6 -4
- metadata +14 -11
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.eot +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.otf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.svg +0 -175
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.ttf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.woff +0 -0
@@ -8,7 +8,7 @@
|
|
8
8
|
@include container-fixed();
|
9
9
|
}
|
10
10
|
|
11
|
-
//
|
11
|
+
// mobile first defaults
|
12
12
|
.row {
|
13
13
|
@include make-row();
|
14
14
|
}
|
@@ -223,6 +223,7 @@
|
|
223
223
|
.col-md-12 { width: 100%; }
|
224
224
|
|
225
225
|
// Push and pull columns for source order changes
|
226
|
+
.col-md-push-0 { left: auto; }
|
226
227
|
.col-md-push-1 { left: percentage((1 / $grid-columns)); }
|
227
228
|
.col-md-push-2 { left: percentage((2 / $grid-columns)); }
|
228
229
|
.col-md-push-3 { left: percentage((3 / $grid-columns)); }
|
@@ -235,6 +236,7 @@
|
|
235
236
|
.col-md-push-10 { left: percentage((10/ $grid-columns)); }
|
236
237
|
.col-md-push-11 { left: percentage((11/ $grid-columns)); }
|
237
238
|
|
239
|
+
.col-md-pull-0 { right: auto; }
|
238
240
|
.col-md-pull-1 { right: percentage((1 / $grid-columns)); }
|
239
241
|
.col-md-pull-2 { right: percentage((2 / $grid-columns)); }
|
240
242
|
.col-md-pull-3 { right: percentage((3 / $grid-columns)); }
|
@@ -248,6 +250,7 @@
|
|
248
250
|
.col-md-pull-11 { right: percentage((11/ $grid-columns)); }
|
249
251
|
|
250
252
|
// Offsets
|
253
|
+
.col-md-offset-0 { margin-left: 0; }
|
251
254
|
.col-md-offset-1 { margin-left: percentage((1 / $grid-columns)); }
|
252
255
|
.col-md-offset-2 { margin-left: percentage((2 / $grid-columns)); }
|
253
256
|
.col-md-offset-3 { margin-left: percentage((3 / $grid-columns)); }
|
@@ -269,9 +272,9 @@
|
|
269
272
|
// Note that `.col-lg-12` doesn't get floated on purpose—there's no need since
|
270
273
|
// it's full-width.
|
271
274
|
|
272
|
-
@media (min-width: $screen-
|
275
|
+
@media (min-width: $screen-lg-desktop) {
|
273
276
|
.container {
|
274
|
-
max-width: $container-
|
277
|
+
max-width: $container-lg-desktop;
|
275
278
|
}
|
276
279
|
|
277
280
|
.col-lg-1,
|
@@ -301,6 +304,7 @@
|
|
301
304
|
.col-lg-12 { width: 100%; }
|
302
305
|
|
303
306
|
// Push and pull columns for source order changes
|
307
|
+
.col-lg-push-0 { left: auto; }
|
304
308
|
.col-lg-push-1 { left: percentage((1 / $grid-columns)); }
|
305
309
|
.col-lg-push-2 { left: percentage((2 / $grid-columns)); }
|
306
310
|
.col-lg-push-3 { left: percentage((3 / $grid-columns)); }
|
@@ -313,6 +317,7 @@
|
|
313
317
|
.col-lg-push-10 { left: percentage((10/ $grid-columns)); }
|
314
318
|
.col-lg-push-11 { left: percentage((11/ $grid-columns)); }
|
315
319
|
|
320
|
+
.col-lg-pull-0 { right: auto; }
|
316
321
|
.col-lg-pull-1 { right: percentage((1 / $grid-columns)); }
|
317
322
|
.col-lg-pull-2 { right: percentage((2 / $grid-columns)); }
|
318
323
|
.col-lg-pull-3 { right: percentage((3 / $grid-columns)); }
|
@@ -326,6 +331,7 @@
|
|
326
331
|
.col-lg-pull-11 { right: percentage((11/ $grid-columns)); }
|
327
332
|
|
328
333
|
// Offsets
|
334
|
+
.col-lg-offset-0 { margin-left: 0; }
|
329
335
|
.col-lg-offset-1 { margin-left: percentage((1 / $grid-columns)); }
|
330
336
|
.col-lg-offset-2 { margin-left: percentage((2 / $grid-columns)); }
|
331
337
|
.col-lg-offset-3 { margin-left: percentage((3 / $grid-columns)); }
|
@@ -32,7 +32,7 @@
|
|
32
32
|
.input-group-lg > .input-group-btn > .btn { @extend .input-lg; }
|
33
33
|
.input-group-sm > .form-control,
|
34
34
|
.input-group-sm > .input-group-addon,
|
35
|
-
.input-group-
|
35
|
+
.input-group-sm > .input-group-btn > .btn { @extend .input-sm; }
|
36
36
|
|
37
37
|
|
38
38
|
// Display as table-cell
|
@@ -4,13 +4,14 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
.jumbotron {
|
7
|
-
padding:
|
8
|
-
margin-bottom:
|
7
|
+
padding: $jumbotron-padding;
|
8
|
+
margin-bottom: $jumbotron-padding;
|
9
9
|
font-size: ($font-size-base * 1.5);
|
10
10
|
font-weight: 200;
|
11
11
|
line-height: ($line-height-base * 1.5);
|
12
|
-
color: $jumbotron-
|
12
|
+
color: $jumbotron-color;
|
13
13
|
background-color: $jumbotron-bg;
|
14
|
+
|
14
15
|
h1 {
|
15
16
|
line-height: 1;
|
16
17
|
color: $jumbotron-heading-color;
|
@@ -19,9 +20,19 @@
|
|
19
20
|
line-height: 1.4;
|
20
21
|
}
|
21
22
|
|
23
|
+
.container & {
|
24
|
+
border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container
|
25
|
+
}
|
26
|
+
|
22
27
|
@media screen and (min-width: $screen-tablet) {
|
23
|
-
padding:
|
24
|
-
|
28
|
+
padding-top: ($jumbotron-padding * 1.6);
|
29
|
+
padding-bottom: ($jumbotron-padding * 1.6);
|
30
|
+
|
31
|
+
.container & {
|
32
|
+
padding-left: ($jumbotron-padding * 2);
|
33
|
+
padding-right: ($jumbotron-padding * 2);
|
34
|
+
}
|
35
|
+
|
25
36
|
h1 {
|
26
37
|
font-size: ($font-size-base * 4.5);
|
27
38
|
}
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
.label {
|
6
6
|
display: inline;
|
7
|
-
padding: .
|
7
|
+
padding: .2em .6em .3em;
|
8
8
|
font-size: 75%;
|
9
9
|
font-weight: bold;
|
10
10
|
line-height: 1;
|
@@ -37,18 +37,22 @@
|
|
37
37
|
@include label-variant($label-default-bg);
|
38
38
|
}
|
39
39
|
|
40
|
-
.label-
|
41
|
-
@include label-variant($label-
|
40
|
+
.label-primary {
|
41
|
+
@include label-variant($label-primary-bg);
|
42
42
|
}
|
43
43
|
|
44
44
|
.label-success {
|
45
45
|
@include label-variant($label-success-bg);
|
46
46
|
}
|
47
47
|
|
48
|
+
.label-info {
|
49
|
+
@include label-variant($label-info-bg);
|
50
|
+
}
|
51
|
+
|
48
52
|
.label-warning {
|
49
53
|
@include label-variant($label-warning-bg);
|
50
54
|
}
|
51
55
|
|
52
|
-
.label-
|
53
|
-
@include label-variant($label-
|
56
|
+
.label-danger {
|
57
|
+
@include label-variant($label-danger-bg);
|
54
58
|
}
|
@@ -55,6 +55,11 @@
|
|
55
55
|
.list-group-item-heading {
|
56
56
|
color: inherit;
|
57
57
|
}
|
58
|
+
.list-group-item-text {
|
59
|
+
color: lighten($list-group-active-bg, 40%);
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
58
63
|
// Linked list items
|
59
64
|
a.list-group-item {
|
60
65
|
color: $list-group-link-color;
|
@@ -70,11 +75,6 @@ a.list-group-item {
|
|
70
75
|
background-color: $list-group-hover-bg;
|
71
76
|
}
|
72
77
|
}
|
73
|
-
.list-group-item-text {
|
74
|
-
color: lighten($list-group-active-bg, 40%);
|
75
|
-
}
|
76
|
-
}
|
77
|
-
}
|
78
78
|
|
79
79
|
// Custom content options
|
80
80
|
// -------------------------
|
@@ -286,7 +286,7 @@
|
|
286
286
|
|
287
287
|
// Reset filters for IE
|
288
288
|
//
|
289
|
-
// When you need to remove a gradient background,
|
289
|
+
// When you need to remove a gradient background, do not forget to use this to reset
|
290
290
|
// the IE filter for IE9 and below.
|
291
291
|
@mixin reset-filter() {
|
292
292
|
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
@@ -294,10 +294,10 @@
|
|
294
294
|
|
295
295
|
|
296
296
|
|
297
|
-
//
|
298
|
-
//
|
299
|
-
|
297
|
+
// Retina images
|
298
|
+
//
|
300
299
|
// Short retina mixin for setting background-image and -size
|
300
|
+
|
301
301
|
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
|
302
302
|
background-image: url("$file-1x");
|
303
303
|
|
@@ -314,6 +314,17 @@
|
|
314
314
|
}
|
315
315
|
|
316
316
|
|
317
|
+
// Responsive image
|
318
|
+
//
|
319
|
+
// Keep images from scaling beyond the width of their parents.
|
320
|
+
|
321
|
+
@mixin img-responsive($display: block) {
|
322
|
+
display: $display;
|
323
|
+
max-width: 100%; // Part 1: Set a maximum relative to the parent
|
324
|
+
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
|
325
|
+
}
|
326
|
+
|
327
|
+
|
317
328
|
// COMPONENT MIXINS
|
318
329
|
// --------------------------------------------------
|
319
330
|
|
@@ -331,7 +342,7 @@
|
|
331
342
|
// -------------------------
|
332
343
|
@mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) {
|
333
344
|
border-color: $border;
|
334
|
-
.panel-heading {
|
345
|
+
& > .panel-heading {
|
335
346
|
color: $heading-text-color;
|
336
347
|
background-color: $heading-bg-color;
|
337
348
|
border-color: $heading-border;
|
@@ -339,7 +350,7 @@
|
|
339
350
|
border-top-color: $border;
|
340
351
|
}
|
341
352
|
}
|
342
|
-
.panel-footer {
|
353
|
+
& > .panel-footer {
|
343
354
|
+ .panel-collapse .panel-body {
|
344
355
|
border-bottom-color: $border;
|
345
356
|
}
|
@@ -360,27 +371,62 @@
|
|
360
371
|
}
|
361
372
|
}
|
362
373
|
|
374
|
+
// Tables
|
375
|
+
// -------------------------
|
376
|
+
@mixin table-row-variant($state, $background, $border) {
|
377
|
+
// Exact selectors below required to override `.table-striped` and prevent
|
378
|
+
// inheritance to nested tables.
|
379
|
+
.table > thead > tr,
|
380
|
+
.table > tbody > tr,
|
381
|
+
.table > tfoot > tr {
|
382
|
+
> td.#{$state},
|
383
|
+
> th.#{$state},
|
384
|
+
&.#{$state} > td,
|
385
|
+
&.#{$state} > th {
|
386
|
+
background-color: $background;
|
387
|
+
border-color: $border;
|
388
|
+
}
|
389
|
+
}
|
390
|
+
|
391
|
+
// Hover states for `.table-hover`
|
392
|
+
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
393
|
+
.table-hover > tbody > tr {
|
394
|
+
> td.#{$state}:hover,
|
395
|
+
> th.#{$state}:hover,
|
396
|
+
&.#{$state}:hover > td {
|
397
|
+
background-color: darken($background, 5%);
|
398
|
+
border-color: darken($border, 5%);
|
399
|
+
}
|
400
|
+
}
|
401
|
+
}
|
402
|
+
|
363
403
|
// Button variants
|
364
404
|
// -------------------------
|
365
405
|
// Easily pump out default styles, as well as :hover, :focus, :active,
|
366
406
|
// and disabled options for all buttons
|
367
|
-
@mixin button-variant($color, $background, $border) {
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
407
|
+
@mixin button-variant($parent, $color, $background, $border) {
|
408
|
+
#{$parent} {
|
409
|
+
color: $color;
|
410
|
+
background-color: $background;
|
411
|
+
border-color: $border;
|
412
|
+
}
|
413
|
+
#{$parent}:hover,
|
414
|
+
#{$parent}:focus,
|
415
|
+
#{$parent}:active,
|
416
|
+
#{$parent}.active,
|
417
|
+
.open .dropdown-toggle#{$parent} {
|
376
418
|
color: $color;
|
377
419
|
background-color: darken($background, 8%);
|
378
420
|
border-color: darken($border, 12%);
|
379
421
|
}
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
422
|
+
#{$parent}:active,
|
423
|
+
#{$parent}.active,
|
424
|
+
.open .dropdown-toggle#{$parent} {
|
425
|
+
background-image: none;
|
426
|
+
}
|
427
|
+
#{$parent}.disabled,
|
428
|
+
#{$parent}[disabled],
|
429
|
+
fieldset[disabled] #{$parent} {
|
384
430
|
&,
|
385
431
|
&:hover,
|
386
432
|
&:focus,
|
@@ -459,18 +505,14 @@
|
|
459
505
|
// -------------------------
|
460
506
|
// More easily include all the states for responsive-utilities.less.
|
461
507
|
@mixin responsive-visibility($parent) {
|
462
|
-
#{$parent} {
|
463
|
-
display: block !important;
|
464
|
-
}
|
508
|
+
#{$parent} { display: block !important; }
|
465
509
|
tr#{$parent} { display: table-row !important; }
|
466
510
|
th#{$parent},
|
467
511
|
td#{$parent} { display: table-cell !important; }
|
468
512
|
}
|
469
513
|
|
470
514
|
@mixin responsive-invisibility($parent) {
|
471
|
-
#{$parent} {
|
472
|
-
display: none !important;
|
473
|
-
}
|
515
|
+
#{$parent} { display: none !important; }
|
474
516
|
tr#{$parent} { display: none !important; }
|
475
517
|
th#{$parent},
|
476
518
|
td#{$parent} { display: none !important; }
|
@@ -483,43 +525,28 @@
|
|
483
525
|
@mixin container-fixed() {
|
484
526
|
margin-right: auto;
|
485
527
|
margin-left: auto;
|
528
|
+
padding-left: ($grid-gutter-width / 2);
|
529
|
+
padding-right: ($grid-gutter-width / 2);
|
486
530
|
@include clearfix();
|
487
531
|
}
|
488
532
|
|
489
533
|
// Creates a wrapper for a series of columns
|
490
534
|
@mixin make-row($gutter: $grid-gutter-width) {
|
491
|
-
|
535
|
+
margin-left: ($gutter / -2);
|
536
|
+
margin-right: ($gutter / -2);
|
492
537
|
@include clearfix();
|
493
|
-
|
494
|
-
.container & {
|
495
|
-
@media (min-width: $screen-small) {
|
496
|
-
margin-left: ($gutter / -2);
|
497
|
-
margin-right: ($gutter / -2);
|
498
|
-
}
|
499
|
-
}
|
500
|
-
|
501
|
-
// Negative margin nested rows out to align the content of columns
|
502
|
-
.row {
|
503
|
-
margin-left: ($gutter / -2);
|
504
|
-
margin-right: ($gutter / -2);
|
505
|
-
}
|
506
538
|
}
|
507
539
|
|
508
540
|
// Generate the extra small columns
|
509
541
|
@mixin make-xs-column($columns, $gutter: $grid-gutter-width) {
|
510
542
|
position: relative;
|
511
543
|
float: left;
|
544
|
+
width: percentage(($columns / $grid-columns));
|
512
545
|
// Prevent columns from collapsing when empty
|
513
546
|
min-height: 1px;
|
514
547
|
// Inner gutter via padding
|
515
548
|
padding-left: ($gutter / 2);
|
516
549
|
padding-right: ($gutter / 2);
|
517
|
-
$max-width: ($screen-small - 1);
|
518
|
-
|
519
|
-
// Calculate width based on number of columns available
|
520
|
-
@media (max-width: $max-width) {
|
521
|
-
width: percentage(($columns / $grid-columns));
|
522
|
-
}
|
523
550
|
}
|
524
551
|
|
525
552
|
// Generate the small columns
|
@@ -532,7 +559,7 @@
|
|
532
559
|
padding-right: ($gutter / 2);
|
533
560
|
|
534
561
|
// Calculate width based on number of columns available
|
535
|
-
@media (min-width: $screen-
|
562
|
+
@media (min-width: $screen-sm) {
|
536
563
|
float: left;
|
537
564
|
width: percentage(($columns / $grid-columns));
|
538
565
|
}
|
@@ -540,17 +567,17 @@
|
|
540
567
|
|
541
568
|
// Generate the small column offsets
|
542
569
|
@mixin make-sm-column-offset($columns) {
|
543
|
-
@media (min-width: $screen-
|
570
|
+
@media (min-width: $screen-sm) {
|
544
571
|
margin-left: percentage(($columns / $grid-columns));
|
545
572
|
}
|
546
573
|
}
|
547
574
|
@mixin make-sm-column-push($columns) {
|
548
|
-
@media (min-width: $screen-
|
575
|
+
@media (min-width: $screen-sm) {
|
549
576
|
left: percentage(($columns / $grid-columns));
|
550
577
|
}
|
551
578
|
}
|
552
579
|
@mixin make-sm-column-pull($columns) {
|
553
|
-
@media (min-width: $screen-
|
580
|
+
@media (min-width: $screen-sm) {
|
554
581
|
right: percentage(($columns / $grid-columns));
|
555
582
|
}
|
556
583
|
}
|
@@ -565,7 +592,7 @@
|
|
565
592
|
padding-right: ($gutter / 2);
|
566
593
|
|
567
594
|
// Calculate width based on number of columns available
|
568
|
-
@media (min-width: $screen-
|
595
|
+
@media (min-width: $screen-md) {
|
569
596
|
float: left;
|
570
597
|
width: percentage(($columns / $grid-columns));
|
571
598
|
}
|
@@ -573,17 +600,17 @@
|
|
573
600
|
|
574
601
|
// Generate the large column offsets
|
575
602
|
@mixin make-md-column-offset($columns) {
|
576
|
-
@media (min-width: $screen-
|
603
|
+
@media (min-width: $screen-md) {
|
577
604
|
margin-left: percentage(($columns / $grid-columns));
|
578
605
|
}
|
579
606
|
}
|
580
607
|
@mixin make-md-column-push($columns) {
|
581
|
-
@media (min-width: $screen-
|
608
|
+
@media (min-width: $screen-md) {
|
582
609
|
left: percentage(($columns / $grid-columns));
|
583
610
|
}
|
584
611
|
}
|
585
612
|
@mixin make-md-column-pull($columns) {
|
586
|
-
@media (min-width: $screen-
|
613
|
+
@media (min-width: $screen-md) {
|
587
614
|
right: percentage(($columns / $grid-columns));
|
588
615
|
}
|
589
616
|
}
|
@@ -598,7 +625,7 @@
|
|
598
625
|
padding-right: ($gutter / 2);
|
599
626
|
|
600
627
|
// Calculate width based on number of columns available
|
601
|
-
@media (min-width: $screen-
|
628
|
+
@media (min-width: $screen-lg) {
|
602
629
|
float: left;
|
603
630
|
width: percentage(($columns / $grid-columns));
|
604
631
|
}
|
@@ -606,17 +633,17 @@
|
|
606
633
|
|
607
634
|
// Generate the large column offsets
|
608
635
|
@mixin make-lg-column-offset($columns) {
|
609
|
-
@media (min-width: $screen-
|
636
|
+
@media (min-width: $screen-lg) {
|
610
637
|
margin-left: percentage(($columns / $grid-columns));
|
611
638
|
}
|
612
639
|
}
|
613
640
|
@mixin make-lg-column-push($columns) {
|
614
|
-
@media (min-width: $screen-
|
641
|
+
@media (min-width: $screen-lg) {
|
615
642
|
left: percentage(($columns / $grid-columns));
|
616
643
|
}
|
617
644
|
}
|
618
645
|
@mixin make-lg-column-pull($columns) {
|
619
|
-
@media (min-width: $screen-
|
646
|
+
@media (min-width: $screen-lg) {
|
620
647
|
right: percentage(($columns / $grid-columns));
|
621
648
|
}
|
622
649
|
}
|
@@ -680,7 +707,7 @@
|
|
680
707
|
// element gets special love because it's special, and that's a fact!
|
681
708
|
|
682
709
|
@mixin input-size($parent, $input-height, $padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
|
683
|
-
#{$parent} {
|
710
|
+
#{$parent} {
|
684
711
|
height: $input-height;
|
685
712
|
padding: $padding-vertical $padding-horizontal;
|
686
713
|
font-size: $font-size;
|
@@ -691,7 +718,7 @@
|
|
691
718
|
height: $input-height;
|
692
719
|
line-height: $input-height;
|
693
720
|
}
|
694
|
-
|
721
|
+
|
695
722
|
textarea#{$parent} {
|
696
723
|
height: auto;
|
697
724
|
}
|