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.

accordion.scss 600B

123456789101112131415161718192021222324252627282930313233
  1. @mixin base-accordion {
  2. .v-accordion {
  3. position: relative;
  4. outline: none;
  5. overflow: visible;
  6. text-align: left; /* Force default alignment */
  7. font-size: 0;
  8. }
  9. .v-accordion-item {
  10. position: relative;
  11. display: inline-block;
  12. width: 100%;
  13. }
  14. .v-accordion-item-caption {
  15. overflow: visible;
  16. white-space: nowrap;
  17. background: #eee;
  18. border-bottom: 1px solid #ddd;
  19. }
  20. .v-accordion-item-caption .v-caption {
  21. cursor: pointer;
  22. font-size: $font-size;
  23. }
  24. .v-accordion-item-open .v-accordion-item-caption .v-caption {
  25. cursor: default;
  26. }
  27. .v-accordion-item-content {
  28. position: absolute;
  29. width: 100%;
  30. }
  31. }