details.css 492 B

1234567891011121314151617181920212223
  1. /**
  2. * @file
  3. * Collapsible details.
  4. *
  5. * @see collapse.js
  6. * @see http://nicolasgallagher.com/css-background-image-hacks/
  7. */
  8. details {
  9. margin-top: 1em;
  10. margin-bottom: 1em;
  11. border: 1px solid #ccc;
  12. }
  13. details > .details-wrapper {
  14. padding: 0.5em 1.5em;
  15. }
  16. /* @todo Regression: The summary of uncollapsible details are no longer
  17. vertically aligned with the .details-wrapper in browsers without native
  18. details support. */
  19. summary {
  20. padding: 0.2em 0.5em;
  21. cursor: pointer;
  22. }