Files
qiming/qimingclaw/crates/agent-electron-client/src/renderer/styles/components/AppSidebar.module.css
2026-07-14 16:38:29 +08:00

429 lines
6.8 KiB
CSS

.sidebar {
width: 240px;
min-width: 240px;
height: 100%;
display: flex;
flex-direction: column;
background: #f1f2ef;
border-right: 1px solid #deded9;
color: #1f211f;
overflow: hidden;
transition:
width 0.18s ease,
min-width 0.18s ease;
}
.sidebarCollapsed {
width: 64px;
min-width: 64px;
}
.brand {
height: 84px;
display: grid;
grid-template-columns: 38px 1fr 34px;
align-items: center;
gap: 10px;
padding: 6px 12px 10px 20px;
}
.brandWithoutToggle {
grid-template-columns: 38px 1fr;
padding-right: 20px;
}
.brandLogo {
width: 36px;
height: 36px;
border-radius: 8px;
object-fit: cover;
box-shadow: 0 8px 18px rgba(217, 116, 74, 0.18);
}
.brandText {
min-width: 0;
}
.brandName {
font-size: 15px;
line-height: 22px;
font-weight: 700;
color: #20211f;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.brandSubTitle {
margin-top: 1px;
font-size: 9px;
line-height: 12px;
font-weight: 600;
color: #a09d98;
letter-spacing: 0;
white-space: nowrap;
}
.updateNotice {
max-width: 128px;
height: 20px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 6px;
padding: 0 8px;
border: 1px solid transparent;
font: inherit;
font-size: 11px;
font-weight: 600;
line-height: 18px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
transition:
opacity 0.16s ease,
transform 0.16s ease;
}
.updateNotice:disabled {
cursor: default;
}
.updateNotice:not(:disabled):hover {
opacity: 0.84;
transform: translateY(-1px);
}
.updateNoticeAvailable {
background: rgba(82, 196, 26, 0.12);
border-color: rgba(82, 196, 26, 0.25);
color: #3f9f12;
}
.updateNoticeDownloading {
background: rgba(22, 119, 255, 0.1);
border-color: rgba(22, 119, 255, 0.2);
color: #1677ff;
}
.updateNoticeInstall {
background: rgba(250, 173, 20, 0.12);
border-color: rgba(250, 173, 20, 0.25);
color: #d48806;
}
.sidebarToggle {
width: 30px;
height: 30px;
flex: none;
border: 0;
border-radius: 8px;
display: inline-flex;
align-items: center;
justify-content: center;
background: #e4e4df;
color: #656661;
cursor: pointer;
transition:
background-color 0.16s ease,
color 0.16s ease;
}
.sidebarToggle:hover {
background: #dadad4;
color: #252622;
}
.nav {
flex: 1;
min-height: 0;
overflow-y: auto;
padding: 0 11px 16px;
}
.navSection {
padding-bottom: 12px;
margin-bottom: 12px;
border-bottom: 1px solid #deded8;
}
.navSection:last-child {
border-bottom: 0;
margin-bottom: 0;
}
.sectionTitle {
height: 20px;
display: flex;
align-items: center;
padding: 0 2px;
font-size: 11px;
line-height: 16px;
color: #8e8b84;
}
.navItem {
position: relative;
width: 100%;
height: 34px;
border: 0;
border-radius: 6px;
display: flex;
align-items: center;
gap: 12px;
padding: 0 10px;
background: transparent;
color: #5e5d58;
font: inherit;
text-align: left;
cursor: pointer;
transition:
background-color 0.16s ease,
color 0.16s ease;
}
.navItem:hover {
background: #e8e8e2;
color: #2d2d29;
}
.navItemActive {
background: #eaded7;
color: #d66c47;
font-weight: 600;
}
.navItemActive::after {
content: "";
position: absolute;
top: 8px;
right: 10px;
width: 3px;
height: 18px;
border-radius: 2px;
background: #df7653;
}
.navIcon {
width: 18px;
min-width: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 15px;
}
.navLabel {
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 13px;
}
.navBadge {
max-width: 46px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 7px;
border-radius: 9px;
background: #e6f0ff;
color: #4d8dea;
font-size: 11px;
font-weight: 600;
white-space: nowrap;
}
.navBadgeSuccess {
max-width: 52px;
background: #dff5e7;
color: #16b268;
}
.footer {
padding: 12px 11px 14px;
border-top: 1px solid #deded8;
}
.userCard {
height: 52px;
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
border: 1px solid #deded8;
border-radius: 8px;
background: #f6f7f4;
}
.avatar {
width: 32px;
height: 32px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #ec9a67, #df7653);
color: #ffffff;
font-size: 13px;
font-weight: 700;
}
.userMeta {
flex: 1;
min-width: 0;
}
.userName {
color: #252622;
font-size: 13px;
line-height: 18px;
font-weight: 700;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.userEmail {
color: #8e8b84;
font-size: 11px;
line-height: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.onlineDot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #b8b8b0;
}
.onlineDotActive {
background: #21bf63;
}
.logoutButton {
width: 100%;
height: 34px;
border: 0;
border-radius: 7px;
display: flex;
align-items: center;
gap: 8px;
margin-top: 9px;
padding: 0 12px;
background: #f1e3df;
color: #e64f45;
font: inherit;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition:
background-color 0.16s ease,
color 0.16s ease;
}
.logoutButton:hover {
background: #ead4cf;
color: #c8342e;
}
.sidebarCollapsed .brand {
height: 84px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 8px;
padding: 6px 0;
}
.sidebarCollapsed .brandLogo {
width: 32px;
height: 32px;
border-radius: 7px;
}
.sidebarCollapsed .brandText,
.sidebarCollapsed .sectionTitle,
.sidebarCollapsed .navLabel,
.sidebarCollapsed .navBadge,
.sidebarCollapsed .userMeta,
.sidebarCollapsed .logoutLabel {
display: none;
}
.sidebarCollapsed .nav {
padding: 0 10px 16px;
overflow-x: hidden;
}
.sidebarCollapsed .navSection {
padding-bottom: 8px;
margin-bottom: 8px;
}
.sidebarCollapsed .navItem {
width: 42px;
padding: 0;
justify-content: center;
gap: 0;
}
.sidebarCollapsed .navItemActive::after {
right: 3px;
}
.sidebarCollapsed .footer {
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 0 12px;
}
.sidebarCollapsed .userCard {
position: relative;
width: 36px;
height: 36px;
justify-content: center;
gap: 0;
padding: 0;
border: 0;
background: transparent;
}
.sidebarCollapsed .avatar {
width: 32px;
height: 32px;
}
.sidebarCollapsed .onlineDot {
position: absolute;
right: 0;
bottom: 0;
width: 8px;
height: 8px;
border: 2px solid #f1f2ef;
}
.sidebarCollapsed .logoutButton {
width: 36px;
height: 36px;
margin-top: 8px;
padding: 0;
justify-content: center;
gap: 0;
background: transparent;
font-size: 15px;
}
.sidebarCollapsed .logoutButton:hover {
background: #f1e3df;
}