mirror of
https://gitee.com/farsunset/cim.git
synced 2025-07-24 00:31:47 +08:00
138 lines
2.6 KiB
CSS
138 lines
2.6 KiB
CSS
@CHARSET "UTF-8";
|
|
|
|
/* left nav */
|
|
.ui-vnav {
|
|
position: fixed;
|
|
top: 100px;
|
|
left: 0;
|
|
width: 180px;
|
|
min-height: 560px;
|
|
height: 960px;
|
|
background: #eaedf4;
|
|
_overflow: hidden;
|
|
border-right: 1px solid #d8dce5;
|
|
}
|
|
|
|
|
|
.ui-vnav .ui-bar {
|
|
height: 20px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ui-vnav .ui-bd {
|
|
display: block;
|
|
margin: 9px 0;
|
|
width: 100%;
|
|
height: 0px;
|
|
line-height: 0px;
|
|
border-top: 1px solid #afb1b2;
|
|
border-bottom: 1px solid #eaeaea;
|
|
}
|
|
|
|
.ui-vnav .ui-item {
|
|
height: 45px;
|
|
line-height: 45px;
|
|
padding: 0 10px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
border-bottom: 1px #eaedf4 solid;
|
|
border-top: 1px #eaedf4 solid;
|
|
}
|
|
.ui-vnav .ui-item:hover {
|
|
color: white;
|
|
background-color: #e0e4ed;
|
|
border-bottom: 1px #d8dce5 solid;
|
|
border-top: 1px #d8dce5 solid;
|
|
|
|
}
|
|
|
|
.ui-vnav .current,.ui-vnav .current:hover {
|
|
background-color: #ced4e0;
|
|
border-bottom: 1px #c8ccd5 solid;
|
|
border-top: 1px #c8ccd5 solid;
|
|
border-left: 5px #5FA0D3 solid;
|
|
}
|
|
|
|
|
|
.ui-vnav .ui-item a {
|
|
position: relative;
|
|
display: block;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
font-family: "\5FAE\8F6F\96C5\9ED1","\534E\6587\7EC6\9ED1";
|
|
font-size: 18px;
|
|
color: #666;
|
|
text-decoration:none;
|
|
}
|
|
|
|
.ui-vnav .ui-shd {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
width: 4px;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
border-right: 1px solid #b5b5b6;
|
|
background-image: -webkit-linear-gradient(left, transparent, rgba(0,0,0,.1));
|
|
background-image: -moz-linear-gradient(left, transparent, rgba(0,0,0,.1));
|
|
background-image: -o-linear-gradient(left, transparent, rgba(0,0,0,.1));
|
|
background-image: linear-gradient(top right,transparent, #c9cacb);
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#00DBDCDD', EndColorStr='#B5B5B6', gradientType=1);
|
|
}
|
|
|
|
/* left nav */
|
|
|
|
/* header */
|
|
|
|
|
|
|
|
|
|
|
|
.user-avatar-hover {
|
|
background: #fff url(../img/avatar-hover-bg.png?t=1) no-repeat left top;
|
|
}
|
|
.user-avatar {
|
|
display: block;
|
|
width: 70px;
|
|
padding: 0 5px;
|
|
height: 50px;
|
|
}
|
|
|
|
.user-avatar .ui-arr {
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
background: url(../img/disk-spr.png) -105px -171px no-repeat;
|
|
cursor: pointer;
|
|
_background-image: url(../img/disk-spr-ie6.png);
|
|
}
|
|
|
|
.ui-pop-user {
|
|
width: 168px;
|
|
right: 0;
|
|
top: 50px;
|
|
background: #FFF;
|
|
border-color: #abb0bb;
|
|
border-top: none;
|
|
border-radius: 0;
|
|
color: #666;
|
|
z-index: 10;
|
|
}
|
|
.ui-pop-user .ui-pop-head {
|
|
padding: 0 15px;
|
|
}
|
|
.ui-pop-user .user-nick {
|
|
display: inline-block;
|
|
width: 138px;
|
|
line-height: 38px;
|
|
color: #333333;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-ms-text-overflow: ellipsis;
|
|
-o-text-overflow: ellipsis;
|
|
-moz-binding: url("ellipsis.xml#ellipsis");
|
|
}
|
|
|
|
|