From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- .../bootstrap/less/component-animations.less | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 public/bower_components/bootstrap/less/component-animations.less (limited to 'public/bower_components/bootstrap/less/component-animations.less') diff --git a/public/bower_components/bootstrap/less/component-animations.less b/public/bower_components/bootstrap/less/component-animations.less new file mode 100755 index 0000000..0bcee91 --- /dev/null +++ b/public/bower_components/bootstrap/less/component-animations.less @@ -0,0 +1,33 @@ +// +// Component animations +// -------------------------------------------------- + +// 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/twbs/bootstrap/pull/3552. + +.fade { + opacity: 0; + .transition(opacity .15s linear); + &.in { + opacity: 1; + } +} + +.collapse { + display: none; + + &.in { display: block; } + tr&.in { display: table-row; } + tbody&.in { display: table-row-group; } +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + .transition-property(~"height, visibility"); + .transition-duration(.35s); + .transition-timing-function(ease); +} -- cgit v1.2.3