source: trunk/themes/default/js/ui/theme/jquery.ui.menu.css @ 20824

Last change on this file since 20824 was 20824, checked in by rvelices, 11 years ago

upgraded jquery ui from 1.9.0 to 1.10.1

File size: 1.3 KB
Line 
1/*!
2 * jQuery UI Menu 1.10.1
3 * http://jqueryui.com
4 *
5 * Copyright 2013 jQuery Foundation and other contributors
6 * Released under the MIT license.
7 * http://jquery.org/license
8 *
9 * http://docs.jquery.com/UI/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}
27.ui-menu .ui-menu-divider {
28        margin: 5px -2px 5px -2px;
29        height: 0;
30        font-size: 0;
31        line-height: 0;
32        border-width: 1px 0 0 0;
33}
34.ui-menu .ui-menu-item a {
35        text-decoration: none;
36        display: block;
37        padding: 2px .4em;
38        line-height: 1.5;
39        min-height: 0; /* support: IE7 */
40        font-weight: normal;
41}
42.ui-menu .ui-menu-item a.ui-state-focus,
43.ui-menu .ui-menu-item a.ui-state-active {
44        font-weight: normal;
45        margin: -1px;
46}
47
48.ui-menu .ui-state-disabled {
49        font-weight: normal;
50        margin: .4em 0 .2em;
51        line-height: 1.5;
52}
53.ui-menu .ui-state-disabled a {
54        cursor: default;
55}
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
66/* left-aligned */
67.ui-menu .ui-icon {
68        position: absolute;
69        top: .2em;
70        left: .2em;
71}
72
73/* right-aligned */
74.ui-menu .ui-menu-icon {
75        position: static;
76        float: right;
77}
Note: See TracBrowser for help on using the repository browser.