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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
@import "modules";
#jsxc_buddylist {
list-style: none;
padding: 0;
margin: 0;
width: 204px;
z-index: 85;
.jsxc_unreadMsg {
.jsxc_name {
padding-right: 0px;
}
}
.jsxc_oneway {
.jsxc_avatar, .jsxc_caption {
opacity: 0.7;
}
}
.jsxc_right {
float: right;
margin-right: 6px;
div {
font-weight: bold;
text-align: center;
font-size: 13px;
line-height: 20px;
color: $white;
&:hover {
opacity: 1.0;
}
}
}
.jsxc_more {
margin-right: 6px;
z-index: 10;
position: relative;
}
.jsxc_options {
height: 20px;
float: left;
border-radius: 2px;
background-color: $roster_icon_bg;
> div {
height: 20px;
width: 20px;
float: left;
margin-right: 0 1px;
background-repeat: no-repeat;
background-position: center center;
opacity: 0.6;
cursor: pointer;
&:hover {
opacity: 1;
}
}
}
&.jsxc_hideOffline {
.jsxc_rosteritem[data-status='offline'] {
display: none;
}
}
}
|