You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
2.1 KiB
Plaintext
120 lines
2.1 KiB
Plaintext
11 months ago
|
.menu {
|
||
|
position: absolute;
|
||
|
margin: 0;
|
||
|
padding: 2px;
|
||
|
border-width: 1px;
|
||
|
border-style: solid;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.menu-inline {
|
||
|
position: relative;
|
||
|
}
|
||
|
.menu-item {
|
||
|
position: relative;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
cursor: pointer;
|
||
|
border-width: 1px;
|
||
|
border-style: solid;
|
||
|
}
|
||
|
.menu-text {
|
||
|
height: 20px;
|
||
|
line-height: 20px;
|
||
|
float: left;
|
||
|
padding-left: 28px;
|
||
|
}
|
||
|
.menu-icon {
|
||
|
position: absolute;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
left: 2px;
|
||
|
top: 50%;
|
||
|
margin-top: -8px;
|
||
|
}
|
||
|
.menu-rightarrow {
|
||
|
position: absolute;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
right: 0;
|
||
|
top: 50%;
|
||
|
margin-top: -8px;
|
||
|
}
|
||
|
.menu-line {
|
||
|
position: absolute;
|
||
|
left: 26px;
|
||
|
top: 0;
|
||
|
height: 2000px;
|
||
|
font-size: 1px;
|
||
|
}
|
||
|
.menu-sep {
|
||
|
margin: 3px 0px 3px 25px;
|
||
|
font-size: 1px;
|
||
|
}
|
||
|
.menu-noline .menu-line {
|
||
|
display: none;
|
||
|
}
|
||
|
.menu-noline .menu-sep {
|
||
|
margin-left: 0;
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
.menu-active {
|
||
|
-moz-border-radius: 5px 5px 5px 5px;
|
||
|
-webkit-border-radius: 5px 5px 5px 5px;
|
||
|
border-radius: 5px 5px 5px 5px;
|
||
|
}
|
||
|
.menu-item-disabled {
|
||
|
opacity: 0.5;
|
||
|
filter: alpha(opacity=50);
|
||
|
cursor: default;
|
||
|
}
|
||
|
.menu-text,
|
||
|
.menu-text span {
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
.menu-shadow {
|
||
|
position: absolute;
|
||
|
-moz-border-radius: 5px 5px 5px 5px;
|
||
|
-webkit-border-radius: 5px 5px 5px 5px;
|
||
|
border-radius: 5px 5px 5px 5px;
|
||
|
background: #777;
|
||
|
-moz-box-shadow: 2px 2px 3px #787878;
|
||
|
-webkit-box-shadow: 2px 2px 3px #787878;
|
||
|
box-shadow: 2px 2px 3px #787878;
|
||
|
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
|
||
|
}
|
||
|
.menu-rightarrow {
|
||
|
background: url('images/menu_arrows.png') no-repeat -32px center;
|
||
|
}
|
||
|
.menu-line {
|
||
|
border-left: 1px solid #444;
|
||
|
border-right: 1px solid #777;
|
||
|
}
|
||
|
.menu-sep {
|
||
|
border-top: 1px solid #444;
|
||
|
border-bottom: 1px solid #777;
|
||
|
}
|
||
|
.menu {
|
||
|
background-color: #666;
|
||
|
border-color: #444;
|
||
|
color: #fff;
|
||
|
}
|
||
|
.menu-content {
|
||
|
background: #666;
|
||
|
}
|
||
|
.menu-item {
|
||
|
border-color: transparent;
|
||
|
_border-color: #666;
|
||
|
}
|
||
|
.menu-active {
|
||
|
border-color: #555;
|
||
|
color: #fff;
|
||
|
background: #777;
|
||
|
}
|
||
|
.menu-active-disabled {
|
||
|
border-color: transparent;
|
||
|
background: transparent;
|
||
|
color: #fff;
|
||
|
}
|