mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
parent
49070a5a75
commit
960132af46
|
|
@ -73,6 +73,8 @@ defineExpose({
|
|||
li {
|
||||
padding: 10px 16px;
|
||||
font-weight: 400;
|
||||
color: var(--el-text-color-regular);
|
||||
font-size: 14px;
|
||||
&.active {
|
||||
background: var(--el-color-primary-light-9);
|
||||
border-radius: 4px;
|
||||
|
|
|
|||
|
|
@ -133,6 +133,7 @@
|
|||
|
||||
.el-card {
|
||||
--el-card-padding: calc(var(--app-base-px) * 2);
|
||||
color: var(--el-text-color-regular);
|
||||
}
|
||||
.el-dropdown {
|
||||
color: var(--app-text-color);
|
||||
|
|
@ -267,6 +268,9 @@
|
|||
.el-select-group .el-select-dropdown__item {
|
||||
padding-left: 11px;
|
||||
}
|
||||
.el-select-dropdown__item {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.el-select__caret {
|
||||
color: var(--app-text-color-secondary);
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<LayoutContainer header="模型设置">
|
||||
<div class="template-manage flex main-calc-height">
|
||||
<div class="template-manage__left p-8 border-r">
|
||||
<h4 style="padding-bottom: 8px">供应商</h4>
|
||||
<h4 class="p-16">供应商</h4>
|
||||
<div class="model-list-height-left">
|
||||
<div
|
||||
class="all-mode flex cursor"
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
ref="commonList1"
|
||||
>
|
||||
<template #default="{ row }">
|
||||
<div class="flex">
|
||||
<div class="flex align-center">
|
||||
<span
|
||||
:innerHTML="row.icon"
|
||||
alt=""
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
ref="commonList2"
|
||||
>
|
||||
<template #default="{ row }">
|
||||
<div class="flex">
|
||||
<div class="flex align-center">
|
||||
<span
|
||||
:innerHTML="row.icon"
|
||||
alt=""
|
||||
|
|
@ -301,11 +301,11 @@ onMounted(() => {
|
|||
}
|
||||
|
||||
.model-list-height {
|
||||
height: calc(var(--create-dataset-height) - 70px);
|
||||
height: calc(var(--create-dataset-height) - 80px);
|
||||
}
|
||||
|
||||
.model-list-height-left {
|
||||
height: calc(var(--create-dataset-height));
|
||||
height: calc(var(--create-dataset-height) - 40px);
|
||||
}
|
||||
.all-mode {
|
||||
padding: 10px 16px;
|
||||
|
|
@ -338,6 +338,9 @@ onMounted(() => {
|
|||
:deep(.el-collapse-item__wrap) {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
:deep(.el-collapse-item__content) {
|
||||
padding-bottom: 0 !important;;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue