You are here

menu.css in Zircon Profile 8.0

/*!
 * jQuery UI Menu 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/menu/#theming
 */
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

File

core/assets/vendor/jquery.ui/themes/base/menu.css
View source
  1. /*!
  2. * jQuery UI Menu 1.11.4
  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/menu/#theming
  10. */
  11. .ui-menu {
  12. list-style: none;
  13. padding: 0;
  14. margin: 0;
  15. display: block;
  16. outline: none;
  17. }
  18. .ui-menu .ui-menu {
  19. position: absolute;
  20. }
  21. .ui-menu .ui-menu-item {
  22. position: relative;
  23. margin: 0;
  24. padding: 3px 1em 3px .4em;
  25. cursor: pointer;
  26. min-height: 0; /* support: IE7 */
  27. /* support: IE10, see #8844 */
  28. list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  29. }
  30. .ui-menu .ui-menu-divider {
  31. margin: 5px 0;
  32. height: 0;
  33. font-size: 0;
  34. line-height: 0;
  35. border-width: 1px 0 0 0;
  36. }
  37. .ui-menu .ui-state-focus,
  38. .ui-menu .ui-state-active {
  39. margin: -1px;
  40. }
  41. /* icon support */
  42. .ui-menu-icons {
  43. position: relative;
  44. }
  45. .ui-menu-icons .ui-menu-item {
  46. padding-left: 2em;
  47. }
  48. /* left-aligned */
  49. .ui-menu .ui-icon {
  50. position: absolute;
  51. top: 0;
  52. bottom: 0;
  53. left: .2em;
  54. margin: auto 0;
  55. }
  56. /* right-aligned */
  57. .ui-menu .ui-menu-icon {
  58. left: auto;
  59. right: 0;
  60. }