From f1736e2d32c7f473e8b6a9d466dca4ee31a885cb Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 25 Feb 2014 10:17:44 -0800 Subject: update GitHub issue link in comment --- less/component-animations.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/component-animations.less b/less/component-animations.less index 1efe45e2c..ae95fe89d 100644 --- a/less/component-animations.less +++ b/less/component-animations.less @@ -5,7 +5,7 @@ // Heads up! // // We don't use the `.opacity()` mixin here since it causes a bug with text -// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552. +// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. .fade { opacity: 0; -- cgit v1.2.3 From b878491b9a76e2c85787e38e6cc878cd3dca909f Mon Sep 17 00:00:00 2001 From: Lipis Date: Wed, 26 Feb 2014 17:59:36 +0100 Subject: Added the very useful .animation-fill-mode() mixin I think that's the only animation property that was missing and it's quite useful. https://developer.mozilla.org/en-US/docs/Web/CSS/animation-fill-mode --- less/mixins.less | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'less') diff --git a/less/mixins.less b/less/mixins.less index 4432cfc2d..0b4cf88a9 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -243,6 +243,10 @@ -webkit-animation-direction: @direction; animation-direction: @direction; } +.animation-fill-mode(@fill-mode) { + -webkit-animation-fill-mode: @fill-mode; + animation-fill-mode: @fill-mode; +} // Backface visibility // Prevent browsers from flickering when using CSS 3D transforms. -- cgit v1.2.3 From 2e02ed4e0c285ef36726f553e82819e76ec109fd Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Feb 2014 11:08:24 -0800 Subject: Fixes #12851: it's not a tumah --- less/mixins.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/mixins.less b/less/mixins.less index 4432cfc2d..66fd041f6 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -379,7 +379,7 @@ @media only screen and (-webkit-min-device-pixel-ratio: 2), - only screen and ( min--moz-device-pixel-ratio: 2), + only screen and ( min--moz-device-pixel-ratio: 2), // Not a typo only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), -- cgit v1.2.3 From 6bd54ef14b880ed71844011f71484ac2e6f7d132 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Feb 2014 12:17:08 -0800 Subject: 100% less tumah --- less/mixins.less | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'less') diff --git a/less/mixins.less b/less/mixins.less index cb3b12968..727cf55a1 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -376,14 +376,15 @@ // Retina images // -// Short retina mixin for setting background-image and -size +// Short retina mixin for setting background-image and -size. Note that the +// spelling of `min--moz-device-pixel-ratio` is intentional. .img-retina(@file-1x; @file-2x; @width-1x; @height-1x) { background-image: url("@{file-1x}"); @media only screen and (-webkit-min-device-pixel-ratio: 2), - only screen and ( min--moz-device-pixel-ratio: 2), // Not a typo + only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), -- cgit v1.2.3 From e381635b1faf7480bcf54618804a62dd4a049a93 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 3 Mar 2014 21:39:53 -0800 Subject: Fixes #12593: Add support for table bodies and table rows to the collapse plugin --- less/component-animations.less | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'less') diff --git a/less/component-animations.less b/less/component-animations.less index ae95fe89d..9400a0d32 100644 --- a/less/component-animations.less +++ b/less/component-animations.less @@ -17,10 +17,12 @@ .collapse { display: none; - &.in { - display: block; - } + + &.in { display: block; } + tr&.in { display: table-row; } + tbody&.in { display: table-row-group; } } + .collapsing { position: relative; height: 0; -- cgit v1.2.3