forked from Gitlink/forgeplus-react
42 lines
828 B
CSS
42 lines
828 B
CSS
.tpmpointer{
|
|
cursor: pointer;
|
|
}
|
|
.Permanentban{
|
|
color:#5091FF !important;
|
|
border-color: #5091FF !important;
|
|
}
|
|
|
|
/*md编辑器中输入@弹出可选人列表样式*/
|
|
.at_who_list{
|
|
position: absolute;
|
|
z-index: 100;
|
|
width: 180px;
|
|
max-height: 160px;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 4px 8px 2px rgba(212, 212, 212, 0.5);
|
|
border-radius: 4px;
|
|
overflow-y: scroll;
|
|
cursor: pointer;
|
|
}
|
|
.at_who{
|
|
height: 40px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
border-bottom: 1px solid rgba(212, 212, 212, 0.5);
|
|
padding: 0 4px;
|
|
}
|
|
.at_who.active{
|
|
background: #F3F4F6;
|
|
}
|
|
.at_who img{
|
|
width:30px;
|
|
height:30px;
|
|
border-radius:50%;
|
|
margin-right: 10px;
|
|
}
|
|
.at_who span{
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
} |