更新Company页面的UI为FUI风格

This commit is contained in:
2025-12-24 12:47:34 +08:00
parent a2c5c8bb47
commit f7732c6465
5 changed files with 50 additions and 515 deletions

View File

@@ -40,9 +40,9 @@ const COLORS = {
headerHoverBg: "#2d323e",
textColor: "#e2e8f0",
secondaryTextColor: "#a0aec0",
scrollbarTrackBg: "#1a1d24",
scrollbarThumbBg: "#4a5568",
scrollbarThumbHoverBg: "#718096",
scrollbarTrackBg: "#2d3748",
scrollbarThumbBg: "#718096",
scrollbarThumbHoverBg: "#a0aec0",
statBarBg: "#252a34",
};
@@ -941,13 +941,18 @@ const MainlineTimelineViewComponent = forwardRef(
overflowY="hidden"
h="calc(100% - 44px)"
css={{
"&::-webkit-scrollbar": { height: "8px" },
"&::-webkit-scrollbar": {
height: "12px",
background: COLORS.scrollbarTrackBg,
},
"&::-webkit-scrollbar-track": {
background: COLORS.scrollbarTrackBg,
borderRadius: "6px",
},
"&::-webkit-scrollbar-thumb": {
background: COLORS.scrollbarThumbBg,
borderRadius: "4px",
borderRadius: "6px",
border: "2px solid " + COLORS.scrollbarTrackBg,
},
"&::-webkit-scrollbar-thumb:hover": {
background: COLORS.scrollbarThumbHoverBg,