diff --git a/CHANGELOG.md b/CHANGELOG.md index ed04ab12b..7d641c4fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,8 @@ - **UI** - improved image scaling in img2img and control interfaces - add base model type to networks display, thanks @Artheriax - - add additional hints to ui + - additional hints to ui, thanks @Artheriax + - additional artwork for reference models in networks, thanks @liutyi - **Fixes** - normalize path hanlding when deleting images - fix hidden model tags in networks display diff --git a/extensions-builtin/sdnext-modernui b/extensions-builtin/sdnext-modernui index 6470d3cc3..90a7560df 160000 --- a/extensions-builtin/sdnext-modernui +++ b/extensions-builtin/sdnext-modernui @@ -1 +1 @@ -Subproject commit 6470d3cc3dd421b46c8cc0372aecd5e6b3ec36a4 +Subproject commit 90a7560df36e8f7afdf31b70fd564d29deec5cfb diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py index 06b3428fb..29eedc829 100644 --- a/modules/ui_extra_networks.py +++ b/modules/ui_extra_networks.py @@ -276,7 +276,11 @@ class ExtraNetworksPage: if len(subdir) == 0: continue style = 'color: var(--color-accent)' if subdir in ['All', 'Local', 'Diffusers', 'Reference'] else '' - subdirs_html += f'
' + if subdir in ['All', 'Local', 'Diffusers', 'Reference']: + style = 'network-reference' + else: + style = 'network-folder' + subdirs_html += f'
' self.html = '' self.create_items(tabname) self.create_xyz_grid()