diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 17:48:12 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 17:48:12 +0100 |
| commit | 9f12605f7ebc9ca5575fc4ee9900e0e821366c4d (patch) | |
| tree | cbb1e9c475134ebbc22edefa4128b0a48f1e5770 /searx/static/oscar/less/bootstrap/component-animations.less | |
| parent | e3957d6adf5298dbc009a0892f5c088c397c586b (diff) | |
[enh] themes static content refactor
Diffstat (limited to 'searx/static/oscar/less/bootstrap/component-animations.less')
| -rw-r--r-- | searx/static/oscar/less/bootstrap/component-animations.less | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/searx/static/oscar/less/bootstrap/component-animations.less b/searx/static/oscar/less/bootstrap/component-animations.less deleted file mode 100644 index 9400a0d32..000000000 --- a/searx/static/oscar/less/bootstrap/component-animations.less +++ /dev/null @@ -1,31 +0,0 @@ -// -// 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(height .35s ease); -} |