source: trunk/web/addons/job_monarch/lib/extjs/resources/css/menu.css @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 2.9 KB
Line 
1/*
2 * Ext JS Library 2.2.1
3 * Copyright(c) 2006-2009, Ext JS, LLC.
4 * licensing@extjs.com
5 *
6 * http://extjs.com/license
7 */
8
9.x-menu {
10        border: 1px solid #718bb7;
11        z-index: 15000;
12        zoom: 1;
13        background: #f0f0f0 url(../images/default/menu/menu.gif) repeat-y;
14        padding: 2px;
15}
16.x-menu a {
17    text-decoration: none !important;
18}
19.ext-ie .x-menu {
20    zoom:1;
21    overflow:hidden;
22}
23.x-menu-list{
24        background:transparent;
25        border:0 none;
26}
27.x-menu li{
28        line-height:100%;
29}
30.x-menu li.x-menu-sep-li{
31        font-size:1px;
32        line-height:1px;
33}
34.x-menu-list-item{
35        font:normal 11px tahoma,arial, sans-serif;
36    white-space: nowrap;
37    -moz-user-select: none;
38        -khtml-user-select: none;
39        display:block;
40        padding:1px;
41}
42.x-menu-item-arrow{
43        background:transparent url(../images/default/menu/menu-parent.gif) no-repeat right;
44}
45.x-menu-sep {
46        display:block;
47        font-size:1px;
48        line-height:1px;
49        margin: 2px 3px;
50    background-color:#e0e0e0;
51        border-bottom:1px solid #fff;
52    overflow:hidden;
53}
54.x-menu-focus {
55        position:absolute;
56        left:-1px;
57        top:-1px;
58        width:1px;
59        height:1px;
60    line-height:1px;
61    font-size:1px;
62    -moz-outline:0 none;
63    outline:0 none;
64    -moz-user-select: text;
65    -khtml-user-select: text;
66    overflow:hidden;
67    display:block;
68}
69.x-menu a.x-menu-item {
70        display:block;
71        line-height:16px;
72        padding:3px 21px 3px 27px;
73        white-space: nowrap;
74        text-decoration:none;
75        color:#222;
76        -moz-outline: 0 none;
77        outline: 0 none;
78        cursor:pointer;
79    position: relative; 
80}
81.x-menu-item-active {
82        background: #ebf3fd url(../images/default/menu/item-over.gif) repeat-x left bottom;
83        border:1px solid #aaccf6;
84        padding: 0;
85}
86.x-menu-item-active a.x-menu-item {
87    color: #233d6d;
88}
89
90.x-menu-item-icon {
91        border: 0 none;
92        height: 16px;
93        padding: 0;
94        vertical-align: top;
95        width: 16px;
96        position: absolute;
97    left: 3px;
98    top: 3px;
99    margin: 0;
100    background-position:center;
101}
102
103.x-menu-check-item .x-menu-item-icon{
104        background: transparent url(../images/default/menu/unchecked.gif) no-repeat center;
105}
106
107.x-menu-item-checked .x-menu-item-icon{
108        background-image:url(../images/default/menu/checked.gif);
109}
110.x-menu-group-item .x-menu-item-icon{
111        background: transparent;
112}
113
114.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
115    background: transparent url(../images/default/menu/group-checked.gif) no-repeat center;
116}
117
118.x-menu-plain {
119        background:#fff !important;
120}
121.x-menu-date-item{
122        padding:0;
123}
124
125.x-menu .x-color-palette, .x-menu .x-date-picker{
126    margin-left: 26px;
127         margin-right:4px;
128}
129.x-menu .x-date-picker{
130    border:1px solid #a3bad9;
131    margin-top:2px;
132    margin-bottom:2px;
133}
134.x-menu-plain .x-color-palette, .x-menu-plain .x-date-picker{
135         margin: 0;
136         border: 0 none;
137}
138.x-date-menu {
139   padding:0 !important;
140}
141
142.x-cycle-menu .x-menu-item-checked {
143    border:1px dotted #a3bae9 !important;
144    background:#DFE8F6;
145        padding:0;
146}
Note: See TracBrowser for help on using the repository browser.