Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorJan Stevens <jan@playpass.be>2015-08-20 11:23:02 +0300
committerJan Stevens <jan@playpass.be>2015-08-20 11:23:02 +0300
commitf895b3160c1054e9aeb3a4ecb5651e97b03e5a0a (patch)
tree2fce501403af6cdc56f2735e7efb72833e2a1e79 /assets
parentfd905bfdcfbbd9739a7135991d8abcdbebde7346 (diff)
Updated with newest alpha so we can compile it on ruby
Diffstat (limited to 'assets')
-rw-r--r--assets/stylesheets/bootstrap/_buttons.scss2
-rw-r--r--assets/stylesheets/bootstrap/_reboot.scss2
-rw-r--r--assets/stylesheets/bootstrap/_variables.scss2
-rw-r--r--assets/stylesheets/bootstrap/mixins/_grid-framework.scss10
4 files changed, 7 insertions, 9 deletions
diff --git a/assets/stylesheets/bootstrap/_buttons.scss b/assets/stylesheets/bootstrap/_buttons.scss
index 97d2251..265f357 100644
--- a/assets/stylesheets/bootstrap/_buttons.scss
+++ b/assets/stylesheets/bootstrap/_buttons.scss
@@ -48,7 +48,7 @@
}
// Future-proof disabling of clicks on `<a>` elements
-a.btn.disaabled,
+a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none;
}
diff --git a/assets/stylesheets/bootstrap/_reboot.scss b/assets/stylesheets/bootstrap/_reboot.scss
index fe466da..de32aae 100644
--- a/assets/stylesheets/bootstrap/_reboot.scss
+++ b/assets/stylesheets/bootstrap/_reboot.scss
@@ -15,7 +15,7 @@
// recommendations on resolving such conflicts, see
// http://getbootstrap.com/getting-started/#third-box-sizing.
//
-// Credit: shttp://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
+// Credit: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
html {
box-sizing: border-box;
diff --git a/assets/stylesheets/bootstrap/_variables.scss b/assets/stylesheets/bootstrap/_variables.scss
index b655a3f..2cd88f6 100644
--- a/assets/stylesheets/bootstrap/_variables.scss
+++ b/assets/stylesheets/bootstrap/_variables.scss
@@ -4,7 +4,7 @@
// the Bootstrap defaults without modifying key, versioned files.
-// Table of ontents
+// Table of Contents
//
// Colors
// Options
diff --git a/assets/stylesheets/bootstrap/mixins/_grid-framework.scss b/assets/stylesheets/bootstrap/mixins/_grid-framework.scss
index ad2060c..aa5f492 100644
--- a/assets/stylesheets/bootstrap/mixins/_grid-framework.scss
+++ b/assets/stylesheets/bootstrap/mixins/_grid-framework.scss
@@ -22,15 +22,13 @@
@include media-breakpoint-up($breakpoint) {
// Work around cross-media @extend (https://github.com/sass/sass/issues/1050)
%grid-column-float-#{$breakpoint} {
- @if $enable-flex {
- // Do nothing
- } @else {
- float: left;
- }
+ float: left;
}
@for $i from 1 through $columns {
.col-#{$breakpoint}-#{$i} {
- @extend %grid-column-float-#{$breakpoint};
+ @if not $enable-flex {
+ @extend %grid-column-float-#{$breakpoint};
+ }
@include make-col-span($i, $columns);
}
}