You are here

selectmenu.css in Drupal 8

/*!
 * jQuery UI Selectmenu 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/selectmenu/#theming
 */
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}

File

core/assets/vendor/jquery.ui/themes/base/selectmenu.css
View source
  1. /*!
  2. * jQuery UI Selectmenu 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/selectmenu/#theming
  10. */
  11. .ui-selectmenu-menu {
  12. padding: 0;
  13. margin: 0;
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. display: none;
  18. }
  19. .ui-selectmenu-menu .ui-menu {
  20. overflow: auto;
  21. overflow-x: hidden;
  22. padding-bottom: 1px;
  23. }
  24. .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  25. font-size: 1em;
  26. font-weight: bold;
  27. line-height: 1.5;
  28. padding: 2px 0.4em;
  29. margin: 0.5em 0 0 0;
  30. height: auto;
  31. border: 0;
  32. }
  33. .ui-selectmenu-open {
  34. display: block;
  35. }
  36. .ui-selectmenu-text {
  37. display: block;
  38. margin-right: 20px;
  39. overflow: hidden;
  40. text-overflow: ellipsis;
  41. }
  42. .ui-selectmenu-button.ui-button {
  43. text-align: left;
  44. white-space: nowrap;
  45. width: 14em;
  46. }
  47. .ui-selectmenu-icon.ui-icon {
  48. float: right;
  49. margin-top: 0;
  50. }