From 510f4fe50ad30499adf1d19dd65ef694c414aacd Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 8 May 2014 15:41:08 -0700 Subject: Fixes #13478, reverts #10941 --- less/glyphicons.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'less') diff --git a/less/glyphicons.less b/less/glyphicons.less index 789c5e7f4..d3485dcb1 100644 --- a/less/glyphicons.less +++ b/less/glyphicons.less @@ -10,11 +10,11 @@ // Import the fonts @font-face { font-family: 'Glyphicons Halflings'; - src: ~"url('@{icon-font-path}@{icon-font-name}.eot')"; - src: ~"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')", - ~"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')", - ~"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')", - ~"url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg')"; + src: url('@{icon-font-path}@{icon-font-name}.eot'); + src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'), + url('@{icon-font-path}@{icon-font-name}.woff') format('woff'), + url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'), + url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg'); } // Catchall baseclass -- cgit v1.2.3 From 7da34cc0ec493355e8f6123875261e508d826d83 Mon Sep 17 00:00:00 2001 From: ItsJonQ Date: Wed, 21 May 2014 17:24:43 -0400 Subject: Applied translate3d to modal, navbar-fixed and affix to combat browser repaint --- less/modals.less | 4 ++-- less/navbar.less | 1 + less/utilities.less | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'less') diff --git a/less/modals.less b/less/modals.less index 093d05131..abf46cce8 100644 --- a/less/modals.less +++ b/less/modals.less @@ -31,10 +31,10 @@ // When fading in the modal, animate it to slide down &.fade .modal-dialog { - .translate(0, -25%); + .translate3d(0, -25%, 0); .transition-transform(~"0.3s ease-out"); } - &.in .modal-dialog { .translate(0, 0)} + &.in .modal-dialog { .translate3d(0, 0, 0) } } // Shell div to position the modal with bottom padding diff --git a/less/navbar.less b/less/navbar.less index b5e9a5f8d..55bfd2942 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -141,6 +141,7 @@ right: 0; left: 0; z-index: @zindex-navbar-fixed; + .translate3d(0, 0, 0); // Undo the rounded corners @media (min-width: @grid-float-breakpoint) { diff --git a/less/utilities.less b/less/utilities.less index a26031214..c0becabe3 100644 --- a/less/utilities.less +++ b/less/utilities.less @@ -53,4 +53,5 @@ .affix { position: fixed; + .translate3d(0, 0, 0); } -- cgit v1.2.3 From f87a023153c7bb460c3a2520fd1ec6310f60a11a Mon Sep 17 00:00:00 2001 From: Siarhei Khilko Date: Wed, 4 Jun 2014 15:20:36 -0700 Subject: Fix bug where a panel recieve extra top border https://github.com/twbs/bootstrap/issues/13734 A panel placed inside of a collapsible panel recieve extra top border. This commit reduces the effect of a selector to apply a border only to the collapsible panel body itself, not to any panel placed within it. --- less/panels.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/panels.less b/less/panels.less index 9afa4cbfd..f3b9582c3 100644 --- a/less/panels.less +++ b/less/panels.less @@ -206,7 +206,7 @@ .panel-heading { border-bottom: 0; - + .panel-collapse .panel-body { + + .panel-collapse > .panel-body { border-top: 1px solid @panel-inner-border; } } -- cgit v1.2.3 From 739bf379a93a2a396e23f0423167b3552eb88191 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 5 Jun 2014 13:31:39 -0700 Subject: set not-allowed cursor on disabled radio+checkbox labels; fixes #13281 [skip validator] [skip sauce] --- less/forms.less | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'less') diff --git a/less/forms.less b/less/forms.less index cb8a74fa1..b678d44fc 100644 --- a/less/forms.less +++ b/less/forms.less @@ -247,19 +247,35 @@ input[type="month"] { } // Apply same disabled cursor tweak as for inputs +// Some special care is needed because