Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion components/ts_webui/web/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1590,7 +1590,7 @@ button.btn-gray:hover,

.section h2 {
margin-bottom: 16px;
padding-bottom: 14px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
color: var(--text-primary);
font-size: 0.9375rem;
Expand Down Expand Up @@ -7504,6 +7504,7 @@ button.btn-gray:hover,
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin-top: 10px; /* 与 quick-actions-grid 的 padding-bottom 对齐,使分隔线上下间距一致 */
}

@media (max-width: 1200px) {
Expand Down
2 changes: 1 addition & 1 deletion components/ts_webui/web/js/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class WebTerminal {

// 显示欢迎信息
this.writeln('\x1b[1;36m╔══════════════════════════════════════════╗\x1b[0m');
this.writeln('\x1b[1;36m║\x1b[0m \x1b[1;33m⛰️ TianshanOS Web Terminal\x1b[0m \x1b[1;36m║\x1b[0m');
this.writeln('\x1b[1;36m║\x1b[0m \x1b[1;33mTianshanOS Web Terminal\x1b[0m \x1b[1;36m║\x1b[0m');
this.writeln('\x1b[1;36m╚══════════════════════════════════════════╝\x1b[0m');
this.writeln('');
this.writeln(typeof t === 'function' ? t('terminal.connecting') : '正在连接到设备...');
Expand Down