fix: 优化下拉框字重
This commit is contained in:
parent
acebb7b366
commit
28a2c9897d
@ -73,6 +73,8 @@ defineExpose({
|
|||||||
li {
|
li {
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
color: var(--el-text-color-regular);
|
||||||
|
font-size: 14px;
|
||||||
&.active {
|
&.active {
|
||||||
background: var(--el-color-primary-light-9);
|
background: var(--el-color-primary-light-9);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|||||||
@ -133,6 +133,7 @@
|
|||||||
|
|
||||||
.el-card {
|
.el-card {
|
||||||
--el-card-padding: calc(var(--app-base-px) * 2);
|
--el-card-padding: calc(var(--app-base-px) * 2);
|
||||||
|
color: var(--el-text-color-regular);
|
||||||
}
|
}
|
||||||
.el-dropdown {
|
.el-dropdown {
|
||||||
color: var(--app-text-color);
|
color: var(--app-text-color);
|
||||||
@ -267,6 +268,9 @@
|
|||||||
.el-select-group .el-select-dropdown__item {
|
.el-select-group .el-select-dropdown__item {
|
||||||
padding-left: 11px;
|
padding-left: 11px;
|
||||||
}
|
}
|
||||||
|
.el-select-dropdown__item {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
.el-select__caret {
|
.el-select__caret {
|
||||||
color: var(--app-text-color-secondary);
|
color: var(--app-text-color-secondary);
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<LayoutContainer header="模型设置">
|
<LayoutContainer header="模型设置">
|
||||||
<div class="template-manage flex main-calc-height">
|
<div class="template-manage flex main-calc-height">
|
||||||
<div class="template-manage__left p-8 border-r">
|
<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="model-list-height-left">
|
||||||
<div
|
<div
|
||||||
class="all-mode flex cursor"
|
class="all-mode flex cursor"
|
||||||
@ -33,7 +33,7 @@
|
|||||||
ref="commonList1"
|
ref="commonList1"
|
||||||
>
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div class="flex">
|
<div class="flex align-center">
|
||||||
<span
|
<span
|
||||||
:innerHTML="row.icon"
|
:innerHTML="row.icon"
|
||||||
alt=""
|
alt=""
|
||||||
@ -59,7 +59,7 @@
|
|||||||
ref="commonList2"
|
ref="commonList2"
|
||||||
>
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div class="flex">
|
<div class="flex align-center">
|
||||||
<span
|
<span
|
||||||
:innerHTML="row.icon"
|
:innerHTML="row.icon"
|
||||||
alt=""
|
alt=""
|
||||||
@ -301,11 +301,11 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.model-list-height {
|
.model-list-height {
|
||||||
height: calc(var(--create-dataset-height) - 70px);
|
height: calc(var(--create-dataset-height) - 80px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.model-list-height-left {
|
.model-list-height-left {
|
||||||
height: calc(var(--create-dataset-height));
|
height: calc(var(--create-dataset-height) - 40px);
|
||||||
}
|
}
|
||||||
.all-mode {
|
.all-mode {
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
@ -338,6 +338,9 @@ onMounted(() => {
|
|||||||
:deep(.el-collapse-item__wrap) {
|
:deep(.el-collapse-item__wrap) {
|
||||||
border-bottom: none !important;
|
border-bottom: none !important;
|
||||||
}
|
}
|
||||||
|
:deep(.el-collapse-item__content) {
|
||||||
|
padding-bottom: 0 !important;;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user