File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
components/dialog/content Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 11<template >
2- <div class =" flex w-[490px] flex-col" >
3- <ContentDivider :width =" 1" />
2+ <div class =" flex w-[490px] flex-col border-t-1 border-b-1 border-border-default" >
43 <div class =" flex h-full w-full flex-col gap-4 p-4" >
54 <!-- Description -->
65 <div >
1312
1413 <!-- Missing Nodes List Wrapper -->
1514 <div
16- class =" flex flex-col max-h-[256px] rounded-lg py-2 scrollbar-custom bg-component-node-widget -background"
15+ class =" flex flex-col max-h-[256px] rounded-lg py-2 scrollbar-custom bg-secondary -background"
1716 >
1817 <div
1918 v-for =" (node, i) in uniqueNodes"
2019 :key =" i"
21- class =" flex min-h-8 items-center justify-between px-4 py-2 bg-component-node-widget- background text-text-secondary "
20+ class =" flex min-h-8 items-center justify-between px-4 py-2 bg-secondary- background text-muted-foreground "
2221 >
2322 <span class =" text-xs" >
2423 {{ node.label }}
3332 </p >
3433 </div >
3534 </div >
36- <ContentDivider :width =" 1" />
3735 </div >
3836</template >
3937
4038<script setup lang="ts">
4139import { computed } from ' vue'
42-
43- import ContentDivider from ' @/components/common/ContentDivider.vue'
4440import type { MissingNodeType } from ' @/types/comfy'
4541
4642const props = defineProps <{
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export const useDialogService = () => {
6868 dialogComponentProps : {
6969 closable : true ,
7070 pt : {
71+ root : { class : 'bg-base-background border-border-default' } ,
7172 header : { class : '!p-0 !m-0' } ,
7273 content : { class : '!p-0 overflow-y-hidden' } ,
7374 footer : { class : '!p-0' } ,
You can’t perform that action at this time.
0 commit comments