diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-06-03 06:05:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-03 06:05:22 +0000 |
commit | b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6 (patch) | |
tree | 13edcce09cea00bc0424def0aee7d059077bc77f /style.css | |
parent | 08109b9bc08c02a0d72b6019dbbda0e890fd74aa (diff) | |
parent | 9009e25cb1a7864127f6b2dc7329bd4178ad3a5d (diff) | |
download | stable-diffusion-webui-gfx803-b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6.tar.gz stable-diffusion-webui-gfx803-b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6.tar.bz2 stable-diffusion-webui-gfx803-b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6.zip |
Merge pull request #10943 from catboxanon/sort
Allow dynamically sorting extra networks in UI
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -734,12 +734,22 @@ footer { .extra-network-subdirs button{
margin: 0 0.15em;
}
-.extra-networks .tab-nav .search{
+.extra-networks .tab-nav .search,
+.extra-networks .tab-nav .sort,
+.extra-networks .tab-nav .sortorder{
display: inline-block;
- max-width: 16em;
margin: 0.3em;
align-self: center;
+}
+
+.extra-networks .tab-nav .search {
width: 16em;
+ max-width: 16em;
+}
+
+.extra-networks .tab-nav .sort {
+ width: 12em;
+ max-width: 12em;
}
#txt2img_extra_view, #img2img_extra_view {
|