mirror of
https://github.com/lllyasviel/Fooocus.git
synced 2026-08-16 13:13:16 +02:00
1.0.24
* Taller input textbox.
This commit is contained in:
+1
-1
@@ -1 +1 @@
|
|||||||
version = '1.0.23'
|
version = '1.0.24'
|
||||||
|
|||||||
@@ -68,6 +68,10 @@ progress::after {
|
|||||||
height: 30px !important;
|
height: 30px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.type_row{
|
||||||
|
height: 80px !important;
|
||||||
|
}
|
||||||
|
|
||||||
'''
|
'''
|
||||||
progress_html = '''
|
progress_html = '''
|
||||||
<div class="loader-container">
|
<div class="loader-container">
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
### 1.0.24
|
||||||
|
|
||||||
|
* Taller input textbox.
|
||||||
|
|
||||||
### 1.0.23
|
### 1.0.23
|
||||||
|
|
||||||
* Added some hints on linux after UI start so users know the App does not fail.
|
* Added some hints on linux after UI start so users know the App does not fail.
|
||||||
|
|||||||
@@ -45,11 +45,11 @@ with shared.gradio_root:
|
|||||||
progress_window = gr.Image(label='Preview', show_label=True, height=640, visible=False)
|
progress_window = gr.Image(label='Preview', show_label=True, height=640, visible=False)
|
||||||
progress_html = gr.HTML(value=modules.html.make_progress_html(32, 'Progress 32%'), visible=False, elem_id='progress-bar', elem_classes='progress-bar')
|
progress_html = gr.HTML(value=modules.html.make_progress_html(32, 'Progress 32%'), visible=False, elem_id='progress-bar', elem_classes='progress-bar')
|
||||||
gallery = gr.Gallery(label='Gallery', show_label=False, object_fit='contain', height=720, visible=True)
|
gallery = gr.Gallery(label='Gallery', show_label=False, object_fit='contain', height=720, visible=True)
|
||||||
with gr.Row():
|
with gr.Row(elem_classes='type_row'):
|
||||||
with gr.Column(scale=0.85):
|
with gr.Column(scale=0.85):
|
||||||
prompt = gr.Textbox(show_label=False, placeholder="Type prompt here.", container=False, autofocus=True)
|
prompt = gr.Textbox(show_label=False, placeholder="Type prompt here.", container=False, autofocus=True, elem_classes='type_row', lines=1024)
|
||||||
with gr.Column(scale=0.15, min_width=0):
|
with gr.Column(scale=0.15, min_width=0):
|
||||||
run_button = gr.Button(label="Generate", value="Generate")
|
run_button = gr.Button(label="Generate", value="Generate", elem_classes='type_row')
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
advanced_checkbox = gr.Checkbox(label='Advanced', value=False, container=False)
|
advanced_checkbox = gr.Checkbox(label='Advanced', value=False, container=False)
|
||||||
with gr.Column(scale=0.5, visible=False) as right_col:
|
with gr.Column(scale=0.5, visible=False) as right_col:
|
||||||
|
|||||||
Reference in New Issue
Block a user