Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / webapp / static / fusion / raptor / css / tree / context-menu.css
1 /************************************************************************************************************
2
3         DHTML Suite for Applications
4         (C) www.dhtmlgoodies.com, August 2006
5
6         CSS for the context menu class.
7         
8         Terms of use:
9         Look at the terms of use at http://www.dhtmlgoodies.com/index.html?page=termsOfUse
10         
11         Thank you!
12         
13         www.dhtmlgoodies.com
14         Alf Magne Kalleland
15
16 ************************************************************************************************************/
17
18 .DHTMLSuite_contextMenu{        /* The bar that is parent of the menu strip */
19         position:absolute;
20         background-color:#FFF;
21         border:1px solid #000;
22         padding:1px;
23 }
24
25 .DHTMLSuite_contextMenu li{
26         list-style-type:none;
27         padding:1px;    /* Equal to border + padding of .DHTMLSuite_item_mouseover */
28         border:0px;
29         cursor: pointer;
30         background-repeat:no-repeat;
31         background-position:left center;
32 }
33 .DHTMLSuite_contextMenu .DHTMLSuite_item_mouseover{
34         border:1px solid #000;
35         background-color:#EEE;
36         padding:0px;    /* Padding + border of this element should be equal to padding of li element (see above ) */
37 }
38 .DHTMLSuite_contextMenu ul{
39         margin:0px;
40         padding:0px;
41 }
42
43 .DHTMLSuite_contextMenu a{
44         text-decoration:none;
45         color:#000;
46         padding-left:25px;
47 }
48
49 .DHTMLSuite_contextMenu div.DHTMLSuite_contextMenu_separator{   /* Css for the separator line */
50         height:1px;
51         line-height:1px;
52         padding:0px;
53         background-color: #AAA;
54         overflow:hidden;
55         margin-top:1px;
56         margin-bottom:1px;
57 }