mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
perf: ui样式优化
This commit is contained in:
parent
d1a142e658
commit
5b6b203d3e
|
|
@ -384,3 +384,7 @@
|
|||
color: #f54a45;
|
||||
}
|
||||
}
|
||||
|
||||
.el-checkbox__input.is-checked + .el-checkbox__label {
|
||||
color: var(--el-checkbox-text-color);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -350,7 +350,9 @@ onMounted(() => {
|
|||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.log-table tr {
|
||||
cursor: pointer;
|
||||
.log-table {
|
||||
:deep(tr) {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -151,4 +151,7 @@ defineExpose({
|
|||
left: 24px;
|
||||
z-index: 2;
|
||||
}
|
||||
.lf-drag-able {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue