From 4642156cbc6da4a9e25dce2168f2fb9b726de042 Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Tue, 6 Aug 2013 15:19:12 -0400 Subject: unignore bower_components --- .../bootstrap/less/component-animations.less | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 2/bower_components/bootstrap/less/component-animations.less (limited to '2/bower_components/bootstrap/less/component-animations.less') diff --git a/2/bower_components/bootstrap/less/component-animations.less b/2/bower_components/bootstrap/less/component-animations.less new file mode 100644 index 00000000..d614263a --- /dev/null +++ b/2/bower_components/bootstrap/less/component-animations.less @@ -0,0 +1,22 @@ +// +// Component animations +// -------------------------------------------------- + + +.fade { + opacity: 0; + .transition(opacity .15s linear); + &.in { + opacity: 1; + } +} + +.collapse { + position: relative; + height: 0; + overflow: hidden; + .transition(height .35s ease); + &.in { + height: auto; + } +} -- cgit v1.2.3