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.

79 lines
1.4 KiB

  1. /*!
  2. * jQuery UI Menu 1.10.4
  3. * http://jqueryui.com
  4. *
  5. * Copyright 2014 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: 2px;
  14. margin: 0;
  15. display: block;
  16. outline: none;
  17. }
  18. .ui-menu .ui-menu {
  19. margin-top: -3px;
  20. position: absolute;
  21. }
  22. .ui-menu .ui-menu-item {
  23. margin: 0;
  24. padding: 0;
  25. width: 100%;
  26. /* support: IE10, see #8844 */
  27. list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  28. }
  29. .ui-menu .ui-menu-divider {
  30. margin: 5px -2px 5px -2px;
  31. height: 0;
  32. font-size: 0;
  33. line-height: 0;
  34. border-width: 1px 0 0 0;
  35. }
  36. .ui-menu .ui-menu-item a {
  37. text-decoration: none;
  38. display: block;
  39. padding: 2px .4em;
  40. line-height: 1.5;
  41. min-height: 0; /* support: IE7 */
  42. font-weight: normal;
  43. }
  44. .ui-menu .ui-menu-item a.ui-state-focus,
  45. .ui-menu .ui-menu-item a.ui-state-active {
  46. font-weight: normal;
  47. margin: -1px;
  48. }
  49. .ui-menu .ui-state-disabled {
  50. font-weight: normal;
  51. margin: .4em 0 .2em;
  52. line-height: 1.5;
  53. }
  54. .ui-menu .ui-state-disabled a {
  55. cursor: default;
  56. }
  57. /* icon support */
  58. .ui-menu-icons {
  59. position: relative;
  60. }
  61. .ui-menu-icons .ui-menu-item a {
  62. position: relative;
  63. padding-left: 2em;
  64. }
  65. /* left-aligned */
  66. .ui-menu .ui-icon {
  67. position: absolute;
  68. top: .2em;
  69. left: .2em;
  70. }
  71. /* right-aligned */
  72. .ui-menu .ui-menu-icon {
  73. position: static;
  74. float: right;
  75. }