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.

63 lines
1.1 KiB

  1. /*!
  2. * jQuery UI Menu 1.11.3
  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. }