diff --git a/frontend/src/styles/element-dark.scss b/frontend/src/styles/element-dark.scss index 919ee00f5..4679507dc 100644 --- a/frontend/src/styles/element-dark.scss +++ b/frontend/src/styles/element-dark.scss @@ -271,6 +271,18 @@ html.dark { .el-descriptions__content.el-descriptions__cell.is-bordered-content { color: #999999; } + .el-descriptions--large .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell { + padding: 12px 15px; + background-color: transparent; + } + .el-descriptions__body { + background-color: transparent; + } + .el-descriptions__label { + color: var(--el-color-primary) !important; + margin-right: 16px; + } + .terminal-tabs { background: none !important; .el-tabs__header { diff --git a/frontend/src/utils/xpack.ts b/frontend/src/utils/xpack.ts index e5e94c56e..182bf2f9a 100644 --- a/frontend/src/utils/xpack.ts +++ b/frontend/src/utils/xpack.ts @@ -13,6 +13,7 @@ export function resetXSetting() { } export function initFavicon() { + document.title = globalStore.themeConfig.panelName; let favicon = globalStore.themeConfig.favicon; const link = (document.querySelector("link[rel*='icon']") || document.createElement('link')) as HTMLLinkElement; link.type = 'image/x-icon';