moved progressbar to top by request
This commit is contained in:
parent
f8f17e3b9e
commit
99585b3514
|
@ -337,6 +337,8 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
|
||||||
custom_inputs = modules.scripts.scripts_txt2img.setup_ui(is_img2img=False)
|
custom_inputs = modules.scripts.scripts_txt2img.setup_ui(is_img2img=False)
|
||||||
|
|
||||||
with gr.Column(variant='panel'):
|
with gr.Column(variant='panel'):
|
||||||
|
progressbar = gr.HTML(elem_id="progressbar")
|
||||||
|
|
||||||
with gr.Group():
|
with gr.Group():
|
||||||
txt2img_preview = gr.Image(elem_id='txt2img_preview', visible=False)
|
txt2img_preview = gr.Image(elem_id='txt2img_preview', visible=False)
|
||||||
txt2img_gallery = gr.Gallery(label='Output', elem_id='txt2img_gallery').style(grid=4)
|
txt2img_gallery = gr.Gallery(label='Output', elem_id='txt2img_gallery').style(grid=4)
|
||||||
|
@ -349,8 +351,6 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
|
||||||
send_to_extras = gr.Button('Send to extras')
|
send_to_extras = gr.Button('Send to extras')
|
||||||
interrupt = gr.Button('Interrupt')
|
interrupt = gr.Button('Interrupt')
|
||||||
|
|
||||||
progressbar = gr.HTML(elem_id="progressbar")
|
|
||||||
|
|
||||||
with gr.Group():
|
with gr.Group():
|
||||||
html_info = gr.HTML()
|
html_info = gr.HTML()
|
||||||
generation_info = gr.Textbox(visible=False)
|
generation_info = gr.Textbox(visible=False)
|
||||||
|
@ -474,6 +474,8 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
|
||||||
custom_inputs = modules.scripts.scripts_img2img.setup_ui(is_img2img=True)
|
custom_inputs = modules.scripts.scripts_img2img.setup_ui(is_img2img=True)
|
||||||
|
|
||||||
with gr.Column(variant='panel'):
|
with gr.Column(variant='panel'):
|
||||||
|
progressbar = gr.HTML(elem_id="progressbar")
|
||||||
|
|
||||||
with gr.Group():
|
with gr.Group():
|
||||||
img2img_preview = gr.Image(elem_id='img2img_preview', visible=False)
|
img2img_preview = gr.Image(elem_id='img2img_preview', visible=False)
|
||||||
img2img_gallery = gr.Gallery(label='Output', elem_id='img2img_gallery').style(grid=4)
|
img2img_gallery = gr.Gallery(label='Output', elem_id='img2img_gallery').style(grid=4)
|
||||||
|
@ -487,7 +489,6 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
|
||||||
interrupt = gr.Button('Interrupt')
|
interrupt = gr.Button('Interrupt')
|
||||||
img2img_save_style = gr.Button('Save prompt as style')
|
img2img_save_style = gr.Button('Save prompt as style')
|
||||||
|
|
||||||
progressbar = gr.HTML(elem_id="progressbar")
|
|
||||||
|
|
||||||
with gr.Group():
|
with gr.Group():
|
||||||
html_info = gr.HTML()
|
html_info = gr.HTML()
|
||||||
|
|
|
@ -167,6 +167,12 @@ input[type="range"]{
|
||||||
#txt2img_negative_prompt, #img2img_negative_prompt{
|
#txt2img_negative_prompt, #img2img_negative_prompt{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#progressbar{
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1000;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.progressDiv{
|
.progressDiv{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user