lllyasviel commited on
Commit
b8247e8
·
1 Parent(s): 24d2c8a

* Taller input textbox.

Files changed (4) hide show
  1. fooocus_version.py +1 -1
  2. modules/html.py +4 -0
  3. update_log.md +4 -0
  4. webui.py +3 -3
fooocus_version.py CHANGED
@@ -1 +1 @@
1
- version = '1.0.23'
 
1
+ version = '1.0.24'
modules/html.py CHANGED
@@ -68,6 +68,10 @@ progress::after {
68
  height: 30px !important;
69
  }
70
 
 
 
 
 
71
  '''
72
  progress_html = '''
73
  <div class="loader-container">
 
68
  height: 30px !important;
69
  }
70
 
71
+ .type_row{
72
+ height: 80px !important;
73
+ }
74
+
75
  '''
76
  progress_html = '''
77
  <div class="loader-container">
update_log.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  ### 1.0.23
2
 
3
  * Added some hints on linux after UI start so users know the App does not fail.
 
1
+ ### 1.0.24
2
+
3
+ * Taller input textbox.
4
+
5
  ### 1.0.23
6
 
7
  * Added some hints on linux after UI start so users know the App does not fail.
webui.py CHANGED
@@ -45,11 +45,11 @@ with shared.gradio_root:
45
  progress_window = gr.Image(label='Preview', show_label=True, height=640, visible=False)
46
  progress_html = gr.HTML(value=modules.html.make_progress_html(32, 'Progress 32%'), visible=False, elem_id='progress-bar', elem_classes='progress-bar')
47
  gallery = gr.Gallery(label='Gallery', show_label=False, object_fit='contain', height=720, visible=True)
48
- with gr.Row():
49
  with gr.Column(scale=0.85):
50
- prompt = gr.Textbox(show_label=False, placeholder="Type prompt here.", container=False, autofocus=True)
51
  with gr.Column(scale=0.15, min_width=0):
52
- run_button = gr.Button(label="Generate", value="Generate")
53
  with gr.Row():
54
  advanced_checkbox = gr.Checkbox(label='Advanced', value=False, container=False)
55
  with gr.Column(scale=0.5, visible=False) as right_col:
 
45
  progress_window = gr.Image(label='Preview', show_label=True, height=640, visible=False)
46
  progress_html = gr.HTML(value=modules.html.make_progress_html(32, 'Progress 32%'), visible=False, elem_id='progress-bar', elem_classes='progress-bar')
47
  gallery = gr.Gallery(label='Gallery', show_label=False, object_fit='contain', height=720, visible=True)
48
+ with gr.Row(elem_classes='type_row'):
49
  with gr.Column(scale=0.85):
50
+ prompt = gr.Textbox(show_label=False, placeholder="Type prompt here.", container=False, autofocus=True, elem_classes='type_row', lines=1024)
51
  with gr.Column(scale=0.15, min_width=0):
52
+ run_button = gr.Button(label="Generate", value="Generate", elem_classes='type_row')
53
  with gr.Row():
54
  advanced_checkbox = gr.Checkbox(label='Advanced', value=False, container=False)
55
  with gr.Column(scale=0.5, visible=False) as right_col: