From 132732e4220fb73c26ab07b4486b2e5ad91100ee Mon Sep 17 00:00:00 2001 From: Iqbal Kabir Date: Thu, 17 Apr 2014 13:21:09 +0600 Subject: Dropdown menu in justified button-group It seems that dropdown-menu in justified button-group appears at the far left of the group. Check the problem in [Bootstrap site](http://getbootstrap.com/components/#btn-groups-justified). --- less/button-groups.less | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'less') diff --git a/less/button-groups.less b/less/button-groups.less index ef11cf12a..94e2d8971 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; + } } -- cgit v1.2.3 From 056a192f95de23b6bb9092b224f36f85fe253b04 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 10 May 2014 17:39:34 +0100 Subject: Squashed commit of the following: commit 81324491f4913d6797c3c9e4df83a1aefd7d9116 Author: Daniel Date: Sat May 10 17:37:29 2014 +0100 use opacity mixin commit 694b0a3fcd196e8cba9e4c23850f903c0804cb44 Author: Daniel Husar Date: Fri May 9 13:47:35 2014 +0100 Update button-groups.less --- less/button-groups.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/button-groups.less b/less/button-groups.less index ef11cf12a..6dbb09f4c 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -232,5 +232,5 @@ [data-toggle="buttons"] > .btn > input[type="checkbox"] { position: absolute; z-index: -1; - opacity: 0; + .opacity(0); } -- cgit v1.2.3 From 95683ddfca4134b119a19143320b17d43cee64cd Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 14 May 2014 15:33:41 -0700 Subject: change note in .resizable() mixin for accuracy Not a Safari bug. It's standards-compliant. Quoting from http://www.w3.org/TR/css3-ui/#resize : > ### 8.1. `resize` property > > * Applies to: elements with `overflow` other than `visible` > > The `resize` property applies to elements whose computed `overflow` value is something other than `visible`. Original comment was added in commit 648c4689273647c321dd6e3979d910282e9a9339. --- less/mixins/resize.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') 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` } -- cgit v1.2.3 From 7287582cf2187c59cfdd318fb03ceb2408f762f0 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 14 May 2014 16:41:40 -0700 Subject: more precise docs link --- less/responsive-utilities.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less index 93f2e8ea8..abbeeeb43 100644 --- a/less/responsive-utilities.less +++ b/less/responsive-utilities.less @@ -14,7 +14,7 @@ // 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/2012/10/ie10-snap-mode-and-responsive-design/ @-ms-viewport { -- cgit v1.2.3 From f6bebbd83af66476da63fada2766165dac9fb0a7 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 14 May 2014 17:08:53 -0700 Subject: reference other more recent source regarding the IE viewport bug --- less/responsive-utilities.less | 1 + 1 file changed, 1 insertion(+) (limited to 'less') diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less index abbeeeb43..b1db31d7b 100644 --- a/less/responsive-utilities.less +++ b/less/responsive-utilities.less @@ -15,6 +15,7 @@ // // Issue: https://github.com/twbs/bootstrap/issues/10497 // 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 { -- cgit v1.2.3