You are here

accordion.css in Drupal 8

/*!
 * jQuery UI Accordion 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/accordion/#theming
 */
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}

File

core/assets/vendor/jquery.ui/themes/base/accordion.css
View source
  1. /*!
  2. * jQuery UI Accordion 1.12.1
  3. * http://jqueryui.com
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license.
  7. * http://jquery.org/license
  8. *
  9. * http://api.jqueryui.com/accordion/#theming
  10. */
  11. .ui-accordion .ui-accordion-header {
  12. display: block;
  13. cursor: pointer;
  14. position: relative;
  15. margin: 2px 0 0 0;
  16. padding: .5em .5em .5em .7em;
  17. font-size: 100%;
  18. }
  19. .ui-accordion .ui-accordion-content {
  20. padding: 1em 2.2em;
  21. border-top: 0;
  22. overflow: auto;
  23. }