logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

component-animations.less (585B)


  1. //
  2. // Component animations
  3. // --------------------------------------------------
  4. // Heads up!
  5. //
  6. // We don't use the `.opacity()` mixin here since it causes a bug with text
  7. // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
  8. .fade {
  9. opacity: 0;
  10. .transition(opacity .15s linear);
  11. &.in {
  12. opacity: 1;
  13. }
  14. }
  15. .collapse {
  16. display: none;
  17. &.in { display: block; }
  18. tr&.in { display: table-row; }
  19. tbody&.in { display: table-row-group; }
  20. }
  21. .collapsing {
  22. position: relative;
  23. height: 0;
  24. overflow: hidden;
  25. .transition(height .35s ease);
  26. }