主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
151 lines
2.5 KiB
CSS
151 lines
2.5 KiB
CSS
/*
|
|
Solarized Color Schemes originally by Ethan Schoonover
|
|
http://ethanschoonover.com/solarized
|
|
|
|
Ported for PrismJS by Hector Matos
|
|
Website: https://krakendev.io
|
|
Twitter Handle: https://twitter.com/allonsykraken)
|
|
*/
|
|
|
|
/*
|
|
SOLARIZED HEX
|
|
--------- -------
|
|
base03 #002b36
|
|
base02 #073642
|
|
base01 #586e75
|
|
base00 #657b83
|
|
base0 #839496
|
|
base1 #93a1a1
|
|
base2 #eee8d5
|
|
base3 #fdf6e3
|
|
yellow #b58900
|
|
orange #cb4b16
|
|
red #dc322f
|
|
magenta #d33682
|
|
violet #6c71c4
|
|
blue #268bd2
|
|
cyan #2aa198
|
|
green #859900
|
|
*/
|
|
|
|
code[class*="language-"],
|
|
pre[class*="language-"] {
|
|
color: #657b83; /* base00 */
|
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
font-size: 1em;
|
|
text-align: left;
|
|
white-space: pre;
|
|
word-spacing: normal;
|
|
word-break: normal;
|
|
word-wrap: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
-moz-tab-size: 4;
|
|
-o-tab-size: 4;
|
|
tab-size: 4;
|
|
|
|
-webkit-hyphens: none;
|
|
-moz-hyphens: none;
|
|
-ms-hyphens: none;
|
|
hyphens: none;
|
|
}
|
|
|
|
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
|
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
|
background: #073642; /* base02 */
|
|
}
|
|
|
|
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
|
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
|
background: #073642; /* base02 */
|
|
}
|
|
|
|
/* Code blocks */
|
|
pre[class*="language-"] {
|
|
padding: 1em;
|
|
margin: .5em 0;
|
|
overflow: auto;
|
|
border-radius: 0.3em;
|
|
}
|
|
|
|
:not(pre) > code[class*="language-"],
|
|
pre[class*="language-"] {
|
|
background-color: #fdf6e3; /* base3 */
|
|
}
|
|
|
|
/* Inline code */
|
|
:not(pre) > code[class*="language-"] {
|
|
padding: .1em;
|
|
border-radius: .3em;
|
|
}
|
|
|
|
.token.comment,
|
|
.token.prolog,
|
|
.token.doctype,
|
|
.token.cdata {
|
|
color: #93a1a1; /* base1 */
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #586e75; /* base01 */
|
|
}
|
|
|
|
.token.namespace {
|
|
opacity: .7;
|
|
}
|
|
|
|
.token.property,
|
|
.token.tag,
|
|
.token.boolean,
|
|
.token.number,
|
|
.token.constant,
|
|
.token.symbol,
|
|
.token.deleted {
|
|
color: #268bd2; /* blue */
|
|
}
|
|
|
|
.token.selector,
|
|
.token.attr-name,
|
|
.token.string,
|
|
.token.char,
|
|
.token.builtin,
|
|
.token.url,
|
|
.token.inserted {
|
|
color: #2aa198; /* cyan */
|
|
}
|
|
|
|
.token.entity {
|
|
color: #657b83; /* base00 */
|
|
background: #eee8d5; /* base2 */
|
|
}
|
|
|
|
.token.atrule,
|
|
.token.attr-value,
|
|
.token.keyword {
|
|
color: #859900; /* green */
|
|
}
|
|
|
|
.token.function,
|
|
.token.class-name {
|
|
color: #b58900; /* yellow */
|
|
}
|
|
|
|
.token.regex,
|
|
.token.important,
|
|
.token.variable {
|
|
color: #cb4b16; /* orange */
|
|
}
|
|
|
|
.token.important,
|
|
.token.bold {
|
|
font-weight: bold;
|
|
}
|
|
.token.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.token.entity {
|
|
cursor: help;
|
|
}
|