Upgrade Alias-Agent to 0.2.0 --------- Co-authored-by: ZiTao-Li <zitao.l@alibaba-inc.com> Co-authored-by: xieyxclack <yuexiang.xyx@alibaba-inc.com> Co-authored-by: Zexi Li <tomleeze@qq.com> Co-authored-by: SSSuperDan <dlaura2218@gmail.com> Co-authored-by: lalaliat <78087788+lalaliat@users.noreply.github.com> Co-authored-by: jinli.yl <jinli.yl@alibaba-inc.com> Co-authored-by: Dengjiaji <dengjiaji.djj@alibaba-inc.com> Co-authored-by: 于南 <zengtianjing.ztj@alibaba-inc.com> Co-authored-by: JustinDing <166603159+sleepy-bird-world@users.noreply.github.com> Co-authored-by: y1y5 <269557841@qq.com> Co-authored-by: 柳佚 <yly287738@alibaba-inc.com> Co-authored-by: LiangguiWeng <347185100@qq.com> Co-authored-by: 潜星 <zhijian.mzj@alibaba-inc.com> Co-authored-by: StCarmen <1106135234@qq.com> Co-authored-by: LuYi <yilu_2000@outlook.com> Co-authored-by: 刺葳 <ciwei.cy@alibaba-inc.com>
61 lines
996 B
SCSS
61 lines
996 B
SCSS
.headerButton {
|
|
@apply w-10 h-10 flex items-center justify-center rounded-lg transition-all duration-200 ease-in-out;
|
|
|
|
img {
|
|
@apply opacity-60 transition-all duration-200;
|
|
}
|
|
|
|
&:hover img {
|
|
@apply opacity-100 scale-105;
|
|
}
|
|
}
|
|
|
|
.userPopover {
|
|
:global {
|
|
.sps-popover-content {
|
|
.sps-popover-inner {
|
|
padding: 0 !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.popoverAvatarContent {
|
|
min-width: 160px;
|
|
min-height: 106px;
|
|
padding: 5px;
|
|
|
|
.userInfo {
|
|
padding: 8px
|
|
}
|
|
|
|
.header {
|
|
@apply w-8 h-8 rounded-full bg-gray-200 overflow-hidden mr-4;
|
|
}
|
|
|
|
.name {
|
|
color: var(--sps-color-text);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.email {
|
|
color: var(--sps-color-text-tertiary);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.userButton {
|
|
border-top: solid 1px var(--sps-color-border-secondary);
|
|
padding: 12px 0;
|
|
|
|
.item {
|
|
height: 32px;
|
|
padding: 8px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: var(--sps-color-fill-secondary);
|
|
}
|
|
}
|
|
}
|
|
}
|