diff --git a/css/main.css b/css/main.css index 3e51e920..bc59f833 100644 --- a/css/main.css +++ b/css/main.css @@ -175,7 +175,7 @@ gradio-app > :first-child { } .textbox textarea { - height: calc(100dvh - 172px); + height: calc(100dvh - 145px) } .textbox_logits textarea { @@ -307,7 +307,7 @@ audio { } #notebook-token-counter { - top: calc(100dvh - 171px) !important; + top: calc(100dvh - 172px) !important; } #default-token-counter span, #notebook-token-counter span { @@ -1666,3 +1666,7 @@ button:focus { height: calc(100vh - 300px) !important; min-height: 90px !important; } + +#textbox-notebook span { + display: none; +} diff --git a/modules/ui_notebook.py b/modules/ui_notebook.py index 3a8c9df2..f15684cc 100644 --- a/modules/ui_notebook.py +++ b/modules/ui_notebook.py @@ -32,7 +32,7 @@ def create_ui(): with gr.Tab('Raw'): with gr.Row(): initial_text = load_prompt(shared.settings['prompt-notebook']) - shared.gradio['textbox-notebook'] = gr.Textbox(value=initial_text, lines=27, elem_id='textbox-notebook', elem_classes=['textbox', 'add_scrollbar']) + shared.gradio['textbox-notebook'] = gr.Textbox(label="", value=initial_text, lines=27, elem_id='textbox-notebook', elem_classes=['textbox', 'add_scrollbar']) shared.gradio['token-counter-notebook'] = gr.HTML(value="0", elem_id="notebook-token-counter") with gr.Tab('Markdown'):