amis/scss/components/_log.scss
吴多益 26ef7d0819
feat:新增实时日志组件 (#1492)
* feat:新增实时日志组件

* 修复可能串行的问题

* 增加图片动画示例

* typo

* 支持设置返回字符编码
2021-02-01 17:01:07 +08:00

110 lines
1.6 KiB
SCSS

.#{$ns}Log {
background: var(--Log-bg);
color: var(--Log-color);
padding: var(--Log-padding);
overflow-y: auto;
font-family: var(--fontFamilyMonospace);
&-line {
padding: var(--Log-line-padding);
white-space: pre-wrap;
word-wrap: break-word;
// bootstrap 会修改这些,覆盖掉
code {
color: inherit;
background: inherit;
}
&:hover {
background: var(--Log-line--onHover-bg);
}
}
.ansi-bold {
font-weight: 700;
}
.ansi-italic {
font-style: italic;
}
.ansi-underline {
text-decoration: underline;
}
.ansi-black-fg,
.ansi-bright-black-fg {
color: #4e4e4e;
}
.ansi-red-fg,
.ansi-bright-red-fg {
color: #ff6c60;
}
.ansi-green-fg,
.ansi-bright-green-fg {
color: #0a0;
}
.ansi-yellow-fg,
.ansi-bright-yellow-fg {
color: #ffffb6;
}
.ansi-blue-fg,
.ansi-bright-blue-fg {
color: #96cbfe;
}
.ansi-magenta-fg,
.ansi-bright-magenta-fg {
color: #ff73fd;
}
.ansi-cyan-fg,
.ansi-bright-cyan-fg {
color: #5ff;
}
.ansi-white-fg,
.ansi-bright-white-fg {
color: #eee;
}
.ansi-grey-fg,
.ansi-bright-grey-fg {
color: #969696;
}
.ansi-black-bg {
background-color: #4e4e4e;
}
.ansi-red-bg {
background-color: #ff6c60;
}
.ansi-green-bg {
background-color: #0a0;
}
.ansi-yellow-bg {
background-color: #ffffb6;
}
.ansi-blue-bg {
background-color: #96cbfe;
}
.ansi-magenta-bg {
background-color: #ff73fd;
}
.ansi-cyan-bg {
background-color: #0aa;
}
.ansi-white-bg {
background-color: #eee;
}
}