1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
.contextMenu{
display:none;
font-family: Verdana, Arial, Helvetica, sans-serif;
position: absolute;
background:#FAFAFA url(menubg.gif) repeat-y left top;
border: 1px solid #979797;
width:auto;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
font-size: 13px;
}
.contextMenu ul{
list-style: none;
padding: 0;
margin: 0;
}
.contextMenu li{
margin: 0px;
padding: 3px;
}
.contextMenu ul span{
display: block;
padding: 1px 5px;
padding-left: 28px;
text-decoration: none;
color: #000;
background-repeat: no-repeat;
}
.contextMenu ul li span:hover, .contextMenu ul li span:focus {
color: #FFF;
background-color: #AECFF7;
cursor: pointer;
cursor: hand;
}
.separateur{
border-top: 1px solid #E0E0E0;
height: 1px;
width: 182px;
} |