详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
44 lines
949 B
CSS
44 lines
949 B
CSS
.command-line-prompt {
|
|
border-right: 1px solid #999;
|
|
display: block;
|
|
float: left;
|
|
font-size: 100%;
|
|
letter-spacing: -1px;
|
|
margin-right: 1em;
|
|
pointer-events: none;
|
|
text-align: right;
|
|
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.command-line-prompt > span:before {
|
|
opacity: 0.7;
|
|
content: ' ';
|
|
display: block;
|
|
padding-right: 0.8em;
|
|
}
|
|
|
|
.command-line-prompt > span[data-user]:before {
|
|
content: "[" attr(data-user) "@" attr(data-host) "] $";
|
|
}
|
|
|
|
.command-line-prompt > span[data-user="root"]:before {
|
|
content: "[" attr(data-user) "@" attr(data-host) "] #";
|
|
}
|
|
|
|
.command-line-prompt > span[data-prompt]:before {
|
|
content: attr(data-prompt);
|
|
}
|
|
|
|
.command-line-prompt > span[data-continuation-prompt]:before {
|
|
content: attr(data-continuation-prompt);
|
|
}
|
|
|
|
.command-line span.token.output {
|
|
/* Make shell output lines a bit lighter to distinguish them from shell commands */
|
|
opacity: 0.7;
|
|
}
|