修改日志默认样式.

This commit is contained in:
lijiahang
2024-05-04 02:17:46 +08:00
parent 8cc801f3b7
commit 8c8098ea85
5 changed files with 14 additions and 13 deletions

View File

@@ -11,9 +11,9 @@
`2024-05-` `release`
* 🐞 修复
* 🐞 修复 查看计划任务日志时提示日志不存在
* 🩰 修改 命令执行日志 UI 修改
* 🌈 新增 文件传输列表添加快捷按钮
* 🌈 新增 文件传输列表添加操作栏
* 🔨 优化
[如何升级](/update/v1.0.7.md)

View File

@@ -22,8 +22,8 @@ public class TerminalPreferenceStrategy implements IPreferenceStrategy<TerminalP
String defaultDisplaySetting = TerminalPreferenceModel.DisplaySettingModel
.builder()
.fontFamily("_")
.fontSize(14)
.lineHeight(1.00)
.fontSize(13)
.lineHeight(1.12)
.fontWeight("normal")
.fontWeightBold("bold")
.cursorStyle("bar")

View File

@@ -12,7 +12,7 @@
:footer="false"
@close="handleClose">
<a-spin v-if="visible"
class="modal-body"
class="panel-container"
:loading="loading">
<div class="panel-wrapper">
<!-- 日志面板 -->
@@ -92,11 +92,12 @@
</script>
<style lang="less" scoped>
.modal-body {
.panel-container {
width: 100%;
height: 100%;
position: relative;
padding: 0 12px 12px 12px;
position: relative;
background: var(--color-bg-2);
}
.panel-wrapper {

View File

@@ -8,8 +8,8 @@ import type { WebglAddon } from 'xterm-addon-webgl';
export const LogAppenderOptions: ITerminalOptions & ITerminalInitOnlyOptions = {
theme: {
foreground: '#FFFFFF',
background: '#202020',
selectionBackground: '#B5D5FF',
background: '#1C1C1C',
selectionBackground: '#444444',
},
cols: 30,
rows: 8,
@@ -18,8 +18,8 @@ export const LogAppenderOptions: ITerminalOptions & ITerminalInitOnlyOptions = {
cursorStyle: 'bar',
cursorBlink: false,
fastScrollModifier: 'alt',
fontSize: 14,
lineHeight: 1.08,
fontSize: 13,
lineHeight: 1.12,
convertEol: true,
};

View File

@@ -241,7 +241,7 @@
display: flex;
justify-content: space-between;
align-items: center;
background: var(--color-bg-1);
background: var(--color-bg-2);
color: var(--color-text-1);
user-select: none;
@@ -264,7 +264,7 @@
width: 100%;
height: calc(100% - @header-height);
position: relative;
background: #202020;
background: #1C1C1C;
padding: 4px 0 4px 4px;
.log-appender {