diff options
| author | Mark Otto <[email protected]> | 2014-05-20 23:27:40 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-05-20 23:27:40 -0700 |
| commit | 707b362b801d7a430c1911493a65085e81b4ee8d (patch) | |
| tree | b659b23c3884e9100c1e800161e96110a0853294 /less | |
| parent | bdd822a94cdf2d452e067569e76ca1537dc74d8d (diff) | |
| parent | 3dd1531d81c90d6d1cf04962032f868d315ab21c (diff) | |
| download | bootstrap-707b362b801d7a430c1911493a65085e81b4ee8d.tar.xz bootstrap-707b362b801d7a430c1911493a65085e81b4ee8d.zip | |
Merge branch 'master' into docs-theme-toggler
Conflicts:
docs/assets/css/docs.min.css
Diffstat (limited to 'less')
| -rw-r--r-- | less/button-groups.less | 6 | ||||
| -rw-r--r-- | less/mixins/resize.less | 2 | ||||
| -rw-r--r-- | less/responsive-utilities.less | 3 |
3 files changed, 8 insertions, 3 deletions
diff --git a/less/button-groups.less b/less/button-groups.less index ef11cf12a..7021ecd17 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -216,6 +216,10 @@ > .btn-group .btn { width: 100%; } + + > .btn-group .dropdown-menu { + left: auto; + } } @@ -232,5 +236,5 @@ [data-toggle="buttons"] > .btn > input[type="checkbox"] { position: absolute; z-index: -1; - opacity: 0; + .opacity(0); } diff --git a/less/mixins/resize.less b/less/mixins/resize.less index fabb15d7f..3acd3afdb 100644 --- a/less/mixins/resize.less +++ b/less/mixins/resize.less @@ -2,5 +2,5 @@ .resizable(@direction) { resize: @direction; // Options: horizontal, vertical, both - overflow: auto; // Safari fix + overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` } diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less index 93f2e8ea8..b1db31d7b 100644 --- a/less/responsive-utilities.less +++ b/less/responsive-utilities.less @@ -14,7 +14,8 @@ // For more information, see the following: // // Issue: https://github.com/twbs/bootstrap/issues/10497 -// Docs: http://getbootstrap.com/getting-started/#browsers +// Docs: http://getbootstrap.com/getting-started/#support-ie10-width +// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ // Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/ @-ms-viewport { |
