You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
425 B

  1. .fade {
  2. @include transition($transition-fade);
  3. &:not(.show) {
  4. opacity: 0;
  5. }
  6. }
  7. // scss-docs-start collapse-classes
  8. .collapse {
  9. &:not(.show) {
  10. display: none;
  11. }
  12. }
  13. .collapsing {
  14. height: 0;
  15. overflow: hidden;
  16. @include transition($transition-collapse);
  17. &.collapse-horizontal {
  18. width: 0;
  19. height: auto;
  20. @include transition($transition-collapse-width);
  21. }
  22. }
  23. // scss-docs-end collapse-classes