GeneralGost
commited on
Commit
•
d649b9f
1
Parent(s):
95ac7d8
User CSS Base Capppucine Theme
Browse files
user.css
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#txt2img_extra_networks:not(div), #img2img_extra_networks:not(div){
|
2 |
+
order: 1 !important;
|
3 |
+
}
|
4 |
+
|
5 |
+
#setting_show_progress_every_n_steps > div.wrap > div > label > span {
|
6 |
+
white-space: nowrap;
|
7 |
+
overflow: hidden;
|
8 |
+
width: 220px;
|
9 |
+
text-overflow: ellipsis;
|
10 |
+
}
|
11 |
+
|
12 |
+
/* Fixing Sampling steps covered up on phone */
|
13 |
+
|
14 |
+
@media screen and (min-width: 420px) {
|
15 |
+
#sampler_selection_txt2img, #sampler_selection_img2img {
|
16 |
+
flex-direction: row;
|
17 |
+
}
|
18 |
+
}
|
19 |
+
|
20 |
+
@media screen and (max-width: 420px) {
|
21 |
+
#sampler_selection_txt2img, #sampler_selection_img2img {
|
22 |
+
flex-direction: column;
|
23 |
+
}
|
24 |
+
}
|
25 |
+
|
26 |
+
#txt2img_script_container > * .block.padded, #img2img_script_container > * .block.padded {
|
27 |
+
padding: 10px !important;
|
28 |
+
}
|
29 |
+
|
30 |
+
div.compact {
|
31 |
+
gap: 5px !important;
|
32 |
+
}
|
33 |
+
|
34 |
+
|
35 |
+
.tab-nav.scroll-hide.svelte-1g805jl {
|
36 |
+
row-gap: 5px !important;
|
37 |
+
}
|
38 |
+
|
39 |
+
#txt2img_script_container > div, #img2img_script_container > div {
|
40 |
+
margin-bottom: 10px;
|
41 |
+
}
|