Skip to content

Commit ab01104

Browse files
authored
feat: make textboxes (incl. positive prompt) resizable (lllyasviel#3074)
* feat: make textboxes (incl. positive prompt) resizable again * wip: auto-resize positive prompt on new line dirty approach as container is hidden and 1px padding is applied for border shadow to actually work * feat: set row height to 84, exactly matching 3 lines for positive prompt eliminate need for JS to resize positive prompt onUiLoaded
1 parent 3d43976 commit ab01104

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

css/style.css

+13-9
Original file line numberDiff line numberDiff line change
@@ -74,31 +74,35 @@ progress::after {
7474
text-align: right;
7575
width: 215px;
7676
}
77+
div:has(> #positive_prompt) {
78+
border: none;
79+
}
7780

78-
.type_row{
79-
height: 80px !important;
81+
#positive_prompt {
82+
padding: 1px;
83+
background: var(--background-fill-primary);
8084
}
8185

82-
.type_row_half{
83-
height: 32px !important;
86+
.type_row {
87+
height: 84px !important;
8488
}
8589

86-
.scroll-hide{
87-
resize: none !important;
90+
.type_row_half {
91+
height: 34px !important;
8892
}
8993

90-
.refresh_button{
94+
.refresh_button {
9195
border: none !important;
9296
background: none !important;
9397
font-size: none !important;
9498
box-shadow: none !important;
9599
}
96100

97-
.advanced_check_row{
101+
.advanced_check_row {
98102
width: 250px !important;
99103
}
100104

101-
.min_check{
105+
.min_check {
102106
min-width: min(1px, 100%) !important;
103107
}
104108

webui.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ def generate_clicked(task: worker.AsyncTask):
112112
gallery = gr.Gallery(label='Gallery', show_label=False, object_fit='contain', visible=True, height=768,
113113
elem_classes=['resizable_area', 'main_view', 'final_gallery', 'image_gallery'],
114114
elem_id='final_gallery')
115-
with gr.Row(elem_classes='type_row'):
115+
with gr.Row():
116116
with gr.Column(scale=17):
117117
prompt = gr.Textbox(show_label=False, placeholder="Type prompt here or paste parameters.", elem_id='positive_prompt',
118-
container=False, autofocus=True, elem_classes='type_row', lines=1024)
118+
autofocus=True, lines=3)
119119

120120
default_prompt = modules.config.default_prompt
121121
if isinstance(default_prompt, str) and default_prompt != '':

0 commit comments

Comments
 (0)