perf: ui样式优化

This commit is contained in:
wangdan-fit2cloud 2024-08-20 11:25:23 +08:00
parent d1a142e658
commit 5b6b203d3e
5 changed files with 18 additions and 5 deletions

View File

@ -384,3 +384,7 @@
color: #f54a45;
}
}
.el-checkbox__input.is-checked + .el-checkbox__label {
color: var(--el-checkbox-text-color);
}

View File

@ -11,7 +11,7 @@
<p class="title p-16 bold">
{{ $t('views.applicationOverview.appInfo.EmbedDialog.fullscreenModeTitle') }}
</p>
<img src="@/assets/window1.png" alt="" class="ml-8" />
<img src="@/assets/window1.png" alt="" class="ml-8" height="150" />
<div class="code layout-bg border-t p-16">
<div class="flex-between">
<span class="bold">{{
@ -32,8 +32,8 @@
<p class="title p-16 bold">
{{ $t('views.applicationOverview.appInfo.EmbedDialog.floatingModeTitle') }}
</p>
<img src="@/assets/window2.png" alt="" class="ml-8" />
<div class="code border-t p-16">
<img src="@/assets/window2.png" alt="" class="ml-8" height="150" />
<div class="code layout-bg border-t p-16">
<div class="flex-between">
<span class="bold">{{
$t('views.applicationOverview.appInfo.EmbedDialog.copyInstructions')

View File

@ -334,6 +334,7 @@ onBeforeUnmount(() => {
.workflow-main {
height: calc(100vh - 62px);
box-sizing: border-box;
cursor: pointer;
}
.workflow-dropdown-menu {
-moz-user-select: none; /* Firefox */
@ -364,6 +365,9 @@ onBeforeUnmount(() => {
.el-tabs__nav-wrap {
padding: 0 16px;
}
.el-tabs__nav-wrap:after {
height: 1px;
}
}
}

View File

@ -350,7 +350,9 @@ onMounted(() => {
})
</script>
<style lang="scss" scoped>
.log-table tr {
cursor: pointer;
.log-table {
:deep(tr) {
cursor: pointer;
}
}
</style>

View File

@ -151,4 +151,7 @@ defineExpose({
left: 24px;
z-index: 2;
}
.lf-drag-able {
cursor: pointer;
}
</style>